diff --git a/.cargo-husky/hooks/pre-commit b/.cargo-husky/hooks/pre-commit deleted file mode 100755 index cb22475e80..0000000000 --- a/.cargo-husky/hooks/pre-commit +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# -# Intended to be in sync with .github/workflows/hardhat-core-ci.yml's -# test-edr-rs - -if [ -z "${ALCHEMY_URL}" ] || [ -z "${INFURA_URL}" ]; then - echo WARNING: skipping remote tests because the ALCHEMY_URL and INFURA_URL environment variables are not defined. Local test results may differ from those in CI. - ALL_FEATURES="--features tracing,bench-once,serde,std" -else - ALL_FEATURES=--all-features -fi - -# Set -x here to avoid printing secrets -set -xe - -# Setting RUSTFLAGS env for clippy makes it not include custom rules -RUSTFLAGS=-Dwarnings cargo check --workspace --all-targets --profile bench ${ALL_FEATURES} -cargo clippy --all --all-targets ${ALL_FEATURES} -- -D warnings -cargo +nightly fmt --all -- --check -cargo test --doc --workspace ${ALL_FEATURES} -cargo test --workspace --all-targets ${ALL_FEATURES} diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index d3d5453bdb..0000000000 --- a/.cargo/config +++ /dev/null @@ -1,88 +0,0 @@ -[alias] -gen-execution-api = "run --bin tools -- gen-execution-api" -scenario = "run --release --bin tools -- scenario" -scenario-with-tracing = "run --release --features tracing --bin tools -- scenario" -replay-block = "run --release --bin tools -- replay-block" - -[target.'cfg(all())'] -rustflags = [ - "-Wclippy::all", - "-Wclippy::await_holding_lock", - "-Wclippy::bool-to-int-with-if", - "-Wclippy::cast_lossless", - "-Wclippy::char_lit_as_u8", - "-Wclippy::checked_conversions", - "-Wclippy::dbg_macro", - "-Wclippy::debug_assert_with_mut_call", - "-Wclippy::default_trait_access", - "-Wclippy::doc_markdown", - "-Wclippy::empty_enum", - "-Wclippy::enum_glob_use", - "-Wclippy::exit", - "-Wclippy::expl_impl_clone_on_copy", - "-Wclippy::explicit_deref_methods", - "-Wclippy::explicit_into_iter_loop", - "-Wclippy::fallible_impl_from", - "-Wclippy::filter_map_next", - "-Wclippy::flat_map_option", - "-Wclippy::float_cmp_const", - "-Wclippy::fn_params_excessive_bools", - "-Wclippy::from_iter_instead_of_collect", - "-Wclippy::if-not-else", - "-Wclippy::implicit_clone", - "-Wclippy::imprecise_flops", - "-Wclippy::inconsistent_struct_constructor", - "-Wclippy::inefficient_to_string", - "-Wclippy::invalid_upcast_comparisons", - "-Wclippy::items-after-statements", - "-Wclippy::large_digit_groups", - "-Wclippy::large_stack_arrays", - "-Wclippy::large_types_passed_by_value", - "-Wclippy::let_unit_value", - "-Wclippy::linkedlist", - "-Wclippy::lossy_float_literal", - "-Wclippy::macro_use_imports", - "-Wclippy::manual-assert", - "-Wclippy::manual_ok_or", - "-Wclippy::map_err_ignore", - "-Wclippy::map_flatten", - "-Wclippy::map_unwrap_or", - "-Wclippy::match_on_vec_items", - "-Wclippy::match_same_arms", - "-Wclippy::match_wild_err_arm", - "-Wclippy::match_wildcard_for_single_variants", - "-Wclippy::mem_forget", - "-Wclippy::missing_enforced_import_renames", - "-Wclippy::mut_mut", - "-Wclippy::mutex_integer", - "-Wclippy::needless_borrow", - "-Wclippy::needless_continue", - "-Wclippy::needless_for_each", - "-Wclippy::option_option", - "-Wclippy::path_buf_push_overwrite", - "-Wclippy::ptr_as_ptr", - "-Wclippy::rc_mutex", - "-Wclippy::redundant_closure_for_method_calls", - "-Wclippy::ref_option_ref", - "-Wclippy::rest_pat_in_fully_bound_structs", - "-Wclippy::same_functions_in_if_condition", - "-Wclippy::semicolon_if_nothing_returned", - "-Wclippy::single_match_else", - "-Wclippy::string_add_assign", - "-Wclippy::string_add", - "-Wclippy::string_lit_as_bytes", - "-Wclippy::string_to_string", - "-Wclippy::todo", - "-Wclippy::trait_duplication_in_bounds", - "-Wclippy::unimplemented", - "-Wclippy::uninlined_format_args", - "-Wclippy::unnested_or_patterns", - "-Wclippy::unused_self", - "-Wclippy::useless_transmute", - "-Wclippy::verbose_file_reads", - "-Wclippy::wildcard-imports", - "-Wclippy::zero_sized_map_values", - "-Wfuture_incompatible", - "-Wnonstandard_style", - "-Wrust_2018_idioms", -] diff --git a/.changeset/config.json b/.changeset/config.json index c4f1507f7d..e35708c6a6 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -6,7 +6,7 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "minor", - "ignore": ["@nomiclabs/common", "benchmark"], + "ignore": ["@nomiclabs/common"], "___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { "onlyUpdatePeerDependentsWhenOutOfRange": true } diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 258f76c793..058cb8e06f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,19 +1,12 @@ { - "name": "Hardhat + EDR", + "name": "Hardhat", "image": "mcr.microsoft.com/devcontainers/base:bullseye", "features": { "ghcr.io/devcontainers/features/node:1": { "version": "18" } }, - "postAttachCommand": "scripts/setup.sh", - "portsAttributes": { - // The default port of mdbook - "3000": { - "label": "mdbook", - "onAutoForward": "openPreview" - } - }, + "postCreateCommand": "scripts/setup.sh", "containerEnv": { "ALCHEMY_URL": "${localEnv:ALCHEMY_URL}", "INFURA_URL": "${localEnv:INFURA_URL}" @@ -22,17 +15,8 @@ "vscode": { "extensions": [ "esbenp.prettier-vscode", - "NomicFoundation.hardhat-solidity", - "rust-lang.rust-analyzer", - "tamasfe.even-better-toml", - "vadimcn.vscode-lldb" - ], - "settings": { - "rust-analyzer.cargo.features": "all", - "rust-analyzer.rustfmt.extraArgs": [ - "+nightly" - ] - } + "NomicFoundation.hardhat-solidity" + ] } } } diff --git a/.github/workflows/add-issue-to-project.yml b/.github/workflows/add-issue-to-project.yml index 68ee430565..5ab3e0b2db 100644 --- a/.github/workflows/add-issue-to-project.yml +++ b/.github/workflows/add-issue-to-project.yml @@ -14,5 +14,3 @@ jobs: with: project-url: https://github.com/orgs/NomicFoundation/projects/4 github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} - labeled: area:edr - label-operator: NOT diff --git a/.github/workflows/edr-benchmark.yml b/.github/workflows/edr-benchmark.yml deleted file mode 100644 index defd5792c2..0000000000 --- a/.github/workflows/edr-benchmark.yml +++ /dev/null @@ -1,85 +0,0 @@ -name: EDR Benchmark - -on: - push: - branches: - - main - paths: - - ".github/workflows/edr-benchmark.yml" - - "rust-toolchain" - - "Cargo.lock" - - "Cargo.toml" - - "crates/**" - pull_request: - branches: - - "**" - paths: - - ".github/workflows/edr-benchmark.yml" - - "rust-toolchain" - - "Cargo.lock" - - "Cargo.toml" - - "crates/**" - workflow_dispatch: - -defaults: - run: - working-directory: crates/tools/js/benchmark - -concurrency: - group: ${{github.workflow}}-${{github.ref}} - cancel-in-progress: true - -jobs: - js-benchmark: - name: Run JS scenario runner benchmark - environment: github-action-benchmark - runs-on: self-hosted - # Only run for trusted collaborators since third-parties could run malicious code on the self-hosted benchmark runner. - if: github.ref == 'refs/heads/main' || (github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR') - steps: - - uses: actions/checkout@v3 - - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Install Node - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: pnpm - - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - name: Install package - run: pnpm install --frozen-lockfile --prefer-offline - - - name: Run benchmark - run: pnpm run -s benchmark - - - name: Validate regressions - run: pnpm run -s verify - - - name: Generate report for github-action-benchmark - run: pnpm run -s report | tee report.json - - - name: Store benchmark result - uses: benchmark-action/github-action-benchmark@v1 - with: - tool: customSmallerIsBetter - output-file-path: crates/tools/js/benchmark/report.json - gh-repository: github.com/nomic-foundation-automation/edr-benchmark-results - gh-pages-branch: main - benchmark-data-dir-path: bench - github-token: ${{ secrets.BENCHMARK_GITHUB_TOKEN }} - # Only save the data for main branch pushes. For PRs we only compare - auto-push: ${{ github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }} - alert-threshold: "110%" - # Only fail on pull requests, don't break CI in main - fail-on-alert: ${{ github.event_name == 'pull_request' }} - # Enable Job Summary for PRs - summary-always: true - max-items-in-chart: 1000 diff --git a/.github/workflows/edr-npm-release.yml b/.github/workflows/edr-npm-release.yml deleted file mode 100644 index e6726d3e81..0000000000 --- a/.github/workflows/edr-npm-release.yml +++ /dev/null @@ -1,415 +0,0 @@ -name: EDR NPM release - -env: - DEBUG: napi:* - APP_NAME: edr - MACOSX_DEPLOYMENT_TARGET: "10.13" -permissions: - contents: write - id-token: write -on: - push: - branches: - - main - - edr/release - tags-ignore: - - "**" - paths-ignore: - - "**/*.md" - - LICENSE - - "**/*.gitignore" - - .editorconfig - - docs/** - pull_request: null - workflow_dispatch: - -jobs: - build: - strategy: - fail-fast: false - matrix: - settings: - - host: macos-latest - target: x86_64-apple-darwin - build: | - pnpm build - strip -x *.node - - host: windows-latest - build: pnpm build - target: x86_64-pc-windows-msvc - - host: ubuntu-latest - target: x86_64-unknown-linux-gnu - docker: ghcr.io/napi-rs/napi-rs/nodejs-rust@sha256:4b2638c0987845c4ab3488574a215a2a866b99fb28588788786f2b8cbcb40e71 - build: |- - set -e && - pnpm run build --target x86_64-unknown-linux-gnu && - strip *.node - - host: ubuntu-latest - target: x86_64-unknown-linux-musl - docker: ghcr.io/napi-rs/napi-rs/nodejs-rust@sha256:2003f7f7027adaab2c97bf576ce6bb87640a77c62a6898ed2359c050c49872a5 - build: |- - apk add perl; - set -e && - pnpm run build && - strip *.node - - host: macos-latest - target: aarch64-apple-darwin - build: | - pnpm build --target aarch64-apple-darwin - strip -x *.node - - host: ubuntu-latest - target: aarch64-unknown-linux-gnu - docker: ghcr.io/napi-rs/napi-rs/nodejs-rust@sha256:08cb2c8326ae78cf8ffd58f81523dd9592a4778c2c5f314251f5773ea204f289 - build: |- - set -e && - sudo apt-get update && - sudo apt-get install perl -y && - rustup target add aarch64-unknown-linux-gnu && - # Required to build OpenSSL - export LDFLAGS="-L/usr/aarch64-unknown-linux-gnu/lib/gcc/aarch64-unknown-linux-gnu/4.8.5" && - export CFLAGS="-B/usr/aarch64-unknown-linux-gnu/lib/gcc/aarch64-unknown-linux-gnu/4.8.5 --sysroot=/usr/aarch64-unknown-linux-gnu/aarch64-unknown-linux-gnu/sysroot" && - export CXXFLAGS="-B/usr/aarch64-unknown-linux-gnu/lib/gcc/aarch64-unknown-linux-gnu/4.8.5 --sysroot=/usr/aarch64-unknown-linux-gnu/aarch64-unknown-linux-gnu/sysroot" && - pnpm run build --target aarch64-unknown-linux-gnu && - aarch64-unknown-linux-gnu-strip *.node - - host: ubuntu-latest - target: aarch64-unknown-linux-musl - docker: ghcr.io/napi-rs/napi-rs/nodejs-rust@sha256:2003f7f7027adaab2c97bf576ce6bb87640a77c62a6898ed2359c050c49872a5 - build: |- - apk add perl; - set -e && - rustup target add aarch64-unknown-linux-musl && - pnpm run build --target aarch64-unknown-linux-musl && - /aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip *.node - name: stable - ${{ matrix.settings.target }} - node@18 - runs-on: ${{ matrix.settings.host }} - defaults: - run: - working-directory: ./crates/edr_napi - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Setup node - uses: actions/setup-node@v3 - if: ${{ !matrix.settings.docker }} - with: - node-version: 18 - check-latest: true - cache: pnpm - - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@stable - if: ${{ !matrix.settings.docker }} - with: - toolchain: stable - # The `--target` flag for `rustup toolchain install` is not working properly which is - # why we need this extra step in addition to the `dtolnay/rust-toolchain` action. - # https://github.com/rust-lang/rustup/issues/3255 - - name: Add Rust cross-compilation target - run: rustup target add ${{ matrix.settings.target }} - if: ${{ !matrix.settings.docker }} - shell: bash - - name: Cache cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - .cargo-cache - target/ - key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }} - - uses: goto-bus-stop/setup-zig@v2 - if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }} - with: - version: 0.10.1 - - name: Install dependencies - run: pnpm install --frozen-lockfile --prefer-offline - - name: Build in docker - uses: addnab/docker-run-action@v3 - if: ${{ matrix.settings.docker }} - with: - image: ${{ matrix.settings.docker }} - options: "--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build/crates/edr_napi" - run: ${{ matrix.settings.build }} - - name: Build - run: ${{ matrix.settings.build }} - if: ${{ !matrix.settings.docker }} - shell: bash - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: bindings-${{ matrix.settings.target }} - # The upload artifact action doesn't respect the working directory setting. Unclear if this is a bug or not - # https://github.com/actions/upload-artifact/issues/294 - path: ./crates/edr_napi/${{ env.APP_NAME }}.*.node - if-no-files-found: error - test-macOS-windows-binding: - name: Test bindings on ${{ matrix.settings.target }} - node@${{ matrix.node }} - needs: - - build - strategy: - fail-fast: false - matrix: - settings: - - host: macos-latest - target: x86_64-apple-darwin - - host: windows-latest - target: x86_64-pc-windows-msvc - node: - - "18" - - "20" - runs-on: ${{ matrix.settings.host }} - defaults: - run: - working-directory: ./crates/edr_napi - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - check-latest: true - cache: pnpm - - name: Install dependencies - run: pnpm install --frozen-lockfile --prefer-offline - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: bindings-${{ matrix.settings.target }} - path: ./crates/edr_napi/ - - name: List packages - run: ls -R . - shell: bash - - name: Test bindings - run: pnpm testNoBuild - test-linux-x64-gnu-binding: - name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }} - needs: - - build - strategy: - fail-fast: false - matrix: - node: - - "18" - - "20" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - check-latest: true - cache: pnpm - - name: Install dependencies - run: pnpm install --frozen-lockfile --prefer-offline - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: bindings-x86_64-unknown-linux-gnu - path: ./crates/edr_napi/ - - name: List packages - run: ls -R . - shell: bash - - name: Test bindings - run: docker run --rm -v $(pwd):/build -w /build/crates/edr_napi node:${{ matrix.node }} bash -c "wget -qO- 'https://unpkg.com/@pnpm/self-installer' | node; pnpm testNoBuild" - test-linux-x64-musl-binding: - name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }} - needs: - - build - strategy: - fail-fast: false - matrix: - node: - - "18" - - "20" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - check-latest: true - cache: pnpm - - name: Install dependencies - run: | - pnpm config set supportedArchitectures.libc "musl" - pnpm install --frozen-lockfile --prefer-offline - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: bindings-x86_64-unknown-linux-musl - path: ./crates/edr_napi/ - - name: List packages - run: ls -R . - shell: bash - - name: Test bindings - run: docker run --rm -v $(pwd):/build -w /build/crates/edr_napi node:${{ matrix.node }}-alpine sh -c "wget -qO- 'https://unpkg.com/@pnpm/self-installer' | node; pnpm testNoBuild" - test-linux-aarch64-gnu-binding: - name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }} - needs: - - build - strategy: - fail-fast: false - matrix: - node: - - "18" - - "20" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: bindings-aarch64-unknown-linux-gnu - path: ./crates/edr_napi/ - - name: List packages - run: ls -R . - shell: bash - - name: Install dependencies - run: | - pnpm config set supportedArchitectures.cpu "arm64" - pnpm config set supportedArchitectures.libc "glibc" - pnpm install --frozen-lockfile --prefer-offline - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - with: - platforms: arm64 - - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - - name: Setup and run tests - uses: addnab/docker-run-action@v3 - with: - image: node:${{ matrix.node }} - options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/crates/edr_napi" - run: | - wget -qO- 'https://unpkg.com/@pnpm/self-installer' | node - set -e - pnpm testNoBuild - ls -la - test-linux-aarch64-musl-binding: - name: Test bindings on aarch64-unknown-linux-musl - node@lts - needs: - - build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: bindings-aarch64-unknown-linux-musl - path: ./crates/edr_napi/ - - name: List packages - run: ls -R . - shell: bash - - name: Install dependencies - run: | - pnpm config set supportedArchitectures.cpu "arm64" - pnpm config set supportedArchitectures.libc "musl" - pnpm install --frozen-lockfile --prefer-offline - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - with: - platforms: arm64 - - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - - name: Setup and run tests - uses: addnab/docker-run-action@v3 - with: - image: node:lts-alpine - options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/crates/edr_napi" - run: | - wget -qO- 'https://unpkg.com/@pnpm/self-installer' | node - set -e - pnpm testNoBuild - check_commit: - name: Check commit - runs-on: ubuntu-latest - if: github.event_name != 'pull_request' || github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.ref }} - - - name: Check if commit message is a release commit - id: check_commit - # Must match commit check in publish step - run: | - if git log -1 --pretty=%B | grep "^edr-[0-9]\+\.[0-9]\+\.[0-9]\+"; - then - echo "Check commit: matches" - echo "match=true" >> "$GITHUB_OUTPUT" - else - echo "Check commit: no match" - echo "match=false" >> "$GITHUB_OUTPUT" - fi - outputs: - match: ${{ steps.check_commit.outputs.match }} - publish: - name: Publish - environment: edr-release - runs-on: ubuntu-latest - needs: - - check_commit - - test-macOS-windows-binding - - test-linux-x64-gnu-binding - - test-linux-x64-musl-binding - - test-linux-aarch64-gnu-binding - - test-linux-aarch64-musl-binding - # Only run workflow if the PR is merged to main and the commit message is a release commit. - if: ${{ needs.check_commit.outputs.match == 'true' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/edr/release') }} - defaults: - run: - working-directory: ./crates/edr_napi - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: 18 - check-latest: true - cache: pnpm - - name: Install dependencies - run: pnpm install --frozen-lockfile --prefer-offline - - name: Download all artifacts - uses: actions/download-artifact@v3 - with: - path: ./crates/edr_napi/artifacts - - name: Move artifacts - run: pnpm artifacts - - name: Publish - run: | - if git log -1 --pretty=%B | grep "^edr-[0-9]\+\.[0-9]\+\.[0-9]\+-"; - then - echo "Publishing pre-release" - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc - pnpm publish --no-git-checks --provenance --tag next --access public - elif git log -1 --pretty=%B | grep "^edr-[0-9]\+\.[0-9]\+\.[0-9]\+\s*"; - then - echo "Publishing release" - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc - pnpm publish --no-git-checks --provenance --access public - else - echo "Not a release, skipping publish" - fi - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NOMICFOUNDATION_ORG_NPM_TOKEN }} diff --git a/.github/workflows/hardhat-core-ci.yml b/.github/workflows/hardhat-core-ci.yml index 850cdce706..1277794438 100644 --- a/.github/workflows/hardhat-core-ci.yml +++ b/.github/workflows/hardhat-core-ci.yml @@ -8,11 +8,7 @@ on: - main paths: - ".github/workflows/hardhat-core-ci.yml" - - "rust-toolchain" - - "Cargo.lock" - - "Cargo.toml" - "config/**" - - "crates/**" - "packages/hardhat-core/**" - "packages/hardhat-common/**" pull_request: @@ -20,11 +16,7 @@ on: - "**" paths: - ".github/workflows/hardhat-core-ci.yml" - - "rust-toolchain" - - "Cargo.lock" - - "Cargo.toml" - "config/**" - - "crates/**" - "packages/hardhat-core/**" - "packages/hardhat-common/**" workflow_dispatch: @@ -38,33 +30,6 @@ concurrency: cancel-in-progress: true jobs: - check-edr: - name: Check EDR - runs-on: ubuntu-latest - # Setting RUSTFLAGS env for clippy makes it not include custom rules - env: - RUSTFLAGS: -Dwarnings - RUSTDOCFLAGS: "-D warnings" - steps: - - uses: actions/checkout@v3 - - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - # Install pre-built binaries for cargo hack - - uses: taiki-e/install-action@cargo-hack - - - uses: Swatinem/rust-cache@v2 - - - name: Cargo hack - uses: actions-rs/cargo@v1 - with: - command: hack - args: check --feature-powerset --no-dev-deps - test-core: name: Test core (${{ matrix.os }}, Node ${{ matrix.node }}) runs-on: ${{ matrix.os }} @@ -85,14 +50,6 @@ jobs: node-version: ${{ matrix.node }} cache: pnpm - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v2 - - name: Install package run: pnpm install --frozen-lockfile --prefer-offline @@ -118,7 +75,6 @@ jobs: test-provider: name: Test provider (${{ matrix.os }}, Node ${{ matrix.node }}) runs-on: ${{ matrix.os }} - needs: check-edr strategy: fail-fast: false matrix: @@ -136,14 +92,6 @@ jobs: node-version: ${{ matrix.node }} cache: pnpm - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v2 - - name: Install package run: pnpm install --frozen-lockfile --prefer-offline @@ -165,133 +113,6 @@ jobs: FORCE_COLOR: 3 run: pnpm test:provider - test-edr-rs: - name: Test EDR (${{ matrix.os }}) - runs-on: ${{ matrix.os }} - needs: check-edr - strategy: - fail-fast: false - matrix: - os: ["ubuntu-latest", "macos-13"] - include: - - RUSTFLAGS: "-Dwarnings" - - os: "windows-latest" - RUSTFLAGS: "-Dwarnings -Ctarget-feature=+crt-static" - steps: - - uses: actions/checkout@v3 - - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v2 - - - name: Cache EDR RPC cache - uses: actions/cache@v2 - with: - path: | - **/edr-cache - key: edr-rs-rpc-cache-v1 - - - name: Run cargo test - uses: actions-rs/cargo@v1 - env: - RUSTFLAGS: ${{ matrix.RUSTFLAGS }} - ALCHEMY_URL: ${{ secrets.ALCHEMY_URL }} - INFURA_URL: ${{ secrets.INFURA_URL }} - with: - command: test - args: --workspace --all-targets --all-features - - - name: Doctests - uses: actions-rs/cargo@v1 - env: - RUSTFLAGS: ${{ matrix.RUSTFLAGS }} - with: - command: test - args: --doc --workspace --features tracing - - # disable until: - # 1) https://github.com/napi-rs/napi-rs/issues/1405 is resolved (Windows-only) - # 2) https://github.com/nextest-rs/nextest/issues/871 (all platforms) - # when re-enabled, remove "Run cargo test" - - # Nextest - # - name: Install latest nextest release - # uses: taiki-e/install-action@nextest - - # - name: Test with latest nextest release - # uses: actions-rs/cargo@v1 - # env: - # RUSTFLAGS: ${{ matrix.RUSTFLAGS }} - # CARGO_INCREMENTAL: ${{ matrix.CARGO_INCREMENTAL }} - # ALCHEMY_URL: ${{ secrets.ALCHEMY_URL }} - # with: - # command: nextest - # args: run --workspace --all-features --all-targets - - edr-style: - name: Check EDR Style - runs-on: ubuntu-latest - needs: check-edr - steps: - - uses: actions/checkout@v3 - - - name: Install nightly rustfmt - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - profile: minimal - components: rustfmt - - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - components: clippy - - - uses: Swatinem/rust-cache@v2 - - - name: Run cargo fmt - uses: actions-rs/cargo@v1 - with: - toolchain: nightly - command: fmt - args: --all --check - - - name: Run cargo clippy - uses: auguwu/clippy-action@1.3.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - all-features: true - check-args: --workspace --all-targets -- -Dwarnings - - edr-docs: - name: Build EDR Docs - runs-on: ubuntu-latest - needs: check-edr - steps: - - uses: actions/checkout@v3 - - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v2 - - - name: Cargo doc - uses: actions-rs/cargo@v1 - env: - RUSTDOCFLAGS: "-D warnings" - with: - command: doc - args: --workspace --no-deps --all-features - test_types_node: name: Test different versions of @types/node runs-on: ubuntu-latest diff --git a/.github/workflows/test-recent-mainnet-block.yml b/.github/workflows/test-recent-mainnet-block.yml deleted file mode 100644 index 31ccf18410..0000000000 --- a/.github/workflows/test-recent-mainnet-block.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Run a recent full block in the Hardhat Network - -on: - schedule: - - cron: "0 */8 * * *" - workflow_dispatch: - -defaults: - run: - working-directory: packages/hardhat-core - -jobs: - test-recent-mainnet-block: - name: Test recent mainnet block - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Install Rust (stable) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v2 - - - name: Cache EDR RPC cache - uses: actions/cache@v2 - with: - path: | - **/edr-cache - key: test-recent-mainnet-block-rpc-cache-v1 - - - name: Run test - uses: actions-rs/cargo@v1 - env: - RUSTFLAGS: ${{ matrix.RUSTFLAGS }} - with: - command: replay-block - args: -u ${{ secrets.ALCHEMY_URL }} -c 1 - - - name: Notify failures - if: failure() - uses: slackapi/slack-github-action@v1.18.0 - with: - payload: | - { - "workflow_name": "${{ github.workflow }}", - "run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.GH_ACTION_NOTIFICATIONS_SLACK_WEBHOOK_URL }} diff --git a/.gitignore b/.gitignore index 0119d96c20..797af0ccc7 100644 --- a/.gitignore +++ b/.gitignore @@ -84,19 +84,8 @@ typings/ # DynamoDB Local files .dynamodb/ - docs/.env.example -# Generated by Cargo -# will have compiled files and executables -/target/ - -# These are backup files generated by rustfmt -**/*.rs.bk - -# MSVC Windows builds of rustc generate these, which store debugging information -*.pdb - # VSCode settings .vscode/ @@ -111,9 +100,3 @@ Brewfile.lock.json # Performance profiling application .clinic - -# Ipython Notebook -.ipynb_checkpoints - -# Benchmark -benchmark-output.json diff --git a/Brewfile b/Brewfile deleted file mode 100644 index 56861c05b3..0000000000 --- a/Brewfile +++ /dev/null @@ -1,6 +0,0 @@ -# Rust toolchain -brew "rustup-init" -# NodeJS version 18 -brew "node@18" -# Yarn package manager for NodeJS -brew "yarn" diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 3f99e336f9..0000000000 --- a/Cargo.lock +++ /dev/null @@ -1,4357 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "addr2line" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" - -[[package]] -name = "ahash" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" -dependencies = [ - "cfg-if", - "once_cell", - "version_check", - "zerocopy", -] - -[[package]] -name = "aho-corasick" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" -dependencies = [ - "memchr", -] - -[[package]] -name = "allocator-api2" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" - -[[package]] -name = "alloy-primitives" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c234f92024707f224510ff82419b2be0e1d8e1fd911defcac5a085cd7f83898" -dependencies = [ - "alloy-rlp", - "bytes", - "cfg-if", - "const-hex", - "derive_more", - "hex-literal", - "itoa", - "keccak-asm", - "proptest", - "rand", - "ruint", - "serde", - "tiny-keccak", -] - -[[package]] -name = "alloy-primitives" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99bbad0a6b588ef4aec1b5ddbbfdacd9ef04e00b979617765b03174318ee1f3a" -dependencies = [ - "alloy-rlp", - "bytes", - "cfg-if", - "const-hex", - "derive_more", - "getrandom", - "hex-literal", - "itoa", - "k256", - "keccak-asm", - "proptest", - "rand", - "ruint", - "serde", - "tiny-keccak", -] - -[[package]] -name = "alloy-rlp" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d58d9f5da7b40e9bfff0b7e7816700be4019db97d4b6359fe7f94a9e22e42ac" -dependencies = [ - "alloy-rlp-derive", - "arrayvec", - "bytes", -] - -[[package]] -name = "alloy-rlp-derive" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a047897373be4bbb0224c1afdabca92648dc57a9c9ef6e7b0be3aff7a859c83" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "alloy-sol-macro" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "970e5cf1ca089e964d4f7f7afc7c9ad642bfb1bdc695a20b0cba3b3c28954774" -dependencies = [ - "const-hex", - "dunce", - "heck", - "indexmap 2.2.6", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.58", - "syn-solidity", - "tiny-keccak", -] - -[[package]] -name = "alloy-sol-types" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a059d4d2c78f8f21e470772c75f9abd9ac6d48c2aaf6b278d1ead06ed9ac664" -dependencies = [ - "alloy-primitives 0.5.4", - "alloy-sol-macro", - "const-hex", - "serde", -] - -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - -[[package]] -name = "anes" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" - -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", -] - -[[package]] -name = "anyhow" -version = "1.0.81" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" - -[[package]] -name = "archery" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8967cd1cc9e9e1954f644e14fbd6042fe9a37da96c52a67e44a2ac18261f8561" -dependencies = [ - "static_assertions", - "triomphe", -] - -[[package]] -name = "ark-ff" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" -dependencies = [ - "ark-ff-asm 0.3.0", - "ark-ff-macros 0.3.0", - "ark-serialize 0.3.0", - "ark-std 0.3.0", - "derivative", - "num-bigint", - "num-traits", - "paste", - "rustc_version 0.3.3", - "zeroize", -] - -[[package]] -name = "ark-ff" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" -dependencies = [ - "ark-ff-asm 0.4.2", - "ark-ff-macros 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "derivative", - "digest 0.10.7", - "itertools 0.10.5", - "num-bigint", - "num-traits", - "paste", - "rustc_version 0.4.0", - "zeroize", -] - -[[package]] -name = "ark-ff-asm" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" -dependencies = [ - "quote", - "syn 1.0.109", -] - -[[package]] -name = "ark-ff-asm" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" -dependencies = [ - "quote", - "syn 1.0.109", -] - -[[package]] -name = "ark-ff-macros" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" -dependencies = [ - "num-bigint", - "num-traits", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "ark-ff-macros" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" -dependencies = [ - "num-bigint", - "num-traits", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "ark-serialize" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" -dependencies = [ - "ark-std 0.3.0", - "digest 0.9.0", -] - -[[package]] -name = "ark-serialize" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" -dependencies = [ - "ark-std 0.4.0", - "digest 0.10.7", - "num-bigint", -] - -[[package]] -name = "ark-std" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" -dependencies = [ - "num-traits", - "rand", -] - -[[package]] -name = "ark-std" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" -dependencies = [ - "num-traits", - "rand", -] - -[[package]] -name = "arrayvec" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" - -[[package]] -name = "assert-json-diff" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "async-mutex" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e" -dependencies = [ - "event-listener", -] - -[[package]] -name = "async-rwlock" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261803dcc39ba9e72760ba6e16d0199b1eef9fc44e81bffabbebb9f5aea3906c" -dependencies = [ - "async-mutex", - "event-listener", -] - -[[package]] -name = "async-trait" -version = "0.1.79" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - -[[package]] -name = "aurora-engine-modexp" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfacad86e9e138fca0670949eb8ed4ffdf73a55bded8887efe0863cd1a3a6f70" -dependencies = [ - "hex", - "num", -] - -[[package]] -name = "auto_impl" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "autocfg" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" - -[[package]] -name = "backtrace" -version = "0.3.71" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" -dependencies = [ - "addr2line", - "cc", - "cfg-if", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", -] - -[[package]] -name = "base16ct" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" - -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - -[[package]] -name = "base64ct" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" - -[[package]] -name = "bit-set" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" -dependencies = [ - "bit-vec", -] - -[[package]] -name = "bit-vec" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" -dependencies = [ - "serde", -] - -[[package]] -name = "bitvec" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" -dependencies = [ - "funty", - "radium", - "serde", - "tap", - "wyz", -] - -[[package]] -name = "block-buffer" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" -dependencies = [ - "generic-array", -] - -[[package]] -name = "blst" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c94087b935a822949d3291a9989ad2b2051ea141eda0fd4e478a75f6aa3e604b" -dependencies = [ - "cc", - "glob", - "threadpool", - "zeroize", -] - -[[package]] -name = "bumpalo" -version = "3.15.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" - -[[package]] -name = "byte-slice-cast" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" - -[[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - -[[package]] -name = "bytes" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" -dependencies = [ - "serde", -] - -[[package]] -name = "c-kzg" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3130f3d8717cc02e668a896af24984d5d5d4e8bf12e278e982e0f1bd88a0f9af" -dependencies = [ - "blst", - "cc", - "glob", - "hex", - "libc", - "serde", -] - -[[package]] -name = "cargo_toml" -version = "0.15.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" -dependencies = [ - "serde", - "toml 0.7.8", -] - -[[package]] -name = "cast" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" - -[[package]] -name = "cc" -version = "1.0.91" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd97381a8cc6493395a5afc4c691c1084b3768db713b73aa215217aa245d153" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "chrono" -version = "0.4.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e" -dependencies = [ - "android-tzdata", - "iana-time-zone", - "num-traits", - "windows-targets 0.52.4", -] - -[[package]] -name = "ciborium" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" -dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", -] - -[[package]] -name = "ciborium-io" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" - -[[package]] -name = "ciborium-ll" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" -dependencies = [ - "ciborium-io", - "half", -] - -[[package]] -name = "cita_trie" -version = "4.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c3d2abadaa28e0d277f9f6d07a2052544f045d929cd4d6f7bcfb43567c9767" -dependencies = [ - "hasher", - "parking_lot 0.12.1", - "rlp", -] - -[[package]] -name = "clap" -version = "3.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" -dependencies = [ - "atty", - "bitflags 1.3.2", - "clap_derive", - "clap_lex", - "indexmap 1.9.3", - "once_cell", - "strsim", - "termcolor", - "textwrap", -] - -[[package]] -name = "clap_derive" -version = "3.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "clap_lex" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" -dependencies = [ - "os_str_bytes", -] - -[[package]] -name = "console" -version = "0.15.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" -dependencies = [ - "encode_unicode", - "lazy_static", - "libc", - "unicode-width", - "windows-sys 0.52.0", -] - -[[package]] -name = "const-hex" -version = "1.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ba00838774b4ab0233e355d26710fbfc8327a05c017f6dc4873f876d1f79f78" -dependencies = [ - "cfg-if", - "cpufeatures", - "hex", - "proptest", - "serde", -] - -[[package]] -name = "const-oid" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" - -[[package]] -name = "convert_case" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" - -[[package]] -name = "convert_case" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" -dependencies = [ - "unicode-segmentation", -] - -[[package]] -name = "core-foundation" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" - -[[package]] -name = "cpufeatures" -version = "0.2.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" -dependencies = [ - "libc", -] - -[[package]] -name = "crc32fast" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "criterion" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" -dependencies = [ - "anes", - "atty", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.10.5", - "lazy_static", - "num-traits", - "oorandom", - "plotters", - "regex", - "serde", - "serde_derive", - "serde_json", - "tinytemplate", - "walkdir", -] - -[[package]] -name = "criterion-plot" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" -dependencies = [ - "cast", - "itertools 0.10.5", -] - -[[package]] -name = "crossbeam-channel" -version = "0.5.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-deque" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" -dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.9.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" - -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" - -[[package]] -name = "crypto-bigint" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" -dependencies = [ - "generic-array", - "rand_core", - "subtle", - "zeroize", -] - -[[package]] -name = "crypto-common" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" -dependencies = [ - "generic-array", - "typenum", -] - -[[package]] -name = "ctor" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad291aa74992b9b7a7e88c38acbbf6ad7e107f1d90ee8775b7bc1fc3394f485c" -dependencies = [ - "quote", - "syn 2.0.58", -] - -[[package]] -name = "darling" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" -dependencies = [ - "darling_core", - "darling_macro", -] - -[[package]] -name = "darling_core" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim", - "syn 1.0.109", -] - -[[package]] -name = "darling_macro" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" -dependencies = [ - "darling_core", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if", - "hashbrown 0.14.3", - "lock_api", - "once_cell", - "parking_lot_core 0.9.9", -] - -[[package]] -name = "der" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" -dependencies = [ - "const-oid", - "pem-rfc7468", - "zeroize", -] - -[[package]] -name = "derivative" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "derive_builder" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3" -dependencies = [ - "derive_builder_macro", -] - -[[package]] -name = "derive_builder_core" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" -dependencies = [ - "darling", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "derive_builder_macro" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" -dependencies = [ - "derive_builder_core", - "syn 1.0.109", -] - -[[package]] -name = "derive_more" -version = "0.99.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" -dependencies = [ - "convert_case 0.4.0", - "proc-macro2", - "quote", - "rustc_version 0.4.0", - "syn 1.0.109", -] - -[[package]] -name = "difference" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" - -[[package]] -name = "digest" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" -dependencies = [ - "generic-array", -] - -[[package]] -name = "digest" -version = "0.10.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" -dependencies = [ - "block-buffer", - "const-oid", - "crypto-common", - "subtle", -] - -[[package]] -name = "dunce" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" - -[[package]] -name = "dyn-clone" -version = "1.0.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" - -[[package]] -name = "ecdsa" -version = "0.16.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" -dependencies = [ - "der", - "digest 0.10.7", - "elliptic-curve", - "rfc6979", - "signature", - "spki", -] - -[[package]] -name = "edr_defaults" -version = "0.3.5" - -[[package]] -name = "edr_eth" -version = "0.3.5" -dependencies = [ - "alloy-rlp", - "anyhow", - "assert-json-diff", - "edr_defaults", - "edr_test_utils", - "futures", - "hash-db", - "hash256-std-hasher", - "hashbrown 0.14.3", - "hex", - "hyper", - "itertools 0.10.5", - "k256", - "lazy_static", - "log", - "mockito", - "paste", - "regex", - "reqwest", - "reqwest-middleware", - "reqwest-retry", - "reqwest-tracing", - "revm-primitives", - "serde", - "serde_json", - "serial_test", - "sha3", - "tempfile", - "thiserror", - "tokio", - "tracing", - "triehash", - "url", - "uuid", - "walkdir", -] - -[[package]] -name = "edr_evm" -version = "0.3.5" -dependencies = [ - "alloy-rlp", - "anyhow", - "async-rwlock", - "auto_impl", - "cita_trie", - "criterion", - "dyn-clone", - "edr_defaults", - "edr_eth", - "edr_test_utils", - "futures", - "hasher", - "indexmap 2.2.6", - "itertools 0.11.0", - "lazy_static", - "log", - "once_cell", - "parking_lot 0.12.1", - "paste", - "revm", - "rpds", - "serde", - "serde_json", - "serial_test", - "tempfile", - "thiserror", - "tokio", - "tracing", -] - -[[package]] -name = "edr_napi" -version = "0.3.5" -dependencies = [ - "ansi_term", - "crossbeam-channel", - "edr_defaults", - "edr_eth", - "edr_evm", - "edr_provider", - "itertools 0.12.1", - "k256", - "lazy_static", - "log", - "mimalloc", - "napi", - "napi-build", - "napi-derive", - "openssl-sys", - "parking_lot 0.12.1", - "rand", - "serde", - "serde_json", - "thiserror", - "tracing", - "tracing-flame", - "tracing-subscriber", -] - -[[package]] -name = "edr_provider" -version = "0.3.5" -dependencies = [ - "alloy-sol-types", - "anyhow", - "cargo_toml", - "dyn-clone", - "edr_defaults", - "edr_eth", - "edr_evm", - "edr_test_utils", - "ethers-core", - "indexmap 2.2.6", - "itertools 0.12.1", - "k256", - "lazy_static", - "log", - "lru", - "parking_lot 0.12.1", - "paste", - "rand", - "rpds", - "serde", - "serde_json", - "serial_test", - "sha3", - "tempfile", - "thiserror", - "tokio", - "toml 0.5.11", - "tracing", -] - -[[package]] -name = "edr_solidity" -version = "0.3.5" -dependencies = [ - "edr_eth", - "edr_evm", -] - -[[package]] -name = "edr_test_utils" -version = "0.3.5" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "either" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" - -[[package]] -name = "elliptic-curve" -version = "0.13.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" -dependencies = [ - "base16ct", - "crypto-bigint", - "digest 0.10.7", - "ff", - "generic-array", - "group", - "pem-rfc7468", - "pkcs8", - "rand_core", - "sec1", - "subtle", - "zeroize", -] - -[[package]] -name = "encode_unicode" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" - -[[package]] -name = "encoding_rs" -version = "0.8.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "enumn" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "equivalent" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" - -[[package]] -name = "errno" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "eth_execution_api" -version = "1.0.0-beta.1" -dependencies = [ - "derive_builder", - "serde", - "serde_json", -] - -[[package]] -name = "ethabi" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898" -dependencies = [ - "ethereum-types", - "hex", - "once_cell", - "regex", - "serde", - "serde_json", - "sha3", - "thiserror", - "uint", -] - -[[package]] -name = "ethbloom" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" -dependencies = [ - "crunchy", - "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "scale-info", - "tiny-keccak", -] - -[[package]] -name = "ethereum-types" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" -dependencies = [ - "ethbloom", - "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "primitive-types", - "scale-info", - "uint", -] - -[[package]] -name = "ethers-core" -version = "2.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" -dependencies = [ - "arrayvec", - "bytes", - "chrono", - "const-hex", - "elliptic-curve", - "ethabi", - "generic-array", - "k256", - "num_enum", - "open-fastrlp", - "rand", - "rlp", - "serde", - "serde_json", - "strum", - "tempfile", - "thiserror", - "tiny-keccak", - "unicode-xid", -] - -[[package]] -name = "event-listener" -version = "2.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" - -[[package]] -name = "fastrand" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" - -[[package]] -name = "fastrlp" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" -dependencies = [ - "arrayvec", - "auto_impl", - "bytes", -] - -[[package]] -name = "ff" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" -dependencies = [ - "rand_core", - "subtle", -] - -[[package]] -name = "fixed-hash" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" -dependencies = [ - "byteorder", - "rand", - "rustc-hex", - "static_assertions", -] - -[[package]] -name = "flate2" -version = "1.0.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - -[[package]] -name = "form_urlencoded" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "funty" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" - -[[package]] -name = "futures" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" - -[[package]] -name = "futures-executor" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" - -[[package]] -name = "futures-macro" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "futures-sink" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" - -[[package]] -name = "futures-task" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" - -[[package]] -name = "futures-util" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "generic-array" -version = "0.14.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" -dependencies = [ - "typenum", - "version_check", - "zeroize", -] - -[[package]] -name = "getrandom" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06fddc2749e0528d2813f95e050e87e52c8cbbae56223b9babf73b3e53b0cc6" -dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", -] - -[[package]] -name = "gimli" -version = "0.28.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" - -[[package]] -name = "glob" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" - -[[package]] -name = "group" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" -dependencies = [ - "ff", - "rand_core", - "subtle", -] - -[[package]] -name = "h2" -version = "0.3.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" -dependencies = [ - "bytes", - "fnv", - "futures-core", - "futures-sink", - "futures-util", - "http", - "indexmap 2.2.6", - "slab", - "tokio", - "tokio-util", - "tracing", -] - -[[package]] -name = "half" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" -dependencies = [ - "cfg-if", - "crunchy", -] - -[[package]] -name = "hash-db" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" - -[[package]] -name = "hash256-std-hasher" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" -dependencies = [ - "crunchy", -] - -[[package]] -name = "hashbrown" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - -[[package]] -name = "hashbrown" -version = "0.14.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" -dependencies = [ - "ahash", - "allocator-api2", - "serde", -] - -[[package]] -name = "hasher" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbbba678b6567f27ce22870d951f4208e1dc2fef64993bd4521b1d497ef8a3aa" -dependencies = [ - "tiny-keccak", -] - -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - -[[package]] -name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -dependencies = [ - "serde", -] - -[[package]] -name = "hex-literal" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" - -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest 0.10.7", -] - -[[package]] -name = "http" -version = "0.2.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http-body" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" -dependencies = [ - "bytes", - "http", - "pin-project-lite", -] - -[[package]] -name = "httparse" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" - -[[package]] -name = "httpdate" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - -[[package]] -name = "hyper" -version = "0.14.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" -dependencies = [ - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "socket2", - "tokio", - "tower-service", - "tracing", - "want", -] - -[[package]] -name = "hyper-tls" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" -dependencies = [ - "bytes", - "hyper", - "native-tls", - "tokio", - "tokio-native-tls", -] - -[[package]] -name = "iana-time-zone" -version = "0.1.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "windows-core", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - -[[package]] -name = "ident_case" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" - -[[package]] -name = "idna" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "impl-codec" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" -dependencies = [ - "parity-scale-codec", -] - -[[package]] -name = "impl-rlp" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" -dependencies = [ - "rlp", -] - -[[package]] -name = "impl-serde" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" -dependencies = [ - "serde", -] - -[[package]] -name = "impl-trait-for-tuples" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", -] - -[[package]] -name = "indexmap" -version = "2.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" -dependencies = [ - "equivalent", - "hashbrown 0.14.3", -] - -[[package]] -name = "indicatif" -version = "0.17.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" -dependencies = [ - "console", - "instant", - "number_prefix", - "portable-atomic", - "rayon", - "unicode-width", -] - -[[package]] -name = "instant" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -dependencies = [ - "cfg-if", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "ipnet" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" - -[[package]] -name = "itertools" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - -[[package]] -name = "itoa" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" - -[[package]] -name = "js-sys" -version = "0.3.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "k256" -version = "0.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" -dependencies = [ - "cfg-if", - "ecdsa", - "elliptic-curve", - "once_cell", - "sha2", -] - -[[package]] -name = "keccak" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" -dependencies = [ - "cpufeatures", -] - -[[package]] -name = "keccak-asm" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb8515fff80ed850aea4a1595f2e519c003e2a00a82fe168ebf5269196caf444" -dependencies = [ - "digest 0.10.7", - "sha3-asm", -] - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -dependencies = [ - "spin", -] - -[[package]] -name = "libc" -version = "0.2.153" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" - -[[package]] -name = "libloading" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" -dependencies = [ - "cfg-if", - "windows-targets 0.52.4", -] - -[[package]] -name = "libm" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" - -[[package]] -name = "libmimalloc-sys" -version = "0.1.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664" -dependencies = [ - "cc", - "libc", -] - -[[package]] -name = "linux-raw-sys" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" - -[[package]] -name = "lock_api" -version = "0.4.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" - -[[package]] -name = "lru" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" -dependencies = [ - "hashbrown 0.14.3", -] - -[[package]] -name = "matchers" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" -dependencies = [ - "regex-automata 0.1.10", -] - -[[package]] -name = "matchit" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" - -[[package]] -name = "memchr" -version = "2.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" - -[[package]] -name = "mimalloc" -version = "0.1.39" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c" -dependencies = [ - "libmimalloc-sys", -] - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "mime_guess" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" -dependencies = [ - "mime", - "unicase", -] - -[[package]] -name = "miniz_oxide" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" -dependencies = [ - "adler", -] - -[[package]] -name = "mio" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" -dependencies = [ - "libc", - "wasi", - "windows-sys 0.48.0", -] - -[[package]] -name = "mockito" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2f6e023aa5bdf392aa06c78e4a4e6d498baab5138d0c993503350ebbc37bf1e" -dependencies = [ - "assert-json-diff", - "futures-core", - "hyper", - "log", - "rand", - "regex", - "serde_json", - "serde_urlencoded", - "similar", - "tokio", -] - -[[package]] -name = "napi" -version = "2.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4ca998356d8ff9fba7a070dae4508a2298439c98c9f3bc9c07669538b999e8f" -dependencies = [ - "anyhow", - "bitflags 2.5.0", - "ctor", - "napi-derive", - "napi-sys", - "once_cell", - "serde", - "serde_json", - "tokio", -] - -[[package]] -name = "napi-build" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f9130fccc5f763cf2069b34a089a18f0d0883c66aceb81f2fad541a3d823c43" - -[[package]] -name = "napi-derive" -version = "2.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b138cecf1141ae0ff5d62f4aa0e2f269aec339f66070f346ba6fb4279f1fc178" -dependencies = [ - "cfg-if", - "convert_case 0.6.0", - "napi-derive-backend", - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "napi-derive-backend" -version = "1.0.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce5126b64f6ad9e28e30e6d15213dd378626b38f556454afebc42f7f02a90902" -dependencies = [ - "convert_case 0.6.0", - "once_cell", - "proc-macro2", - "quote", - "regex", - "semver 1.0.22", - "syn 2.0.58", -] - -[[package]] -name = "napi-sys" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2503fa6af34dc83fb74888df8b22afe933b58d37daf7d80424b1c60c68196b8b" -dependencies = [ - "libloading", -] - -[[package]] -name = "native-tls" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" -dependencies = [ - "lazy_static", - "libc", - "log", - "openssl", - "openssl-probe", - "openssl-sys", - "schannel", - "security-framework", - "security-framework-sys", - "tempfile", -] - -[[package]] -name = "nu-ansi-term" -version = "0.46.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" -dependencies = [ - "overload", - "winapi", -] - -[[package]] -name = "num" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" -dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", -] - -[[package]] -name = "num-bigint" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-complex" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" -dependencies = [ - "num-traits", -] - -[[package]] -name = "num-integer" -version = "0.1.46" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" -dependencies = [ - "num-traits", -] - -[[package]] -name = "num-iter" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-rational" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" -dependencies = [ - "autocfg", - "num-bigint", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" -dependencies = [ - "autocfg", - "libm", -] - -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi 0.3.9", - "libc", -] - -[[package]] -name = "num_enum" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" -dependencies = [ - "proc-macro-crate 3.1.0", - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - -[[package]] -name = "object" -version = "0.32.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" - -[[package]] -name = "oorandom" -version = "11.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" - -[[package]] -name = "open-fastrlp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" -dependencies = [ - "arrayvec", - "auto_impl", - "bytes", - "ethereum-types", - "open-fastrlp-derive", -] - -[[package]] -name = "open-fastrlp-derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" -dependencies = [ - "bytes", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "openssl" -version = "0.10.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" -dependencies = [ - "bitflags 2.5.0", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-macros", - "openssl-sys", -] - -[[package]] -name = "openssl-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "openssl-probe" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - -[[package]] -name = "openssl-src" -version = "300.2.3+3.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843" -dependencies = [ - "cc", -] - -[[package]] -name = "openssl-sys" -version = "0.9.102" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" -dependencies = [ - "cc", - "libc", - "openssl-src", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "os_str_bytes" -version = "6.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" - -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - -[[package]] -name = "parity-scale-codec" -version = "3.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "881331e34fa842a2fb61cc2db9643a8fedc615e47cfcc52597d1af0db9a7e8fe" -dependencies = [ - "arrayvec", - "bitvec", - "byte-slice-cast", - "impl-trait-for-tuples", - "parity-scale-codec-derive", - "serde", -] - -[[package]] -name = "parity-scale-codec-derive" -version = "3.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be30eaf4b0a9fba5336683b38de57bb86d179a35862ba6bfcf57625d006bde5b" -dependencies = [ - "proc-macro-crate 2.0.0", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.6", -] - -[[package]] -name = "parking_lot" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" -dependencies = [ - "lock_api", - "parking_lot_core 0.9.9", -] - -[[package]] -name = "parking_lot_core" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" -dependencies = [ - "cfg-if", - "instant", - "libc", - "redox_syscall 0.2.16", - "smallvec", - "winapi", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.4.1", - "smallvec", - "windows-targets 0.48.5", -] - -[[package]] -name = "paste" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" - -[[package]] -name = "pem-rfc7468" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" -dependencies = [ - "base64ct", -] - -[[package]] -name = "percent-encoding" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" - -[[package]] -name = "pest" -version = "2.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95" -dependencies = [ - "memchr", - "thiserror", - "ucd-trie", -] - -[[package]] -name = "pin-project-lite" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "pkcs8" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" -dependencies = [ - "der", - "spki", -] - -[[package]] -name = "pkg-config" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" - -[[package]] -name = "plotters" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" -dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "plotters-backend" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" - -[[package]] -name = "plotters-svg" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" -dependencies = [ - "plotters-backend", -] - -[[package]] -name = "portable-atomic" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" - -[[package]] -name = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - -[[package]] -name = "primitive-types" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" -dependencies = [ - "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "scale-info", - "uint", -] - -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit 0.19.15", -] - -[[package]] -name = "proc-macro-crate" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" -dependencies = [ - "toml_edit 0.20.7", -] - -[[package]] -name = "proc-macro-crate" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" -dependencies = [ - "toml_edit 0.21.1", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro2" -version = "1.0.79" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "proptest" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" -dependencies = [ - "bit-set", - "bit-vec", - "bitflags 2.5.0", - "lazy_static", - "num-traits", - "rand", - "rand_chacha", - "rand_xorshift", - "regex-syntax 0.8.3", - "rusty-fork", - "tempfile", - "unarray", -] - -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - -[[package]] -name = "quote" -version = "1.0.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "radium" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - -[[package]] -name = "rand_xorshift" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" -dependencies = [ - "rand_core", -] - -[[package]] -name = "rayon" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" -dependencies = [ - "either", - "rayon-core", -] - -[[package]] -name = "rayon-core" -version = "1.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" -dependencies = [ - "crossbeam-deque", - "crossbeam-utils", -] - -[[package]] -name = "redox_syscall" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "redox_syscall" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "regex" -version = "1.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata 0.4.6", - "regex-syntax 0.8.3", -] - -[[package]] -name = "regex-automata" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" -dependencies = [ - "regex-syntax 0.6.29", -] - -[[package]] -name = "regex-automata" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax 0.8.3", -] - -[[package]] -name = "regex-syntax" -version = "0.6.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" - -[[package]] -name = "regex-syntax" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" - -[[package]] -name = "reqwest" -version = "0.11.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" -dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "hyper", - "hyper-tls", - "ipnet", - "js-sys", - "log", - "mime", - "mime_guess", - "native-tls", - "once_cell", - "percent-encoding", - "pin-project-lite", - "rustls-pemfile", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "system-configuration", - "tokio", - "tokio-native-tls", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "winreg", -] - -[[package]] -name = "reqwest-middleware" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a735987236a8e238bf0296c7e351b999c188ccc11477f311b82b55c93984216" -dependencies = [ - "anyhow", - "async-trait", - "http", - "reqwest", - "serde", - "task-local-extensions", - "thiserror", -] - -[[package]] -name = "reqwest-retry" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9af20b65c2ee9746cc575acb6bd28a05ffc0d15e25c992a8f4462d8686aacb4f" -dependencies = [ - "anyhow", - "async-trait", - "chrono", - "futures", - "getrandom", - "http", - "hyper", - "parking_lot 0.11.2", - "reqwest", - "reqwest-middleware", - "retry-policies", - "task-local-extensions", - "tokio", - "tracing", - "wasm-timer", -] - -[[package]] -name = "reqwest-tracing" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190838e54153d7a7e2ea98851304b3ce92daeabf14c54d32b01b84a3e636f683" -dependencies = [ - "anyhow", - "async-trait", - "getrandom", - "matchit", - "reqwest", - "reqwest-middleware", - "task-local-extensions", - "tracing", -] - -[[package]] -name = "retry-policies" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17dd00bff1d737c40dbcd47d4375281bf4c17933f9eef0a185fc7bacca23ecbd" -dependencies = [ - "anyhow", - "chrono", - "rand", -] - -[[package]] -name = "revm" -version = "8.0.0" -source = "git+https://github.com/Wodann/revm?rev=451f122#451f122b5a234db90e3fa00dedfaec6c03b46d61" -dependencies = [ - "auto_impl", - "cfg-if", - "dyn-clone", - "revm-interpreter", - "revm-precompile", - "serde", -] - -[[package]] -name = "revm-interpreter" -version = "4.0.0" -source = "git+https://github.com/Wodann/revm?rev=451f122#451f122b5a234db90e3fa00dedfaec6c03b46d61" -dependencies = [ - "revm-primitives", - "serde", -] - -[[package]] -name = "revm-precompile" -version = "6.0.0" -source = "git+https://github.com/Wodann/revm?rev=451f122#451f122b5a234db90e3fa00dedfaec6c03b46d61" -dependencies = [ - "aurora-engine-modexp", - "c-kzg", - "k256", - "once_cell", - "revm-primitives", - "ripemd", - "sha2", - "substrate-bn", -] - -[[package]] -name = "revm-primitives" -version = "3.1.1" -source = "git+https://github.com/Wodann/revm?rev=451f122#451f122b5a234db90e3fa00dedfaec6c03b46d61" -dependencies = [ - "alloy-primitives 0.7.0", - "auto_impl", - "bitflags 2.5.0", - "bitvec", - "c-kzg", - "cfg-if", - "derive_more", - "dyn-clone", - "enumn", - "hashbrown 0.14.3", - "hex", - "once_cell", - "serde", -] - -[[package]] -name = "rfc6979" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" -dependencies = [ - "hmac", - "subtle", -] - -[[package]] -name = "ripemd" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" -dependencies = [ - "digest 0.10.7", -] - -[[package]] -name = "rlp" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" -dependencies = [ - "bytes", - "rlp-derive", - "rustc-hex", -] - -[[package]] -name = "rlp-derive" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "rpds" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0e15515d3ce3313324d842629ea4905c25a13f81953eadb88f85516f59290a4" -dependencies = [ - "archery", -] - -[[package]] -name = "ruint" -version = "1.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f308135fef9fc398342da5472ce7c484529df23743fb7c734e0f3d472971e62" -dependencies = [ - "alloy-rlp", - "ark-ff 0.3.0", - "ark-ff 0.4.2", - "bytes", - "fastrlp", - "num-bigint", - "num-traits", - "parity-scale-codec", - "primitive-types", - "proptest", - "rand", - "rlp", - "ruint-macro", - "serde", - "valuable", - "zeroize", -] - -[[package]] -name = "ruint-macro" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f86854cf50259291520509879a5c294c3c9a4c334e9ff65071c51e42ef1e2343" - -[[package]] -name = "rustc-demangle" -version = "0.1.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" - -[[package]] -name = "rustc-hex" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" - -[[package]] -name = "rustc_version" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" -dependencies = [ - "semver 0.11.0", -] - -[[package]] -name = "rustc_version" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" -dependencies = [ - "semver 1.0.22", -] - -[[package]] -name = "rustix" -version = "0.38.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" -dependencies = [ - "bitflags 2.5.0", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.52.0", -] - -[[package]] -name = "rustls-pemfile" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" -dependencies = [ - "base64", -] - -[[package]] -name = "rustversion" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47" - -[[package]] -name = "rusty-fork" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" -dependencies = [ - "fnv", - "quick-error", - "tempfile", - "wait-timeout", -] - -[[package]] -name = "ryu" -version = "1.0.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" - -[[package]] -name = "same-file" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "scale-info" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "788745a868b0e751750388f4e6546eb921ef714a4317fa6954f7cde114eb2eb7" -dependencies = [ - "cfg-if", - "derive_more", - "parity-scale-codec", - "scale-info-derive", -] - -[[package]] -name = "scale-info-derive" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dc2f4e8bc344b9fc3d5f74f72c2e55bfc38d28dc2ebc69c194a3df424e4d9ac" -dependencies = [ - "proc-macro-crate 1.3.1", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "schannel" -version = "0.1.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" -dependencies = [ - "windows-sys 0.52.0", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "sec1" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" -dependencies = [ - "base16ct", - "der", - "generic-array", - "pkcs8", - "subtle", - "zeroize", -] - -[[package]] -name = "security-framework" -version = "2.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" -dependencies = [ - "bitflags 1.3.2", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "semver" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" -dependencies = [ - "semver-parser", -] - -[[package]] -name = "semver" -version = "1.0.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" - -[[package]] -name = "semver-parser" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" -dependencies = [ - "pest", -] - -[[package]] -name = "serde" -version = "1.0.197" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.197" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "serde_json" -version = "1.0.115" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "serde_spanned" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" -dependencies = [ - "serde", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "serial_test" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d" -dependencies = [ - "dashmap", - "futures", - "lazy_static", - "log", - "parking_lot 0.12.1", - "serial_test_derive", -] - -[[package]] -name = "serial_test_derive" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "sha2" -version = "0.10.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", -] - -[[package]] -name = "sha3" -version = "0.10.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" -dependencies = [ - "digest 0.10.7", - "keccak", -] - -[[package]] -name = "sha3-asm" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bac61da6b35ad76b195eb4771210f947734321a8d81d7738e1580d953bc7a15e" -dependencies = [ - "cc", - "cfg-if", -] - -[[package]] -name = "sharded-slab" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" -dependencies = [ - "lazy_static", -] - -[[package]] -name = "signature" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" -dependencies = [ - "digest 0.10.7", - "rand_core", -] - -[[package]] -name = "similar" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" - -[[package]] -name = "slab" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" -dependencies = [ - "autocfg", -] - -[[package]] -name = "smallvec" -version = "1.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" - -[[package]] -name = "socket2" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - -[[package]] -name = "spki" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" -dependencies = [ - "base64ct", - "der", -] - -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - -[[package]] -name = "strum" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" -dependencies = [ - "strum_macros", -] - -[[package]] -name = "strum_macros" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.58", -] - -[[package]] -name = "substrate-bn" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b5bbfa79abbae15dd642ea8176a21a635ff3c00059961d1ea27ad04e5b441c" -dependencies = [ - "byteorder", - "crunchy", - "lazy_static", - "rand", - "rustc-hex", -] - -[[package]] -name = "subtle" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "syn" -version = "2.0.58" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "syn-solidity" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ede2e5b2c6bfac4bc0ff4499957a11725dc12a7ddb86270e827ef575892553" -dependencies = [ - "paste", - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "sync_wrapper" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" - -[[package]] -name = "system-configuration" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" -dependencies = [ - "bitflags 1.3.2", - "core-foundation", - "system-configuration-sys", -] - -[[package]] -name = "system-configuration-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "tap" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" - -[[package]] -name = "task-local-extensions" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8" -dependencies = [ - "pin-utils", -] - -[[package]] -name = "tempfile" -version = "3.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" -dependencies = [ - "cfg-if", - "fastrand", - "rustix", - "windows-sys 0.52.0", -] - -[[package]] -name = "termcolor" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "textwrap" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" - -[[package]] -name = "thiserror" -version = "1.0.58" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.58" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "thread_local" -version = "1.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" -dependencies = [ - "cfg-if", - "once_cell", -] - -[[package]] -name = "threadpool" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" -dependencies = [ - "num_cpus", -] - -[[package]] -name = "tiny-keccak" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -dependencies = [ - "crunchy", -] - -[[package]] -name = "tinytemplate" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "tinyvec" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - -[[package]] -name = "tokio" -version = "1.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" -dependencies = [ - "backtrace", - "bytes", - "libc", - "mio", - "num_cpus", - "parking_lot 0.12.1", - "pin-project-lite", - "socket2", - "tokio-macros", - "windows-sys 0.48.0", -] - -[[package]] -name = "tokio-macros" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "tokio-native-tls" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" -dependencies = [ - "native-tls", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", - "tracing", -] - -[[package]] -name = "toml" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" -dependencies = [ - "serde", -] - -[[package]] -name = "toml" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.19.15", -] - -[[package]] -name = "toml_datetime" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" -dependencies = [ - "serde", -] - -[[package]] -name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap 2.2.6", - "serde", - "serde_spanned", - "toml_datetime", - "winnow", -] - -[[package]] -name = "toml_edit" -version = "0.20.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" -dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow", -] - -[[package]] -name = "toml_edit" -version = "0.21.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" -dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow", -] - -[[package]] -name = "tools" -version = "0.1.0" -dependencies = [ - "anyhow", - "cfg-if", - "clap", - "difference", - "edr_defaults", - "edr_eth", - "edr_evm", - "edr_provider", - "flate2", - "indicatif", - "mimalloc", - "reqwest", - "serde", - "serde_json", - "tempfile", - "tokio", - "toml 0.5.11", - "tracing", - "tracing-flame", - "tracing-subscriber", - "walkdir", -] - -[[package]] -name = "tower-service" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" - -[[package]] -name = "tracing" -version = "0.1.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" -dependencies = [ - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "tracing-core" -version = "0.1.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" -dependencies = [ - "once_cell", -] - -[[package]] -name = "tracing-flame" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9" -dependencies = [ - "lazy_static", - "tracing", - "tracing-subscriber", -] - -[[package]] -name = "tracing-subscriber" -version = "0.3.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" -dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "parking_lot 0.12.1", - "regex", - "sharded-slab", - "smallvec", - "thread_local", - "tracing", - "tracing-core", -] - -[[package]] -name = "triehash" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1631b201eb031b563d2e85ca18ec8092508e262a3196ce9bd10a67ec87b9f5c" -dependencies = [ - "hash-db", - "rlp", -] - -[[package]] -name = "triomphe" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" - -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - -[[package]] -name = "typenum" -version = "1.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" - -[[package]] -name = "ucd-trie" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" - -[[package]] -name = "uint" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" -dependencies = [ - "byteorder", - "crunchy", - "hex", - "static_assertions", -] - -[[package]] -name = "unarray" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" - -[[package]] -name = "unicase" -version = "2.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] - -[[package]] -name = "unicode-bidi" -version = "0.3.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" - -[[package]] -name = "unicode-ident" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" - -[[package]] -name = "unicode-normalization" -version = "0.1.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" -dependencies = [ - "tinyvec", -] - -[[package]] -name = "unicode-segmentation" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" - -[[package]] -name = "unicode-width" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" - -[[package]] -name = "unicode-xid" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" - -[[package]] -name = "url" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", -] - -[[package]] -name = "uuid" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" -dependencies = [ - "getrandom", -] - -[[package]] -name = "valuable" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - -[[package]] -name = "wait-timeout" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" -dependencies = [ - "libc", -] - -[[package]] -name = "walkdir" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" -dependencies = [ - "same-file", - "winapi-util", -] - -[[package]] -name = "want" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" -dependencies = [ - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" - -[[package]] -name = "wasm-bindgen" -version = "0.2.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.58", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" -dependencies = [ - "cfg-if", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" - -[[package]] -name = "wasm-timer" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" -dependencies = [ - "futures", - "js-sys", - "parking_lot 0.11.2", - "pin-utils", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "web-sys" -version = "0.3.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" -dependencies = [ - "winapi", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows-core" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" -dependencies = [ - "windows-targets 0.52.4", -] - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets 0.48.5", -] - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets 0.52.4", -] - -[[package]] -name = "windows-targets" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" -dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", -] - -[[package]] -name = "windows-targets" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" -dependencies = [ - "windows_aarch64_gnullvm 0.52.4", - "windows_aarch64_msvc 0.52.4", - "windows_i686_gnu 0.52.4", - "windows_i686_msvc 0.52.4", - "windows_x86_64_gnu 0.52.4", - "windows_x86_64_gnullvm 0.52.4", - "windows_x86_64_msvc 0.52.4", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" - -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - -[[package]] -name = "winreg" -version = "0.50.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - -[[package]] -name = "wyz" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" -dependencies = [ - "tap", -] - -[[package]] -name = "zerocopy" -version = "0.7.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.7.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] - -[[package]] -name = "zeroize" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" -dependencies = [ - "zeroize_derive", -] - -[[package]] -name = "zeroize_derive" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.58", -] diff --git a/Cargo.toml b/Cargo.toml deleted file mode 100644 index 1c2772e7b5..0000000000 --- a/Cargo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[workspace] -members = [ - "crates/*", -] -resolver = "2" - -[profile.dev] -rpath = true - -[profile.release] -rpath = true - -[profile.test] -opt-level = 2 diff --git a/book/.gitignore b/book/.gitignore deleted file mode 100644 index 5a0bf0317d..0000000000 --- a/book/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/book diff --git a/book/book.toml b/book/book.toml deleted file mode 100644 index c2b719fc6e..0000000000 --- a/book/book.toml +++ /dev/null @@ -1,6 +0,0 @@ -[book] -authors = ["Wodann"] -language = "en" -multilingual = false -src = "src" -title = "EDR - Ethereum Development Runtime" diff --git a/book/src/00_introduction.md b/book/src/00_introduction.md deleted file mode 100644 index cac94d0677..0000000000 --- a/book/src/00_introduction.md +++ /dev/null @@ -1,8 +0,0 @@ -# Introduction - -> Note: EDR and this book are currently under active development. -> Any and all content of this book is not final and may still change. - -The Ethereum Development Runtime (or EDR) is an Ethereum development runtime library - written in Rust - with bindings for the Node API (TypeScript). -Its goal is to provide a performant API for developer tooling, such as an EVM debugger or state inspector. - diff --git a/book/src/01_getting_started.md b/book/src/01_getting_started.md deleted file mode 100644 index d6e7fe59d0..0000000000 --- a/book/src/01_getting_started.md +++ /dev/null @@ -1,4 +0,0 @@ -# Getting Started - - -Let's start your EDR journey by setting up your workspace and running your first build. diff --git a/book/src/01_getting_started/01_setup.md b/book/src/01_getting_started/01_setup.md deleted file mode 100644 index 2f9f704651..0000000000 --- a/book/src/01_getting_started/01_setup.md +++ /dev/null @@ -1,29 +0,0 @@ -# Setup - -## Dev Container - -To make the developer experience as seamless and consistent as possible, we recommend using the VS Code [devcontainer](https://github.com/NomicFoundation/slang/tree/main/.devcontainer) included in this repository. -It is a light image that uses a script to install the minimum required tools to build this project. -If you are not familiar with containerized development, we recommend taking a look at [the official VS Code guide](https://code.visualstudio.com/docs/remote/containers). -Using a devcontainer allows us to quickly setup the environment and install different dependencies for different projects, without polluting the local environment. -In the future, it will enable us to include Windows and Mac OS specific images for cross-platform testing. - -## Automated - -If you would like to develop outside a container, you can use the automated setup method provided for your platform. - -### Linux - -Run the `scripts/setup.sh` script. This script is intended to be reused by the devcontainer and CI. - -### MacOS - -If you're using the [Homebrew](https://brew.sh/) package manager, run `brew bundle` from the repo root. This command will install the dependencies listed in the [`Brewfile`](../../../Brewfile). - -## Manual - -If you would like to set up the environment manually, you will need to install the following dependencies: - -- Install Rust using [rustup](https://www.rust-lang.org/tools/install) -- [NodeJS 18](https://nodejs.org/en) -- [pnpm](https://pnpm.io/installation) diff --git a/book/src/01_getting_started/02_build.md b/book/src/01_getting_started/02_build.md deleted file mode 100644 index fcddc8afaa..0000000000 --- a/book/src/01_getting_started/02_build.md +++ /dev/null @@ -1,17 +0,0 @@ -# Build - -EDR exists in a mono-repo, together with Hardhat. -Moreover, it's EDR is a dependency for Hardhat, so in order to build Hardhat with EDR its build process has been combined. - -To get started, install all dependencies in the root directory: - -```bash -pnpm install -``` - -Then navigate to the Hardhat Core directory and build Hardhat with EDR: - -```bash -cd packages/hardhat-core && -pnpm build -``` diff --git a/book/src/01_getting_started/03_test.md b/book/src/01_getting_started/03_test.md deleted file mode 100644 index 82080091bc..0000000000 --- a/book/src/01_getting_started/03_test.md +++ /dev/null @@ -1,81 +0,0 @@ -# Test - -Functionality in EDR is tested in two ways: - -1. Rust unit & integration tests -2. End-to-end (E2E) tests of EDR in Hardhat - -As EDR matures, we will gradually be moving over Hardhat E2E tests to granular unit & integration tests in EDR. - -## EDR - -Part of EDR's test suite requires a working internet connection. -Those tests are marked with the `test-remote` feature flag. -EDR uses both Alchemy and Infura as Ethereum mainnet providers for its remote tests. -This requires their API URLs (including token) to be set in the `ALCHEMY_URL` and `INFURA_URL` environment variables. - -To run all tests, including remote tests, execute: - -```bash -cargo t --all-features -``` - -To only run local tests, execute: - -```bash -cargo t --features bench-once,serde,std,tracing -``` - -The `bench-once` feature flag is used to ensure that benchmarks only run one iteration, to avoid taking too long. - -## Hardhat - -To validate that the port of Hardhat Node to EDR did not break any functionality, we implemented the EDR integration alongside the existing TypeScript code. -Each system in hidden behind an interface that allows us to either execute the original Hardhat implementation, EDR, or a dual-mode adapter that executes both implementations side-by-side and asserts that outputs are equal. - -To switch modes, set the `HARDHAT_EXPERIMENTAL_VM_MODE` environment variable to one of: `ethereumjs`, `edr` (for EDR), or `dual` (default). E.g.: - -```bash -cd packages/hardhat-core && -pnpm build && -HARDHAT_EXPERIMENTAL_VM_MODE=edr pnpm test -``` - -Similar to EDR, Hardhat can be configured to run remote tests. This can be accomplished by setting environment variables for the API URL (including token) of Alchemy or Infura, respectively: `ALCHEMY_URL` and `INFURA_URL`. - -Additionally, you can test Hardhat by using the EDR node as a provider directly. To enable the provider, set the `EDR_BINARY` environment variable to direct to the `edr` CLI binary. - -### Filtering Tests - -Specific tests can be executed by filtering with the `--grep` or `-g` flag. E.g.: - -```bash -pnpm test -- -g "Reads from disk if available, not making any request a request" -``` - -will only run the test with this specific name. - -Hierarchies of tests can be filtered by separating the levels with spaces. -E.g. the test matching - -``` -Alchemy Forked provider - hardhat_impersonateAccount - hash collisions -``` - -can be run by using the following command: - -```bash -pnpm test -- -g "Alchemy Forked provider hardhat_impersonateAccount hash collisions" -``` - -### Debugging - -A Rust stack trace can be generated by adding the following line to a function in the `edr_revm` crate: - -```rust -println!("{}", std::backtrace::Backtrace::force_capture()); -``` - -In order to make it work for other crates, add the `backtrace` crate to the development dependencies. diff --git a/book/src/01_getting_started/04_benchmark.md b/book/src/01_getting_started/04_benchmark.md deleted file mode 100644 index e2b06726a3..0000000000 --- a/book/src/01_getting_started/04_benchmark.md +++ /dev/null @@ -1,64 +0,0 @@ -# Benchmark - -We take two approaches to benchmarking EDR: - -1. Automated benchmarks using `criterion` -2. Manual benchmarks using repositories of dependants - -## Automated - -## Manual - -To measure real-world performance, we use a build of [Hardhat](https://github.com/NomicFoundation/hardhat) with EDR in third-party projects. -To make a local build of Hardhat available for linking in other packages, run: - -```bash -cd packages/hardhat-core && -pnpm build && -npm link -``` - -For this example we will use [openzeppelin-contracts](https://github.com/OpenZeppelin/openzeppelin-contracts): - -```bash -git clone https://github.com/OpenZeppelin/openzeppelin-contracts.git && -cd openzeppelin-contracts && -npm install -``` - -To use your local hardhat build in a third-party project, run: - -```bash -npm link hardhat -``` - -To validate that this worked, you can run: - -```bash -file node_modules/hardhat -``` - -The expected output will look similar to this: - -```bash -node_modules/hardhat: symbolic link to ../../hardhat/packages/hardhat-core -``` - -To prevent the benchmark from being tainted by smart contract compilation, we first run: - -```bash -npx hardhat compile -``` - -Finally, to benchmark the third-party project, we time its test suite. -For example: - -```bash -time npx hardhat test -``` - -Resulting in output similar to: - -```bash -npx hardhat test 68.99s user 9.59s system 130% cpu 1:00.40 total -``` diff --git a/book/src/01_getting_started/05_profiling.md b/book/src/01_getting_started/05_profiling.md deleted file mode 100644 index 80bceb209a..0000000000 --- a/book/src/01_getting_started/05_profiling.md +++ /dev/null @@ -1,26 +0,0 @@ -# Profiling - -```bash -pnpm build:tracing -``` - -When you now run `edr`, it will generate a `tracing.folded` file in the current working directory. -Once the profiling run has completed, we can use [`inferno`](https://docs.rs/tracing-flame/latest/tracing_flame/#generating-the-image) to generate flamegraphs from the collected data. -To install `inferno`, run: - -```bash -cargo install inferno -``` - -When we want to analyze the run with its exact order preserved, run: - -```bash -cat tracing.folded | inferno-flamegraph --flamechart > tracing-flamechart.svg -``` - - -Alternatively, when we don't care about those details, a flamegraph with identical stack frames collapsed can be generated by running: - -```bash -cat tracing.folded | inferno-flamegraph > tracing-flamegraph.svg -``` diff --git a/book/src/02_development.md b/book/src/02_development.md deleted file mode 100644 index bfbea8183d..0000000000 --- a/book/src/02_development.md +++ /dev/null @@ -1,3 +0,0 @@ -# Development - -Development tips and tricks. diff --git a/book/src/02_development/01_tools.md b/book/src/02_development/01_tools.md deleted file mode 100644 index be7f879e4a..0000000000 --- a/book/src/02_development/01_tools.md +++ /dev/null @@ -1,65 +0,0 @@ -# Tools - -The `tools` crate contains various utilities useful for development. - -## Benchmarking - -Run the hardhat test command in a repo 5 times and report the times it took: - -```bash -# From the repo root - cargo run --bin tools benchmark -i 5 /repo/path -t "npx hardhat test" -``` - -## Compare test run execution times - -Create a provider test execution report for the base branch: - -```bash -# From packages/hardhat-core in the base branch -pnpm build && pnpm test:provider -- --reporter json | tee base-test-provider-logs.json -``` - -Create a provider test execution report for the candidate branch: - -```bash -# From packages/hardhat-core in the candidate branch -pnpm build && pnpm test:provider -- --reporter json | tee candidate-test-provider-logs.json -``` - -Generate a comparison report that will list slower tests in the candidate branch: - -```bash -# From the repo root -cargo run --bin tools compare-test-runs base-test-provider-logs.json candidate-test-provider-logs.json > comparisions.txt -``` - -## Scenarios - -Scenarios can be used to collect and replay RPC requests which is useful for performance analysis. -Only those requests will be collected that can be successfully deserialized. - -### Collect scenario - -1. Compile `edr_napi` with the `scenarios` feature -2. Set `EDR_SCENARIO_PREFIX` to the desired prefix for the scenario file name. -3. Execute a test suite with the `EDR_SCENARIO_PREFIX` environment variable set and the freshly compiled `edr_napi` version. -4. The scenario file will be written to the current working directory with the desired file name prefix. -5. Optionally, compress the scenario file `gzip -k `. (The `-k` option preserves the original file, omit it if you want it deleted.) - -## Rust runner - -### Run scenario - -```bash -# From the repo root -cargo run --bin tools --release scenario -``` - -The scenario runner supports both compressed and uncompressed scenario files. - -The reported running time excludes reading the requests from disk and parsing them. - -## JS runner - -Please see the [readme](../../../crates/tools/js/benchmark/README.md) for instructions. diff --git a/book/src/02_development/02_verdaccio.md b/book/src/02_development/02_verdaccio.md deleted file mode 100644 index f2464044d7..0000000000 --- a/book/src/02_development/02_verdaccio.md +++ /dev/null @@ -1,26 +0,0 @@ -# Verdaccio - -[Verdaccio](https://verdaccio.org/) is a private npm registry that can be used locally. -It’s useful to test things related to publishing without actually publishing, or to just test changes in a more realistic way than linking a package but with less friction than packing a `.tar.gz` and installing it. - -## Installation - -`npm i -g verdaccio` - -## Usage - -1. In one terminal, run `verdaccio` -2. In another terminal login with `pnpm login --registry=http://localhost:4873/`. Any user and password will do. -3. Publish your package by passing the verdaccio registry as a parameter: `pnpm publish --registry=http://localhost:4873/`. -4. Go to the project where you want to test and install the package with `npm i your-package --registry=http://localhost:4873/`. - -> Note: Read [Local Release](./03_local_release.md) on special instructions for publishing EDR NPM packages using Verdaccio. - -## Updating a package - -If after publishing to `verdaccio` you want to make some changes and try them, you’ll have to publish the package with a new version and then run `npm i your-package@latest --registry=http://localhost:4873/` in the test project. - -# Resetting Verdaccio - -1. Stop the `verdaccio` server -2. Delete the `verdaccio` storage directory which is `~/.local/share/verdaccio/storage` by default on UNIX platforms. diff --git a/book/src/02_development/03_local_release.md b/book/src/02_development/03_local_release.md deleted file mode 100644 index f91a3479b5..0000000000 --- a/book/src/02_development/03_local_release.md +++ /dev/null @@ -1,10 +0,0 @@ -# Local release - -These are instructions for releasing the [EDR NPM package](../../crates/edr_napi/package.json) locally for debugging purposes. - -1. Install and start [Verdaccio](./02_verdaccio.md). -2. Go to the [edr_napi](../../crates/edr_napi/) directory. -3. Run `pnpm build`. -4. Look for the NAPI binary that was built for your platform. It has the format `edr..node`. For example on Apple Silicon Macs, it's called `edr.darwin-arm64.node`. -5. Move the NAPI binary to the appropriate platform-specific package in the [npm](../../crates/edr_napi/npm) directory. For example, on Apple Silicon Macs: `mv edr.darwin-arm64.node npm/darwin-arm64`. -6. Complete the Verdaccio [publish steps](./02_verdaccio.md#usage) in the [edr_napi](../../crates/edr_napi/) directory. You can ignore the warnings about not finding NAPI binaries for other platforms. diff --git a/book/src/02_development/04_update_napi_targets.md b/book/src/02_development/04_update_napi_targets.md deleted file mode 100644 index 04800909a6..0000000000 --- a/book/src/02_development/04_update_napi_targets.md +++ /dev/null @@ -1,21 +0,0 @@ -First, install `@napi-rs/cli`: - -```bash -npm -g i @napi-rs/cli -``` - -Then follow the steps in [this document](https://napi.rs/docs/introduction/simple-package) to generate a package with the desired supported target triples. - -You will be prompted for several inputs. -Use the package name `@nomicfoundation/edr` and select the desired target triples. - -Once done, replace the `napi.triples.additional` entries in `crates/edr_napi/package.json` with the values in the generated `package.json` and replace `crates/edr_napi/npm` with the generated `npm` folder. - -Ensure that the `version` field of all `npm/*/package.json` files is set to the latest release and `engines.node` to the minimum supported version. - -Finally, to update the `index.js`, run: - -```bash -cd crates/edr_napi && -pnpm build -``` diff --git a/book/src/03_release.md b/book/src/03_release.md deleted file mode 100644 index 258cea83a0..0000000000 --- a/book/src/03_release.md +++ /dev/null @@ -1,7 +0,0 @@ -# Release - -Releasing the [EDR NPM package](../../crates/edr_napi/package.json) is handled by the [EDR NPM release](../../.github/workflows/edr-npm-release.yml) GitHub Action workflow. - -A new release is created automatically on commits to the `main` branch that follow the following format: `edr-0.1.0` for releases or `edr-0.1.0-alpha.1` for pre-releases. - -Prior to making such a commit, the version number in the [package.json](../../crates/edr_napi/package.json) of the main package and the platform-specific packages in the [npm](../../crates/edr_napi/npm) directory need to be manually adjusted. diff --git a/book/src/99_contributing.md b/book/src/99_contributing.md deleted file mode 100644 index cf8dc7e8a1..0000000000 --- a/book/src/99_contributing.md +++ /dev/null @@ -1,36 +0,0 @@ -# Contributing - -When contributing to the book, please make sure to only put one sentence per line, to simplify git diffs. - -## Commit Messages - -We follow the [Conventional Commits](https://www.conventionalcommits.org) convention for commit messages. - -> The Conventional Commits specification is a lightweight convention on top of commit messages. -> It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. - -## Pull Requests - -When merging a pull request, we employ the "squash and merge" strategy. -By default, the generated commit header will reuse the pull request's title. -To this end, make sure to use the Conventional Commits convention for the pull request title as well. - -### Merging - -When your pull request has been approved, ensure that the generated commit body is compliant with the Conventional Commits convention before merging. -This includes ensuring that any work-in-progress commit messages are removed. -Mentions of co-authors should be retained. - -For example: - -```bash -# Commit description -feat: allow provided config object to extend other configs - -# Commit body -BREAKING CHANGE: `extends` key in config file is now used for extending other config files - ---------- - -Co-authored-by: Wodann -``` diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md deleted file mode 100644 index a5be880ce6..0000000000 --- a/book/src/SUMMARY.md +++ /dev/null @@ -1,18 +0,0 @@ -# Summary - -- [Introduction](./00_introduction.md) - -- [Getting Started](./01_getting_started.md) - - [Setup](./01_getting_started/01_setup.md) - - [Build](./01_getting_started/02_build.md) - - [Test](./01_getting_started/03_test.md) - -- [Development](./02_development.md) - - [Tools](02_development/01_tools.md) - - [Verdaccio](02_development/02_verdaccio.md) - - [Local release](02_development/03_local_release.md) - - [Update N-API targets](02_development/04_update_napi_targets.md) - -- [Release](./03_release.md) - -- [Contributing](./99_contributing.md) diff --git a/crates/README.md b/crates/README.md deleted file mode 100644 index a6517c32d5..0000000000 --- a/crates/README.md +++ /dev/null @@ -1,44 +0,0 @@ -# EDR - -[licence-badge]: https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue -[license]: COPYRIGHT - -**EDR** is a debugging runtime for the Ethereum Virtual Machine (or EVM). It can be consumed as a Rust or as a Node.js native module. - -## Building from Source - -Make sure you have the following dependencies installed on your machine: - -- [Rust](https://www.rust-lang.org/tools/install) - -EDR is part of the [Hardhat monorepo](https://github.com/NomicFoundation/hardhat). Clone the source code using ssh: - -```bash -git clone git@github.com:NomicFoundation/hardhat.git -``` - -or https: - -```bash -git clone https://github.com/NomicFoundation/hardhat.git -``` - -Use `cargo` to build a release version: - -```bash -cd hardhat -cargo build --release -``` - -## Building a Node.js native module - -Make sure you have the following dependencies installed on your machine: - -- [node.js](https://nodejs.org) - -Use `pnpm` to build a release version: - -```bash -cd crates/edr_napi -pnpm build -``` diff --git a/crates/edr_defaults/Cargo.toml b/crates/edr_defaults/Cargo.toml deleted file mode 100644 index d81d59951e..0000000000 --- a/crates/edr_defaults/Cargo.toml +++ /dev/null @@ -1,6 +0,0 @@ -[package] -name = "edr_defaults" -version = "0.3.5" -edition = "2021" - -[dependencies] diff --git a/crates/edr_defaults/src/lib.rs b/crates/edr_defaults/src/lib.rs deleted file mode 100644 index b688f85632..0000000000 --- a/crates/edr_defaults/src/lib.rs +++ /dev/null @@ -1,38 +0,0 @@ -/// The default secret keys from which the local accounts will be derived. -pub const SECRET_KEYS: [&str; 20] = [ - // these were taken from the standard output of a run of `hardhat node` - "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80", - "59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d", - "5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a", - "7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6", - "47e179ec197488593b187f80a00eb0da91f1b9d0b13f8733639f19c30a34926a", - "8b3a350cf5c34c9194ca85829a2df0ec3153be0318b5e2d3348e872092edffba", - "92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e", - "4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356", - "dbda1821b80551c9d65939329250298aa3472ba22feea921c0cf5d620ea67b97", - "2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6", - "f214f2b2cd398c806f84e317254e0f0b801d0643303237d97a22a48e01628897", - "701b615bbdfb9de65240bc28bd21bbc0d996645a3dd57e7b12bc2bdf6f192c82", - "a267530f49f8280200edf313ee7af6b827f2a8bce2897751d06a843f644967b1", - "47c99abed3324a2707c28affff1267e45918ec8c3f20b8aa892e8b065d2942dd", - "c526ee95bf44d8fc405a158bb884d9d1238d99f0612e9f33d006bb0789009aaa", - "8166f546bab6da521a8369cab06c5d2b9e46670292d85c875ee9ec20e84ffb61", - "ea6c44ac03bff858b476bba40716402b03e41b8e97e276d1baec7c37d42484a0", - "689af8efa8c651a91ad287602527f3af2fe9f6501a7ac4b061667b5a93e037fd", - "de9be858da4a475276426320d5e9262ecfc3ba460bfac56360bfa6c4c28b4ee0", - "df57089febbacf7ba0bc227dafbffa9fc08a93fdc68e1e42411a14efcf23656e", -]; - -/// The default cache directory. Cache dirs for specific subsystems such as the -/// RPC Client are subdirectories of this directory. -pub const CACHE_DIR: &str = "./edr-cache"; - -/// Maximum concurrent requests to a remote blockchain node to avoid getting -/// rate limited. -pub const MAX_CONCURRENT_REQUESTS: usize = 5; - -/// Seed value for the generator of mix hashes. -pub const MIX_HASH_SEED: &str = "randomMixHashSeed"; - -/// Seed value for the generator of state root hashes. -pub const STATE_ROOT_HASH_SEED: &str = "seed"; diff --git a/crates/edr_eth/Cargo.toml b/crates/edr_eth/Cargo.toml deleted file mode 100644 index 70ce4c0f1a..0000000000 --- a/crates/edr_eth/Cargo.toml +++ /dev/null @@ -1,54 +0,0 @@ -[package] -name = "edr_eth" -version = "0.3.5" -edition = "2021" - -[dependencies] -anyhow = "1.0.75" -alloy-rlp = { version = "0.3", default-features = false, features = ["derive"] } -futures = { version = "0.3.28", default-features = false } -hash-db = { version = "0.15.2", default-features = false } -hash256-std-hasher = { version = "0.15.2", default-features = false } -hashbrown = { version = "0.14.3", default-features = false, features = ["ahash", "allocator-api2", "inline-more"] } -hex = { version = "0.4.3", default-features = false, features = ["alloc"] } -hyper = { version = "0.14.27", default-features = false } -itertools = { version = "0.10.5", default-features = false, features = ["use_alloc"] } -k256 = { version = "0.13.1", default-features = false, features = ["arithmetic", "ecdsa", "pkcs8", ] } -lazy_static = { version = "1.4.0", default-features = false } -log = { version = "0.4.17", default-features = false } -reqwest = { version = "0.11", features = ["blocking", "json"] } -reqwest-middleware = { version = "0.2.4", default-features = false } -reqwest-retry = { version = "0.3.0", default-features = false } -reqwest-tracing = { version = "0.4.7", default-features = false, optional = true } -revm-primitives = { git = "https://github.com/Wodann/revm", rev = "451f122", version = "3.1", default-features = false, features = ["hashbrown"] } -serde = { version = "1.0.147", default-features = false, features = ["derive"], optional = true } -serde_json = { version = "1.0.89", optional = true } -sha3 = { version = "0.10.8", default-features = false } -thiserror = { version = "1.0.37", default-features = false } -tokio = { version = "1.21.2", default-features = false, features = ["fs", "sync"] } -tracing = { version = "0.1.37", features = ["attributes", "std"], optional = true } -triehash = { version = "0.8.4", default-features = false } -uuid = { version = "1.4.1", default-features = false, features = ["v4"] } -url = "2.4.1" -regex = "1.10.0" - -[dev-dependencies] -anyhow = "1.0.75" -assert-json-diff = "2.0.2" -edr_defaults = { version = "0.3.5", path = "../edr_defaults" } -lazy_static = "1.4.0" -mockito = { version = "1.0.2", default-features = false } -paste = { version = "1.0.14", default-features = false } -edr_test_utils = { version = "0.3.5", path = "../edr_test_utils" } -serial_test = "2.0.0" -tempfile = { version = "3.7.1", default-features = false } -tokio = { version = "1.23.0", features = ["macros"] } -walkdir = { version = "2.3.3", default-features = false } - -[features] -default = ["std"] -rand = ["revm-primitives/rand"] -serde = ["dep:serde", "revm-primitives/serde", "serde_json"] -std = ["futures/std", "hash256-std-hasher/std", "hash-db/std", "hex/std", "itertools/use_std", "k256/std", "k256/precomputed-tables", "revm-primitives/std", "serde?/std", "sha3/std", "triehash/std", "uuid/std"] -tracing = ["dep:tracing", "reqwest-tracing"] -test-remote = ["serde"] diff --git a/crates/edr_eth/src/access_list.rs b/crates/edr_eth/src/access_list.rs deleted file mode 100644 index 9790b3ea6b..0000000000 --- a/crates/edr_eth/src/access_list.rs +++ /dev/null @@ -1,81 +0,0 @@ -// Part of this code was adapted from ethers-rs and is distributed under their -// license: -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-APACHE -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-MIT -// For the original context see: https://github.com/gakonst/ethers-rs/blob/3d9c3290d42b77c510e5b5d0b6f7a2f72913bfff/ethers-core/src/types/transaction/eip2930.rs - -use alloy_rlp::{RlpDecodable, RlpDecodableWrapper, RlpEncodable, RlpEncodableWrapper}; - -use crate::{Address, B256, U256}; - -/// Access list -// NB: Need to use `RlpEncodableWrapper` else we get an extra [] in the output -// https://github.com/gakonst/ethers-rs/pull/353#discussion_r680683869 -#[derive(Debug, Default, Clone, PartialEq, Eq, Hash, RlpDecodableWrapper, RlpEncodableWrapper)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct AccessList(pub Vec); - -impl From> for AccessList { - fn from(src: Vec) -> AccessList { - AccessList(src) - } -} - -impl From for Vec { - fn from(src: AccessList) -> Vec { - src.0 - } -} - -/// Access list item -#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct AccessListItem { - /// Accessed address - pub address: Address, - /// Accessed storage keys - // In JSON, we have to accept null as well for storage key, but we don't want to change the - // type to Option> as that's invalid in RLP. - #[cfg_attr( - feature = "serde", - serde(deserialize_with = "crate::serde::optional_to_default") - )] - pub storage_keys: Vec, -} - -impl From for (Address, Vec) { - fn from(value: AccessListItem) -> Self { - ( - value.address, - value - .storage_keys - .into_iter() - .map(|key| U256::from_be_bytes(key.0)) - .collect(), - ) - } -} - -impl From for Vec<(Address, Vec)> { - fn from(value: AccessList) -> Self { - value.0.into_iter().map(AccessListItem::into).collect() - } -} - -#[cfg(all(test, feature = "serde"))] -mod tests { - use serde_json::json; - - use super::*; - - #[test] - fn access_list_item() { - let item_json = json!( { - "address": "0x1234567890123456789012345678901234567890", - "storageKeys": null, - }); - - let _item: AccessListItem = serde_json::from_value(item_json).unwrap(); - } -} diff --git a/crates/edr_eth/src/account.rs b/crates/edr_eth/src/account.rs deleted file mode 100644 index ffcb83a5fe..0000000000 --- a/crates/edr_eth/src/account.rs +++ /dev/null @@ -1,58 +0,0 @@ -// Part of this code was adapted from foundry and is distributed under their -// license: -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT -// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/proof.rs - -//! Ethereum account types - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -pub use revm_primitives::KECCAK_EMPTY; - -use crate::{trie::KECCAK_NULL_RLP, AccountInfo, B256, U256}; - -/// Basic account type. -#[derive(Debug, Clone, PartialEq, Eq, RlpDecodable, RlpEncodable)] -pub struct BasicAccount { - /// Nonce of the account. - pub nonce: u64, - /// Balance of the account. - pub balance: U256, - /// Storage root of the account. - pub storage_root: B256, - /// Code hash of the account. - pub code_hash: B256, -} - -impl Default for BasicAccount { - fn default() -> Self { - BasicAccount { - balance: U256::ZERO, - nonce: 0, - code_hash: KECCAK_EMPTY, - storage_root: KECCAK_NULL_RLP, - } - } -} - -impl From for AccountInfo { - fn from(account: BasicAccount) -> Self { - Self { - balance: account.balance, - nonce: account.nonce, - code_hash: account.code_hash, - code: None, - } - } -} - -impl From<(&AccountInfo, B256)> for BasicAccount { - fn from((account_info, storage_root): (&AccountInfo, B256)) -> Self { - Self { - nonce: account_info.nonce, - balance: account_info.balance, - storage_root, - code_hash: account_info.code_hash, - } - } -} diff --git a/crates/edr_eth/src/beacon.rs b/crates/edr_eth/src/beacon.rs deleted file mode 100644 index add97dec53..0000000000 --- a/crates/edr_eth/src/beacon.rs +++ /dev/null @@ -1,5 +0,0 @@ -/// The address of the beacon roots contract. -pub const BEACON_ROOTS_ADDRESS: &str = "0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"; - -/// The bytecode of the beacon roots contract. -pub const BEACON_ROOTS_BYTECODE: &str = "0x3373fffffffffffffffffffffffffffffffffffffffe14604d57602036146024575f5ffd5b5f35801560495762001fff810690815414603c575f5ffd5b62001fff01545f5260205ff35b5f5ffd5b62001fff42064281555f359062001fff015500"; diff --git a/crates/edr_eth/src/block.rs b/crates/edr_eth/src/block.rs deleted file mode 100644 index 7d68845cce..0000000000 --- a/crates/edr_eth/src/block.rs +++ /dev/null @@ -1,606 +0,0 @@ -// Part of this code was adapted from foundry and is distributed under their -// licenss: -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT -// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/block.rs - -mod difficulty; -mod options; -mod reorg; -mod reward; - -use alloy_rlp::{BufMut, Decodable, RlpDecodable, RlpEncodable}; -use revm_primitives::{calc_excess_blob_gas, keccak256}; - -use self::difficulty::calculate_ethash_canonical_difficulty; -pub use self::{ - options::BlockOptions, - reorg::{ - block_time, is_safe_block_number, largest_safe_block_number, safe_block_depth, - IsSafeBlockNumberArgs, LargestSafeBlockNumberArgs, - }, - reward::miner_reward, -}; -use crate::{trie::KECCAK_NULL_RLP, Address, Bloom, Bytes, SpecId, B256, B64, U256}; - -/// ethereum block header -#[derive(Clone, Debug, Default, PartialEq, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -#[rlp(trailing)] -pub struct Header { - /// The parent block's hash - pub parent_hash: B256, - /// The ommers' root hash - pub ommers_hash: B256, - /// The block's beneficiary address - pub beneficiary: Address, - /// The state's root hash - pub state_root: B256, - /// The transactions' root hash - pub transactions_root: B256, - /// The receipts' root hash - pub receipts_root: B256, - /// The logs' bloom - pub logs_bloom: Bloom, - /// The block's difficulty - pub difficulty: U256, - /// The block's number - pub number: u64, - /// The block's gas limit - pub gas_limit: u64, - /// The amount of gas used by the block - pub gas_used: u64, - /// The block's timestamp - pub timestamp: u64, - /// The block's extra data - pub extra_data: Bytes, - /// The block's mix hash - pub mix_hash: B256, - /// The block's nonce - // #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: B64, - /// BaseFee was added by EIP-1559 and is ignored in legacy headers. - pub base_fee_per_gas: Option, - /// WithdrawalsHash was added by EIP-4895 and is ignored in legacy headers. - pub withdrawals_root: Option, - /// Blob gas was added by EIP-4844 and is ignored in older headers. - #[cfg_attr(feature = "serde", serde(flatten))] - pub blob_gas: Option, - /// The hash tree root of the parent beacon block for the given execution - /// block (EIP-4788). - pub parent_beacon_block_root: Option, -} - -/// Information about the blob gas used in a block. -#[derive(Clone, Debug, Default, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct BlobGas { - /// The total amount of blob gas consumed by the transactions within the - /// block. - pub gas_used: u64, - /// The running total of blob gas consumed in excess of the target, prior to - /// the block. Blocks with above-target blob gas consumption increase this - /// value, blocks with below-target blob gas consumption decrease it - /// (bounded at 0). - pub excess_gas: u64, -} - -// We need a custom implementation to avoid the struct being treated as an RLP -// list. -impl Decodable for BlobGas { - fn decode(buf: &mut &[u8]) -> alloy_rlp::Result { - let blob_gas = Self { - gas_used: u64::decode(buf)?, - excess_gas: u64::decode(buf)?, - }; - - Ok(blob_gas) - } -} - -// We need a custom implementation to avoid the struct being treated as an RLP -// list. -impl alloy_rlp::Encodable for BlobGas { - fn encode(&self, out: &mut dyn BufMut) { - self.gas_used.encode(out); - self.excess_gas.encode(out); - } - - fn length(&self) -> usize { - self.gas_used.length() + self.excess_gas.length() - } -} - -impl Header { - /// Constructs a header from the provided [`PartialHeader`], ommers' root - /// hash, transactions' root hash, and withdrawals' root hash. - pub fn new( - partial_header: PartialHeader, - ommers_hash: B256, - transactions_root: B256, - withdrawals_root: Option, - ) -> Self { - Self { - parent_hash: partial_header.parent_hash, - ommers_hash, - beneficiary: partial_header.beneficiary, - state_root: partial_header.state_root, - transactions_root, - receipts_root: partial_header.receipts_root, - logs_bloom: partial_header.logs_bloom, - difficulty: partial_header.difficulty, - number: partial_header.number, - gas_limit: partial_header.gas_limit, - gas_used: partial_header.gas_used, - timestamp: partial_header.timestamp, - extra_data: partial_header.extra_data, - mix_hash: partial_header.mix_hash, - nonce: partial_header.nonce, - base_fee_per_gas: partial_header.base_fee, - withdrawals_root, - blob_gas: partial_header.blob_gas, - parent_beacon_block_root: partial_header.parent_beacon_block_root, - } - } - - /// Calculates the block's hash. - pub fn hash(&self) -> B256 { - let encoded = alloy_rlp::encode(self); - keccak256(encoded) - } -} - -/// Partial header definition without ommers hash and transactions root -#[derive(Clone, Debug, PartialEq, Eq)] -pub struct PartialHeader { - /// The parent block's hash - pub parent_hash: B256, - /// The block's beneficiary address - pub beneficiary: Address, - /// The state's root hash - pub state_root: B256, - /// The receipts' root hash - pub receipts_root: B256, - /// The logs' bloom - pub logs_bloom: Bloom, - /// The block's difficulty - pub difficulty: U256, - /// The block's number - pub number: u64, - /// The block's gas limit - pub gas_limit: u64, - /// The amount of gas used by the block - pub gas_used: u64, - /// The block's timestamp - pub timestamp: u64, - /// The block's extra data - pub extra_data: Bytes, - /// The block's mix hash - pub mix_hash: B256, - /// The block's nonce - pub nonce: B64, - /// BaseFee was added by EIP-1559 and is ignored in legacy headers. - pub base_fee: Option, - /// Blob gas was added by EIP-4844 and is ignored in older headers. - pub blob_gas: Option, - /// The hash tree root of the parent beacon block for the given execution - /// block (EIP-4788). - pub parent_beacon_block_root: Option, -} - -impl PartialHeader { - /// Constructs a new instance based on the provided [`BlockOptions`] and - /// parent [`Header`] for the given [`SpecId`]. - pub fn new(spec_id: SpecId, options: BlockOptions, parent: Option<&Header>) -> Self { - let timestamp = options.timestamp.unwrap_or_default(); - let number = options.number.unwrap_or({ - if let Some(parent) = &parent { - parent.number + 1 - } else { - 0 - } - }); - - let parent_hash = options.parent_hash.unwrap_or_else(|| { - if let Some(parent) = parent { - parent.hash() - } else { - B256::ZERO - } - }); - - Self { - parent_hash, - beneficiary: options.beneficiary.unwrap_or_default(), - state_root: options.state_root.unwrap_or(KECCAK_NULL_RLP), - receipts_root: KECCAK_NULL_RLP, - logs_bloom: Bloom::default(), - difficulty: options.difficulty.unwrap_or_else(|| { - if spec_id >= SpecId::MERGE { - U256::ZERO - } else if let Some(parent) = parent { - calculate_ethash_canonical_difficulty(spec_id, parent, number, timestamp) - } else { - U256::from(1) - } - }), - number, - gas_limit: options.gas_limit.unwrap_or(1_000_000), - gas_used: 0, - timestamp, - extra_data: options.extra_data.unwrap_or_default(), - mix_hash: options.mix_hash.unwrap_or_default(), - nonce: options.nonce.unwrap_or_else(|| { - if spec_id >= SpecId::MERGE { - B64::ZERO - } else { - B64::from(66u64) - } - }), - base_fee: options.base_fee.or_else(|| { - if spec_id >= SpecId::LONDON { - Some(if let Some(parent) = &parent { - calculate_next_base_fee(parent) - } else { - // Initial base fee from https://eips.ethereum.org/EIPS/eip-1559 - U256::from(1_000_000_000) - }) - } else { - None - } - }), - blob_gas: options.blob_gas.or_else(|| { - if spec_id >= SpecId::CANCUN { - let excess_gas = parent.and_then(|parent| parent.blob_gas.as_ref()).map_or( - // For the first (post-fork) block, both parent.blob_gas_used and - // parent.excess_blob_gas are evaluated as 0. - 0, - |BlobGas { - gas_used, - excess_gas, - }| calc_excess_blob_gas(*excess_gas, *gas_used), - ); - - Some(BlobGas { - gas_used: 0, - excess_gas, - }) - } else { - None - } - }), - parent_beacon_block_root: options.parent_beacon_block_root.or_else(|| { - if spec_id >= SpecId::CANCUN { - // Initial value from https://eips.ethereum.org/EIPS/eip-4788 - Some(B256::ZERO) - } else { - None - } - }), - } - } -} - -impl Default for PartialHeader { - fn default() -> Self { - const DEFAULT_GAS: u64 = 0xffffffffffffff; - - Self { - parent_hash: B256::default(), - beneficiary: Address::default(), - state_root: B256::default(), - receipts_root: KECCAK_NULL_RLP, - logs_bloom: Bloom::default(), - difficulty: U256::default(), - number: u64::default(), - gas_limit: DEFAULT_GAS, - gas_used: u64::default(), - timestamp: u64::default(), - extra_data: Bytes::default(), - mix_hash: B256::default(), - nonce: B64::default(), - base_fee: None, - blob_gas: None, - parent_beacon_block_root: None, - } - } -} - -impl From
for PartialHeader { - fn from(header: Header) -> PartialHeader { - Self { - parent_hash: header.parent_hash, - beneficiary: header.beneficiary, - state_root: header.state_root, - receipts_root: header.receipts_root, - logs_bloom: header.logs_bloom, - difficulty: header.difficulty, - number: header.number, - gas_limit: header.gas_limit, - gas_used: header.gas_used, - timestamp: header.timestamp, - extra_data: header.extra_data, - mix_hash: header.mix_hash, - nonce: header.nonce, - base_fee: header.base_fee_per_gas, - blob_gas: header.blob_gas, - parent_beacon_block_root: header.parent_beacon_block_root, - } - } -} - -/// Calculates the next base fee for a post-London block, given the parent's -/// header. -/// -/// # Panics -/// -/// Panics if the parent header does not contain a base fee. -pub fn calculate_next_base_fee(parent: &Header) -> U256 { - let elasticity = 2; - let base_fee_max_change_denominator = U256::from(8); - - let parent_gas_target = parent.gas_limit / elasticity; - let parent_base_fee = parent - .base_fee_per_gas - .expect("Post-London headers must contain a baseFee"); - - match parent.gas_used.cmp(&parent_gas_target) { - std::cmp::Ordering::Less => { - let gas_used_delta = parent_gas_target - parent.gas_used; - - let delta = parent_base_fee * U256::from(gas_used_delta) - / U256::from(parent_gas_target) - / base_fee_max_change_denominator; - - parent_base_fee.saturating_sub(delta) - } - std::cmp::Ordering::Equal => parent_base_fee, - std::cmp::Ordering::Greater => { - let gas_used_delta = parent.gas_used - parent_gas_target; - - let delta = parent_base_fee * U256::from(gas_used_delta) - / U256::from(parent_gas_target) - / base_fee_max_change_denominator; - - parent_base_fee + delta.max(U256::from(1)) - } - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use itertools::izip; - - use super::*; - use crate::trie::KECCAK_RLP_EMPTY_ARRAY; - - #[test] - fn test_calculate_next_base_fee() { - let base_fee = [ - 1000000000, 1000000000, 1000000000, 1072671875, 1059263476, 1049238967, 1049238967, 0, - 1, 2, - ]; - let gas_used = [ - 10000000, 10000000, 10000000, 9000000, 10001000, 0, 10000000, 10000000, 10000000, - 10000000, - ]; - let gas_limit = [ - 10000000, 12000000, 14000000, 10000000, 14000000, 2000000, 18000000, 18000000, - 18000000, 18000000, - ]; - let next_base_fee = [ - 1125000000, 1083333333, 1053571428, 1179939062, 1116028649, 918084097, 1063811730, 1, - 2, 3, - ]; - - for (base_fee, gas_used, gas_limit, next_base_fee) in - izip!(base_fee, gas_used, gas_limit, next_base_fee) - { - let parent_header = Header { - base_fee_per_gas: Some(U256::from(base_fee)), - gas_used, - gas_limit, - ..Default::default() - }; - - assert_eq!( - U256::from(next_base_fee), - calculate_next_base_fee(&parent_header) - ); - } - } - - #[test] - fn header_rlp_roundtrip() { - let mut header = Header { - parent_hash: B256::default(), - ommers_hash: B256::default(), - beneficiary: Address::default(), - state_root: B256::default(), - transactions_root: B256::default(), - receipts_root: B256::default(), - logs_bloom: Bloom::default(), - difficulty: U256::default(), - number: 124, - gas_limit: u64::default(), - gas_used: 1337, - timestamp: 0, - extra_data: Bytes::default(), - mix_hash: B256::default(), - nonce: B64::from(99u64), - base_fee_per_gas: None, - withdrawals_root: None, - blob_gas: None, - parent_beacon_block_root: None, - }; - - let encoded = alloy_rlp::encode(&header); - let decoded = Header::decode(&mut encoded.as_slice()).unwrap(); - assert_eq!(header, decoded); - - header.base_fee_per_gas = Some(U256::from(12345)); - - let encoded = alloy_rlp::encode(&header); - let decoded = Header::decode(&mut encoded.as_slice()).unwrap(); - assert_eq!(header, decoded); - } - - #[test] - // Test vector from: https://eips.ethereum.org/EIPS/eip-2481 - fn test_encode_block_header() { - let expected = hex::decode("f901f9a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008208ae820d0582115c8215b3821a0a827788a00000000000000000000000000000000000000000000000000000000000000000880000000000000000").unwrap(); - - let header = Header { - parent_hash: B256::ZERO, - ommers_hash: B256::ZERO, - beneficiary: Address::ZERO, - state_root: B256::ZERO, - transactions_root: B256::ZERO, - receipts_root: B256::ZERO, - logs_bloom: Bloom::ZERO, - difficulty: U256::from(0x8aeu64), - number: 0xd05u64, - gas_limit: 0x115cu64, - gas_used: 0x15b3u64, - timestamp: 0x1a0au64, - extra_data: hex::decode("7788").unwrap().into(), - mix_hash: B256::ZERO, - nonce: B64::ZERO, - base_fee_per_gas: None, - withdrawals_root: None, - blob_gas: None, - parent_beacon_block_root: None, - }; - let encoded = alloy_rlp::encode(&header); - assert_eq!(encoded, expected); - } - - #[test] - // Test vector from: https://github.com/ethereum/tests/blob/f47bbef4da376a49c8fc3166f09ab8a6d182f765/BlockchainTests/ValidBlocks/bcEIP1559/baseFee.json#L15-L36 - fn test_eip1559_block_header_hash() { - let expected_hash = - B256::from_str("0x6a251c7c3c5dca7b42407a3752ff48f3bbca1fab7f9868371d9918daf1988d1f") - .unwrap(); - let header = Header { - parent_hash: B256::from_str( - "0xe0a94a7a3c9617401586b1a27025d2d9671332d22d540e0af72b069170380f2a", - ) - .unwrap(), - ommers_hash: B256::from_str( - "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", - ) - .unwrap(), - beneficiary: Address::from_str("0xba5e000000000000000000000000000000000000").unwrap(), - state_root: B256::from_str( - "0xec3c94b18b8a1cff7d60f8d258ec723312932928626b4c9355eb4ab3568ec7f7", - ) - .unwrap(), - transactions_root: B256::from_str( - "0x50f738580ed699f0469702c7ccc63ed2e51bc034be9479b7bff4e68dee84accf", - ) - .unwrap(), - receipts_root: B256::from_str( - "0x29b0562f7140574dd0d50dee8a271b22e1a0a7b78fca58f7c60370d8317ba2a9", - ) - .unwrap(), - logs_bloom: Bloom::ZERO, - difficulty: U256::from(0x020000u64), - number: 0x01, - gas_limit: 0x016345785d8a0000, - gas_used: 0x015534, - timestamp: 0x079e, - extra_data: hex::decode("42").unwrap().into(), - mix_hash: B256::ZERO, - nonce: B64::ZERO, - base_fee_per_gas: Some(U256::from(0x036bu64)), - withdrawals_root: None, - blob_gas: None, - parent_beacon_block_root: None, - }; - assert_eq!(header.hash(), expected_hash); - } - - #[test] - // Test vector from: https://eips.ethereum.org/EIPS/eip-2481 - fn test_decode_block_header() { - let data = hex::decode("f901f9a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008208ae820d0582115c8215b3821a0a827788a00000000000000000000000000000000000000000000000000000000000000000880000000000000000").unwrap(); - - let expected = Header { - parent_hash: B256::ZERO, - ommers_hash: B256::ZERO, - beneficiary: Address::ZERO, - state_root: B256::ZERO, - transactions_root: B256::ZERO, - receipts_root: B256::ZERO, - logs_bloom: Bloom::ZERO, - difficulty: U256::from(0x8aeu64), - number: 0xd05u64, - gas_limit: 0x115cu64, - gas_used: 0x15b3u64, - timestamp: 0x1a0au64, - extra_data: hex::decode("7788").unwrap().into(), - mix_hash: B256::ZERO, - nonce: B64::ZERO, - base_fee_per_gas: None, - withdrawals_root: None, - blob_gas: None, - parent_beacon_block_root: None, - }; - let decoded = Header::decode(&mut data.as_slice()).unwrap(); - assert_eq!(decoded, expected); - } - - // Test vector from https://github.com/ethereum/tests/blob/a33949df17a1c382ffee5666e66d26bde7a089f9/EIPTests/Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json#L16 - #[test] - fn block_header_rlp_encoding_cancun() { - let expected_encoding = hex::decode("f90242a0258811d02512e87e09253a948330eff05da06b7656143a211fa3687901217f57a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347942adc25665018aa1fe0e6bc666dac8fc2697ff9baa06a086c92bb1d4ee6dc4ca73e66529037591bd4d6590350f6c904bc78dc21b75ca0dc387fc6ef9e3eb53baa85df89a1f9b91a4a9ab472ee7e928b4b7fdc06dfa5d1a0eaa8c40899a61ae59615cf9985f5e2194f8fd2b57d273be63bde6733e89b12abb9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800188016345785d8a00008252080c80a0000000000000000000000000000000000000000000000000000000000000000088000000000000000007a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218308000083220000a00000000000000000000000000000000000000000000000000000000000000000").unwrap(); - let expected_hash = - B256::from_str("0xd2caf87ef0ecbbf1d8721e4f63d56b3a5b4bf8b5faa0409aa6b99a729affe346") - .unwrap(); - - let header = Header { - base_fee_per_gas: Some(U256::from(0x07u64)), - blob_gas: Some(BlobGas { - gas_used: 0x080000u64, - excess_gas: 0x220000u64, - }), - logs_bloom: Bloom::ZERO, - beneficiary: Address::from_str("0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba").unwrap(), - difficulty: U256::ZERO, - extra_data: Bytes::default(), - gas_limit: 0x016345785d8a0000u64, - gas_used: 0x5208u64, - mix_hash: B256::ZERO, - nonce: B64::ZERO, - number: 0x01u64, - parent_beacon_block_root: Some(B256::ZERO), - parent_hash: B256::from_str( - "0x258811d02512e87e09253a948330eff05da06b7656143a211fa3687901217f57", - ) - .unwrap(), - receipts_root: B256::from_str( - "0xeaa8c40899a61ae59615cf9985f5e2194f8fd2b57d273be63bde6733e89b12ab", - ) - .unwrap(), - state_root: B256::from_str( - "0x6a086c92bb1d4ee6dc4ca73e66529037591bd4d6590350f6c904bc78dc21b75c", - ) - .unwrap(), - timestamp: 0x0cu64, - transactions_root: B256::from_str( - "0xdc387fc6ef9e3eb53baa85df89a1f9b91a4a9ab472ee7e928b4b7fdc06dfa5d1", - ) - .unwrap(), - ommers_hash: KECCAK_RLP_EMPTY_ARRAY, - withdrawals_root: Some(KECCAK_NULL_RLP), - }; - - let encoded = alloy_rlp::encode(&header); - assert_eq!(encoded, expected_encoding); - assert_eq!(header.hash(), expected_hash); - } -} diff --git a/crates/edr_eth/src/block/difficulty.rs b/crates/edr_eth/src/block/difficulty.rs deleted file mode 100644 index 4e952b4e42..0000000000 --- a/crates/edr_eth/src/block/difficulty.rs +++ /dev/null @@ -1,66 +0,0 @@ -use crate::{block::Header, trie::KECCAK_RLP_EMPTY_ARRAY, SpecId, U256}; - -fn bomb_delay(spec_id: SpecId) -> u64 { - match spec_id { - SpecId::FRONTIER - | SpecId::FRONTIER_THAWING - | SpecId::HOMESTEAD - | SpecId::DAO_FORK - | SpecId::TANGERINE - | SpecId::SPURIOUS_DRAGON => 0, - SpecId::BYZANTIUM => 3000000, - SpecId::CONSTANTINOPLE | SpecId::PETERSBURG | SpecId::ISTANBUL => 5000000, - SpecId::MUIR_GLACIER | SpecId::BERLIN | SpecId::LONDON => 9000000, - // SpecId::LONDON => 9500000, // EIP-3554 - SpecId::ARROW_GLACIER => 10700000, - SpecId::GRAY_GLACIER => 11400000, - SpecId::MERGE | SpecId::SHANGHAI | SpecId::CANCUN | SpecId::LATEST => { - unreachable!("Post-merge hardforks don't have a bomb delay") - } - } -} - -/// Calculates the mining difficulty of a block. -pub fn calculate_ethash_canonical_difficulty( - spec_id: SpecId, - parent: &Header, - block_number: u64, - block_timestamp: u64, -) -> U256 { - // TODO: Create a custom config that prevents usage of older hardforks - assert!( - spec_id >= SpecId::BYZANTIUM, - "Hardforks older than Byzantium are not supported" - ); - - let bound_divisor = U256::from(2048); - let offset = parent.difficulty / bound_divisor; - - let mut difficulty = { - let uncle_addend = if parent.ommers_hash == KECCAK_RLP_EMPTY_ARRAY { - 1 - } else { - 2 - }; - let a = (block_timestamp - parent.timestamp) / 9; - - if let Some(a) = a.checked_sub(uncle_addend) { - let a = U256::from(a.min(99)); - - parent.difficulty - a * offset - } else { - let a = U256::from(uncle_addend - a); - parent.difficulty + a * offset - } - }; - - if let Some(exp) = block_number - .checked_sub(bomb_delay(spec_id)) - .and_then(|num| (num / 100000).checked_sub(2)) - { - difficulty += U256::from(2u64).pow(U256::from(exp)); - } - - let min_difficulty = U256::from(131072); - difficulty.max(min_difficulty) -} diff --git a/crates/edr_eth/src/block/options.rs b/crates/edr_eth/src/block/options.rs deleted file mode 100644 index d720ddd4fe..0000000000 --- a/crates/edr_eth/src/block/options.rs +++ /dev/null @@ -1,36 +0,0 @@ -use super::BlobGas; -use crate::{withdrawal::Withdrawal, Address, Bytes, B256, B64, U256}; - -/// Data of a block header -#[derive(Debug, Default)] -pub struct BlockOptions { - /// The parent block's hash - pub parent_hash: Option, - /// The block's beneficiary - pub beneficiary: Option
, - /// The state's root hash - pub state_root: Option, - /// The block's difficulty - pub difficulty: Option, - /// The block's number - pub number: Option, - /// The block's gas limit - pub gas_limit: Option, - /// The block's timestamp - pub timestamp: Option, - /// The block's extra data - pub extra_data: Option, - /// The block's mix hash - pub mix_hash: Option, - /// The block's nonce - pub nonce: Option, - /// The block's base gas fee - pub base_fee: Option, - /// The block's withdrawals - pub withdrawals: Option>, - /// Blob gas was added by EIP-4844 and is ignored in older headers. - pub blob_gas: Option, - /// The hash tree root of the parent beacon block for the given execution - /// block (EIP-4788). - pub parent_beacon_block_root: Option, -} diff --git a/crates/edr_eth/src/block/reorg.rs b/crates/edr_eth/src/block/reorg.rs deleted file mode 100644 index 8f5b40565d..0000000000 --- a/crates/edr_eth/src/block/reorg.rs +++ /dev/null @@ -1,170 +0,0 @@ -use std::time::Duration; - -/// The default depth of blocks to consider safe from a reorg and thus -/// cacheable. -const DEFAULT_SAFE_BLOCK_DEPTH: u64 = 128; - -/// The default delay between blocks. Should be the lowest possible to stay on -/// the safe side. -const DEFAULT_SAFE_BLOCK_TIME: Duration = Duration::from_secs(1); - -/// Test whether a block number is safe from a reorg for a specific chain based -/// on the latest block number. -pub fn is_safe_block_number(args: IsSafeBlockNumberArgs) -> bool { - largest_safe_block_number((&args).into()) - .is_some_and(|safe_block_number| args.block_number <= safe_block_number) -} - -/// Arguments for the `is_safe_block_number` function. -/// The purpose of this struct is to prevent mixing up the U256 arguments. -pub struct IsSafeBlockNumberArgs { - /// The chain id - pub chain_id: u64, - /// The latest known block number - pub latest_block_number: u64, - /// The block number to test - pub block_number: u64, -} - -impl<'a> From<&'a IsSafeBlockNumberArgs> for LargestSafeBlockNumberArgs { - fn from(value: &'a IsSafeBlockNumberArgs) -> LargestSafeBlockNumberArgs { - LargestSafeBlockNumberArgs { - chain_id: value.chain_id, - latest_block_number: value.latest_block_number, - } - } -} - -/// The largest block number that is safe from a reorg for a specific chain -/// based on the latest block number. -/// -/// Returns `None` if the genesis block falls within the safe block depth. -pub fn largest_safe_block_number(args: LargestSafeBlockNumberArgs) -> Option { - args.latest_block_number - .checked_sub(safe_block_depth(args.chain_id)) -} - -/// Arguments for the `largest_safe_block_number` function. -/// The purpose of this struct is to prevent mixing up the U256 arguments. -pub struct LargestSafeBlockNumberArgs { - /// The chain id - pub chain_id: u64, - /// The latest known block number - pub latest_block_number: u64, -} - -/// The safe block depth for a specific chain. -/// -/// The custom numbers were taken from: -/// -pub fn safe_block_depth(chain_id: u64) -> u64 { - match chain_id { - // Ethereum mainnet, Rinkeby, Goerli and Kovan testnets - // 32 blocks is one epoch on Ethereum mainnet - 1 | 4 | 5 | 42 => 32, - // Ropsten - 3 => 100, - // Gnosis/xDai - 100 => 38, - _ => { - log::warn!( - "Unknown chain id {chain_id}, using default safe block depth of {}", - DEFAULT_SAFE_BLOCK_DEPTH, - ); - DEFAULT_SAFE_BLOCK_DEPTH - } - } -} - -/// The interval between blocks for a specific chain. -pub fn block_time(chain_id: u64) -> Duration { - match chain_id { - // Ethereum mainnet, Ropsten, Rinkeby, Goerli and Kovan testnets - // 32 blocks is one epoch on Ethereum mainnet - 1 | 3 | 4 | 5 | 42 => Duration::from_secs(12), - // Gnosis/xDai - // https://gnosisscan.io/chart/blocktime - 100 => Duration::from_secs(5), - _ => { - log::warn!( - "Unknown chain id {chain_id}, using default block time of {} seconds", - DEFAULT_SAFE_BLOCK_TIME.as_secs(), - ); - DEFAULT_SAFE_BLOCK_TIME - } - } -} - -#[cfg(test)] -mod tests { - const ROPSTEN_CHAIN_ID: u64 = 3; - - use super::*; - - #[test] - fn largest_safe_block_number_with_safe_blocks() { - const LATEST_BLOCK_NUMBER: u64 = 1_000; - - let safe_block_depth = safe_block_depth(ROPSTEN_CHAIN_ID); - let args = LargestSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - }; - assert_eq!( - largest_safe_block_number(args), - Some(LATEST_BLOCK_NUMBER - safe_block_depth) - ); - } - - #[test] - fn largest_safe_block_number_all_blocks_unsafe() { - const LATEST_BLOCK_NUMBER: u64 = 50; - - let args = LargestSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - }; - assert_eq!(largest_safe_block_number(args), None); - } - - #[test] - fn is_safe_block_number_with_safe_blocks() { - const LATEST_BLOCK_NUMBER: u64 = 1_000; - - let safe_block_depth = safe_block_depth(ROPSTEN_CHAIN_ID); - let safe_block_number = LATEST_BLOCK_NUMBER - safe_block_depth; - - let args = IsSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - block_number: safe_block_number, - }; - assert!(is_safe_block_number(args)); - - let args = IsSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - block_number: safe_block_number + 1, - }; - assert!(!is_safe_block_number(args)); - } - - #[test] - fn is_safe_block_number_all_blocks_unsafe() { - const LATEST_BLOCK_NUMBER: u64 = 50; - - let args = IsSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - block_number: 0, - }; - assert!(!is_safe_block_number(args)); - - let args = IsSafeBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - block_number: LATEST_BLOCK_NUMBER, - }; - assert!(!is_safe_block_number(args)); - } -} diff --git a/crates/edr_eth/src/block/reward.rs b/crates/edr_eth/src/block/reward.rs deleted file mode 100644 index 5d60424fc4..0000000000 --- a/crates/edr_eth/src/block/reward.rs +++ /dev/null @@ -1,25 +0,0 @@ -use revm_primitives::SpecId; - -use crate::U256; - -/// Retrieves the miner reward for the provided hardfork. -pub fn miner_reward(spec_id: SpecId) -> Option { - match spec_id { - SpecId::FRONTIER - | SpecId::FRONTIER_THAWING - | SpecId::HOMESTEAD - | SpecId::DAO_FORK - | SpecId::TANGERINE - | SpecId::SPURIOUS_DRAGON => Some(U256::from(5_000_000_000_000_000_000u128)), - SpecId::BYZANTIUM => Some(U256::from(3_000_000_000_000_000_000u128)), - SpecId::CONSTANTINOPLE - | SpecId::PETERSBURG - | SpecId::ISTANBUL - | SpecId::MUIR_GLACIER - | SpecId::BERLIN - | SpecId::LONDON - | SpecId::ARROW_GLACIER - | SpecId::GRAY_GLACIER => Some(U256::from(2_000_000_000_000_000_000u128)), - SpecId::MERGE | SpecId::SHANGHAI | SpecId::CANCUN | SpecId::LATEST => None, - } -} diff --git a/crates/edr_eth/src/lib.rs b/crates/edr_eth/src/lib.rs deleted file mode 100644 index 1b563b3e48..0000000000 --- a/crates/edr_eth/src/lib.rs +++ /dev/null @@ -1,51 +0,0 @@ -#![warn(missing_docs)] - -//! Ethereum types -//! -//! Ethereum types as needed by EDR. In particular, they are based on the same -//! primitive types as `revm`. - -/// Ethereum access list types -pub mod access_list; -/// Ethereum account types -pub mod account; -/// Parent beacon types and constants -pub mod beacon; -/// Ethereum block types -pub mod block; -/// Ethereum log types -pub mod log; -/// Ethereum receipt types -pub mod receipt; -/// Remote node interaction -#[cfg(feature = "serde")] -pub mod remote; -/// Ethereum gas related types -pub mod reward_percentile; -/// RLP traits and functions -pub mod rlp; -#[cfg(feature = "serde")] -pub mod serde; -/// Ethereum signature types -pub mod signature; -/// Specification of hardforks -pub mod spec; -/// Ethereum state types and functions -pub mod state; -/// Ethereum transaction types -pub mod transaction; -/// Ethereum trie functions -pub mod trie; -/// Ethereum utility functions -pub mod utils; -pub mod withdrawal; - -pub use revm_primitives::{ - alloy_primitives::{Bloom, BloomInput, B512, B64, U64}, - hex_literal, AccountInfo, Address, Bytes, HashMap, SpecId, B256, U256, -}; - -/// A secret key -pub type Secret = B256; -/// A public key -pub type Public = B512; diff --git a/crates/edr_eth/src/log.rs b/crates/edr_eth/src/log.rs deleted file mode 100644 index c70d92434e..0000000000 --- a/crates/edr_eth/src/log.rs +++ /dev/null @@ -1,21 +0,0 @@ -mod block; -mod filter; -mod receipt; - -pub use revm_primitives::Log; - -pub use self::{ - block::{BlockLog, FullBlockLog}, - filter::FilterLog, - receipt::ReceiptLog, -}; -use crate::{Bloom, BloomInput}; - -/// Adds the log to a bloom hash. -pub fn add_log_to_bloom(log: &Log, bloom: &mut Bloom) { - bloom.accrue(BloomInput::Raw(log.address.as_slice())); - - log.topics() - .iter() - .for_each(|topic| bloom.accrue(BloomInput::Raw(topic.as_slice()))); -} diff --git a/crates/edr_eth/src/log/block.rs b/crates/edr_eth/src/log/block.rs deleted file mode 100644 index ec3b4baf8f..0000000000 --- a/crates/edr_eth/src/log/block.rs +++ /dev/null @@ -1,145 +0,0 @@ -use std::ops::Deref; - -use alloy_rlp::BufMut; - -use super::receipt::ReceiptLog; -use crate::B256; - -/// A log that's returned by a block query. -#[derive(Debug, Clone, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(untagged))] -pub enum BlockLog { - /// A full log. - Full(FullBlockLog), - /// A partial log, which can only occur for pending blocks. - Partial(ReceiptLog), -} - -/// A type representing a fully specified block log. -#[derive(Debug, Clone, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct FullBlockLog { - /// Receipt log - #[cfg_attr(feature = "serde", serde(flatten))] - pub inner: ReceiptLog, - /// block hash - // https://github.com/NomicFoundation/hardhat/blob/7d25b1b5a7bfbd7e7fabbf540b0f32186cba2b11/packages/hardhat-core/src/internal/hardhat-network/provider/output.ts#L120 - pub block_hash: B256, - /// block number - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub block_number: u64, - /// Index of the log within the block - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub log_index: u64, - /// Index of the transaction within the block - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub transaction_index: u64, -} - -impl Deref for FullBlockLog { - type Target = ReceiptLog; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -impl alloy_rlp::Encodable for BlockLog { - fn encode(&self, out: &mut dyn BufMut) { - match self { - BlockLog::Partial(log) => log.encode(out), - BlockLog::Full(log) => log.encode(out), - } - } - - fn length(&self) -> usize { - match self { - BlockLog::Partial(log) => log.length(), - BlockLog::Full(log) => log.length(), - } - } -} - -impl alloy_rlp::Encodable for FullBlockLog { - fn encode(&self, out: &mut dyn BufMut) { - self.inner.encode(out); - } - - fn length(&self) -> usize { - self.inner.length() - } -} - -#[cfg(all(test, feature = "serde"))] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::{log::Log, Address, Bytes}; - - #[test] - fn test_block_log_full_serde() -> anyhow::Result<()> { - let log = BlockLog::Full(FullBlockLog { - inner: ReceiptLog { - inner: Log::new_unchecked( - Address::from_str("0000000000000000000000000000000000000011")?, - vec![ - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000dead", - )?, - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000beef", - )?, - ], - Bytes::from(hex::decode("0100ff")?), - ), - transaction_hash: B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - )?, - }, - block_hash: B256::from_str( - "0x88fadbb673928c61b9ede3694ae0589ac77ae38ec90a24a6e12e83f42f18c7e8", - )?, - block_number: 0xa74fde, - log_index: 0x653b, - transaction_index: 0x1f, - }); - - let serialized = serde_json::to_string(&log).unwrap(); - let deserialized: BlockLog = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(log, deserialized); - - Ok(()) - } - - #[test] - fn test_block_log_partial_serde() -> anyhow::Result<()> { - let log = BlockLog::Partial(ReceiptLog { - inner: Log::new_unchecked( - Address::from_str("0000000000000000000000000000000000000011").unwrap(), - vec![ - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000dead", - )?, - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000beef", - )?, - ], - Bytes::from(hex::decode("0100ff")?), - ), - transaction_hash: B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - )?, - }); - - let serialized = serde_json::to_string(&log).unwrap(); - let deserialized: BlockLog = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(log, deserialized); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/log/filter.rs b/crates/edr_eth/src/log/filter.rs deleted file mode 100644 index e623960de5..0000000000 --- a/crates/edr_eth/src/log/filter.rs +++ /dev/null @@ -1,87 +0,0 @@ -use std::ops::Deref; - -use alloy_rlp::BufMut; - -use crate::log::FullBlockLog; - -/// A log that's returned through a filter query. -#[derive(Debug, Clone, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct FilterLog { - /// Full block log - #[cfg_attr(feature = "serde", serde(flatten))] - pub inner: FullBlockLog, - /// Whether this log was reverted due to a chain reorganisation - pub removed: bool, -} - -impl Deref for FilterLog { - type Target = FullBlockLog; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -impl alloy_rlp::Encodable for FilterLog { - fn encode(&self, out: &mut dyn BufMut) { - self.inner.encode(out); - } - - fn length(&self) -> usize { - self.inner.length() - } -} - -#[cfg(all(test, feature = "serde"))] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::{ - log::{FullBlockLog, Log, ReceiptLog}, - Address, Bytes, B256, - }; - - #[test] - fn test_filter_log_serde() -> anyhow::Result<()> { - let log = FilterLog { - inner: FullBlockLog { - inner: ReceiptLog { - inner: Log::new_unchecked( - Address::from_str("0000000000000000000000000000000000000011")?, - vec![ - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000dead", - )?, - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000beef", - )?, - ], - Bytes::from(hex::decode("0100ff")?), - ), - transaction_hash: B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - ) - .expect("failed to parse hash from string"), - }, - block_hash: B256::from_str( - "0x88fadbb673928c61b9ede3694ae0589ac77ae38ec90a24a6e12e83f42f18c7e8", - ) - .unwrap(), - block_number: 0xa74fde, - log_index: 0x653b, - transaction_index: 0x1f, - }, - removed: false, - }; - - let serialized = serde_json::to_string(&log).unwrap(); - let deserialized: FilterLog = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(log, deserialized); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/log/receipt.rs b/crates/edr_eth/src/log/receipt.rs deleted file mode 100644 index 8fd2951dd6..0000000000 --- a/crates/edr_eth/src/log/receipt.rs +++ /dev/null @@ -1,71 +0,0 @@ -use std::ops::Deref; - -use alloy_rlp::BufMut; - -use crate::{log::Log, B256}; - -/// A log that's part of a transaction receipt. -#[derive(Clone, Debug, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct ReceiptLog { - /// Execution log - #[cfg_attr(feature = "serde", serde(flatten))] - pub inner: Log, - /// transaction hash - pub transaction_hash: B256, -} - -impl Deref for ReceiptLog { - type Target = Log; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -impl alloy_rlp::Encodable for ReceiptLog { - fn encode(&self, out: &mut dyn BufMut) { - self.inner.encode(out); - } - - fn length(&self) -> usize { - self.inner.length() - } -} - -#[cfg(all(test, feature = "serde"))] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::{log::Log, Address, Bytes}; - - #[test] - fn test_receipt_log_serde() -> anyhow::Result<()> { - let log = ReceiptLog { - inner: Log::new_unchecked( - Address::from_str("0000000000000000000000000000000000000011")?, - vec![ - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000dead", - )?, - B256::from_str( - "000000000000000000000000000000000000000000000000000000000000beef", - )?, - ], - Bytes::from(hex::decode("0100ff")?), - ), - transaction_hash: B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - )?, - }; - - let serialized = serde_json::to_string(&log).unwrap(); - let deserialized: ReceiptLog = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(log, deserialized); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/receipt.rs b/crates/edr_eth/src/receipt.rs deleted file mode 100644 index 4d03d7b0bd..0000000000 --- a/crates/edr_eth/src/receipt.rs +++ /dev/null @@ -1,582 +0,0 @@ -// Part of this code was adapted from foundry and is distributed under their -// licenss: -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT -// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/receipt.rs - -#![allow(missing_docs)] - -mod block; -mod transaction; - -use alloy_rlp::{Buf, BufMut, Decodable, Encodable}; -use revm_primitives::SpecId; -#[cfg(feature = "serde")] -use serde::{ser::SerializeStruct, Serialize, Serializer}; - -pub use self::{block::BlockReceipt, transaction::TransactionReceipt}; -#[cfg(feature = "serde")] -use crate::U64; -use crate::{Bloom, B256}; - -/// Typed receipt that's generated after execution of a transaction. -#[derive(Clone, Debug)] -pub struct TypedReceipt { - /// Cumulative gas used in block after this transaction was executed - pub cumulative_gas_used: u64, - /// Bloom filter of the logs generated within this transaction - pub logs_bloom: Bloom, - /// Logs generated within this transaction - pub logs: Vec, - /// The typed receipt data. - /// - `root` field (before Byzantium) or `status` field (after Byzantium) - /// - `type` field after Berlin - pub data: TypedReceiptData, - /// The currently active hardfork in the local blockchain. Hack for - /// serialization. Not included in the serialized representation. - /// Assumes remote runs latest hardfork. - pub spec_id: SpecId, -} - -impl PartialEq for TypedReceipt { - fn eq(&self, other: &Self) -> bool { - // Ignoring spec id as that's just a hack for serialization. - self.cumulative_gas_used == other.cumulative_gas_used - && self.logs_bloom == other.logs_bloom - && self.logs == other.logs - && self.data == other.data - } -} - -impl Eq for TypedReceipt {} - -#[cfg(feature = "serde")] -impl Serialize for TypedReceipt { - fn serialize(&self, serializer: S) -> Result - where - S: Serializer, - { - let num_fields = if self.spec_id >= SpecId::BERLIN { 5 } else { 4 }; - let mut state = serializer.serialize_struct("TypedReceipt", num_fields)?; - - state.serialize_field("cumulativeGasUsed", &U64::from(self.cumulative_gas_used))?; - state.serialize_field("logsBloom", &self.logs_bloom)?; - state.serialize_field("logs", &self.logs)?; - - match &self.data { - TypedReceiptData::PreEip658Legacy { state_root } => { - state.serialize_field("root", state_root)?; - } - TypedReceiptData::PostEip658Legacy { status } - | TypedReceiptData::Eip2930 { status } - | TypedReceiptData::Eip1559 { status } - | TypedReceiptData::Eip4844 { status } => { - state.serialize_field("status", &format!("0x{status}"))?; - } - } - - if self.spec_id >= SpecId::BERLIN { - let tx_type = self.transaction_type(); - state.serialize_field("type", &U64::from(tx_type))?; - } - - state.end() - } -} - -/// Data of a typed receipt. -#[derive(Clone, Debug, PartialEq, Eq)] -pub enum TypedReceiptData { - PreEip658Legacy { state_root: B256 }, - PostEip658Legacy { status: u8 }, - Eip2930 { status: u8 }, - Eip1559 { status: u8 }, - Eip4844 { status: u8 }, -} - -impl TypedReceipt { - /// Returns the status code of the receipt, if any. - pub fn status_code(&self) -> Option { - match &self.data { - TypedReceiptData::PreEip658Legacy { .. } => None, - TypedReceiptData::PostEip658Legacy { status } - | TypedReceiptData::Eip2930 { status } - | TypedReceiptData::Eip1559 { status } - | TypedReceiptData::Eip4844 { status } => Some(*status), - } - } - - /// Returns the state root of the receipt, if any. - pub fn state_root(&self) -> Option<&B256> { - match &self.data { - TypedReceiptData::PreEip658Legacy { state_root } => Some(state_root), - _ => None, - } - } - - /// Returns the transaction type of the receipt. - pub fn transaction_type(&self) -> u64 { - match &self.data { - TypedReceiptData::PreEip658Legacy { .. } - | TypedReceiptData::PostEip658Legacy { .. } => 0u64, - TypedReceiptData::Eip2930 { .. } => 1u64, - TypedReceiptData::Eip1559 { .. } => 2u64, - TypedReceiptData::Eip4844 { .. } => 3u64, - } - } -} - -impl TypedReceipt -where - LogT: Encodable, -{ - fn rlp_payload_length(&self) -> usize { - let data_length = match &self.data { - TypedReceiptData::PreEip658Legacy { state_root } => state_root.length(), - TypedReceiptData::PostEip658Legacy { .. } - | TypedReceiptData::Eip2930 { .. } - | TypedReceiptData::Eip1559 { .. } - | TypedReceiptData::Eip4844 { .. } => 1, - }; - - data_length - + self.cumulative_gas_used.length() - + self.logs_bloom.length() - + self.logs.length() - } -} - -#[cfg(feature = "serde")] -impl<'deserializer, LogT> serde::Deserialize<'deserializer> for TypedReceipt -where - LogT: serde::Deserialize<'deserializer>, -{ - fn deserialize(deserializer: D) -> Result - where - D: serde::Deserializer<'deserializer>, - { - use core::marker::PhantomData; - - use serde::de::Visitor; - - #[derive(serde::Deserialize)] - #[serde(field_identifier, rename_all = "camelCase")] - enum Field { - Type, - Root, - Status, - CumulativeGasUsed, - LogsBloom, - Logs, - Unknown(String), - } - - struct TypedReceiptVisitor { - phantom: PhantomData, - } - - impl<'deserializer, LogT> Visitor<'deserializer> for TypedReceiptVisitor - where - LogT: serde::Deserialize<'deserializer>, - { - type Value = TypedReceipt; - - fn expecting(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - formatter.write_str("a valid receipt") - } - - fn visit_map( - self, - mut map: MapAccessT, - ) -> Result - where - MapAccessT: serde::de::MapAccess<'deserializer>, - { - use serde::de::Error; - - // These are `String` to support deserializing from `serde_json::Value` - let mut transaction_type: Option = None; - let mut status_code: Option = None; - let mut state_root = None; - let mut cumulative_gas_used: Option = None; - let mut logs_bloom = None; - let mut logs = None; - - while let Some(key) = map.next_key()? { - match key { - Field::Type => { - if transaction_type.is_some() { - return Err(Error::duplicate_field("type")); - } - transaction_type = Some(map.next_value()?); - } - Field::Root => { - if state_root.is_some() { - return Err(Error::duplicate_field("root")); - } - state_root = Some(map.next_value()?); - } - Field::Status => { - if status_code.is_some() { - return Err(Error::duplicate_field("status")); - } - status_code = Some(map.next_value()?); - } - Field::CumulativeGasUsed => { - if cumulative_gas_used.is_some() { - return Err(Error::duplicate_field("cumulativeGasUsed")); - } - cumulative_gas_used = Some(map.next_value()?); - } - Field::LogsBloom => { - if logs_bloom.is_some() { - return Err(Error::duplicate_field("logsBloom")); - } - logs_bloom = Some(map.next_value()?); - } - Field::Logs => { - if logs.is_some() { - return Err(Error::duplicate_field("logs")); - } - logs = Some(map.next_value()?); - } - Field::Unknown(field) => { - log::warn!("Unsupported receipt field: {field}"); - } - } - } - - let cumulative_gas_used = - cumulative_gas_used.ok_or_else(|| Error::missing_field("cumulativeGasUsed"))?; - let logs_bloom = logs_bloom.ok_or_else(|| Error::missing_field("logsBloom"))?; - let logs = logs.ok_or_else(|| Error::missing_field("logs"))?; - - let data = if let Some(state_root) = state_root { - TypedReceiptData::PreEip658Legacy { state_root } - } else if let Some(status_code) = status_code { - let status = match status_code.as_str() { - "0x0" => 0u8, - "0x1" => 1u8, - _ => return Err(Error::custom(format!("unknown status: {status_code}"))), - }; - - if let Some(transaction_type) = transaction_type { - match transaction_type.as_str() { - "0x0" => TypedReceiptData::PostEip658Legacy { status }, - "0x1" => TypedReceiptData::Eip2930 { status }, - "0x2" => TypedReceiptData::Eip1559 { status }, - "0x3" => TypedReceiptData::Eip4844 { status }, - _ => { - log::warn!("Unsupported receipt type: {transaction_type}. Reverting to post-EIP 155 legacy receipt"); - TypedReceiptData::PostEip658Legacy { status } - } - } - } else { - TypedReceiptData::PostEip658Legacy { status } - } - } else { - return Err(Error::missing_field("root or status")); - }; - - Ok(TypedReceipt { - cumulative_gas_used: cumulative_gas_used.as_limbs()[0], - logs_bloom, - logs, - data, - spec_id: SpecId::LATEST, - }) - } - } - - deserializer.deserialize_map(TypedReceiptVisitor { - phantom: PhantomData, - }) - } -} - -impl Decodable for TypedReceipt -where - LogT: Decodable, -{ - fn decode(buf: &mut &[u8]) -> alloy_rlp::Result { - fn decode_inner( - buf: &mut &[u8], - id: Option, - ) -> Result, alloy_rlp::Error> - where - LogT: Decodable, - { - fn normalize_status(status: u8) -> u8 { - u8::from(status == 1) - } - - let alloy_rlp::Header { - list, - payload_length, - } = alloy_rlp::Header::decode(buf)?; - - if !list { - return Err(alloy_rlp::Error::UnexpectedString); - } - - let started_len = buf.len(); - if started_len < payload_length { - return Err(alloy_rlp::Error::InputTooShort); - } - - let data = match id { - None | Some(0) => { - // Use a temporary buffer to decode the header, avoiding the original buffer - // from being advanced - let header = { - let mut temp_buf = *buf; - alloy_rlp::Header::decode(&mut temp_buf)? - }; - - if header.payload_length == 1 { - let status = u8::decode(buf)?; - TypedReceiptData::PostEip658Legacy { - status: normalize_status(status), - } - } else { - TypedReceiptData::PreEip658Legacy { - state_root: B256::decode(buf)?, - } - } - } - Some(1) => TypedReceiptData::Eip2930 { - status: normalize_status(u8::decode(buf)?), - }, - Some(2) => TypedReceiptData::Eip1559 { - status: normalize_status(u8::decode(buf)?), - }, - _ => return Err(alloy_rlp::Error::Custom("Unknown receipt type")), - }; - - let receipt = TypedReceipt { - cumulative_gas_used: u64::decode(buf)?, - logs_bloom: Bloom::decode(buf)?, - logs: Vec::::decode(buf)?, - data, - spec_id: SpecId::LATEST, - }; - - let consumed = started_len - buf.len(); - if consumed != payload_length { - return Err(alloy_rlp::Error::ListLengthMismatch { - expected: payload_length, - got: consumed, - }); - } - - Ok(receipt) - } - - fn is_list(byte: u8) -> bool { - byte >= 0xc0 - } - - let first = *buf.first().ok_or(alloy_rlp::Error::InputTooShort)?; - let id = if is_list(first) { - None - } else { - // Consume the first byte - buf.advance(1); - - match first { - 0x01 => Some(1u8), - 0x02 => Some(2u8), - 0x03 => Some(3u8), - _ => return Err(alloy_rlp::Error::Custom("unknown receipt type")), - } - }; - - decode_inner(buf, id) - } -} - -impl Encodable for TypedReceipt -where - LogT: Encodable, -{ - fn encode(&self, out: &mut dyn BufMut) { - let id = match &self.data { - TypedReceiptData::PreEip658Legacy { .. } - | TypedReceiptData::PostEip658Legacy { .. } => None, - TypedReceiptData::Eip2930 { .. } => Some(1u8), - TypedReceiptData::Eip1559 { .. } => Some(2u8), - TypedReceiptData::Eip4844 { .. } => Some(3u8), - }; - - if let Some(id) = id { - out.put_u8(id); - } - - alloy_rlp::Header { - list: true, - payload_length: self.rlp_payload_length(), - } - .encode(out); - - match &self.data { - TypedReceiptData::PreEip658Legacy { state_root } => { - state_root.encode(out); - } - TypedReceiptData::PostEip658Legacy { status } - | TypedReceiptData::Eip2930 { status } - | TypedReceiptData::Eip1559 { status } - | TypedReceiptData::Eip4844 { status } => { - if *status == 0 { - out.put_u8(alloy_rlp::EMPTY_STRING_CODE); - } else { - out.put_u8(1); - } - } - } - - self.cumulative_gas_used.encode(out); - self.logs_bloom.encode(out); - self.logs.encode(out); - } - - fn length(&self) -> usize { - // Post-EIP-2930 receipts have an id byte - let index_length = match self.data { - TypedReceiptData::PreEip658Legacy { .. } - | TypedReceiptData::PostEip658Legacy { .. } => 0, - TypedReceiptData::Eip2930 { .. } - | TypedReceiptData::Eip1559 { .. } - | TypedReceiptData::Eip4844 { .. } => 1, - }; - - let payload_length = self.rlp_payload_length(); - index_length + payload_length + alloy_rlp::length_of_length(payload_length) - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::{log::Log, Address, Bytes}; - - macro_rules! impl_typed_receipt_tests { - ($( - $name:ident => $receipt_data:expr, - )+) => { - $( - paste::item! { - fn []() -> TypedReceipt { - TypedReceipt { - cumulative_gas_used: 0xffff, - logs_bloom: Bloom::random(), - logs: vec![ - Log::new_unchecked(Address::random(), vec![B256::random(), B256::random()], Bytes::new()), - Log::new_unchecked(Address::random(), Vec::new(), Bytes::from_static(b"test")) - ], - data: $receipt_data, - spec_id: SpecId::LATEST, - } - } - - #[test] - fn []() { - let receipt = [](); - let encoded = alloy_rlp::encode(&receipt); - assert_eq!(TypedReceipt::::decode(&mut encoded.as_slice()).unwrap(), receipt); - } - - #[cfg(feature = "serde")] - #[test] - fn []() { - let receipt = [](); - - let serialized = serde_json::to_string(&receipt).unwrap(); - let mut deserialized: TypedReceipt = serde_json::from_str(&serialized).unwrap(); - deserialized.spec_id = receipt.spec_id; - assert_eq!(receipt, deserialized); - - // This is necessary to ensure that the deser implementation doesn't expect a - // &str where a String can be passed. - let serialized = serde_json::to_value(&receipt).unwrap(); - let mut deserialized: TypedReceipt = serde_json::from_value(serialized).unwrap(); - deserialized.spec_id = receipt.spec_id; - - assert_eq!(receipt, deserialized); - } - } - )+ - }; - } - - impl_typed_receipt_tests! { - pre_eip658 => TypedReceiptData::PreEip658Legacy { - state_root: B256::random(), - }, - post_eip658 => TypedReceiptData::PostEip658Legacy { status: 1 }, - eip2930 => TypedReceiptData::Eip2930 { status: 1 }, - eip1559 => TypedReceiptData::Eip1559 { status: 0 }, - } - - #[cfg(feature = "test-remote")] - mod alchemy { - use super::*; - - macro_rules! impl_test_receipt_rlp_encoding { - ($( - $name:ident: $transaction_hash:literal => $encoding:literal, - )+) => { - $( - paste::item! { - #[tokio::test] - async fn []() { - use edr_test_utils::env::get_alchemy_url; - use tempfile::TempDir; - - use crate::{remote::RpcClient, B256}; - - let tempdir = TempDir::new().unwrap(); - let client = RpcClient::new(&get_alchemy_url(), tempdir.path().into(), None).unwrap(); - - let transaction_hash = B256::from_slice(&hex::decode($transaction_hash).unwrap()); - - let receipt = client - .get_transaction_receipt(&transaction_hash) - .await - .expect("Should succeed") - .expect("Receipt must exist"); - - // Generated by Hardhat - let expected = hex::decode($encoding).unwrap(); - - assert_eq!(alloy_rlp::encode(&receipt).to_vec(), expected); - - let decoded = TypedReceipt::::decode(&mut expected.as_slice()).unwrap(); - let receipt = TypedReceipt { - data: receipt.inner.inner.data, - spec_id: SpecId::LATEST, - cumulative_gas_used: receipt.inner.inner.cumulative_gas_used, - logs_bloom: receipt.inner.inner.logs_bloom, - logs: receipt.inner.inner.logs.into_iter().map(|log| { - log.inner.inner.inner.clone() - }).collect(), - }; - - assert_eq!(decoded, receipt); - } - } - )+ - }; - } - - impl_test_receipt_rlp_encoding! { - pre_eip658: "427b0b68b1ccc46b01d99ed399b61c4ae681e22216035eb6953afc83ef463e17" - => "f90128a08af7cdcc6991b441f6285f4298df6add6506b3fd3ca559b0682fb2d57929652f825208b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0", - post_eip658: "1421a887a02301ae127bf2cd4c006116053c9dc4a255e69ea403a2d77c346cf5" - => "f9010801825208b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0", - eip2930: "01361649690dbff1ac1da1a7351a125b7cb0f26b9c5e017c4aefe90135b9be14" - => "01f90109018351e668b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0", - eip1559: "3dac2080b4c423029fcc9c916bc430cde441badfe736fc6d1fe9325348af80fd" - => "02f91c7701830ea827b9010000201000000000000004040080005010004000000000000000000000280004102000000000000400004001800001010003000000080020000000004100200010020000000000000800000008080220a04000a00100400040000000008000000010200200001000000000b000000000004100804000000540100040100009002000010100000010000000004000100000000000004020000828000244001000080200006000020400080000804100004000800801a000000401010000000000000100000200080000010000000088140008202280000000100008008200102800c010200000000320000002000020000000004000010080100000000040000000f91b6cf9017c949008d19f58aabd9ed0d60971565aa8510560ab41f842a0a07a543ab8a018198e99ca0184c93fe9050a79400a0a723441f84de1d972cc17a0000000000000000000000000f967aa80d80d6f22df627219c5113a118b57d0efb901200000000000000000000000009e46a38f5daabe8683e10793b06749eef7d733d1000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000069e10de76676d080000000000000000000000000000000000000000000000000000128e23797a37671e700000000000000000000000000000000000000000000004efc8c538e1084000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000038d11030660bf632eb31345d6b5f3e6ba2d2311cc783f3764c405f5272200dd670f967aa80d80d6f22df627219c5113a118b57d0ef61e0b5bc0000000000000000f9017c949008d19f58aabd9ed0d60971565aa8510560ab41f842a0a07a543ab8a018198e99ca0184c93fe9050a79400a0a723441f84de1d972cc17a000000000000000000000000003bada9ff1cf0d0264664b43977ed08feee32584b90120000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c7283b66eb1eb5fb86327f08e1b5816b0720212b000000000000000000000000000000000000000000000000fbec1330f280b3fd000000000000000000000000000000000000000000000a322816740bfd499e6600000000000000000000000000000000000000000000000000b46ffd87079be800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000380437203aec40e6c16642904f125e7d97bf45f39a51a729d775b8e3ea3cc667cd03bada9ff1cf0d0264664b43977ed08feee3258461e0b5d90000000000000000f89b949e46a38f5daabe8683e10793b06749eef7d733d1f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000f967aa80d80d6f22df627219c5113a118b57d0efa00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a00000000000000000000000000000000000000000000069e10de76676d0800000f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000003bada9ff1cf0d0264664b43977ed08feee32584a00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a0000000000000000000000000000000000000000000000000fbec1330f280b3fdf89b949e46a38f5daabe8683e10793b06749eef7d733d1f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000006992115b12e8bffc0000f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000005aaa0053fa5c28e8c558d4c648cc129bea45018a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a000000000000000000000000000000000000000000000000065ca4d7e75041e08f89b949e46a38f5daabe8683e10793b06749eef7d733d1f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a000000000000000000000000005aaa0053fa5c28e8c558d4c648cc129bea45018a0000000000000000000000000000000000000000000002330b073b0f83ffeaaaaf9011c9405aaa0053fa5c28e8c558d4c648cc129bea45018f863a0c42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2b8a0000000000000000000000000000000000000000000002330b073b0f83ffeaaaaffffffffffffffffffffffffffffffffffffffffffffffff9a35b2818afbe1f8000000000000000000000000000000000000000001af7ab4eebc6eaabac2b8540000000000000000000000000000000000000000000008462c8201774345ee54fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe778cf89b949e46a38f5daabe8683e10793b06749eef7d733d1f863a08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000119c71d3bbac22029622cbaec24854d3d32d2828a000000000000000000000000000000000000000000000466160e761f07ffd5556f89b94119c71d3bbac22029622cbaec24854d3d32d2828f842a0b9ed0243fdf00f0545c63a0af8850c090d86bb46682baec4bf3c496814fe4f02a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2b8401fd446014fc12b89bb0aee29f847d7fbf7e4237a671c70945013f952ca4a567a00000000000000000000000000000000000000000000000000000000a6444848f89b949e46a38f5daabe8683e10793b06749eef7d733d1f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000ca90ac7c132da0602b69b84af2b6a69a905379a2a000000000000000000000000000000000000000000000466160e761f07ffd5556f89b94dac17f958d2ee523a2206206994597c13d831ec7f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000ca90ac7c132da0602b69b84af2b6a69a905379a2a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a00000000000000000000000000000000000000000000000000000000afdf72bb8f89b94dac17f958d2ee523a2206206994597c13d831ec7f863a08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a00000000000000000000000001111111254fb6c44bac0bed2854e76f90643097da00000000000000000000000000000000000000000000000000000000afdf72bb8f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000945bcf562085de2d5875b9e2012ed5fd5cfab927a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000000000c96c4c288f973ff8f89b94dac17f958d2ee523a2206206994597c13d831ec7f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000945bcf562085de2d5875b9e2012ed5fd5cfab927a00000000000000000000000000000000000000000000000000000000afdf72bb8f879941111111254fb6c44bac0bed2854e76f90643097de1a0c3b639f02b125bfa160e50739b8c44eb2d1b6908e2b6d5925c6d770f2ca78127b840a7036786313db68944e1789fa8a69f90c41e29301442c6731a151688acbe6a26000000000000000000000000000000000000000000000000c96c4c288f973ff8f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000dd9f24efc84d93deef3c8745c837ab63e80abd27a00000000000000000000000000000000000000000000000000654620f6124ec19f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a000000000000000000000000000000000000000000000000128e23797a37671e7f8f99411111112542d85b3ef69ae05771c2dccff4faa26e1a0d6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8b8c00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab410000000000000000000000009e46a38f5daabe8683e10793b06749eef7d733d1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41000000000000000000000000000000000000000000006992115b12e8bffc000000000000000000000000000000000000000000000000000128e23797a37671e7f89b949008d19f58aabd9ed0d60971565aa8510560ab41f842a0ed99827efb37016f2275f98c4bcf71c7551c75d59e9b450f79fa32e60be672c2a000000000000000000000000011111112542d85b3ef69ae05771c2dccff4faa26b84000000000000000000000000000000000000000000000000000000000000000007c02520000000000000000000000000000000000000000000000000000000000f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000000000fb37a3336b791815f89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8a0000000000000000000000000000000000000000000000000fb37a3336b791815f8dd94ba12222222228d8ba445958a75a0704d566bf2c8f884a02170c741c41531aec20e7c107c24eecfdd15e69c9bb0a8dd37b1840b9e0b207ba00b09dea16768f0799065c475be02919503cb2a3500020000000000000000001aa0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2a00000000000000000000000006b175474e89094c44da98b954eedeac495271d0fb840000000000000000000000000000000000000000000000000fb37a3336b791815000000000000000000000000000000000000000000000c74f130b221944b84caf89b94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8a0000000000000000000000000000000000000000000000000fb37a3336b791815f89b946b175474e89094c44da98b954eedeac495271d0ff863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000000c74f130b221944b84caf89b94956f47f50a910163d8bf957cf5846d573e7f87caf863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000bb2e5c2ff298fd96e166f90c8abacaf714df14f8a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000000c74da893438a10088bff89b946b175474e89094c44da98b954eedeac495271d0ff863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000bb2e5c2ff298fd96e166f90c8abacaf714df14f8a0000000000000000000000000000000000000000000000c74f130b221944b84caf9011c94bb2e5c2ff298fd96e166f90c8abacaf714df14f8f863a0c42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2b8a0000000000000000000000000000000000000000000000c74f130b221944b84cafffffffffffffffffffffffffffffffffffffffffffff38b2576cbc75eff77410000000000000000000000000000000000000001000f16fba6ff427463b0357d00000000000000000000000000000000000000000fefa81144cbfbd548a25a7c0000000000000000000000000000000000000000000000000000000000000004f89b94956f47f50a910163d8bf957cf5846d573e7f87caf863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a00000000000000000000000009928e4046d7c6513326ccea028cd3e7a91c7590aa0000000000000000000000000000000000000000000000c74da893438a10088bff89b94c7283b66eb1eb5fb86327f08e1b5816b0720212bf863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa00000000000000000000000009928e4046d7c6513326ccea028cd3e7a91c7590aa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a0000000000000000000000000000000000000000000000a2faafe6664fcd2fd91f879949928e4046d7c6513326ccea028cd3e7a91c7590ae1a01c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1b8400000000000000000000000000000000000000000007f015873850f3f6be1a2500000000000000000000000000000000000000000006821664c5f0a4b332570a2f8fc949928e4046d7c6513326ccea028cd3e7a91c7590af863a0d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2b880000000000000000000000000000000000000000000000c74da893438a10088bf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2faafe6664fcd2fd91f89b94c7283b66eb1eb5fb86327f08e1b5816b0720212bf863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa000000000000000000000000027239549dd40e1d60f5b80b0c4196923745b1fd2a00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a0000000000000000000000000000000000000000000000a2faafe6664fcd2fd91f8f99411111112542d85b3ef69ae05771c2dccff4faa26e1a0d6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8b8c00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c7283b66eb1eb5fb86327f08e1b5816b0720212b0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41000000000000000000000000000000000000000000000000fb37a3336b791815000000000000000000000000000000000000000000000a2faafe6664fcd2fd91f89b949008d19f58aabd9ed0d60971565aa8510560ab41f842a0ed99827efb37016f2275f98c4bcf71c7551c75d59e9b450f79fa32e60be672c2a000000000000000000000000011111112542d85b3ef69ae05771c2dccff4faa26b84000000000000000000000000000000000000000000000000000000000000000007c02520000000000000000000000000000000000000000000000000000000000f87a94c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2f842a07fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65a00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a000000000000000000000000000000000000000000000000128e23797a37671e7f89b949008d19f58aabd9ed0d60971565aa8510560ab41f842a0ed99827efb37016f2275f98c4bcf71c7551c75d59e9b450f79fa32e60be672c2a0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2b84000000000000000000000000000000000000000000000000000000000000000002e1a7d4d00000000000000000000000000000000000000000000000000000000f89b94c7283b66eb1eb5fb86327f08e1b5816b0720212bf863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa00000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41a000000000000000000000000003bada9ff1cf0d0264664b43977ed08feee32584a0000000000000000000000000000000000000000000000a322816740bfd499e66f85a949008d19f58aabd9ed0d60971565aa8510560ab41f842a040338ce1a7c49204f0099533b1e9a7ee0a3d261f84974ab7af36105b8c4e9db4a0000000000000000000000000de1c59bc25d806ad9ddcbe246c4b5e550564571880", - } - } -} diff --git a/crates/edr_eth/src/receipt/block.rs b/crates/edr_eth/src/receipt/block.rs deleted file mode 100644 index dbc3ee7e08..0000000000 --- a/crates/edr_eth/src/receipt/block.rs +++ /dev/null @@ -1,124 +0,0 @@ -use std::ops::Deref; - -use alloy_rlp::BufMut; - -use super::TransactionReceipt; -use crate::{log::FilterLog, B256}; - -/// Type for a receipt that's included in a block. -#[derive(Clone, Debug, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct BlockReceipt { - #[cfg_attr(feature = "serde", serde(flatten))] - pub inner: TransactionReceipt, - /// Hash of the block that this is part of - pub block_hash: B256, - /// Number of the block that this is part of - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub block_number: u64, -} - -impl Deref for BlockReceipt { - type Target = TransactionReceipt; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -impl alloy_rlp::Encodable for BlockReceipt { - fn encode(&self, out: &mut dyn BufMut) { - self.inner.encode(out); - } - - fn length(&self) -> usize { - self.inner.length() - } -} - -#[cfg(all(test, feature = "serde"))] -mod test { - use assert_json_diff::assert_json_eq; - use revm_primitives::SpecId; - use serde_json::json; - - use super::*; - use crate::{ - receipt::{TypedReceipt, TypedReceiptData}, - Address, Bloom, U256, - }; - - #[test] - fn test_block_receipt_serde() { - let receipt = BlockReceipt { - inner: TransactionReceipt { - inner: TypedReceipt { - cumulative_gas_used: 1, - logs_bloom: Bloom::default(), - logs: vec![], - data: TypedReceiptData::Eip1559 { status: 1 }, - spec_id: SpecId::LATEST, - }, - transaction_hash: B256::default(), - transaction_index: 5, - from: Address::default(), - to: Some(Address::default()), - contract_address: None, - gas_used: 1, - effective_gas_price: Some(U256::from(1)), - }, - block_hash: B256::default(), - block_number: 1, - }; - - let serialized = serde_json::to_string(&receipt).unwrap(); - let deserialized = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(receipt, deserialized); - } - - #[test] - fn test_matches_hardhat_serialization() -> anyhow::Result<()> { - // Generated with the "Hardhat Network provider eth_getTransactionReceipt should - // return the right values for successful txs" hardhat-core test. - let receipt_from_hardhat = json!({ - "transactionHash": "0x08d14db1a6253234f7efc94fc661f52b708882552af37ebf4f5cd904618bb208", - "transactionIndex": "0x0", - "blockHash": "0x404b3b3ed507ff47178e9ca9d7757165050180091e1cc17de7981871a6e5785a", - "blockNumber": "0x2", - "from": "0xbe862ad9abfe6f22bcb087716c7d89a26051f74c", - "to": "0x61de9dc6f6cff1df2809480882cfd3c2364b28f7", - "cumulativeGasUsed": "0xaf91", - "gasUsed": "0xaf91", - "contractAddress": null, - "logs": [ - { - "removed": false, - "logIndex": "0x0", - "transactionIndex": "0x0", - "transactionHash": "0x08d14db1a6253234f7efc94fc661f52b708882552af37ebf4f5cd904618bb208", - "blockHash": "0x404b3b3ed507ff47178e9ca9d7757165050180091e1cc17de7981871a6e5785a", - "blockNumber": "0x2", - "address": "0x61de9dc6f6cff1df2809480882cfd3c2364b28f7", - "data": "0x000000000000000000000000000000000000000000000000000000000000000a", - "topics": [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0x0000000000000000000000000000000000000000000000000000000000000000" - ] - } - ], - "logsBloom": "0x00000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000400000000000000000020000000000000000000800000002000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", - "type": "0x2", - "status": "0x1", - "effectiveGasPrice": "0x699e6346" - }); - - let deserialized: BlockReceipt = serde_json::from_value(receipt_from_hardhat.clone())?; - let serialized = serde_json::to_value(deserialized)?; - - assert_json_eq!(receipt_from_hardhat, serialized); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/receipt/transaction.rs b/crates/edr_eth/src/receipt/transaction.rs deleted file mode 100644 index 4ecf0e1a8e..0000000000 --- a/crates/edr_eth/src/receipt/transaction.rs +++ /dev/null @@ -1,122 +0,0 @@ -use std::ops::Deref; - -use alloy_rlp::BufMut; - -use super::TypedReceipt; -use crate::{Address, Bloom, B256, U256}; - -/// Type for a receipt that's created when processing a transaction. -#[derive(Clone, Debug, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct TransactionReceipt { - #[cfg_attr(feature = "serde", serde(flatten))] - pub inner: TypedReceipt, - /// Hash of the transaction - pub transaction_hash: B256, - /// Index of the transaction in the block - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub transaction_index: u64, - /// Address of the sender - pub from: Address, - /// Address of the receiver. `None` when it's a contract creation - /// transaction. - pub to: Option
, - /// The contract address created, if the transaction was a contract - /// creation, otherwise `None`. - pub contract_address: Option
, - /// Gas used by this transaction alone. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_used: u64, - /// The actual value per gas deducted from the senders account, which is - /// equal to equal to baseFeePerGas + min(maxFeePerGas - baseFeePerGas, - /// maxPriorityFeePerGas) after EIP-1559. Following Hardhat, only present if - /// the hardfork is at least London. - #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))] - pub effective_gas_price: Option, -} - -impl TransactionReceipt { - /// Returns the gas used by the transactions up until this point. - pub fn cumulative_gas_used(&self) -> u64 { - self.inner.cumulative_gas_used - } - - /// Returns the bloom filter of transaction's logs. - pub fn logs_bloom(&self) -> &Bloom { - &self.inner.logs_bloom - } - - /// Returns the transaction's logs. - pub fn logs(&self) -> &[L] { - &self.inner.logs - } - /// Returns the status code of the receipt, if any. - pub fn status_code(&self) -> Option { - self.inner.status_code() - } - - /// Returns the state root of the receipt, if any. - pub fn state_root(&self) -> Option<&B256> { - self.inner.state_root() - } - - /// Returns the transaction type of the receipt. - pub fn transaction_type(&self) -> u64 { - self.inner.transaction_type() - } -} - -impl Deref for TransactionReceipt { - type Target = TypedReceipt; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -impl alloy_rlp::Encodable for TransactionReceipt -where - LogT: alloy_rlp::Encodable, -{ - fn encode(&self, out: &mut dyn BufMut) { - self.inner.encode(out); - } - - fn length(&self) -> usize { - self.inner.length() - } -} - -#[cfg(all(test, feature = "serde"))] -mod test { - use revm_primitives::SpecId; - - use super::*; - use crate::receipt::TypedReceiptData; - - #[test] - fn test_transaction_receipt_serde() { - let receipt = TransactionReceipt { - inner: TypedReceipt { - cumulative_gas_used: 100, - logs_bloom: Bloom::default(), - logs: vec![], - data: TypedReceiptData::Eip1559 { status: 1 }, - spec_id: SpecId::LATEST, - }, - transaction_hash: B256::default(), - transaction_index: 5, - from: Address::default(), - to: None, - contract_address: Some(Address::default()), - gas_used: 100, - effective_gas_price: Some(U256::from(100)), - }; - - let serialized = serde_json::to_string(&receipt).unwrap(); - let deserialized: TransactionReceipt<()> = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(receipt, deserialized); - } -} diff --git a/crates/edr_eth/src/remote.rs b/crates/edr_eth/src/remote.rs deleted file mode 100644 index 821e71d99c..0000000000 --- a/crates/edr_eth/src/remote.rs +++ /dev/null @@ -1,19 +0,0 @@ -mod block_spec; -mod cacheable_method_invocation; -mod chain_id; -/// an Ethereum JSON-RPC client -pub mod client; -/// ethereum objects as specifically used in the JSON-RPC interface -pub mod eth; -/// data types for use with filter-based RPC methods -pub mod filter; -/// data types specific to JSON-RPC but not specific to Ethereum. -pub mod jsonrpc; -mod r#override; -mod request_methods; - -pub use self::{ - block_spec::{BlockSpec, BlockTag, Eip1898BlockSpec, PreEip1898BlockSpec}, - client::{RpcClient, RpcClientError}, - r#override::*, -}; diff --git a/crates/edr_eth/src/remote/block_spec.rs b/crates/edr_eth/src/remote/block_spec.rs deleted file mode 100644 index ffddb66fa2..0000000000 --- a/crates/edr_eth/src/remote/block_spec.rs +++ /dev/null @@ -1,438 +0,0 @@ -use std::{ - borrow::Cow, - fmt, - fmt::{Display, Formatter}, -}; - -use serde::de; - -use crate::{B256, U64}; - -const BLOCK_HASH_FIELD: &str = "blockHash"; -const REQUIRE_CANONICAL_FIELD: &str = "requireCanonical"; -const BLOCK_NUMBER_FIELD: &str = "blockNumber"; - -/// for representing block specifications per EIP-1898 -#[derive(Clone, Debug, PartialEq, serde::Serialize)] -#[serde(untagged)] -pub enum Eip1898BlockSpec { - /// to represent the Object { blockHash, requireCanonical } in EIP-1898 - #[serde(rename_all = "camelCase")] - Hash { - /// the block hash - block_hash: B256, - /// whether the server should additionally raise a JSON-RPC error if the - /// block is not in the canonical chain - #[serde(skip_serializing_if = "Option::is_none")] - require_canonical: Option, - }, - /// to represent the Object { blockNumber } in EIP-1898 - #[serde(rename_all = "camelCase")] - Number { - /// the block number - #[serde(serialize_with = "crate::serde::u64::serialize")] - block_number: u64, - }, -} - -// We are not using a derived implementation for untagged enums, because we want -// to be able to error on invalid combinations of fields -impl<'de> serde::Deserialize<'de> for Eip1898BlockSpec { - fn deserialize(deserializer: D) -> Result - where - D: serde::Deserializer<'de>, - { - #[derive(serde::Deserialize)] - #[serde(field_identifier, rename_all = "camelCase")] - enum Field { - BlockHash, - RequireCanonical, - BlockNumber, - } - - // https://serde.rs/deserialize-struct.html - struct Eip1898BlockSpecVisitor; - impl<'de> de::Visitor<'de> for Eip1898BlockSpecVisitor { - type Value = Eip1898BlockSpec; - - fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - formatter.write_str("EIP-1898 block spec") - } - - fn visit_map(self, mut map: M) -> Result - where - M: de::MapAccess<'de>, - { - let mut block_hash = None; - let mut block_number: Option> = None; - let mut require_canonical = None; - while let Some(key) = map.next_key()? { - match key { - Field::BlockHash => { - if block_hash.is_some() { - return Err(de::Error::duplicate_field(BLOCK_HASH_FIELD)); - } - block_hash = Some(map.next_value()?); - } - Field::RequireCanonical => { - if require_canonical.is_some() { - return Err(de::Error::duplicate_field(REQUIRE_CANONICAL_FIELD)); - } - require_canonical = Some(map.next_value()?); - } - Field::BlockNumber => { - if block_number.is_some() { - return Err(de::Error::duplicate_field(BLOCK_NUMBER_FIELD)); - } - block_number = Some(map.next_value()?); - } - } - } - - if block_hash.is_some() && block_number.is_some() { - return Err(de::Error::custom(format!( - "EIP-1898 block spec cannot have both `{BLOCK_HASH_FIELD}` and `{BLOCK_NUMBER_FIELD}`", - ))); - } - - if block_number.is_some() && require_canonical.is_some() { - return Err(de::Error::custom(format!( - "EIP-1898 block spec cannot have both `{BLOCK_NUMBER_FIELD}` and `{REQUIRE_CANONICAL_FIELD}`", - ))); - } - - if let Some(block_hash) = block_hash { - Ok(Eip1898BlockSpec::Hash { - block_hash, - require_canonical, - }) - } else if let Some(block_number) = block_number { - let block_number: U64 = de::Deserialize::deserialize( - de::value::CowStrDeserializer::new(block_number), - )?; - Ok(Eip1898BlockSpec::Number { - block_number: block_number.try_into().expect("U64 fits into u64"), - }) - } else { - Err(de::Error::custom("Invalid EIP-1898 block spec")) - } - } - } - - const FIELDS: &[&str] = &[ - BLOCK_HASH_FIELD, - REQUIRE_CANONICAL_FIELD, - BLOCK_NUMBER_FIELD, - ]; - deserializer.deserialize_struct("Eip1898BlockSpec", FIELDS, Eip1898BlockSpecVisitor) - } -} - -impl Display for Eip1898BlockSpec { - fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), fmt::Error> { - match self { - Eip1898BlockSpec::Hash { block_hash, .. } => block_hash.fmt(formatter), - Eip1898BlockSpec::Number { block_number } => block_number.fmt(formatter), - } - } -} - -/// possible block tags as defined by the Ethereum JSON-RPC specification -#[derive(Clone, Copy, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -pub enum BlockTag { - /// earliest - #[serde(rename = "earliest")] - Earliest, - /// latest - #[serde(rename = "latest")] - Latest, - /// pending - #[serde(rename = "pending")] - Pending, - /// safe - #[serde(rename = "safe")] - Safe, - /// finalized - #[serde(rename = "finalized")] - Finalized, -} - -impl Display for BlockTag { - fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), fmt::Error> { - formatter.write_str(match self { - BlockTag::Earliest => "earliest", - BlockTag::Latest => "latest", - BlockTag::Pending => "pending", - BlockTag::Safe => "safe", - BlockTag::Finalized => "finalized", - }) - } -} - -/// For specifying a block -#[derive(Clone, Debug, PartialEq, serde::Serialize)] -#[serde(untagged)] -pub enum BlockSpec { - /// as a block number - Number(#[serde(serialize_with = "crate::serde::u64::serialize")] u64), - /// as a block tag (eg "latest") - Tag(BlockTag), - /// as an EIP-1898-compliant block specifier - Eip1898(Eip1898BlockSpec), -} - -// We are not using a derived implementation for untagged enums, because we want -// to propagate custom error messages from the `Eip1898BlockSpec` deserializer. -impl<'de> de::Deserialize<'de> for BlockSpec { - fn deserialize(deserializer: D) -> Result - where - D: de::Deserializer<'de>, - { - struct BlockSpecVisitor; - - impl<'de> de::Visitor<'de> for BlockSpecVisitor { - type Value = BlockSpec; - - fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - formatter.write_str("a block specifier") - } - - fn visit_str(self, v: &str) -> Result - where - E: de::Error, - { - let result = if v.starts_with("0x") { - let number: U64 = - de::Deserialize::deserialize(de::value::StrDeserializer::new(v))?; - BlockSpec::Number(number.try_into().expect("U64 fits into u64")) - } else { - // Forward to deserializer of `BlockTag` - BlockSpec::Tag(de::Deserialize::deserialize( - de::value::StrDeserializer::new(v), - )?) - }; - Ok(result) - } - - fn visit_map(self, map: M) -> Result - where - M: de::MapAccess<'de>, - { - // Forward to deserializer of `Eip1898BlockSpec` - Ok(BlockSpec::Eip1898(de::Deserialize::deserialize( - de::value::MapAccessDeserializer::new(map), - )?)) - } - } - - deserializer.deserialize_any(BlockSpecVisitor) - } -} - -macro_rules! impl_block_tags { - ($type_name:ident) => { - impl $type_name { - /// Constructs an instance for the earliest block. - #[must_use] - pub fn earliest() -> Self { - Self::Tag(BlockTag::Earliest) - } - - /// Constructs an instance for the latest block. - #[must_use] - pub fn latest() -> Self { - Self::Tag(BlockTag::Latest) - } - - /// Constructs an instance for the pending block. - #[must_use] - pub fn pending() -> Self { - Self::Tag(BlockTag::Pending) - } - - /// Constructs an instance for the safe block. - #[must_use] - pub fn safe() -> Self { - Self::Tag(BlockTag::Safe) - } - - /// Constructs an instance for the finalized block. - #[must_use] - pub fn finalized() -> Self { - Self::Tag(BlockTag::Finalized) - } - } - }; -} - -impl_block_tags!(BlockSpec); - -impl Display for BlockSpec { - fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), fmt::Error> { - match self { - BlockSpec::Number(n) => n.fmt(formatter), - BlockSpec::Tag(t) => t.fmt(formatter), - BlockSpec::Eip1898(e) => e.fmt(formatter), - } - } -} - -/// A block spec without EIP-1898 support. -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum PreEip1898BlockSpec { - /// as a block number - Number(#[serde(with = "crate::serde::u64")] u64), - /// as a block tag (eg "latest") - Tag(BlockTag), -} - -impl From for BlockSpec { - fn from(value: PreEip1898BlockSpec) -> Self { - match value { - PreEip1898BlockSpec::Number(block_number) => BlockSpec::Number(block_number), - PreEip1898BlockSpec::Tag(block_tag) => BlockSpec::Tag(block_tag), - } - } -} - -impl_block_tags!(PreEip1898BlockSpec); - -#[cfg(test)] -mod tests { - use serde_json::json; - - use super::*; - use crate::U256; - - fn help_test_block_spec_serde(block_spec: BlockSpec) { - let json = serde_json::json!(block_spec).to_string(); - let block_spec_decoded: BlockSpec = serde_json::from_str(&json) - .unwrap_or_else(|_| panic!("should have successfully deserialized json {json}")); - assert_eq!(block_spec, block_spec_decoded); - } - - #[test] - fn test_serde_block_spec() { - help_test_block_spec_serde(BlockSpec::Number(123)); - help_test_block_spec_serde(BlockSpec::Tag(BlockTag::Earliest)); - help_test_block_spec_serde(BlockSpec::Tag(BlockTag::Finalized)); - help_test_block_spec_serde(BlockSpec::Tag(BlockTag::Latest)); - help_test_block_spec_serde(BlockSpec::Tag(BlockTag::Pending)); - help_test_block_spec_serde(BlockSpec::Tag(BlockTag::Safe)); - help_test_block_spec_serde(BlockSpec::Eip1898(Eip1898BlockSpec::Hash { - block_hash: B256::from(U256::from(1)), - require_canonical: Some(true), - })); - help_test_block_spec_serde(BlockSpec::Eip1898(Eip1898BlockSpec::Hash { - block_hash: B256::from(U256::from(1)), - require_canonical: None, - })); - help_test_block_spec_serde(BlockSpec::Eip1898(Eip1898BlockSpec::Number { - block_number: 1, - })); - } - - #[test] - fn test_eip_1898_block_number_serialization() { - let block_spec = Eip1898BlockSpec::Number { block_number: 1 }; - let serialize = serde_json::to_string(&block_spec).unwrap(); - assert!(serialize.contains("0x1")); - } - - #[test] - fn test_eip_1898_block_hash_serialization_skips_canonical_none() { - let block_spec = Eip1898BlockSpec::Hash { - block_hash: B256::from(U256::from(1)), - require_canonical: None, - }; - let serialize = serde_json::to_string(&block_spec).unwrap(); - assert!(!serialize.contains("requireCanonical")); - } - - #[test] - fn test_block_spec_eip_1898_block_number_deserialization() { - // Owned value - let value = json!({"blockNumber": "0x1"}); - let block_spec: BlockSpec = serde_json::from_value(value).unwrap(); - assert!(matches!( - block_spec, - BlockSpec::Eip1898(Eip1898BlockSpec::Number { block_number: 1 }) - )); - } - - #[test] - fn test_block_spec_eip_1898_block_number_from_str_deserialization() { - let value = r#"{"blockNumber": "0x1"}"#; - // Check that the deserializer works for references as well (serde_json::Value - // is owned). - let block_spec: BlockSpec = serde_json::from_str(value).unwrap(); - assert!(matches!( - block_spec, - BlockSpec::Eip1898(Eip1898BlockSpec::Number { block_number: 1 }) - )); - } - - #[test] - fn test_block_spec_eip_1898_block_hash_deserialization() { - let value = json!({ - "blockHash": "0xa3294400ca7d8dc2c1a9120b2178718700fd2a0f58d59c518cc25767524fe0f2" - }); - let block_spec: BlockSpec = serde_json::from_value(value).unwrap(); - assert!(matches!( - block_spec, - BlockSpec::Eip1898(Eip1898BlockSpec::Hash { - block_hash: _, - require_canonical: None - }) - )); - } - - #[test] - fn test_block_spec_eip_1898_block_hash_canonical_deserialization() { - let value = json!({ - "blockHash": "0xa3294400ca7d8dc2c1a9120b2178718700fd2a0f58d59c518cc25767524fe0f2", - "requireCanonical": true - }); - let block_spec: BlockSpec = serde_json::from_value(value).unwrap(); - assert!(matches!( - block_spec, - BlockSpec::Eip1898(Eip1898BlockSpec::Hash { - block_hash: _, - require_canonical: Some(true) - }) - )); - } - - #[test] - fn test_block_spec_eip_1898_block_number_and_hash_deserialization_error() { - let value = json!({ - "blockNumber": "0x0", - "blockHash": "0xa3294400ca7d8dc2c1a9120b2178718700fd2a0f58d59c518cc25767524fe0f2" - }); - let error_message = serde_json::from_value::(value) - .err() - .unwrap() - .to_string(); - assert_eq!( - error_message, - "EIP-1898 block spec cannot have both `blockHash` and `blockNumber`" - ); - } - - #[test] - fn test_block_spec_eip_1898_block_number_and_canonical_deserialization_error() { - let value = json!({ - "blockNumber": "0x0", - "requireCanonical": true - }); - let error_message = serde_json::from_value::(value) - .err() - .unwrap() - .to_string(); - assert_eq!( - error_message, - "EIP-1898 block spec cannot have both `blockNumber` and `requireCanonical`" - ); - } -} diff --git a/crates/edr_eth/src/remote/cacheable_method_invocation.rs b/crates/edr_eth/src/remote/cacheable_method_invocation.rs deleted file mode 100644 index aa619528a3..0000000000 --- a/crates/edr_eth/src/remote/cacheable_method_invocation.rs +++ /dev/null @@ -1,973 +0,0 @@ -use sha3::{digest::FixedOutput, Digest, Sha3_256}; - -use super::filter::{LogFilterOptions, OneOrMore}; -use crate::{ - block::{is_safe_block_number, IsSafeBlockNumberArgs}, - remote::{ - request_methods::RequestMethod, BlockSpec, BlockTag, Eip1898BlockSpec, PreEip1898BlockSpec, - }, - reward_percentile::RewardPercentile, - Address, B256, U256, -}; - -pub(super) fn try_read_cache_key(method: &RequestMethod) -> Option { - CacheableRequestMethod::try_from(method) - .ok() - .and_then(CacheableRequestMethod::read_cache_key) -} - -pub(super) fn try_write_cache_key(method: &RequestMethod) -> Option { - CacheableRequestMethod::try_from(method) - .ok() - .and_then(CacheableRequestMethod::write_cache_key) -} - -/// Potentially cacheable Ethereum JSON-RPC methods. -#[derive(Clone, Debug)] -enum CacheableRequestMethod<'a> { - /// eth_feeHistory - FeeHistory { - block_count: &'a U256, - newest_block: CacheableBlockSpec<'a>, - reward_percentiles: &'a Option>, - }, - /// eth_getBalance - GetBalance { - address: &'a Address, - block_spec: CacheableBlockSpec<'a>, - }, - /// eth_getBlockByNumber - GetBlockByNumber { - block_spec: CacheableBlockSpec<'a>, - - /// include transaction data - include_tx_data: bool, - }, - /// eth_getBlockByHash - GetBlockByHash { - /// hash - block_hash: &'a B256, - /// include transaction data - include_tx_data: bool, - }, - /// eth_getCode - GetCode { - address: &'a Address, - block_spec: CacheableBlockSpec<'a>, - }, - /// eth_getLogs - GetLogs { - params: CacheableLogFilterOptions<'a>, - }, - /// eth_getStorageAt - GetStorageAt { - address: &'a Address, - position: &'a U256, - block_spec: CacheableBlockSpec<'a>, - }, - /// eth_getTransactionByHash - GetTransactionByHash { transaction_hash: &'a B256 }, - /// eth_getTransactionCount - GetTransactionCount { - address: &'a Address, - block_spec: CacheableBlockSpec<'a>, - }, - /// eth_getTransactionReceipt - GetTransactionReceipt { transaction_hash: &'a B256 }, - /// net_version - NetVersion, -} - -impl<'a> CacheableRequestMethod<'a> { - fn read_cache_key(self) -> Option { - let cache_key = Hasher::new().hash_method(&self).ok()?.finalize(); - Some(ReadCacheKey(cache_key)) - } - - #[allow(clippy::match_same_arms)] - fn write_cache_key(self) -> Option { - match Hasher::new().hash_method(&self) { - Err(SymbolicBlogTagError) => WriteCacheKey::needs_block_number(self), - Ok(hasher) => match self { - CacheableRequestMethod::FeeHistory { - block_count: _, - newest_block, - reward_percentiles: _, - } => WriteCacheKey::needs_safety_check(hasher, newest_block), - CacheableRequestMethod::GetBalance { - address: _, - block_spec, - } => WriteCacheKey::needs_safety_check(hasher, block_spec), - CacheableRequestMethod::GetBlockByNumber { - block_spec, - include_tx_data: _, - } => WriteCacheKey::needs_safety_check(hasher, block_spec), - CacheableRequestMethod::GetBlockByHash { - block_hash: _, - include_tx_data: _, - } => Some(WriteCacheKey::finalize(hasher)), - CacheableRequestMethod::GetCode { - address: _, - block_spec, - } => WriteCacheKey::needs_safety_check(hasher, block_spec), - CacheableRequestMethod::GetLogs { - params: CacheableLogFilterOptions { range, .. }, - } => WriteCacheKey::needs_range_check(hasher, range), - CacheableRequestMethod::GetStorageAt { - address: _, - position: _, - block_spec, - } => WriteCacheKey::needs_safety_check(hasher, block_spec), - CacheableRequestMethod::GetTransactionByHash { - transaction_hash: _, - } => Some(WriteCacheKey::finalize(hasher)), - CacheableRequestMethod::GetTransactionCount { - address: _, - block_spec, - } => WriteCacheKey::needs_safety_check(hasher, block_spec), - CacheableRequestMethod::GetTransactionReceipt { - transaction_hash: _, - } => Some(WriteCacheKey::finalize(hasher)), - CacheableRequestMethod::NetVersion => Some(WriteCacheKey::finalize(hasher)), - }, - } - } -} - -/// Error type for [`CacheableRequestMethod::try_from`]. -#[derive(thiserror::Error, Debug)] -enum MethodNotCacheableError { - #[error(transparent)] - BlockSpec(#[from] BlockSpecNotCacheableError), - #[error("Method is not cacheable: {0:?}")] - RequestMethod(RequestMethod), - #[error("Get logs input is not cacheable: {0:?}")] - GetLogsInput(#[from] LogFilterOptionsNotCacheableError), - #[error(transparent)] - PreEip18989BlockSpec(#[from] PreEip1898BlockSpecNotCacheableError), -} - -impl<'a> TryFrom<&'a RequestMethod> for CacheableRequestMethod<'a> { - type Error = MethodNotCacheableError; - - fn try_from(value: &'a RequestMethod) -> Result { - match value { - RequestMethod::FeeHistory(block_count, newest_block, reward_percentiles) => { - Ok(CacheableRequestMethod::FeeHistory { - block_count, - newest_block: newest_block.try_into()?, - reward_percentiles, - }) - } - RequestMethod::GetBalance(address, block_spec) => { - Ok(CacheableRequestMethod::GetBalance { - address, - block_spec: block_spec.try_into()?, - }) - } - RequestMethod::GetBlockByNumber(block_spec, include_tx_data) => { - Ok(CacheableRequestMethod::GetBlockByNumber { - block_spec: block_spec.try_into()?, - include_tx_data: *include_tx_data, - }) - } - RequestMethod::GetBlockByHash(block_hash, include_tx_data) => { - Ok(CacheableRequestMethod::GetBlockByHash { - block_hash, - include_tx_data: *include_tx_data, - }) - } - RequestMethod::GetCode(address, block_spec) => Ok(CacheableRequestMethod::GetCode { - address, - block_spec: block_spec.try_into()?, - }), - RequestMethod::GetLogs(params) => Ok(CacheableRequestMethod::GetLogs { - params: params.try_into()?, - }), - RequestMethod::GetStorageAt(address, position, block_spec) => { - Ok(CacheableRequestMethod::GetStorageAt { - address, - position, - block_spec: block_spec.try_into()?, - }) - } - RequestMethod::GetTransactionByHash(transaction_hash) => { - Ok(CacheableRequestMethod::GetTransactionByHash { transaction_hash }) - } - RequestMethod::GetTransactionCount(address, block_spec) => { - Ok(CacheableRequestMethod::GetTransactionCount { - address, - block_spec: block_spec.try_into()?, - }) - } - RequestMethod::GetTransactionReceipt(transaction_hash) => { - Ok(CacheableRequestMethod::GetTransactionReceipt { transaction_hash }) - } - RequestMethod::NetVersion(_) => Ok(CacheableRequestMethod::NetVersion), - - // Explicit to make sure if a new method is added, it is not forgotten here. - // Chain id is not cacheable since a remote might change its chain id e.g. if it's a - // forked node running on localhost. - RequestMethod::BlockNumber(_) | RequestMethod::ChainId(_) => { - Err(MethodNotCacheableError::RequestMethod(value.clone())) - } - } - } -} - -/// A block argument specification that is potentially cacheable. -#[derive(Clone, Debug)] -enum CacheableBlockSpec<'a> { - /// Block number - Number { block_number: u64 }, - /// Block hash - Hash { - block_hash: &'a B256, - require_canonical: Option, - }, - /// "earliest" block tag - Earliest, - /// "safe" block tag - Safe, - /// "finalized" block tag - Finalized, -} - -/// Error type for [`CacheableBlockSpec::try_from`]. -#[derive(thiserror::Error, Debug)] -#[error("Block spec is not cacheable: {0:?}")] -struct BlockSpecNotCacheableError(Option); - -impl<'a> TryFrom<&'a BlockSpec> for CacheableBlockSpec<'a> { - type Error = BlockSpecNotCacheableError; - - fn try_from(value: &'a BlockSpec) -> Result { - match value { - BlockSpec::Number(block_number) => Ok(CacheableBlockSpec::Number { - block_number: *block_number, - }), - BlockSpec::Tag(tag) => match tag { - // Latest and pending can be never resolved to a safe block number. - BlockTag::Latest | BlockTag::Pending => { - Err(BlockSpecNotCacheableError(Some(value.clone()))) - } - // Earliest, safe and finalized are potentially resolvable to a safe block number. - BlockTag::Earliest => Ok(CacheableBlockSpec::Earliest), - BlockTag::Safe => Ok(CacheableBlockSpec::Safe), - BlockTag::Finalized => Ok(CacheableBlockSpec::Finalized), - }, - BlockSpec::Eip1898(spec) => match spec { - Eip1898BlockSpec::Hash { - block_hash, - require_canonical, - } => Ok(CacheableBlockSpec::Hash { - block_hash, - require_canonical: *require_canonical, - }), - Eip1898BlockSpec::Number { block_number } => Ok(CacheableBlockSpec::Number { - block_number: *block_number, - }), - }, - } - } -} - -impl<'a> TryFrom<&'a Option> for CacheableBlockSpec<'a> { - type Error = BlockSpecNotCacheableError; - - fn try_from(value: &'a Option) -> Result { - match value { - None => Err(BlockSpecNotCacheableError(None)), - Some(block_spec) => CacheableBlockSpec::try_from(block_spec), - } - } -} - -/// Error type for [`CacheableBlockSpec::try_from`]. -#[derive(thiserror::Error, Debug)] -#[error("Block spec is not cacheable: {0:?}")] -struct PreEip1898BlockSpecNotCacheableError(PreEip1898BlockSpec); - -impl<'a> TryFrom<&'a PreEip1898BlockSpec> for CacheableBlockSpec<'a> { - type Error = PreEip1898BlockSpecNotCacheableError; - - fn try_from(value: &'a PreEip1898BlockSpec) -> Result { - match value { - PreEip1898BlockSpec::Number(block_number) => Ok(CacheableBlockSpec::Number { - block_number: *block_number, - }), - PreEip1898BlockSpec::Tag(tag) => match tag { - // Latest and pending can never be resolved to a safe block number. - BlockTag::Latest | BlockTag::Pending => { - Err(PreEip1898BlockSpecNotCacheableError(value.clone())) - } - // Earliest, safe and finalized are potentially resolvable to a safe block number. - BlockTag::Earliest => Ok(CacheableBlockSpec::Earliest), - BlockTag::Safe => Ok(CacheableBlockSpec::Safe), - BlockTag::Finalized => Ok(CacheableBlockSpec::Finalized), - }, - } - } -} - -/// A cacheable range input for the `eth_getLogs` method. -#[derive(Clone, Debug)] -enum CacheableLogFilterRange<'a> { - /// The `block_hash` argument - Hash(&'a B256), - Range { - /// The `from_block` argument - from_block: CacheableBlockSpec<'a>, - /// The `to_block` argument - to_block: CacheableBlockSpec<'a>, - }, -} - -impl<'a> TryFrom<&'a LogFilterOptions> for CacheableLogFilterRange<'a> { - type Error = LogFilterOptionsNotCacheableError; - - fn try_from(value: &'a LogFilterOptions) -> Result { - let map_err = |_| LogFilterOptionsNotCacheableError(value.clone()); - - if let Some(from_block) = &value.from_block { - if let Some(to_block) = &value.to_block { - if value.block_hash.is_none() { - let range = Self::Range { - from_block: from_block.try_into().map_err(map_err)?, - to_block: to_block.try_into().map_err(map_err)?, - }; - - return Ok(range); - } - } - } else if let Some(block_hash) = &value.block_hash { - if value.from_block.is_none() { - return Ok(Self::Hash(block_hash)); - } - } - - Err(LogFilterOptionsNotCacheableError(value.clone())) - } -} - -/// A cacheable input for the `eth_getLogs` method. -#[derive(Clone, Debug)] -struct CacheableLogFilterOptions<'a> { - /// The range - range: CacheableLogFilterRange<'a>, - /// The address - address: Vec<&'a Address>, - /// The topics - topics: Vec>>, -} - -/// Error type for [`CacheableBlockSpec::try_from`]. -#[derive(thiserror::Error, Debug)] -#[error("Method is not cacheable: {0:?}")] -struct LogFilterOptionsNotCacheableError(LogFilterOptions); - -impl<'a> TryFrom<&'a LogFilterOptions> for CacheableLogFilterOptions<'a> { - type Error = LogFilterOptionsNotCacheableError; - - fn try_from(value: &'a LogFilterOptions) -> Result { - let range = CacheableLogFilterRange::try_from(value)?; - - Ok(Self { - range, - address: value - .address - .as_ref() - .map_or(Vec::new(), |address| match address { - OneOrMore::One(address) => vec![address], - OneOrMore::Many(addresses) => addresses.iter().collect(), - }), - topics: value.topics.as_ref().map_or(Vec::new(), |topics| { - topics - .iter() - .map(|options| { - options.as_ref().map(|options| match options { - OneOrMore::One(topic) => vec![topic], - OneOrMore::Many(topics) => topics.iter().collect(), - }) - }) - .collect() - }), - }) - } -} - -#[derive(Debug, Clone)] -pub(super) enum WriteCacheKey { - /// It needs to be checked whether the block number is safe (reorg-free) - /// before writing to the cache. - NeedsSafetyCheck(CacheKeyForUncheckedBlockNumber), - /// The method invocation contains a symbolic block spec (e.g. "finalized") - /// that needs to be resolved to a block number before the result can be - /// cached. - NeedsBlockNumber(CacheKeyForSymbolicBlockTag), - /// The cache key is fully resolved and can be used to write to the cache. - Resolved(String), -} - -impl WriteCacheKey { - fn finalize(hasher: Hasher) -> Self { - Self::Resolved(hasher.finalize()) - } - - fn needs_range_check(hasher: Hasher, range: CacheableLogFilterRange<'_>) -> Option { - match range { - CacheableLogFilterRange::Hash(_) => Some(Self::finalize(hasher)), - CacheableLogFilterRange::Range { to_block, .. } => { - // TODO should we check that to < from? - Self::needs_safety_check(hasher, to_block) - } - } - } - - fn needs_safety_check(hasher: Hasher, block_spec: CacheableBlockSpec<'_>) -> Option { - match block_spec { - CacheableBlockSpec::Number { block_number } => { - Some(Self::NeedsSafetyCheck(CacheKeyForUncheckedBlockNumber { - hasher: Box::new(hasher), - block_number, - })) - } - CacheableBlockSpec::Hash { .. } => Some(Self::finalize(hasher)), - CacheableBlockSpec::Earliest - | CacheableBlockSpec::Safe - | CacheableBlockSpec::Finalized => None, - } - } - - fn needs_block_number(method: CacheableRequestMethod<'_>) -> Option { - Some(Self::NeedsBlockNumber(CacheKeyForSymbolicBlockTag { - method: MethodWithResolvableSymbolicBlockSpec::new(method)?, - })) - } -} - -#[derive(Debug, Clone)] -pub(super) struct CacheKeyForUncheckedBlockNumber { - // Boxed to keep the size of the enum small. - hasher: Box, - pub(super) block_number: u64, -} - -impl CacheKeyForUncheckedBlockNumber { - /// Check whether the block number is safe to cache before returning a cache - /// key. - pub fn validate_block_number(self, chain_id: u64, latest_block_number: u64) -> Option { - let is_safe = is_safe_block_number(IsSafeBlockNumberArgs { - chain_id, - latest_block_number, - block_number: self.block_number, - }); - if is_safe { - Some(self.hasher.finalize()) - } else { - None - } - } -} - -#[derive(Debug, Clone)] -pub(super) enum ResolvedSymbolicTag { - /// It needs to be checked whether the block number is safe (reorg-free) - /// before writing to the cache. - NeedsSafetyCheck(CacheKeyForUncheckedBlockNumber), - /// The cache key is fully resolved and can be used to write to the cache. - Resolved(String), -} - -#[derive(Debug, Clone)] -pub(super) struct CacheKeyForSymbolicBlockTag { - method: MethodWithResolvableSymbolicBlockSpec, -} - -impl CacheKeyForSymbolicBlockTag { - /// Check whether the block number is safe to cache before returning a cache - /// key. - pub(super) fn resolve_symbolic_tag(self, block_number: u64) -> Option { - let resolved_block_spec = CacheableBlockSpec::Number { block_number }; - - let resolved_method = match self.method { - MethodWithResolvableSymbolicBlockSpec::GetBlockByNumber { - include_tx_data, .. - } => CacheableRequestMethod::GetBlockByNumber { - block_spec: resolved_block_spec, - include_tx_data, - }, - }; - - resolved_method.write_cache_key().map(|key| match key { - WriteCacheKey::NeedsSafetyCheck(cache_key) => { - ResolvedSymbolicTag::NeedsSafetyCheck(cache_key) - } - WriteCacheKey::Resolved(cache_key) => ResolvedSymbolicTag::Resolved(cache_key), - WriteCacheKey::NeedsBlockNumber(_) => { - unreachable!("resolved block spec should not need block number") - } - }) - } -} - -/// Method invocations where, if the block spec argument is symbolic, it can be -/// resolved to a block number from the response. -#[derive(Debug, Clone)] -pub(super) enum MethodWithResolvableSymbolicBlockSpec { - GetBlockByNumber { include_tx_data: bool }, -} - -impl<'a> MethodWithResolvableSymbolicBlockSpec { - fn new(method: CacheableRequestMethod<'a>) -> Option { - match method { - CacheableRequestMethod::GetBlockByNumber { - include_tx_data, - block_spec: _, - } => Some(Self::GetBlockByNumber { include_tx_data }), - _ => None, - } - } -} - -/// A cache key that can be used to read from the cache. -/// It's based on not-fully resolved data, so it's not safe to write to this -/// cache key. Specifically, it's not checked whether the block number is safe -/// to cache (safe from reorgs). This is ok for reading from the cache, since -/// the result will be a cache miss if the block number is not safe to cache and -/// not having to resolve this data for reading offers performance advantages. -#[derive(Debug, Clone, PartialEq, Eq)] -#[repr(transparent)] -pub(super) struct ReadCacheKey(String); - -impl AsRef for ReadCacheKey { - fn as_ref(&self) -> &str { - &self.0 - } -} - -#[derive(Debug, Clone)] -struct Hasher { - hasher: Sha3_256, -} - -// The methods take `mut self` instead of `&mut self` to make sure no hash is -// constructed if one of the method arguments are invalid (in which case the -// method returns None and consumes self). -// -// Before variants of an enum are hashed, a variant marker is hashed before -// hashing the values of the variants to distinguish between them. E.g. the hash -// of `Enum::Foo(1u8)` should not equal the hash of `Enum::Bar(1u8)`, since -// these are not logically equivalent. This matches the behavior of the `Hash` -// derivation of the Rust standard library for enums. -// -// Instead of ignoring `None` values, the same pattern is followed for Options -// in order to let us distinguish between `[None, Some("a")]` and `[Some("a")]`. -// Note that if we use the cache key variant `0u8` for `None`, it's ok if `None` -// and `0u8`, hash to the same values since a type where `Option` and `u8` are -// valid values must be wrapped in an enum in Rust and the enum cache key -// variant prefix will distinguish between them. This wouldn't be the case with -// JSON though. -// -// When adding new types such as sequences or strings, [prefix -// collisions](https://doc.rust-lang.org/std/hash/trait.Hash.html#prefix-collisions) should be -// considered. -impl Hasher { - fn new() -> Self { - Self { - hasher: Sha3_256::new(), - } - } - - fn hash_bytes(mut self, bytes: impl AsRef<[u8]>) -> Self { - self.hasher.update(bytes); - - self - } - - fn hash_u8(self, value: u8) -> Self { - self.hash_bytes(value.to_le_bytes()) - } - - fn hash_bool(self, value: &bool) -> Self { - self.hash_u8(u8::from(*value)) - } - - fn hash_address(self, address: &Address) -> Self { - self.hash_bytes(address) - } - - fn hash_u64(self, value: u64) -> Self { - self.hash_bytes(value.to_le_bytes()) - } - - fn hash_u256(self, value: &U256) -> Self { - self.hash_bytes(value.as_le_bytes()) - } - - fn hash_b256(self, value: &B256) -> Self { - self.hash_bytes(value) - } - - fn hash_block_spec( - self, - block_spec: &CacheableBlockSpec<'_>, - ) -> Result { - let this = self.hash_u8(block_spec.cache_key_variant()); - - match block_spec { - CacheableBlockSpec::Number { block_number } => Ok(this.hash_u64(*block_number)), - CacheableBlockSpec::Hash { - block_hash, - require_canonical, - } => { - let this = this - .hash_b256(block_hash) - .hash_u8(require_canonical.cache_key_variant()); - match require_canonical { - Some(require_canonical) => Ok(this.hash_bool(require_canonical)), - None => Ok(this), - } - } - CacheableBlockSpec::Earliest - | CacheableBlockSpec::Safe - | CacheableBlockSpec::Finalized => Err(SymbolicBlogTagError), - } - } - - fn hash_log_filter_options( - self, - params: &CacheableLogFilterOptions<'_>, - ) -> Result { - // Destructuring to make sure we get a compiler error here if the fields change. - let CacheableLogFilterOptions { - range, - address, - topics, - } = params; - - let mut this = self - .hash_log_filter_range(range)? - .hash_u64(address.len() as u64); - - for address in address { - this = this.hash_address(address); - } - - this = this.hash_u64(topics.len() as u64); - for options in topics { - this = this.hash_u8(options.cache_key_variant()); - if let Some(options) = options { - this = this.hash_u64(options.len() as u64); - for option in options { - this = this.hash_b256(option); - } - } - } - - Ok(this) - } - - fn hash_log_filter_range( - self, - params: &CacheableLogFilterRange<'_>, - ) -> Result { - let this = self.hash_u8(params.cache_key_variant()); - - match params { - CacheableLogFilterRange::Hash(block_hash) => Ok(this.hash_b256(block_hash)), - CacheableLogFilterRange::Range { - from_block, - to_block, - } => Ok(this - .hash_block_spec(from_block)? - .hash_block_spec(to_block)?), - } - } - - // Allow to keep same structure as other RequestMethod and other methods. - #[allow(clippy::match_same_arms)] - fn hash_method( - self, - method: &CacheableRequestMethod<'_>, - ) -> Result { - let this = self.hash_u8(method.cache_key_variant()); - - let this = match method { - CacheableRequestMethod::FeeHistory { - block_count, - newest_block, - reward_percentiles, - } => { - let this = this - .hash_u256(block_count) - .hash_block_spec(newest_block)? - .hash_u8(reward_percentiles.cache_key_variant()); - match reward_percentiles { - Some(reward_percentiles) => this.hash_reward_percentiles(reward_percentiles), - None => this, - } - } - CacheableRequestMethod::GetBalance { - address, - block_spec, - } => this.hash_address(address).hash_block_spec(block_spec)?, - CacheableRequestMethod::GetBlockByNumber { - block_spec, - include_tx_data, - } => this.hash_block_spec(block_spec)?.hash_bool(include_tx_data), - CacheableRequestMethod::GetBlockByHash { - block_hash, - include_tx_data, - } => this.hash_b256(block_hash).hash_bool(include_tx_data), - CacheableRequestMethod::GetCode { - address, - block_spec, - } => this.hash_address(address).hash_block_spec(block_spec)?, - CacheableRequestMethod::GetLogs { params } => this.hash_log_filter_options(params)?, - CacheableRequestMethod::GetStorageAt { - address, - position, - block_spec, - } => this - .hash_address(address) - .hash_u256(position) - .hash_block_spec(block_spec)?, - CacheableRequestMethod::GetTransactionByHash { transaction_hash } => { - this.hash_b256(transaction_hash) - } - CacheableRequestMethod::GetTransactionCount { - address, - block_spec, - } => this.hash_address(address).hash_block_spec(block_spec)?, - CacheableRequestMethod::GetTransactionReceipt { transaction_hash } => { - this.hash_b256(transaction_hash) - } - CacheableRequestMethod::NetVersion => this, - }; - - Ok(this) - } - - fn hash_reward_percentile(self, value: &RewardPercentile) -> Self { - const RESOLUTION: f64 = 100.0; - // `RewardPercentile` is an f64 in range [0, 100], so this is guaranteed not to - // overflow. - self.hash_u64((value.as_ref() * RESOLUTION).floor() as u64) - } - - fn hash_reward_percentiles(self, value: &[RewardPercentile]) -> Self { - let mut this = self.hash_u64(value.len() as u64); - for v in value { - this = this.hash_reward_percentile(v); - } - this - } - - fn finalize(self) -> String { - hex::encode(self.hasher.finalize_fixed()) - } -} - -#[derive(thiserror::Error, Debug)] -#[error("A symbolic block tag is not hashable.")] -struct SymbolicBlogTagError; - -// This could be replaced by the unstable -// [`core::intrinsics::discriminant_value`](https://dev-doc.rust-lang.org/beta/core/intrinsics/fn.discriminant_value.html) -// function once it becomes stable. -trait CacheKeyVariant { - fn cache_key_variant(&self) -> u8; -} - -impl CacheKeyVariant for Option { - fn cache_key_variant(&self) -> u8 { - match self { - None => 0, - Some(_) => 1, - } - } -} - -impl<'a> CacheKeyVariant for &'a CacheableRequestMethod<'a> { - fn cache_key_variant(&self) -> u8 { - match self { - // The commented out methods have been removed as they're not currently in use by the - // RPC client. If they're added back, they should keep their old variant - // number. CacheableRequestMethod::ChainId => 0, - CacheableRequestMethod::GetBalance { .. } => 1, - CacheableRequestMethod::GetBlockByNumber { .. } => 2, - CacheableRequestMethod::GetBlockByHash { .. } => 3, - // CacheableRequestMethod::GetBlockTransactionCountByHash { .. } => 4, - // CacheableRequestMethod::GetBlockTransactionCountByNumber { .. } => 5, - CacheableRequestMethod::GetCode { .. } => 6, - CacheableRequestMethod::GetLogs { .. } => 7, - CacheableRequestMethod::GetStorageAt { .. } => 8, - // CacheableRequestMethod::GetTransactionByBlockHashAndIndex { .. } => 9, - // CacheableRequestMethod::GetTransactionByBlockNumberAndIndex { .. } => 10, - CacheableRequestMethod::GetTransactionByHash { .. } => 11, - CacheableRequestMethod::GetTransactionCount { .. } => 12, - CacheableRequestMethod::GetTransactionReceipt { .. } => 13, - CacheableRequestMethod::NetVersion => 14, - CacheableRequestMethod::FeeHistory { .. } => 15, - } - } -} - -impl<'a> CacheKeyVariant for CacheableBlockSpec<'a> { - fn cache_key_variant(&self) -> u8 { - match self { - CacheableBlockSpec::Number { .. } => 0, - CacheableBlockSpec::Hash { .. } => 1, - CacheableBlockSpec::Earliest => 2, - CacheableBlockSpec::Safe => 3, - CacheableBlockSpec::Finalized => 4, - } - } -} - -impl<'a> CacheKeyVariant for CacheableLogFilterRange<'a> { - fn cache_key_variant(&self) -> u8 { - match self { - CacheableLogFilterRange::Hash(_) => 0, - CacheableLogFilterRange::Range { .. } => 1, - } - } -} - -#[cfg(test)] -mod test { - use super::*; - - #[test] - fn test_hash_length() { - let hash = Hasher::new().hash_u8(0).finalize(); - // 32 bytes as hex - assert_eq!(hash.len(), 2 * 32); - } - - #[test] - fn test_hasher_block_spec_hash_and_number_not_equal() { - let block_number = u64::default(); - let block_hash = B256::default(); - - let hash_one = Hasher::new() - .hash_block_spec(&CacheableBlockSpec::Hash { - block_hash: &block_hash, - require_canonical: None, - }) - .unwrap() - .finalize(); - let hash_two = Hasher::new() - .hash_block_spec(&CacheableBlockSpec::Number { block_number }) - .unwrap() - .finalize(); - - assert_ne!(hash_one, hash_two); - } - - #[test] - fn test_get_logs_input_from_to_matters() { - let from = CacheableBlockSpec::Number { block_number: 1 }; - let to = CacheableBlockSpec::Number { block_number: 2 }; - let address = Address::default(); - - let hash_one = Hasher::new() - .hash_log_filter_options(&CacheableLogFilterOptions { - range: CacheableLogFilterRange::Range { - from_block: from.clone(), - to_block: to.clone(), - }, - address: vec![&address], - topics: Vec::new(), - }) - .unwrap() - .finalize(); - - let hash_two = Hasher::new() - .hash_log_filter_options(&CacheableLogFilterOptions { - range: CacheableLogFilterRange::Range { - from_block: to, - to_block: from, - }, - address: vec![&address], - topics: Vec::new(), - }) - .unwrap() - .finalize(); - - assert_ne!(hash_one, hash_two); - } - - #[test] - fn test_same_arguments_keys_not_equal() { - let value = B256::default(); - let key_one = CacheableRequestMethod::GetTransactionByHash { - transaction_hash: &value, - } - .read_cache_key() - .unwrap(); - let key_two = CacheableRequestMethod::GetTransactionReceipt { - transaction_hash: &value, - } - .read_cache_key() - .unwrap(); - - assert_ne!(key_one, key_two); - } - - #[test] - fn test_get_storage_at_block_spec_is_taken_into_account() { - let address = Address::default(); - let position = U256::default(); - - let key_one = CacheableRequestMethod::GetStorageAt { - address: &address, - position: &position, - block_spec: CacheableBlockSpec::Hash { - block_hash: &B256::default(), - require_canonical: None, - }, - } - .read_cache_key() - .unwrap(); - - let key_two = CacheableRequestMethod::GetStorageAt { - address: &address, - position: &position, - block_spec: CacheableBlockSpec::Number { - block_number: u64::default(), - }, - } - .read_cache_key() - .unwrap(); - - assert_ne!(key_one, key_two); - } - - #[test] - fn test_get_storage_at_block_same_matches() { - let address = Address::default(); - let position = U256::default(); - let block_number = u64::default(); - let block_spec = CacheableBlockSpec::Number { block_number }; - - let key_one = CacheableRequestMethod::GetStorageAt { - address: &address, - position: &position, - block_spec: block_spec.clone(), - } - .read_cache_key() - .unwrap(); - - let key_two = CacheableRequestMethod::GetStorageAt { - address: &address, - position: &position, - block_spec, - } - .read_cache_key() - .unwrap(); - - assert_eq!(key_one, key_two); - } -} diff --git a/crates/edr_eth/src/remote/chain_id.rs b/crates/edr_eth/src/remote/chain_id.rs deleted file mode 100644 index 6a927e5839..0000000000 --- a/crates/edr_eth/src/remote/chain_id.rs +++ /dev/null @@ -1,36 +0,0 @@ -pub(super) fn chain_id_from_url(url: &url::Url) -> Option { - let host = url.host_str()?; - match host { - "mainnet.infura.io" | "eth-mainnet.g.alchemy.com" => Some(1), - _ => None, - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use url::Url; - - use super::*; - - #[test] - fn mainnet() -> anyhow::Result<()> { - let url = Url::from_str("https://mainnet.infura.io/v3/abcdefgh123456789")?; - assert_eq!(chain_id_from_url(&url), Some(1)); - - let url = Url::from_str("https://eth-mainnet.g.alchemy.com/v2/abcdefgh123456789")?; - assert_eq!(chain_id_from_url(&url), Some(1)); - - let url = Url::from_str("https://eth-goerli.g.alchemy.com/v2/abcdefgh123456789")?; - assert_eq!(chain_id_from_url(&url), None); - - let url = Url::from_str("https://ropsten.infura.io/v3/abcdefgh123456789")?; - assert_eq!(chain_id_from_url(&url), None); - - let url = Url::from_str("https://localhost:8545")?; - assert_eq!(chain_id_from_url(&url), None); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/remote/client.rs b/crates/edr_eth/src/remote/client.rs deleted file mode 100644 index c5bc37b525..0000000000 --- a/crates/edr_eth/src/remote/client.rs +++ /dev/null @@ -1,2041 +0,0 @@ -mod reqwest_error; - -use std::{ - collections::{HashMap, VecDeque}, - fmt::Debug, - io, - path::{Path, PathBuf}, - sync::atomic::{AtomicU64, Ordering}, - thread::available_parallelism, - time::{Duration, Instant}, -}; - -use futures::stream::StreamExt; -use hyper::header::HeaderValue; -pub use hyper::{header, http::Error as HttpError, HeaderMap}; -use itertools::{izip, Itertools}; -use reqwest::Client as HttpClient; -use reqwest_middleware::{ClientBuilder as HttpClientBuilder, ClientWithMiddleware}; -use reqwest_retry::{policies::ExponentialBackoff, RetryTransientMiddleware}; -#[cfg(feature = "tracing")] -use reqwest_tracing::TracingMiddleware; -use revm_primitives::{Bytecode, KECCAK_EMPTY}; -use serde::{de::DeserializeOwned, Deserialize, Serialize}; -use tokio::sync::{OnceCell, RwLock}; -use uuid::Uuid; - -use super::{ - eth, - filter::{LogFilterOptions, OneOrMore}, - jsonrpc, - request_methods::RequestMethod, - BlockSpec, PreEip1898BlockSpec, -}; -pub use crate::remote::client::reqwest_error::{MiddlewareError, ReqwestError}; -use crate::{ - block::{block_time, is_safe_block_number, IsSafeBlockNumberArgs}, - log::FilterLog, - receipt::BlockReceipt, - remote::{ - cacheable_method_invocation::{ - try_read_cache_key, try_write_cache_key, CacheKeyForSymbolicBlockTag, - CacheKeyForUncheckedBlockNumber, ReadCacheKey, ResolvedSymbolicTag, WriteCacheKey, - }, - chain_id::chain_id_from_url, - eth::FeeHistoryResult, - jsonrpc::Id, - }, - reward_percentile::RewardPercentile, - AccountInfo, Address, Bytes, B256, U256, U64, -}; - -const RPC_CACHE_DIR: &str = "rpc_cache"; -const TMP_DIR: &str = "tmp"; -// Retry parameters for rate limited requests. -const EXPONENT_BASE: u32 = 2; -const MIN_RETRY_INTERVAL: Duration = Duration::from_secs(1); -const MAX_RETRY_INTERVAL: Duration = Duration::from_secs(32); -const MAX_RETRIES: u32 = 9; -// Constrain parallel requests to avoid rate limiting on transport level and -// thundering herd during backoff. -const MAX_PARALLEL_REQUESTS: usize = 20; - -/// Specialized error types -#[derive(Debug, thiserror::Error)] -pub enum RpcClientError { - /// The message could not be sent to the remote node - #[error(transparent)] - FailedToSend(MiddlewareError), - - /// The remote node failed to reply with the body of the response - #[error("The response text was corrupted: {0}.")] - CorruptedResponse(ReqwestError), - - /// The server returned an error code. - #[error("The Http server returned error status code: {0}")] - HttpStatus(ReqwestError), - - /// The request cannot be serialized as JSON. - #[error(transparent)] - InvalidJsonRequest(serde_json::Error), - - /// The server returned an invalid JSON-RPC response. - #[error("Response '{response}' failed to parse with expected type '{expected_type}', due to error: '{error}'")] - InvalidResponse { - /// The response text - response: String, - /// The expected type of the response - expected_type: &'static str, - /// The parse error - error: serde_json::Error, - }, - - /// The server returned an invalid JSON-RPC id. - #[error("The server returned an invalid id: '{id:?}' in response: '{response}'")] - InvalidId { - /// The response text - response: String, - /// The invalid id - id: Id, - }, - - /// Invalid URL format - #[error(transparent)] - InvalidUrl(#[from] url::ParseError), - - /// A response is missing from a batch request. - #[error("Missing response for method: '{method:?}' for request id: '{id:?}' in batch request")] - MissingResponse { - /// The method invocation for which the response is missing. - method: Box, - /// The id of the request iwth the missing response - id: Id, - /// The response text - response: String, - }, - - /// The JSON-RPC returned an error. - #[error("{error}. Request: {request}")] - JsonRpcError { - /// The JSON-RPC error - error: jsonrpc::Error, - /// The request JSON - request: String, - }, - - /// There was a problem with the local cache. - #[error("{message} for '{cache_key}' with error: '{error}'")] - CacheError { - /// Description of the cache error - message: String, - /// The cache key for the error - cache_key: String, - /// The underlying error - error: CacheError, - }, - - /// Failed to join a tokio task. - #[error(transparent)] - JoinError(#[from] tokio::task::JoinError), -} - -/// Wrapper for IO and JSON errors specific to the cache. -#[derive(thiserror::Error, Debug)] -pub enum CacheError { - /// An IO error - #[error(transparent)] - Io(#[from] io::Error), - /// A JSON parsing error - #[error(transparent)] - Json(#[from] serde_json::Error), -} - -/// A JSON-RPC request -#[derive(Deserialize, Serialize)] -pub struct Request { - /// JSON-RPC version - #[serde(rename = "jsonrpc")] - pub version: jsonrpc::Version, - /// the method to invoke, with its parameters - #[serde(flatten)] - pub method: RequestMethod, - /// the request ID, to be correlated via the response's ID - pub id: Id, -} - -/// A client for executing RPC methods on a remote Ethereum node. -/// The client caches responses based on chain id, so it's important to not use -/// it with local nodes. -#[derive(Debug)] -pub struct RpcClient { - url: url::Url, - chain_id: OnceCell, - cached_block_number: RwLock>, - client: ClientWithMiddleware, - next_id: AtomicU64, - rpc_cache_dir: PathBuf, - tmp_dir: PathBuf, -} - -impl RpcClient { - /// Create a new instance, given a remote node URL. - /// The cache directory is the global EDR cache directory configured by the - /// user. - pub fn new( - url: &str, - cache_dir: PathBuf, - extra_headers: Option, - ) -> Result { - let retry_policy = ExponentialBackoff::builder() - .retry_bounds(MIN_RETRY_INTERVAL, MAX_RETRY_INTERVAL) - .base(EXPONENT_BASE) - .build_with_max_retries(MAX_RETRIES); - - let mut headers = extra_headers.unwrap_or_default(); - headers.append( - header::CONTENT_TYPE, - HeaderValue::from_static("application/json"), - ); - headers.append( - header::USER_AGENT, - HeaderValue::from_str(&format!("edr {}", env!("CARGO_PKG_VERSION"))) - .expect("Version string is valid header value"), - ); - - let client = HttpClient::builder() - .default_headers(headers) - .build() - .expect("Default construction nor setting default headers can cause an error"); - - #[cfg(feature = "tracing")] - let client = HttpClientBuilder::new(client) - .with(TracingMiddleware::default()) - .with(RetryTransientMiddleware::new_with_policy(retry_policy)) - .build(); - #[cfg(not(feature = "tracing"))] - let client = HttpClientBuilder::new(client) - .with(RetryTransientMiddleware::new_with_policy(retry_policy)) - .build(); - - let rpc_cache_dir = cache_dir.join(RPC_CACHE_DIR); - // We aren't using the system temporary directories as they may be on a - // different a file system which would cause the rename call later to - // fail. - let tmp_dir = rpc_cache_dir.join(TMP_DIR); - - Ok(RpcClient { - url: url.parse()?, - chain_id: OnceCell::new(), - cached_block_number: RwLock::new(None), - client, - next_id: AtomicU64::new(0), - rpc_cache_dir: cache_dir.join(RPC_CACHE_DIR), - tmp_dir, - }) - } - - fn parse_response_str(response: &str) -> Result { - serde_json::from_str(response).map_err(|error| RpcClientError::InvalidResponse { - response: response.to_string(), - expected_type: std::any::type_name::(), - error, - }) - } - - fn extract_result( - request: SerializedRequest, - response: String, - ) -> Result { - let response: jsonrpc::Response = Self::parse_response_str(&response)?; - - response - .data - .into_result() - .map_err(|error| RpcClientError::JsonRpcError { - error, - request: request.to_json_string(), - }) - } - - async fn make_cache_path(&self, cache_key: &str) -> Result { - let chain_id = self.chain_id().await?; - - let host = self.url.host_str().unwrap_or("unknown-host"); - let remote = if let Some(port) = self.url.port() { - // Include the port if it's not the default port for the protocol. - format!("{host}_{port}") - } else { - host.to_string() - }; - - // We use different directories for each remote node, to avoid storing invalid - // data in case the remote is forked chain which can happen with remotes - // running locally. - let directory = self.rpc_cache_dir.join(remote).join(chain_id.to_string()); - - ensure_cache_directory(&directory, cache_key).await?; - - let path = Path::new(&directory).join(format!("{cache_key}.json")); - Ok(path) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip_all))] - async fn read_response_from_cache( - &self, - cache_key: &ReadCacheKey, - ) -> Result, RpcClientError> { - let path = self.make_cache_path(cache_key.as_ref()).await?; - match tokio::fs::read_to_string(&path).await { - Ok(contents) => match serde_json::from_str(&contents) { - Ok(value) => Ok(Some(ResponseValue::Cached { value, path })), - Err(error) => { - log_cache_error( - cache_key.as_ref(), - "failed to deserialize item from RPC response cache", - error, - ); - remove_from_cache(&path).await?; - Ok(None) - } - }, - Err(error) => { - match error.kind() { - io::ErrorKind::NotFound => (), - _ => log_cache_error( - cache_key.as_ref(), - "failed to read from RPC response cache", - error, - ), - } - Ok(None) - } - } - } - - async fn try_from_cache( - &self, - cache_key: Option<&ReadCacheKey>, - ) -> Result, RpcClientError> { - if let Some(cache_key) = cache_key { - self.read_response_from_cache(cache_key).await - } else { - Ok(None) - } - } - - async fn maybe_cached_block_number(&self) -> Result, RpcClientError> { - let cached_block_number = { self.cached_block_number.read().await.clone() }; - - if let Some(cached_block_number) = cached_block_number { - let delta = block_time(self.chain_id().await?); - if cached_block_number.timestamp.elapsed() < delta { - return Ok(Some(cached_block_number.block_number)); - } - } - - Ok(None) - } - - /// Caches a block number for the duration of the block time of the chain. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - async fn cached_block_number(&self) -> Result { - if let Some(cached_block_number) = self.maybe_cached_block_number().await? { - return Ok(cached_block_number); - } - - // Caches the block number as side effect. - self.block_number().await - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - async fn validate_block_number( - &self, - safety_checker: CacheKeyForUncheckedBlockNumber, - ) -> Result, RpcClientError> { - let chain_id = self.chain_id().await?; - let latest_block_number = self.cached_block_number().await?; - Ok(safety_checker.validate_block_number(chain_id, latest_block_number)) - } - - async fn resolve_block_tag( - &self, - block_tag_resolver: CacheKeyForSymbolicBlockTag, - result: T, - resolve_block_number: impl Fn(T) -> Option, - ) -> Result, RpcClientError> { - if let Some(block_number) = resolve_block_number(result) { - if let Some(resolved_cache_key) = block_tag_resolver.resolve_symbolic_tag(block_number) - { - return match resolved_cache_key { - ResolvedSymbolicTag::NeedsSafetyCheck(safety_checker) => { - self.validate_block_number(safety_checker).await - } - ResolvedSymbolicTag::Resolved(cache_key) => Ok(Some(cache_key)), - }; - } - } - Ok(None) - } - - async fn resolve_write_key( - &self, - method: &RequestMethod, - result: T, - resolve_block_number: impl Fn(T) -> Option, - ) -> Result, RpcClientError> { - let write_cache_key = try_write_cache_key(method); - - if let Some(cache_key) = write_cache_key { - match cache_key { - WriteCacheKey::NeedsSafetyCheck(safety_checker) => { - self.validate_block_number(safety_checker).await - } - WriteCacheKey::NeedsBlockNumber(block_tag_resolver) => { - self.resolve_block_tag(block_tag_resolver, result, resolve_block_number) - .await - } - WriteCacheKey::Resolved(cache_key) => Ok(Some(cache_key)), - } - } else { - Ok(None) - } - } - - async fn try_write_response_to_cache( - &self, - method: &RequestMethod, - result: &T, - resolve_block_number: impl Fn(&T) -> Option, - ) -> Result<(), RpcClientError> { - if let Some(cache_key) = self - .resolve_write_key(method, result, resolve_block_number) - .await? - { - self.write_response_to_cache(&cache_key, result).await?; - } - - Ok(()) - } - - async fn write_response_to_cache( - &self, - cache_key: &str, - result: impl Serialize, - ) -> Result<(), RpcClientError> { - let contents = serde_json::to_string(&result).expect( - "result serializes successfully as it was just deserialized from a JSON string", - ); - - ensure_cache_directory(&self.tmp_dir, cache_key).await?; - - // 1. Write to a random temporary file first to avoid race conditions. - let tmp_path = self.tmp_dir.join(Uuid::new_v4().to_string()); - match tokio::fs::write(&tmp_path, contents).await { - Ok(_) => (), - Err(error) => { - log_cache_error( - cache_key, - "failed to write to tempfile for RPC response cache", - error, - ); - return Ok(()); - } - } - - // 2. Then move the temporary file to the cache path. - // This is guaranteed to be atomic on Unix platforms. - // There is no such guarantee on Windows, as there is no OS support for atomic - // move before Windows 10, but Rust will drop support for earlier - // versions of Windows in the future: . Hopefully the standard - // library will adapt its `rename` implementation to use the new atomic move API - // in Windows - // 10. In any case, if a cache file is corrupted, we detect and remove it when - // reading it. - let cache_path = self.make_cache_path(cache_key).await?; - match tokio::fs::rename(&tmp_path, cache_path).await { - Ok(_) => (), - Err(error) => { - log_cache_error( - cache_key, - "failed to rename temporary file for RPC response cache", - error, - ); - } - }; - - // In case of many concurrent renames, files remain in the tmp dir on Windows. - #[cfg(target_os = "windows")] - match tokio::fs::remove_file(&tmp_path).await { - Ok(_) => (), - Err(error) => match error.kind() { - io::ErrorKind::NotFound => (), - _ => log_cache_error( - cache_key, - "failed to remove temporary file for RPC response cache", - error, - ), - }, - } - - Ok(()) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip_all))] - async fn send_request_body( - &self, - request_body: &SerializedRequest, - ) -> Result { - self.client - .post(self.url.clone()) - .body(request_body.to_json_string()) - .send() - .await - .map_err(|err| RpcClientError::FailedToSend(err.into()))? - .error_for_status() - .map_err(|err| RpcClientError::HttpStatus(err.into()))? - .text() - .await - .map_err(|err| RpcClientError::CorruptedResponse(err.into())) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip_all))] - fn get_ids(&self, count: u64) -> Vec { - let start = self.next_id.fetch_add(count, Ordering::Relaxed); - let end = start + count; - (start..end).map(Id::Num).collect() - } - - fn serialize_request( - &self, - input: &RequestMethod, - ) -> Result { - let id = Id::Num(self.next_id.fetch_add(1, Ordering::Relaxed)); - Self::serialize_request_with_id(input, id) - } - - fn serialize_request_with_id( - method: &RequestMethod, - id: Id, - ) -> Result { - let request = serde_json::to_value(Request { - version: jsonrpc::Version::V2_0, - id, - method, - }) - .map_err(RpcClientError::InvalidJsonRequest)?; - - Ok(SerializedRequest(request)) - } - - async fn call( - &self, - method: RequestMethod, - ) -> Result { - self.call_with_resolver(method, |_| None).await - } - - async fn call_with_resolver( - &self, - method: RequestMethod, - resolve_block_number: impl Fn(&T) -> Option, - ) -> Result { - let read_cache_key = try_read_cache_key(&method); - - let request = self.serialize_request(&method)?; - - if let Some(cached_response) = self.try_from_cache(read_cache_key.as_ref()).await? { - match cached_response.parse().await { - Ok(result) => { - #[cfg(feature = "tracing")] - tracing::trace!("Cache hit: {}", method.name()); - return Ok(result); - } - Err(error) => match error { - // In case of an invalid response from cache, we log it and continue to the - // remote call. - RpcClientError::InvalidResponse { - response, - expected_type, - error, - } => { - log::error!( - "Failed to deserialize item from RPC response cache. error: '{error}' expected type: '{expected_type}'. item: '{response}'"); - } - // For other errors, return early. - _ => return Err(error), - }, - } - }; - - #[cfg(feature = "tracing")] - tracing::trace!("Cache miss: {}", method.name()); - - let result: T = self - .send_request_body(&request) - .await - .and_then(|response| Self::extract_result(request, response))?; - - self.try_write_response_to_cache(&method, &result, &resolve_block_number) - .await?; - - Ok(result) - } - - // We have two different `call` methods to avoid creating recursive async - // functions as the cached path calls `eth_chainId` without caching. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip_all))] - async fn call_without_cache( - &self, - method: RequestMethod, - ) -> Result { - let request = self.serialize_request(&method)?; - - self.send_request_body(&request) - .await - .and_then(|response| Self::extract_result(request, response)) - } - - /// Returns the results of the given method invocations. - async fn batch_call( - &self, - methods: &[RequestMethod], - ) -> Result, RpcClientError> { - self.batch_call_with_resolver(methods, |_| None).await - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip_all))] - async fn batch_call_with_resolver( - &self, - methods: &[RequestMethod], - resolve_block_number: impl Fn(&serde_json::Value) -> Option, - ) -> Result, RpcClientError> { - let ids = self.get_ids(methods.len() as u64); - - let cache_keys = methods.iter().map(try_read_cache_key).collect::>(); - - let mut results: Vec> = Vec::with_capacity(cache_keys.len()); - - for cache_key in &cache_keys { - results.push(self.try_from_cache(cache_key.as_ref()).await?); - } - - let mut requests: Vec = Vec::new(); - let mut id_to_index = HashMap::<&Id, usize>::new(); - for (index, (id, method, cache_response)) in izip!(&ids, methods, &results).enumerate() { - if cache_response.is_none() { - #[cfg(feature = "tracing")] - tracing::trace!("Cache miss: {}", method.name()); - - let request = Self::serialize_request_with_id(method, id.clone())?; - requests.push(request); - id_to_index.insert(id, index); - } else { - #[cfg(feature = "tracing")] - tracing::trace!("Cache hit: {}", method.name()); - } - } - - // Don't send empty request - if requests.is_empty() { - Ok(results - .into_iter() - .enumerate() - .map(|(_index, result)| { - result.expect("If there are no requests to send, there must be a cached response for each method invocation") - }) - .collect()) - } else { - let request_body = SerializedRequest( - serde_json::to_value(&requests).map_err(RpcClientError::InvalidJsonRequest)?, - ); - let remote_response = self.send_request_body(&request_body).await?; - let remote_responses: Vec> = - Self::parse_response_str(&remote_response)?; - - for response in remote_responses { - let index = id_to_index - // Remove to make sure no duplicate ids in response - .remove(&response.id) - .ok_or_else(|| RpcClientError::InvalidId { - response: remote_response.clone(), - id: response.id, - })?; - - let result = - response - .data - .into_result() - .map_err(|error| RpcClientError::JsonRpcError { - error, - request: request_body.to_json_string(), - })?; - - self.try_write_response_to_cache(&methods[index], &result, &resolve_block_number) - .await?; - - results[index] = Some(ResponseValue::Remote(result)); - } - - results - .into_iter() - .enumerate() - .map(|(index, result)| { - result.ok_or_else(|| RpcClientError::MissingResponse { - method: Box::new(methods[index].clone()), - id: ids[index].clone(), - response: remote_response.clone(), - }) - }) - .collect() - } - } - - /// Calls `eth_blockNumber` and returns the block number. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn block_number(&self) -> Result { - let block_number = self - .call_without_cache::(RequestMethod::BlockNumber(())) - .await? - .as_limbs()[0]; - - { - let mut write_guard = self.cached_block_number.write().await; - *write_guard = Some(CachedBlockNumber::new(block_number)); - } - Ok(block_number) - } - - /// Whether the block number should be cached based on its depth. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn is_cacheable_block_number( - &self, - block_number: u64, - ) -> Result { - let chain_id = self.chain_id().await?; - let latest_block_number = self.cached_block_number().await?; - - Ok(is_safe_block_number(IsSafeBlockNumberArgs { - chain_id, - latest_block_number, - block_number, - })) - } - - /// Calls `eth_chainId` and returns the chain ID. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn chain_id(&self) -> Result { - let chain_id = *self - .chain_id - .get_or_try_init(|| async { - if let Some(chain_id) = chain_id_from_url(&self.url) { - Ok(chain_id) - } else { - self.call_without_cache::(RequestMethod::ChainId(())) - .await - .map(|chain_id| chain_id.as_limbs()[0]) - } - }) - .await?; - Ok(chain_id) - } - - /// Calls `eth_feeHistory` and returns the fee history. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn fee_history( - &self, - block_count: u64, - newest_block: BlockSpec, - reward_percentiles: Option>, - ) -> Result { - self.call(RequestMethod::FeeHistory( - U256::from(block_count), - newest_block, - reward_percentiles, - )) - .await - } - - /// Fetch the latest block number, chain id and network id in a batch call. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn fetch_fork_metadata(&self) -> Result { - let mut inputs = vec![RequestMethod::NetVersion(())]; - - let maybe_block_number = self.maybe_cached_block_number().await?; - if maybe_block_number.is_none() { - inputs.push(RequestMethod::BlockNumber(())); - } - - // Only request the chain id if we don't have it yet. - let mut maybe_chain_id_from_url = None; - if !self.chain_id.initialized() { - maybe_chain_id_from_url = chain_id_from_url(&self.url); - if maybe_chain_id_from_url.is_none() { - inputs.push(RequestMethod::ChainId(())); - } - }; - - let mut results = self.batch_call(inputs.as_slice()).await?.into_iter(); - let expect = "batch call returns results for all calls on success"; - - let network_id = results.next().expect(expect).parse::().await?; - - let block_number = if let Some(block_number) = maybe_block_number { - block_number - } else { - let block_number = results - .next() - .expect(expect) - .parse::() - .await? - .as_limbs()[0]; - { - let mut write_guard = self.cached_block_number.write().await; - *write_guard = Some(CachedBlockNumber::new(block_number)); - } - block_number - }; - - let chain_id = *self - .chain_id - .get_or_try_init(|| async { - if let Some(chain_id) = maybe_chain_id_from_url { - Ok(chain_id) - } else { - // It's possible that the chain id was initialized in-between, but it's not - // possible that the chain id was initialized prior to our - // call, and it isn't initialized now, therefore we must've requested - // the chain id as well. - results - .next() - .expect(expect) - .parse::() - .await - .map(|chain_id| chain_id.as_limbs()[0]) - } - }) - .await?; - - Ok(ForkMetadata { - chain_id, - network_id: network_id.as_limbs()[0], - latest_block_number: block_number, - }) - } - - /// Submit a consolidated batch of RPC method invocations in order to obtain - /// the set of data contained in [`AccountInfo`]. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_account_info( - &self, - address: &Address, - block: Option, - ) -> Result { - let inputs = &[ - RequestMethod::GetBalance(*address, block.clone()), - RequestMethod::GetTransactionCount(*address, block.clone()), - RequestMethod::GetCode(*address, block.clone()), - ]; - - let responses = self.batch_call(inputs).await?; - let (balance, nonce, code) = responses - .into_iter() - .collect_tuple() - .expect("batch call checks responses"); - - let balance = balance.parse::().await?; - let nonce: u64 = nonce.parse::().await?.to(); - let code = code.parse::().await?; - let code = if code.is_empty() { - None - } else { - Some(Bytecode::new_raw(code)) - }; - - Ok(AccountInfo { - balance, - code_hash: code.as_ref().map_or(KECCAK_EMPTY, Bytecode::hash_slow), - code, - nonce, - }) - } - - /// Fetch account infos for multiple addresses in a batch call. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_account_infos( - &self, - addresses: &[Address], - block: Option, - ) -> Result, RpcClientError> { - futures::stream::iter(addresses.iter()) - .map(|address| self.get_account_info(address, block.clone())) - .buffered(MAX_PARALLEL_REQUESTS) - .collect::>>() - .await - .into_iter() - .collect() - } - - /// Calls `eth_getBlockByHash` and returns the transaction's hash. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_block_by_hash( - &self, - hash: &B256, - ) -> Result>, RpcClientError> { - self.call(RequestMethod::GetBlockByHash(*hash, false)).await - } - - /// Calls `eth_getBlockByHash` and returns the transaction's data. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_block_by_hash_with_transaction_data( - &self, - hash: &B256, - ) -> Result>, RpcClientError> { - self.call(RequestMethod::GetBlockByHash(*hash, true)).await - } - - /// Calls `eth_getBlockByNumber` and returns the transaction's hash. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_block_by_number( - &self, - spec: PreEip1898BlockSpec, - ) -> Result>, RpcClientError> { - self.call_with_resolver( - RequestMethod::GetBlockByNumber(spec, false), - |block: &Option>| block.as_ref().and_then(|block| block.number), - ) - .await - } - - /// Calls `eth_getBlockByNumber` and returns the transaction's data. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_block_by_number_with_transaction_data( - &self, - spec: PreEip1898BlockSpec, - ) -> Result, RpcClientError> { - self.call_with_resolver( - RequestMethod::GetBlockByNumber(spec, true), - |block: ð::Block| block.number, - ) - .await - } - - /// Calls `eth_getLogs` using a starting and ending block (inclusive). - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_logs_by_range( - &self, - from_block: BlockSpec, - to_block: BlockSpec, - address: Option>, - topics: Option>>>, - ) -> Result, RpcClientError> { - self.call(RequestMethod::GetLogs(LogFilterOptions { - from_block: Some(from_block), - to_block: Some(to_block), - block_hash: None, - address, - topics, - })) - .await - } - - /// Calls `eth_getTransactionByHash`. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_transaction_by_hash( - &self, - tx_hash: &B256, - ) -> Result, RpcClientError> { - self.call(RequestMethod::GetTransactionByHash(*tx_hash)) - .await - } - - /// Calls `eth_getTransactionCount`. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_transaction_count( - &self, - address: &Address, - block: Option, - ) -> Result { - self.call(RequestMethod::GetTransactionCount(*address, block)) - .await - } - - /// Calls `eth_getTransactionReceipt`. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_transaction_receipt( - &self, - tx_hash: &B256, - ) -> Result, RpcClientError> { - self.call(RequestMethod::GetTransactionReceipt(*tx_hash)) - .await - } - - /// Methods for retrieving multiple transaction receipts in one batch - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_transaction_receipts( - &self, - hashes: impl IntoIterator + Debug, - ) -> Result>, RpcClientError> { - let requests: Vec = hashes - .into_iter() - .map(|transaction_hash| RequestMethod::GetTransactionReceipt(*transaction_hash)) - .collect(); - - let responses = self.batch_call(&requests).await?; - - futures::stream::iter(responses) - .map(ResponseValue::parse) - // Primarily CPU heavy work, only does i/o on error. - .buffered(available_parallelism().map(usize::from).unwrap_or(1)) - .collect::, RpcClientError>>>() - .await - .into_iter() - .collect() - } - - /// Calls `eth_getStorageAt`. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn get_storage_at( - &self, - address: &Address, - position: U256, - block: Option, - ) -> Result, RpcClientError> { - self.call(RequestMethod::GetStorageAt(*address, position, block)) - .await - } - - /// Calls `net_version`. - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub async fn network_id(&self) -> Result { - self.call::(RequestMethod::NetVersion(())) - .await - .map(|network_id| network_id.as_limbs()[0]) - } -} - -async fn remove_from_cache(path: &Path) -> Result<(), RpcClientError> { - match tokio::fs::remove_file(path).await { - Ok(_) => Ok(()), - Err(error) => { - log_cache_error( - path.to_str().unwrap_or(""), - "failed to remove from RPC response cache", - error, - ); - Ok(()) - } - } -} - -#[derive(Debug, Clone)] -enum ResponseValue { - Remote(serde_json::Value), - Cached { - value: serde_json::Value, - path: PathBuf, - }, -} - -impl ResponseValue { - async fn parse(self) -> Result { - match self { - ResponseValue::Remote(value) => { - serde_json::from_value(value.clone()).map_err(|error| { - RpcClientError::InvalidResponse { - response: value.to_string(), - expected_type: std::any::type_name::(), - error, - } - }) - } - ResponseValue::Cached { value, path } => match serde_json::from_value(value.clone()) { - Ok(result) => Ok(result), - Err(error) => { - // Remove the file from cache if the contents don't match the expected type. - // This can happen for example if a new field is added to a type. - remove_from_cache(&path).await?; - Err(RpcClientError::InvalidResponse { - response: value.to_string(), - expected_type: std::any::type_name::(), - error, - }) - } - }, - } - } -} - -/// Metadata about a forked chain. -#[derive(Clone, Debug)] -pub struct ForkMetadata { - /// Chain id as returned by `eth_chainId` - pub chain_id: u64, - /// Network id as returned by `net_version` - pub network_id: u64, - /// The latest block number as returned by `eth_blockNumber` - pub latest_block_number: u64, -} - -#[derive(Debug, Clone)] -struct CachedBlockNumber { - block_number: u64, - timestamp: Instant, -} - -impl CachedBlockNumber { - fn new(block_number: u64) -> Self { - Self { - block_number, - timestamp: Instant::now(), - } - } -} - -/// Don't fail the request, just log an error if we fail to read/write from -/// cache. -fn log_cache_error(cache_key: &str, message: &'static str, error: impl Into) { - let cache_error = RpcClientError::CacheError { - message: message.to_string(), - cache_key: cache_key.to_string(), - error: error.into(), - }; - log::error!("{cache_error}"); -} - -/// Ensure that the directory exists. -async fn ensure_cache_directory( - directory: impl AsRef, - cache_key: impl std::fmt::Display, -) -> Result<(), RpcClientError> { - tokio::fs::DirBuilder::new() - .recursive(true) - .create(directory) - .await - .map_err(|error| RpcClientError::CacheError { - message: "failed to create RPC response cache directory".to_string(), - cache_key: cache_key.to_string(), - error: error.into(), - }) -} - -#[derive(Debug, Clone, Deserialize, Serialize)] -#[repr(transparent)] -#[serde(transparent)] -struct SerializedRequest(serde_json::Value); - -impl SerializedRequest { - fn to_json_string(&self) -> String { - self.0.to_string() - } -} - -#[cfg(test)] -mod tests { - use std::{ops::Deref, str::FromStr}; - - use reqwest::StatusCode; - use tempfile::TempDir; - - use super::*; - - struct TestRpcClient { - client: RpcClient, - - // Need to keep the tempdir around to prevent it from being deleted - // Only accessed when feature = "test-remote", hence the allow. - #[allow(dead_code)] - cache_dir: TempDir, - } - - impl TestRpcClient { - fn new(url: &str) -> Self { - let tempdir = TempDir::new().unwrap(); - Self { - client: RpcClient::new(url, tempdir.path().into(), None).expect("url ok"), - cache_dir: tempdir, - } - } - } - - impl Deref for TestRpcClient { - type Target = RpcClient; - - fn deref(&self) -> &Self::Target { - &self.client - } - } - - #[test] - fn get_ids_zero() { - let client = RpcClient::new("http://localhost:8545", PathBuf::new(), None).expect("url ok"); - let ids = client.get_ids(0); - assert!(ids.is_empty()); - } - - #[test] - fn get_ids_more() { - let client = RpcClient::new("http://localhost:8545", PathBuf::new(), None).expect("url ok"); - let count = 11; - let ids = client.get_ids(count); - assert_eq!(ids.len(), 11); - } - - #[tokio::test] - async fn send_request_body_400_status() { - const STATUS_CODE: u16 = 400; - - let mut server = mockito::Server::new_async().await; - - let mock = server - .mock("POST", "/") - .with_status(STATUS_CODE.into()) - .with_header("content-type", "text/plain") - .create_async() - .await; - - let hash = - B256::from_str("0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933022222") - .expect("failed to parse hash from string"); - - let error = TestRpcClient::new(&server.url()) - .call::>(RequestMethod::GetTransactionByHash(hash)) - .await - .expect_err("should have failed to due to a HTTP status error"); - - if let RpcClientError::HttpStatus(error) = error { - assert_eq!( - reqwest::Error::from(error).status(), - Some(StatusCode::from_u16(STATUS_CODE).unwrap()) - ); - } else { - unreachable!("Invalid error: {error}"); - } - - mock.assert_async().await; - } - - #[cfg(feature = "test-remote")] - mod alchemy { - use std::fs::File; - - use edr_test_utils::env::get_alchemy_url; - use futures::future::join_all; - use walkdir::WalkDir; - - use super::*; - use crate::Bytes; - - // The maximum block number that Alchemy allows - const MAX_BLOCK_NUMBER: u64 = u64::MAX >> 1; - - impl TestRpcClient { - fn files_in_cache(&self) -> Vec { - let mut files = Vec::new(); - for entry in WalkDir::new(&self.cache_dir) - .follow_links(true) - .into_iter() - .filter_map(Result::ok) - { - if entry.file_type().is_file() { - files.push(entry.path().to_owned()); - } - } - files - } - } - - #[tokio::test] - async fn call_bad_api_key() { - let api_key = "invalid-api-key"; - let alchemy_url = format!("https://eth-mainnet.g.alchemy.com/v2/{api_key}"); - - let hash = B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933022222", - ) - .expect("failed to parse hash from string"); - - let error = TestRpcClient::new(&alchemy_url) - .call::>(RequestMethod::GetTransactionByHash(hash)) - .await - .expect_err("should have failed to interpret response as a Transaction"); - - assert!(!error.to_string().contains(api_key)); - - if let RpcClientError::HttpStatus(error) = error { - assert_eq!( - reqwest::Error::from(error).status(), - Some(StatusCode::from_u16(401).unwrap()) - ); - } else { - unreachable!("Invalid error: {error}"); - } - } - - #[tokio::test] - async fn call_failed_to_send_error() { - let alchemy_url = "https://xxxeth-mainnet.g.alchemy.com/"; - - let hash = B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933051111", - ) - .expect("failed to parse hash from string"); - - let error = TestRpcClient::new(alchemy_url) - .call::>(RequestMethod::GetTransactionByHash(hash)) - .await - .expect_err("should have failed to connect due to a garbage domain name"); - - if let RpcClientError::FailedToSend(error) = error { - assert!(error.to_string().contains("dns error")); - } else { - unreachable!("Invalid error: {error}"); - } - } - - #[tokio::test] - async fn test_is_cacheable_block_number() { - let client = TestRpcClient::new(&get_alchemy_url()); - - let latest_block_number = client.block_number().await.unwrap(); - - { - assert!(client.cached_block_number.read().await.is_some()); - } - - // Latest block number is never cacheable - assert!(!client - .is_cacheable_block_number(latest_block_number) - .await - .unwrap()); - - assert!(client.is_cacheable_block_number(16220843).await.unwrap()); - } - - #[tokio::test] - async fn get_account_info_works_from_cache() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - let block_spec = BlockSpec::Number(16220843); - - assert_eq!(client.files_in_cache().len(), 0); - - // Populate cache - client - .get_account_info(&dai_address, Some(block_spec.clone())) - .await - .expect("should have succeeded"); - - assert_eq!(client.files_in_cache().len(), 3); - - // Returned from cache - let account_info = client - .get_account_info(&dai_address, Some(block_spec)) - .await - .expect("should have succeeded"); - - assert_eq!(client.files_in_cache().len(), 3); - - assert_eq!(account_info.balance, U256::ZERO); - assert_eq!(account_info.nonce, 1); - assert_ne!(account_info.code_hash, KECCAK_EMPTY); - assert!(account_info.code.is_some()); - } - - #[tokio::test] - async fn get_account_info_works_with_partial_cache() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - let block_spec = BlockSpec::Number(16220843); - - assert_eq!(client.files_in_cache().len(), 0); - - // Populate cache - client - .get_transaction_count(&dai_address, Some(block_spec.clone())) - .await - .expect("should have succeeded"); - - assert_eq!(client.files_in_cache().len(), 1); - - let account_info = client - .get_account_info(&dai_address, Some(block_spec.clone())) - .await - .expect("should have succeeded"); - - assert_eq!(client.files_in_cache().len(), 3); - - assert_eq!(account_info.balance, U256::ZERO); - assert_eq!(account_info.nonce, 1); - assert_ne!(account_info.code_hash, KECCAK_EMPTY); - assert!(account_info.code.is_some()); - } - - #[tokio::test] - async fn get_account_info_unknown_block() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let error = TestRpcClient::new(&alchemy_url) - .get_account_info(&dai_address, Some(BlockSpec::Number(MAX_BLOCK_NUMBER))) - .await - .expect_err("should have failed"); - - if let RpcClientError::JsonRpcError { error, .. } = error { - assert_eq!(error.code, -32602); - assert_eq!(error.message, "Unknown block number"); - assert!(error.data.is_none()); - } else { - unreachable!("Invalid error: {error}"); - } - } - - #[tokio::test] - async fn get_account_infos() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - let hardhat_default_address = - Address::from_str("0xbe862ad9abfe6f22bcb087716c7d89a26051f74c") - .expect("failed to parse address"); - - let account_infos = TestRpcClient::new(&alchemy_url) - .get_account_infos( - &[dai_address, hardhat_default_address], - Some(BlockSpec::latest()), - ) - .await - .expect("should have succeeded"); - - assert_eq!(account_infos.len(), 2); - } - - #[tokio::test] - async fn get_block_by_hash_some() { - let alchemy_url = get_alchemy_url(); - - let hash = B256::from_str( - "0x71d5e7c8ff9ea737034c16e333a75575a4a94d29482e0c2b88f0a6a8369c1812", - ) - .expect("failed to parse hash from string"); - - let block = TestRpcClient::new(&alchemy_url) - .get_block_by_hash(&hash) - .await - .expect("should have succeeded"); - - assert!(block.is_some()); - let block = block.unwrap(); - - assert_eq!(block.hash, Some(hash)); - assert_eq!(block.transactions.len(), 192); - } - - #[tokio::test] - async fn get_block_by_hash_with_transaction_data_some() { - let alchemy_url = get_alchemy_url(); - - let hash = B256::from_str( - "0x71d5e7c8ff9ea737034c16e333a75575a4a94d29482e0c2b88f0a6a8369c1812", - ) - .expect("failed to parse hash from string"); - - let block = TestRpcClient::new(&alchemy_url) - .get_block_by_hash_with_transaction_data(&hash) - .await - .expect("should have succeeded"); - - assert!(block.is_some()); - let block = block.unwrap(); - - assert_eq!(block.hash, Some(hash)); - assert_eq!(block.transactions.len(), 192); - } - - #[tokio::test] - async fn get_block_by_number_finalized_resolves() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - assert_eq!(client.files_in_cache().len(), 0); - - client - .get_block_by_number(PreEip1898BlockSpec::finalized()) - .await - .expect("should have succeeded"); - - // Finalized tag should be resolved and stored in cache. - assert_eq!(client.files_in_cache().len(), 1); - } - - #[tokio::test] - async fn get_block_by_number_some() { - let alchemy_url = get_alchemy_url(); - - let block_number = 16222385; - - let block = TestRpcClient::new(&alchemy_url) - .get_block_by_number(PreEip1898BlockSpec::Number(block_number)) - .await - .expect("should have succeeded") - .expect("Block must exist"); - - assert_eq!(block.number, Some(block_number)); - assert_eq!(block.transactions.len(), 102); - } - - #[tokio::test] - async fn get_block_by_number_with_transaction_data_unsafe_no_cache() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - assert_eq!(client.files_in_cache().len(), 0); - - let block_number = client.block_number().await.unwrap(); - - // Check that the block number call caches the largest known block number - { - assert!(client.cached_block_number.read().await.is_some()); - } - - assert_eq!(client.files_in_cache().len(), 0); - - let block = client - .get_block_by_number(PreEip1898BlockSpec::Number(block_number)) - .await - .expect("should have succeeded") - .expect("Block must exist"); - - // Unsafe block number shouldn't be cached - assert_eq!(client.files_in_cache().len(), 0); - - assert_eq!(block.number, Some(block_number)); - } - - #[tokio::test] - async fn get_block_with_transaction_data_cached() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - let block_spec = PreEip1898BlockSpec::Number(16220843); - - assert_eq!(client.files_in_cache().len(), 0); - - let block_from_remote = client - .get_block_by_number_with_transaction_data(block_spec.clone()) - .await - .expect("should have from remote"); - - assert_eq!(client.files_in_cache().len(), 1); - - let block_from_cache = client - .get_block_by_number_with_transaction_data(block_spec.clone()) - .await - .expect("should have from remote"); - - assert_eq!(block_from_remote, block_from_cache); - } - - #[tokio::test] - async fn get_earliest_block_with_transaction_data_resolves() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - assert_eq!(client.files_in_cache().len(), 0); - - client - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::earliest()) - .await - .expect("should have succeeded"); - - // Earliest tag should be resolved to block number and it should be cached. - assert_eq!(client.files_in_cache().len(), 1); - } - - #[tokio::test] - async fn get_latest_block() { - let alchemy_url = get_alchemy_url(); - - let _block = TestRpcClient::new(&alchemy_url) - .get_block_by_number(PreEip1898BlockSpec::latest()) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn get_latest_block_with_transaction_data() { - let alchemy_url = get_alchemy_url(); - - let _block = TestRpcClient::new(&alchemy_url) - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::latest()) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn get_pending_block() { - let alchemy_url = get_alchemy_url(); - - let _block = TestRpcClient::new(&alchemy_url) - .get_block_by_number(PreEip1898BlockSpec::pending()) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn get_pending_block_with_transaction_data() { - let alchemy_url = get_alchemy_url(); - - let _block = TestRpcClient::new(&alchemy_url) - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::pending()) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn get_logs_some() { - let alchemy_url = get_alchemy_url(); - let logs = TestRpcClient::new(&alchemy_url) - .get_logs_by_range( - BlockSpec::Number(10496585), - BlockSpec::Number(10496585), - Some(OneOrMore::One( - Address::from_str("0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2") - .expect("failed to parse data"), - )), - None, - ) - .await - .expect("failed to get logs"); - - assert_eq!(logs.len(), 12); - // TODO: assert more things about the log(s) - // TODO: consider asserting something about the logs bloom - } - - #[tokio::test] - async fn get_logs_future_from_block() { - let alchemy_url = get_alchemy_url(); - let error = TestRpcClient::new(&alchemy_url) - .get_logs_by_range( - BlockSpec::Number(MAX_BLOCK_NUMBER), - BlockSpec::Number(MAX_BLOCK_NUMBER), - Some(OneOrMore::One( - Address::from_str("0xffffffffffffffffffffffffffffffffffffffff") - .expect("failed to parse data"), - )), - None, - ) - .await - .expect_err("should have failed to get logs"); - - if let RpcClientError::JsonRpcError { error, .. } = error { - assert_eq!(error.code, -32000); - assert_eq!(error.message, "One of the blocks specified in filter (fromBlock, toBlock or blockHash) cannot be found."); - assert!(error.data.is_none()); - } else { - unreachable!("Invalid error: {error}"); - } - } - - #[tokio::test] - async fn get_logs_future_to_block() { - let alchemy_url = get_alchemy_url(); - let logs = TestRpcClient::new(&alchemy_url) - .get_logs_by_range( - BlockSpec::Number(10496585), - BlockSpec::Number(MAX_BLOCK_NUMBER), - Some(OneOrMore::One( - Address::from_str("0xffffffffffffffffffffffffffffffffffffffff") - .expect("failed to parse data"), - )), - None, - ) - .await - .expect("should have succeeded"); - - assert_eq!(logs, []); - } - - #[tokio::test] - async fn get_transaction_by_hash_some() { - let alchemy_url = get_alchemy_url(); - - let hash = B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - ) - .expect("failed to parse hash from string"); - - let tx = TestRpcClient::new(&alchemy_url) - .get_transaction_by_hash(&hash) - .await - .expect("failed to get transaction by hash"); - - assert!(tx.is_some()); - let tx = tx.unwrap(); - - assert_eq!( - tx.block_hash, - Some( - B256::from_str( - "0x88fadbb673928c61b9ede3694ae0589ac77ae38ec90a24a6e12e83f42f18c7e8" - ) - .expect("couldn't parse data") - ) - ); - assert_eq!( - tx.block_number, - Some(U256::from_str_radix("a74fde", 16).expect("couldn't parse data")) - ); - assert_eq!(tx.hash, hash); - assert_eq!( - tx.from, - Address::from_str("0x7d97fcdb98632a91be79d3122b4eb99c0c4223ee") - .expect("couldn't parse data") - ); - assert_eq!( - tx.gas, - U256::from_str_radix("30d40", 16).expect("couldn't parse data") - ); - assert_eq!( - tx.gas_price, - U256::from_str_radix("1e449a99b8", 16).expect("couldn't parse data") - ); - assert_eq!( - tx.input, - Bytes::from(hex::decode("a9059cbb000000000000000000000000e2c1e729e05f34c07d80083982ccd9154045dcc600000000000000000000000000000000000000000000000000000004a817c800").unwrap()) - ); - assert_eq!( - tx.nonce, - u64::from_str_radix("653b", 16).expect("couldn't parse data") - ); - assert_eq!( - tx.r, - U256::from_str_radix( - "eb56df45bd355e182fba854506bc73737df275af5a323d30f98db13fdf44393a", - 16 - ) - .expect("couldn't parse data") - ); - assert_eq!( - tx.s, - U256::from_str_radix( - "2c6efcd210cdc7b3d3191360f796ca84cab25a52ed8f72efff1652adaabc1c83", - 16 - ) - .expect("couldn't parse data") - ); - assert_eq!( - tx.to, - Some( - Address::from_str("dac17f958d2ee523a2206206994597c13d831ec7") - .expect("couldn't parse data") - ) - ); - assert_eq!( - tx.transaction_index, - Some(u64::from_str_radix("88", 16).expect("couldn't parse data")) - ); - assert_eq!( - tx.v, - u64::from_str_radix("1c", 16).expect("couldn't parse data") - ); - assert_eq!( - tx.value, - U256::from_str_radix("0", 16).expect("couldn't parse data") - ); - } - - #[tokio::test] - async fn get_transaction_count_some() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let transaction_count = TestRpcClient::new(&alchemy_url) - .get_transaction_count(&dai_address, Some(BlockSpec::Number(16220843))) - .await - .expect("should have succeeded"); - - assert_eq!(transaction_count, U256::from(1)); - } - - #[tokio::test] - async fn get_transaction_count_future_block() { - let alchemy_url = get_alchemy_url(); - - let missing_address = Address::from_str("0xffffffffffffffffffffffffffffffffffffffff") - .expect("failed to parse address"); - - let error = TestRpcClient::new(&alchemy_url) - .get_transaction_count(&missing_address, Some(BlockSpec::Number(MAX_BLOCK_NUMBER))) - .await - .expect_err("should have failed"); - - if let RpcClientError::JsonRpcError { error, .. } = error { - assert_eq!(error.code, -32602); - assert_eq!(error.message, "Unknown block number"); - assert!(error.data.is_none()); - } else { - unreachable!("Invalid error: {error}"); - } - } - - #[tokio::test] - async fn get_transaction_receipt_some() { - let alchemy_url = get_alchemy_url(); - - let hash = B256::from_str( - "0xc008e9f9bb92057dd0035496fbf4fb54f66b4b18b370928e46d6603933054d5a", - ) - .expect("failed to parse hash from string"); - - let receipt = TestRpcClient::new(&alchemy_url) - .get_transaction_receipt(&hash) - .await - .expect("failed to get transaction by hash"); - - assert!(receipt.is_some()); - let receipt = receipt.unwrap(); - - assert_eq!( - receipt.block_hash, - B256::from_str( - "0x88fadbb673928c61b9ede3694ae0589ac77ae38ec90a24a6e12e83f42f18c7e8" - ) - .expect("couldn't parse data") - ); - assert_eq!(receipt.block_number, 0xa74fde); - assert_eq!(receipt.contract_address, None); - assert_eq!(receipt.cumulative_gas_used(), 0x56c81b); - assert_eq!( - receipt.effective_gas_price, - Some(U256::from_str_radix("1e449a99b8", 16).expect("couldn't parse data")) - ); - assert_eq!( - receipt.from, - Address::from_str("0x7d97fcdb98632a91be79d3122b4eb99c0c4223ee") - .expect("couldn't parse data") - ); - assert_eq!( - receipt.gas_used, - u64::from_str_radix("a0f9", 16).expect("couldn't parse data") - ); - assert_eq!(receipt.logs().len(), 1); - assert_eq!(receipt.state_root(), None); - assert_eq!(receipt.status_code(), Some(1)); - assert_eq!( - receipt.to, - Some( - Address::from_str("dac17f958d2ee523a2206206994597c13d831ec7") - .expect("couldn't parse data") - ) - ); - assert_eq!(receipt.transaction_hash, hash); - assert_eq!(receipt.transaction_index, 136); - assert_eq!(receipt.transaction_type(), 0); - } - - #[tokio::test] - async fn get_storage_at_some() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let total_supply = TestRpcClient::new(&alchemy_url) - .get_storage_at( - &dai_address, - U256::from(1), - Some(BlockSpec::Number(16220843)), - ) - .await - .expect("should have succeeded"); - - assert_eq!( - total_supply, - Some( - U256::from_str_radix( - "000000000000000000000000000000000000000010a596ae049e066d4991945c", - 16 - ) - .expect("failed to parse storage location") - ) - ); - } - - #[tokio::test] - async fn get_storage_at_latest() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let _total_supply = TestRpcClient::new(&alchemy_url) - .get_storage_at( - &dai_address, - U256::from_str_radix( - "0000000000000000000000000000000000000000000000000000000000000001", - 16, - ) - .expect("failed to parse storage location"), - Some(BlockSpec::latest()), - ) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn get_storage_at_future_block() { - let alchemy_url = get_alchemy_url(); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let storage_slot = TestRpcClient::new(&alchemy_url) - .get_storage_at( - &dai_address, - U256::from(1), - Some(BlockSpec::Number(MAX_BLOCK_NUMBER)), - ) - .await - .expect("should have succeeded"); - - assert!(storage_slot.is_none()); - } - - #[tokio::test] - async fn network_id_success() { - let alchemy_url = get_alchemy_url(); - - let version = TestRpcClient::new(&alchemy_url) - .network_id() - .await - .expect("should have succeeded"); - - assert_eq!(version, 1); - } - - #[tokio::test] - async fn stores_result_in_cache() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let total_supply = client - .get_storage_at( - &dai_address, - U256::from(1), - Some(BlockSpec::Number(16220843)), - ) - .await - .expect("should have succeeded"); - - let cached_files = client.files_in_cache(); - assert_eq!(cached_files.len(), 1); - - let mut file = File::open(&cached_files[0]).expect("failed to open file"); - let cached_result: Option = - serde_json::from_reader(&mut file).expect("failed to parse"); - - assert_eq!(total_supply, cached_result); - } - - #[tokio::test] - async fn concurrent_writes_to_cache_smoke_test() { - let client = TestRpcClient::new(&get_alchemy_url()); - - let test_contents = "some random test data 42"; - let cache_key = "cache-key"; - - assert_eq!(client.files_in_cache().len(), 0); - - join_all((0..100).map(|_| client.write_response_to_cache(cache_key, test_contents))) - .await; - - assert_eq!(client.files_in_cache().len(), 1); - - let contents = tokio::fs::read_to_string(&client.files_in_cache()[0]) - .await - .unwrap(); - assert_eq!(contents, serde_json::to_string(test_contents).unwrap()); - } - - #[tokio::test] - async fn handles_invalid_type_in_cache_single_call() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - client - .get_storage_at( - &dai_address, - U256::from(1), - Some(BlockSpec::Number(16220843)), - ) - .await - .expect("should have succeeded"); - - // Write some valid JSON, but invalid U256 - tokio::fs::write(&client.files_in_cache()[0], "\"not-hex\"") - .await - .unwrap(); - - client - .get_storage_at( - &dai_address, - U256::from(1), - Some(BlockSpec::Number(16220843)), - ) - .await - .expect("should have succeeded"); - } - - #[tokio::test] - async fn handles_invalid_type_in_cache_batch_call() { - let alchemy_url = get_alchemy_url(); - let client = TestRpcClient::new(&alchemy_url); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - let block_spec = BlockSpec::Number(16220843); - - // Make an initial call to populate the cache. - client - .get_account_info(&dai_address, Some(block_spec.clone())) - .await - .expect("initial call should succeed"); - assert_eq!(client.files_in_cache().len(), 3); - - // Write some valid JSON, but invalid U256 - tokio::fs::write(&client.files_in_cache()[0], "\"not-hex\"") - .await - .unwrap(); - - // Call with invalid type in cache fails, but removes faulty cache item - client - .get_account_info(&dai_address, Some(block_spec.clone())) - .await - .expect_err("should fail due to invalid json in cache"); - assert_eq!(client.files_in_cache().len(), 2); - - // Subsequent call fetches removed cache item and succeeds. - client - .get_account_info(&dai_address, Some(block_spec.clone())) - .await - .expect("subsequent call should succeed"); - assert_eq!(client.files_in_cache().len(), 3); - } - } -} diff --git a/crates/edr_eth/src/remote/client/reqwest_error.rs b/crates/edr_eth/src/remote/client/reqwest_error.rs deleted file mode 100644 index c70ffd8444..0000000000 --- a/crates/edr_eth/src/remote/client/reqwest_error.rs +++ /dev/null @@ -1,138 +0,0 @@ -use std::error::Error; - -use lazy_static::lazy_static; -use regex::{Captures, Regex, Replacer}; -use url::Url; - -/// Custom wrapper for `reqwest::Error` to avoid displaying the url in error -/// message that could contain sensitive information such as API keys. -#[derive(thiserror::Error, Debug)] -pub struct ReqwestError(#[from] reqwest::Error); - -impl From for reqwest::Error { - fn from(value: ReqwestError) -> Self { - value.0 - } -} - -// Matches the `Display` implementation for `reqwest::Error` except where noted -impl std::fmt::Display for ReqwestError { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - if self.0.is_builder() { - f.write_str("builder self")?; - } else if self.0.is_request() { - f.write_str("self sending request")?; - } else if self.0.is_body() { - f.write_str("request or response body self")?; - } else if self.0.is_decode() { - f.write_str("self decoding response body")?; - } else if self.0.is_redirect() { - f.write_str("self following redirect")?; - } else if self.0.is_status() { - let code = self.0.status().expect("Error is status"); - let prefix = if code.is_client_error() { - "HTTP status client self" - } else { - debug_assert!(code.is_server_error()); - "HTTP status server self" - }; - write!(f, "{prefix} ({code})")?; - } else { - // It might be an upgrade, but `reqwest` doesn't expose checking that on the - // self type. - f.write_str("unknown self")?; - } - - // This is changed from the original code - if let Some(host) = self.0.url().and_then(|url| url.host_str()) { - write!(f, " for host ({host})")?; - } - - if let Some(e) = self.0.source() { - write!(f, ": {e}")?; - } - - Ok(()) - } -} - -/// Custom wrapper for `reqwest_middleware::Error` to avoid displaying the url -/// in error message that could contain sensitive information such as API keys. -#[derive(thiserror::Error, Debug)] -pub enum MiddlewareError { - /// There was an error running some middleware - Middleware(#[from] anyhow::Error), - /// Error from the underlying reqwest client - Reqwest(#[from] ReqwestError), -} - -impl From for MiddlewareError { - fn from(value: reqwest_middleware::Error) -> Self { - match value { - reqwest_middleware::Error::Middleware(middleware) => { - MiddlewareError::Middleware(middleware) - } - reqwest_middleware::Error::Reqwest(reqwest) => MiddlewareError::Reqwest(reqwest.into()), - } - } -} - -impl std::fmt::Display for MiddlewareError { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - MiddlewareError::Middleware(e) => { - let s = e.to_string(); - let replaced = URL_REGEX.replace_all(&s, UrlReplacer); - f.write_str(&replaced) - } - MiddlewareError::Reqwest(e) => e.fmt(f), - } - } -} - -lazy_static! { - static ref URL_REGEX: Regex = Regex::new(r"(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)").expect("Test checks panic"); -} - -/// Replaces urls in strings with the host part only. -struct UrlReplacer; - -impl Replacer for UrlReplacer { - fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String) { - if let Some(host) = caps.get(0).and_then(|url| { - Url::parse(url.as_str()) - .ok() - .and_then(|url| url.host_str().map(ToString::to_string)) - }) { - dst.push_str(&host); - } else { - dst.push_str(""); - } - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_display_middleware_error() -> anyhow::Result<()> { - let error = MiddlewareError::Middleware(anyhow::anyhow!( - "Some middleware error occurred for url: http://subdomain.example.com:1234/secret something else" - )); - assert_eq!( - error.to_string(), - "Some middleware error occurred for url: subdomain.example.com something else" - ); - - let error = MiddlewareError::Middleware(anyhow::anyhow!( - "Some middleware error occurred for url: https://subdomain.example.com/path?query=secret something else" - )); - assert_eq!( - error.to_string(), - "Some middleware error occurred for url: subdomain.example.com something else" - ); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/remote/eth.rs b/crates/edr_eth/src/remote/eth.rs deleted file mode 100644 index d796942125..0000000000 --- a/crates/edr_eth/src/remote/eth.rs +++ /dev/null @@ -1,235 +0,0 @@ -#![cfg(feature = "serde")] - -// Parts of this code were adapted from github.com/gakonst/ethers-rs and are -// distributed under its licenses: -// - https://github.com/gakonst/ethers-rs/blob/7e6c3ba98363bdf6131e8284f186cc2c70ff48c3/LICENSE-APACHE -// - https://github.com/gakonst/ethers-rs/blob/7e6c3ba98363bdf6131e8284f186cc2c70ff48c3/LICENSE-MIT -// For the original context, see https://github.com/gakonst/ethers-rs/tree/7e6c3ba98363bdf6131e8284f186cc2c70ff48c3 - -/// Input type for `eth_call` and `eth_estimateGas` -mod call_request; - -use std::fmt::Debug; - -pub use self::call_request::CallRequest; -use crate::{ - access_list::AccessListItem, withdrawal::Withdrawal, Address, Bloom, Bytes, B256, B64, U256, -}; - -/// transaction -#[derive(Clone, Debug, PartialEq, Eq, Default, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct Transaction { - /// hash of the transaction - pub hash: B256, - /// the number of transactions made by the sender prior to this one - #[serde(with = "crate::serde::u64")] - pub nonce: u64, - /// hash of the block where this transaction was in - pub block_hash: Option, - /// block number where this transaction was in - pub block_number: Option, - /// integer of the transactions index position in the block. null when its - /// pending - #[serde(with = "crate::serde::optional_u64")] - pub transaction_index: Option, - /// address of the sender - pub from: Address, - /// address of the receiver. null when its a contract creation transaction. - pub to: Option
, - /// value transferred in Wei - pub value: U256, - /// gas price provided by the sender in Wei - pub gas_price: U256, - /// gas provided by the sender - pub gas: U256, - /// the data sent along with the transaction - pub input: Bytes, - /// ECDSA recovery id - #[serde(with = "crate::serde::u64")] - pub v: u64, - /// Y-parity for EIP-2930 and EIP-1559 transactions. In theory these - /// transactions types shouldn't have a `v` field, but in practice they - /// are returned by nodes. - #[serde( - default, - rename = "yParity", - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - pub y_parity: Option, - /// ECDSA signature r - pub r: U256, - /// ECDSA signature s - pub s: U256, - /// chain ID - #[serde( - default, - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - pub chain_id: Option, - /// integer of the transaction type, 0x0 for legacy transactions, 0x1 for - /// access list types, 0x2 for dynamic fees - #[serde( - rename = "type", - default, - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - pub transaction_type: Option, - /// access list - #[serde(default, skip_serializing_if = "Option::is_none")] - pub access_list: Option>, - /// max fee per gas - #[serde(default, skip_serializing_if = "Option::is_none")] - pub max_fee_per_gas: Option, - /// max priority fee per gas - #[serde(default, skip_serializing_if = "Option::is_none")] - pub max_priority_fee_per_gas: Option, - /// The maximum total fee per gas the sender is willing to pay for blob gas - /// in wei (EIP-4844) - #[serde(default, skip_serializing_if = "Option::is_none")] - pub max_fee_per_blob_gas: Option, - /// List of versioned blob hashes associated with the transaction's EIP-4844 - /// data blobs. - #[serde(default, skip_serializing_if = "Option::is_none")] - pub blob_versioned_hashes: Option>, -} - -impl Transaction { - /// Returns whether the transaction has odd Y parity. - pub fn odd_y_parity(&self) -> bool { - self.v == 1 || self.v == 28 - } - - /// Returns whether the transaction is a legacy transaction. - pub fn is_legacy(&self) -> bool { - matches!(self.transaction_type, None | Some(0)) && matches!(self.v, 27 | 28) - } -} - -/// Error that occurs when trying to convert the JSON-RPC `TransactionReceipt` -/// type. -#[derive(Debug, thiserror::Error)] -pub enum ReceiptConversionError { - /// The transaction type is not supported. - #[error("Unsupported type {0}")] - UnsupportedType(u64), -} - -/// block object returned by `eth_getBlockBy*` -#[derive(Debug, Default, Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct Block { - /// Hash of the block - pub hash: Option, - /// hash of the parent block. - pub parent_hash: B256, - /// SHA3 of the uncles data in the block - pub sha3_uncles: B256, - /// the root of the final state trie of the block - pub state_root: B256, - /// the root of the transaction trie of the block - pub transactions_root: B256, - /// the root of the receipts trie of the block - pub receipts_root: B256, - /// the block number. None when its pending block. - #[serde(with = "crate::serde::optional_u64")] - pub number: Option, - /// the total used gas by all transactions in this block - #[serde(with = "crate::serde::u64")] - pub gas_used: u64, - /// the maximum gas allowed in this block - #[serde(with = "crate::serde::u64")] - pub gas_limit: u64, - /// the "extra data" field of this block - pub extra_data: Bytes, - /// the bloom filter for the logs of the block - pub logs_bloom: Bloom, - /// the unix timestamp for when the block was collated - #[serde(with = "crate::serde::u64")] - pub timestamp: u64, - /// integer of the difficulty for this blocket - pub difficulty: U256, - /// integer of the total difficulty of the chain until this block - pub total_difficulty: Option, - /// Array of uncle hashes - #[serde(default)] - pub uncles: Vec, - /// Array of transaction objects, or 32 Bytes transaction hashes depending - /// on the last given parameter - #[serde(default)] - pub transactions: Vec, - /// the length of the RLP encoding of this block in bytes - #[serde(with = "crate::serde::u64")] - pub size: u64, - /// Mix hash. None when it's a pending block. - pub mix_hash: Option, - /// hash of the generated proof-of-work. null when its pending block. - pub nonce: Option, - /// base fee per gas - #[serde(skip_serializing_if = "Option::is_none")] - pub base_fee_per_gas: Option, - /// the address of the beneficiary to whom the mining rewards were given - #[serde(skip_serializing_if = "Option::is_none")] - pub miner: Option
, - /// withdrawals - #[serde(skip_serializing_if = "Option::is_none")] - pub withdrawals: Option>, - /// withdrawals root - #[serde(skip_serializing_if = "Option::is_none")] - pub withdrawals_root: Option, - /// The total amount of gas used by the transactions. - #[serde( - default, - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - pub blob_gas_used: Option, - /// A running total of blob gas consumed in excess of the target, prior to - /// the block. - #[serde( - default, - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - pub excess_blob_gas: Option, - /// Root of the parent beacon block - #[serde(skip_serializing_if = "Option::is_none")] - pub parent_beacon_block_root: Option, -} - -/// Fee history for the returned block range. This can be a subsection of the -/// requested range if not all blocks are available. -#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct FeeHistoryResult { - /// Lowest number block of returned range. - #[serde(with = "crate::serde::u64")] - pub oldest_block: u64, - /// An array of block base fees per gas. This includes the next block after - /// the newest of the returned range, because this value can be derived from - /// the newest block. Zeroes are returned for pre-EIP-1559 blocks. - pub base_fee_per_gas: Vec, - /// An array of block gas used ratios. These are calculated as the ratio of - /// gas used and gas limit. - pub gas_used_ratio: Vec, - /// A two-dimensional array of effective priority fees per gas at the - /// requested block percentiles. - #[serde(skip_serializing_if = "Option::is_none")] - pub reward: Option>>, -} - -impl FeeHistoryResult { - /// Constructs a new `FeeHistoryResult` with the oldest block and otherwise - /// default fields. - pub fn new(oldest_block: u64) -> Self { - Self { - oldest_block, - base_fee_per_gas: Vec::default(), - gas_used_ratio: Vec::default(), - reward: Option::default(), - } - } -} diff --git a/crates/edr_eth/src/remote/eth/call_request.rs b/crates/edr_eth/src/remote/eth/call_request.rs deleted file mode 100644 index 27ad3b096e..0000000000 --- a/crates/edr_eth/src/remote/eth/call_request.rs +++ /dev/null @@ -1,34 +0,0 @@ -use crate::{access_list::AccessListItem, Address, Bytes, B256, U256}; - -/// For specifying input to methods requiring a transaction object, like -/// `eth_call` and `eth_estimateGas` -#[derive(Clone, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct CallRequest { - /// the address from which the transaction should be sent - pub from: Option
, - /// the address to which the transaction should be sent - pub to: Option
, - #[cfg_attr(feature = "serde", serde(default, with = "crate::serde::optional_u64"))] - /// gas - pub gas: Option, - /// gas price - pub gas_price: Option, - /// max base fee per gas sender is willing to pay - pub max_fee_per_gas: Option, - /// miner tip - pub max_priority_fee_per_gas: Option, - /// transaction value - pub value: Option, - /// transaction data - pub data: Option, - /// warm storage access pre-payment - pub access_list: Option>, - /// EIP-2718 type - #[cfg_attr(feature = "serde", serde(default, rename = "type"))] - pub transaction_type: Option, - /// Blobs (EIP-4844) - pub blobs: Option>, - /// Blob versioned hashes (EIP-4844) - pub blob_hashes: Option>, -} diff --git a/crates/edr_eth/src/remote/filter.rs b/crates/edr_eth/src/remote/filter.rs deleted file mode 100644 index d34d1b6acd..0000000000 --- a/crates/edr_eth/src/remote/filter.rs +++ /dev/null @@ -1,203 +0,0 @@ -use std::mem::take; - -use hashbrown::HashSet; - -use crate::{log::FilterLog, remote::BlockSpec, Address, Bytes, B256}; - -/// A type that can be used to pass either one or many objects to a JSON-RPC -/// request -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum OneOrMore { - /// one object - One(T), - /// a collection of objects - Many(Vec), -} - -/// for specifying the inputs to `eth_newFilter` and `eth_getLogs` -#[derive(Clone, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct LogFilterOptions { - /// beginning of a range of blocks - #[serde(skip_serializing_if = "Option::is_none")] - pub from_block: Option, - /// end of a range of blocks - #[serde(skip_serializing_if = "Option::is_none")] - pub to_block: Option, - /// a single block, specified by its hash - #[serde(skip_serializing_if = "Option::is_none")] - pub block_hash: Option, - /// address - #[serde(skip_serializing_if = "Option::is_none")] - pub address: Option>, - /// topics - #[serde(skip_serializing_if = "Option::is_none")] - pub topics: Option>>>, -} - -/// represents the output of `eth_getFilterLogs` and `eth_getFilterChanges` when -/// used with a log filter -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct LogOutput { - /// true when the log was removed, due to a chain reorganization. false if - /// it's a valid log - pub removed: bool, - /// integer of the log index position in the block. None when its pending - /// log. - #[serde(with = "crate::serde::optional_u64")] - pub log_index: Option, - /// integer of the transactions index position log was created from. None - /// when its pending log. - #[serde(with = "crate::serde::optional_u64")] - pub transaction_index: Option, - /// hash of the transactions this log was created from. None when its - /// pending log. - pub transaction_hash: Option, - /// hash of the block where this log was in. null when its pending. None - /// when its pending log. - pub block_hash: Option, - /// the block number where this log was in. null when its pending. None when - /// its pending log. - #[serde(with = "crate::serde::optional_u64")] - pub block_number: Option, - /// address from which this log originated. - pub address: Address, - /// contains one or more 32 Bytes non-indexed arguments of the log. - pub data: Bytes, - /// Array of 0 to 4 32 Bytes DATA of indexed log arguments. (In solidity: - /// The first topic is the hash of the signature of the event (e.g. - /// Deposit(address,bytes32,uint256)), except you declared the event - /// with the anonymous specifier.) - pub topics: Vec, -} - -impl From<&FilterLog> for LogOutput { - fn from(value: &FilterLog) -> Self { - Self { - removed: value.removed, - log_index: Some(value.inner.log_index), - transaction_index: Some(value.inner.transaction_index), - transaction_hash: Some(value.inner.transaction_hash), - block_hash: Some(value.block_hash), - block_number: Some(value.inner.block_number), - address: value.inner.address, - data: value.inner.data.data.clone(), - topics: value.inner.data.topics().to_vec(), - } - } -} - -/// represents the output of `eth_getFilterChanges` -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum FilteredEvents { - /// logs - Logs(Vec), - /// new block heads - NewHeads(Vec), - /// new pending transactions - NewPendingTransactions(Vec), -} - -impl FilteredEvents { - /// Move the memory out of the variant. - pub fn take(&mut self) -> Self { - match self { - Self::Logs(v) => Self::Logs(take(v)), - Self::NewHeads(v) => Self::NewHeads(take(v)), - Self::NewPendingTransactions(v) => Self::NewPendingTransactions(take(v)), - } - } - - /// Returns the type of the variant. - pub fn subscription_type(&self) -> SubscriptionType { - match self { - Self::Logs(_) => SubscriptionType::Logs, - Self::NewHeads(_) => SubscriptionType::NewHeads, - Self::NewPendingTransactions(_) => SubscriptionType::NewPendingTransactions, - } - } -} - -/// subscription type to be used with `eth_subscribe` -#[derive(Clone, Debug, PartialEq)] -pub enum SubscriptionType { - /// Induces the emission of logs attached to a new block that match certain - /// topic filters. - Logs, - /// Induces the emission of new blocks that are added to the blockchain. - NewHeads, - /// Induces the emission of transaction hashes that are sent to the network - /// and marked as "pending". - NewPendingTransactions, -} - -impl serde::Serialize for SubscriptionType { - fn serialize(&self, serializer: S) -> Result - where - S: serde::Serializer, - { - serializer.serialize_str(match self { - SubscriptionType::Logs => "logs", - SubscriptionType::NewHeads => "newHeads", - SubscriptionType::NewPendingTransactions => "newPendingTransactions", - }) - } -} - -impl<'a> serde::Deserialize<'a> for SubscriptionType { - fn deserialize(deserializer: D) -> Result - where - D: serde::Deserializer<'a>, - { - struct SubscriptionTypeVisitor; - impl<'a> serde::de::Visitor<'a> for SubscriptionTypeVisitor { - type Value = SubscriptionType; - - fn expecting(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - formatter.write_str("a string") - } - - fn visit_str(self, value: &str) -> Result - where - E: serde::de::Error, - { - match value { - "logs" => Ok(SubscriptionType::Logs), - "newHeads" => Ok(SubscriptionType::NewHeads), - "newPendingTransactions" => Ok(SubscriptionType::NewPendingTransactions), - _ => Err(serde::de::Error::custom("Invalid subscription type")), - } - } - } - - deserializer.deserialize_identifier(SubscriptionTypeVisitor) - } -} - -/// Whether the log address matches the address filter. -pub fn matches_address_filter(log_address: &Address, address_filter: &HashSet
) -> bool { - address_filter.is_empty() || address_filter.contains(log_address) -} - -/// Whether the log topics match the topics filter. -pub fn matches_topics_filter(log_topics: &[B256], topics_filter: &[Option>]) -> bool { - if topics_filter.len() > log_topics.len() { - return false; - } - - topics_filter - .iter() - .zip(log_topics.iter()) - .all(|(normalized_topics, log_topic)| { - normalized_topics - .as_ref() - .map_or(true, |normalized_topics| { - normalized_topics - .iter() - .any(|normalized_topic| *normalized_topic == *log_topic) - }) - }) -} diff --git a/crates/edr_eth/src/remote/jsonrpc.rs b/crates/edr_eth/src/remote/jsonrpc.rs deleted file mode 100644 index 049efc9e41..0000000000 --- a/crates/edr_eth/src/remote/jsonrpc.rs +++ /dev/null @@ -1,153 +0,0 @@ -// Parts of this code were adapted from github.com/koushiro/async-jsonrpc and -// are distributed under its licenses: -// - https://github.com/koushiro/async-jsonrpc/blob/9b42602f4faa63dd4b6a1a9fe359bffa97e636d5/LICENSE-APACHE -// - https://github.com/koushiro/async-jsonrpc/blob/9b42602f4faa63dd4b6a1a9fe359bffa97e636d5/LICENSE-MIT -// For the original context, see https://github.com/koushiro/async-jsonrpc/tree/9b42602f4faa63dd4b6a1a9fe359bffa97e636d5 - -use serde::{Deserialize, Serialize}; - -/// Represents a JSON-RPC error. -#[derive(thiserror::Error, Clone, Debug, Eq, PartialEq, Serialize, Deserialize)] -#[error("The response reported error `{code}`: `{message}`. (optional data: {data:?})")] -pub struct Error { - /// error code - pub code: i16, - /// error message - pub message: String, - /// optional additional data - pub data: Option, -} - -/// Represents a JSON-RPC 2.0 response. -#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)] -pub struct Response { - /// A String specifying the version of the JSON-RPC protocol. - pub jsonrpc: Version, - // - /// Correlation id. - /// - /// It **MUST** be the same as the value of the id member in the Request - /// Object. - pub id: Id, - /// Response data. - #[serde(flatten)] - pub data: ResponseData, -} - -/// Represents JSON-RPC 2.0 success response. -#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)] -#[serde(untagged)] -pub enum ResponseData { - /// an error response - Error { - /// the error - error: Error, - }, - /// a success response - Success { - /// the result - result: T, - }, -} - -impl ResponseData { - /// Returns a [`Result`] where `Success` is mapped to `Ok` and `Error` to - /// `Err`. - pub fn into_result(self) -> Result { - match self { - ResponseData::Success { result } => Ok(result), - ResponseData::Error { error } => Err(error), - } - } - - /// convenience constructor for an error response - pub fn new_error(code: i16, message: &str, data: Option) -> Self { - ResponseData::::Error { - error: Error { - code, - message: String::from(message), - data, - }, - } - } -} - -impl> From> - for ResponseData -{ - fn from(result: Result) -> Self { - match result { - Ok(result) => ResponseData::Success { result }, - Err(error) => ResponseData::Error { - error: error.into(), - }, - } - } -} - -/// Represents JSON-RPC request/response id. -/// -/// An identifier established by the Client that MUST contain a String, Number, -/// or NULL value if included, If it is not included it is assumed to be a -/// notification. The value SHOULD normally not be Null and Numbers SHOULD NOT -/// contain fractional parts. -/// -/// The Server **MUST** reply with the same value in the Response object if -/// included. This member is used to correlate the context between the two -/// objects. -#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] -#[serde(untagged)] -pub enum Id { - /// Numeric id - Num(u64), - /// String id - Str(String), -} -/// Represents JSON-RPC protocol version. -#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] -pub enum Version { - /// Represents JSON-RPC 2.0 version. - V2_0, -} - -impl Serialize for Version { - fn serialize(&self, serializer: S) -> Result - where - S: serde::Serializer, - { - match self { - Version::V2_0 => serializer.serialize_str("2.0"), - } - } -} - -impl<'a> Deserialize<'a> for Version { - fn deserialize(deserializer: D) -> Result - where - D: serde::Deserializer<'a>, - { - deserializer.deserialize_identifier(VersionVisitor) - } -} - -struct VersionVisitor; - -impl<'a> serde::de::Visitor<'a> for VersionVisitor { - type Value = Version; - - fn expecting(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - formatter.write_str("a string") - } - - fn visit_str(self, value: &str) -> Result - where - E: serde::de::Error, - { - match value { - "2.0" => Ok(Version::V2_0), - _ => Err(serde::de::Error::custom( - "Invalid JSON-RPC protocol version", - )), - } - } -} diff --git a/crates/edr_eth/src/remote/override.rs b/crates/edr_eth/src/remote/override.rs deleted file mode 100644 index f37aa995a3..0000000000 --- a/crates/edr_eth/src/remote/override.rs +++ /dev/null @@ -1,30 +0,0 @@ -use crate::{Address, Bytes, HashMap, B256, U256}; - -/// Type representing a set of overrides for storage information. -pub type StorageOverride = HashMap; - -/// Options for overriding account information. -#[derive(Clone, Debug, PartialEq, serde::Serialize, serde::Deserialize)] -#[serde(rename_all = "camelCase")] -pub struct AccountOverrideOptions { - /// Account balance override. - pub balance: Option, - #[serde( - default, - skip_serializing_if = "Option::is_none", - with = "crate::serde::optional_u64" - )] - /// Account nonce override. - pub nonce: Option, - /// Account code override. - pub code: Option, - /// Account storage override. Mutually exclusive with `storage_diff`. - #[serde(rename = "state")] - pub storage: Option, - /// Account storage diff override. Mutually exclusive with `storage`. - #[serde(rename = "stateDiff")] - pub storage_diff: Option, -} - -/// Type representing a full set of overrides for account information. -pub type StateOverrideOptions = HashMap; diff --git a/crates/edr_eth/src/remote/request_methods.rs b/crates/edr_eth/src/remote/request_methods.rs deleted file mode 100644 index d2f9ed2f7b..0000000000 --- a/crates/edr_eth/src/remote/request_methods.rs +++ /dev/null @@ -1,120 +0,0 @@ -use revm_primitives::{Address, B256}; - -use crate::{ - remote::{filter::LogFilterOptions, BlockSpec, PreEip1898BlockSpec}, - reward_percentile::RewardPercentile, - U256, -}; - -/// Methods for requests to a remote Ethereum node. Only contains methods -/// supported by the [`crate::remote::client::RpcClient`]. -#[derive(Clone, Debug, PartialEq, serde::Serialize)] -#[serde(tag = "method", content = "params")] -pub enum RequestMethod { - /// eth_blockNumber - #[serde(rename = "eth_blockNumber", with = "crate::serde::empty_params")] - BlockNumber(()), - /// eth_feeHistory - #[serde(rename = "eth_feeHistory")] - FeeHistory( - /// block count - U256, - /// newest block - BlockSpec, - /// reward percentiles - #[serde(skip_serializing_if = "Option::is_none")] - Option>, - ), - /// eth_chainId - #[serde(rename = "eth_chainId", with = "crate::serde::empty_params")] - ChainId(()), - /// eth_getBalance - #[serde(rename = "eth_getBalance")] - GetBalance( - Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getBlockByNumber - #[serde(rename = "eth_getBlockByNumber")] - GetBlockByNumber( - PreEip1898BlockSpec, - /// include transaction data - bool, - ), - /// eth_getBlockByHash - #[serde(rename = "eth_getBlockByHash")] - GetBlockByHash( - /// hash - B256, - /// include transaction data - bool, - ), - /// eth_getCode - #[serde(rename = "eth_getCode")] - GetCode( - Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getLogs - #[serde(rename = "eth_getLogs", with = "crate::serde::sequence")] - GetLogs(LogFilterOptions), - /// eth_getStorageAt - #[serde(rename = "eth_getStorageAt")] - GetStorageAt( - Address, - /// position - U256, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getTransactionByHash - #[serde(rename = "eth_getTransactionByHash", with = "crate::serde::sequence")] - GetTransactionByHash(B256), - /// eth_getTransactionCount - #[serde(rename = "eth_getTransactionCount")] - GetTransactionCount( - Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getTransactionReceipt - #[serde(rename = "eth_getTransactionReceipt", with = "crate::serde::sequence")] - GetTransactionReceipt(B256), - /// net_version - #[serde(rename = "net_version", with = "crate::serde::empty_params")] - NetVersion(()), -} - -impl RequestMethod { - pub fn name(&self) -> &'static str { - match self { - Self::BlockNumber(_) => "eth_blockNumber", - Self::FeeHistory(_, _, _) => "eth_feeHistory", - Self::ChainId(_) => "eth_chainId", - Self::GetBalance(_, _) => "eth_getBalance", - Self::GetBlockByNumber(_, _) => "eth_getBlockByNumber", - Self::GetBlockByHash(_, _) => "eth_getBlockByHash", - Self::GetCode(_, _) => "eth_getCode", - Self::GetLogs(_) => "eth_getLogs", - Self::GetStorageAt(_, _, _) => "eth_getStorageAt", - Self::GetTransactionByHash(_) => "eth_getTransactionByHash", - Self::GetTransactionCount(_, _) => "eth_getTransactionCount", - Self::GetTransactionReceipt(_) => "eth_getTransactionReceipt", - Self::NetVersion(_) => "net_version", - } - } -} diff --git a/crates/edr_eth/src/reward_percentile.rs b/crates/edr_eth/src/reward_percentile.rs deleted file mode 100644 index 3217571b59..0000000000 --- a/crates/edr_eth/src/reward_percentile.rs +++ /dev/null @@ -1,35 +0,0 @@ -/// Wrapper for a validated reward percentile. -#[derive(Clone, Copy, Debug, Default, PartialEq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[repr(transparent)] -#[cfg_attr(feature = "serde", serde(transparent))] -pub struct RewardPercentile(f64); - -impl TryFrom for RewardPercentile { - type Error = InvalidRewardPercentile; - - fn try_from(value: f64) -> Result { - if (0.0..=100.0).contains(&value) { - Ok(Self(value)) - } else { - Err(InvalidRewardPercentile) - } - } -} - -impl From for f64 { - fn from(value: RewardPercentile) -> Self { - value.0 - } -} - -impl AsRef for RewardPercentile { - fn as_ref(&self) -> &f64 { - &self.0 - } -} - -/// Error type for `RewardPercentile::try_from`. -#[derive(Clone, Copy, Debug, thiserror::Error)] -#[error("Reward percentile must be in range [0, 100]")] -pub struct InvalidRewardPercentile; diff --git a/crates/edr_eth/src/rlp.rs b/crates/edr_eth/src/rlp.rs deleted file mode 100644 index 4a9e83a9e1..0000000000 --- a/crates/edr_eth/src/rlp.rs +++ /dev/null @@ -1 +0,0 @@ -pub use alloy_rlp::{Decodable, Encodable, Error}; diff --git a/crates/edr_eth/src/serde.rs b/crates/edr_eth/src/serde.rs deleted file mode 100644 index 05d9203f86..0000000000 --- a/crates/edr_eth/src/serde.rs +++ /dev/null @@ -1,241 +0,0 @@ -//! Helper utilities for serde - -use serde::{ - de::DeserializeOwned, ser::SerializeSeq, Deserialize, Deserializer, Serialize, Serializer, -}; - -/// for use with serde's `serialize_with` on an optional single value that -/// should be serialized as a sequence -pub fn optional_single_to_sequence(val: &Option, s: S) -> Result -where - S: Serializer, - T: Serialize, -{ - let mut seq = s.serialize_seq(Some(1))?; - if val.is_some() { - seq.serialize_element(val)?; - } - seq.end() -} - -/// for use with serde's `deserialize_with` on a sequence that should be -/// deserialized as a single but optional value. -pub fn sequence_to_optional_single<'de, D, T>(deserializer: D) -> Result, D::Error> -where - D: Deserializer<'de>, - T: Deserialize<'de> + Clone, -{ - let s: Vec = Deserialize::deserialize(deserializer)?; - if s.is_empty() { - Ok(None) - } else { - Ok(Some(s[0].clone())) - } -} - -/// For use with serde's `deserialize_with` on a sequence that should be -/// deserialized as a single but optional value. -pub fn optional_to_default<'de, D, T>(deserializer: D) -> Result -where - D: Deserializer<'de>, - T: Deserialize<'de> + Default, -{ - let s: Option = Deserialize::deserialize(deserializer)?; - Ok(s.unwrap_or_default()) -} - -/// Helper module for optionally (de)serializing `[]` into `()`. -pub mod empty_params { - use super::{Deserialize, Deserializer, Serialize, SerializeSeq, Serializer}; - - /// Helper function for deserializing `[]` into `()`. - pub fn deserialize<'de, DeserializerT>(d: DeserializerT) -> Result<(), DeserializerT::Error> - where - DeserializerT: Deserializer<'de>, - { - let seq = Option::>::deserialize(d)?.unwrap_or_default(); - if !seq.is_empty() { - return Err(serde::de::Error::custom(format!( - "expected params sequence with length 0 but got {}", - seq.len() - ))); - } - Ok(()) - } - - /// Helper function for serializing `()` into `[]`. - pub fn serialize( - _val: &T, - s: SerializerT, - ) -> Result - where - SerializerT: Serializer, - T: Serialize, - { - let seq = s.serialize_seq(Some(0))?; - seq.end() - } -} - -/// Helper module for (de)serializing from/to a single value to/from a sequence. -pub mod sequence { - use super::{Deserialize, DeserializeOwned, Deserializer, Serialize, SerializeSeq, Serializer}; - - /// Helper function for deserializing a single value from a sequence. - pub fn deserialize<'de, T, DeserializerT>(d: DeserializerT) -> Result - where - DeserializerT: Deserializer<'de>, - T: DeserializeOwned, - { - let mut seq = Vec::::deserialize(d)?; - if seq.len() != 1 { - return Err(serde::de::Error::custom(format!( - "expected params sequence with length 1 but got {}", - seq.len() - ))); - } - Ok(seq.remove(0)) - } - - /// Helper function for serializing a single value into a sequence. - pub fn serialize( - val: &T, - s: SerializerT, - ) -> Result - where - SerializerT: Serializer, - T: Serialize, - { - let mut seq = s.serialize_seq(Some(1))?; - seq.serialize_element(val)?; - seq.end() - } -} - -/// Helper module for (de)serializing [`std::primitive::u64`]s from and into -/// `0x`-prefixed hexadecimal strings. -pub mod u64 { - use super::{Deserialize, Deserializer, Serialize, Serializer}; - use crate::U64; - - /// Helper function for deserializing a [`std::primitive::u64`] from a - /// `0x`-prefixed hexadecimal string. - pub fn deserialize<'de, D>(deserializer: D) -> Result - where - D: Deserializer<'de>, - { - let value: U64 = Deserialize::deserialize(deserializer)?; - Ok(value.as_limbs()[0]) - } - - /// Helper function for serializing a [`std::primitive::u64`] into a - /// 0x-prefixed hexadecimal string. - pub fn serialize(value: &u64, s: S) -> Result - where - S: Serializer, - { - Serialize::serialize(&U64::from(*value), s) - } -} - -/// Helper module for (de)serializing an [`Option`] from a -/// `0x`-prefixed hexadecimal string. -pub mod optional_u64 { - use super::{Deserialize, Deserializer, Serialize, Serializer}; - use crate::U64; - - /// Helper function for deserializing an [`Option`] - /// from a `0x`-prefixed hexadecimal string. - pub fn deserialize<'de, DeserializerT>( - deserializer: DeserializerT, - ) -> Result, DeserializerT::Error> - where - DeserializerT: Deserializer<'de>, - { - let value: Option = Deserialize::deserialize(deserializer)?; - Ok(value.map(|value| value.as_limbs()[0])) - } - - /// Helper function for serializing a [`Option`] into a - /// `0x`-prefixed hexadecimal string. - pub fn serialize( - value: &Option, - s: SerializerT, - ) -> Result - where - SerializerT: Serializer, - { - Serialize::serialize(&value.map(U64::from), s) - } -} - -/// Helper module for (de)serializing [`std::primitive::u8`]s from and into -/// `0x`-prefixed hexadecimal strings. -pub mod u8 { - use revm_primitives::alloy_primitives::U8; - - use super::{Deserialize, Deserializer, Serialize, Serializer}; - - /// Helper function for deserializing a [`std::primitive::u8`] from a - /// `0x`-prefixed hexadecimal string. - pub fn deserialize<'de, DeserializerT>( - deserializer: DeserializerT, - ) -> Result - where - DeserializerT: Deserializer<'de>, - { - let value: U8 = Deserialize::deserialize(deserializer)?; - Ok(value.to()) - } - - /// Helper function for serializing a [`std::primitive::u8`] into a - /// `0x`-prefixed hexadecimal string. - pub fn serialize( - value: &u8, - s: SerializerT, - ) -> Result - where - SerializerT: Serializer, - { - Serialize::serialize(&U8::from(*value), s) - } -} - -#[cfg(test)] -mod tests { - use serde_json::json; - - use super::*; - - #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] - struct TestStructSerde { - #[serde(with = "u8")] - u8: u8, - #[serde(with = "u64")] - u64: u64, - #[serde(with = "optional_u64")] - optional_u64: Option, - } - - impl TestStructSerde { - fn json() -> serde_json::Value { - json!({ - "u8": "0x01", - // 2 bytes (too large for u8) - "u64": "0x1234", - "optional_u64": "0x1234", - }) - } - } - - #[test] - fn test_serde() { - let json = TestStructSerde::json(); - let test_struct: TestStructSerde = serde_json::from_value(json).unwrap(); - - let serialized = serde_json::to_string(&test_struct).unwrap(); - let deserialized = serde_json::from_str(&serialized).unwrap(); - - assert_eq!(test_struct, deserialized); - } -} diff --git a/crates/edr_eth/src/signature.rs b/crates/edr_eth/src/signature.rs deleted file mode 100644 index 6ee357dda4..0000000000 --- a/crates/edr_eth/src/signature.rs +++ /dev/null @@ -1,467 +0,0 @@ -// Part of this code was adapted from ethers-rs and is distributed under their -// licenss: -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-APACHE -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-MIT -// For the original context see: https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/ethers-core/src/types/signature.rs - -use core::fmt; -#[cfg(feature = "std")] -use std::str::FromStr; - -use alloy_rlp::BufMut; -use k256::{ - ecdsa::{ - signature::hazmat::PrehashSigner, RecoveryId, Signature as ECDSASignature, SigningKey, - VerifyingKey, - }, - elliptic_curve::sec1::ToEncodedPoint, - FieldBytes, PublicKey, SecretKey, -}; -use sha3::{Digest, Keccak256}; - -use crate::{utils::hash_message, Address, Bytes, B256, U256}; - -/// Converts a [`PublicKey`] to an [`Address`]. -pub fn public_key_to_address(public_key: PublicKey) -> Address { - let public_key = public_key.to_encoded_point(/* compress = */ false); - let hash = Keccak256::digest(&public_key.as_bytes()[1..]); - // Only take the lower 160 bits of the hash - Address::from_slice(&hash[12..]) -} - -/// Converts a secret key in a hex string format to an address. -/// -/// # Examples -/// -/// ``` -/// use edr_eth::signature::secret_key_to_address; -/// -/// let secret_key = "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"; -/// -/// let address = secret_key_to_address(secret_key).unwrap(); -/// ``` -pub fn secret_key_to_address(secret_key: &str) -> Result { - let secret_key = secret_key_from_str(secret_key)?; - Ok(public_key_to_address(secret_key.public_key())) -} - -/// Converts a hex string to a secret key. -pub fn secret_key_from_str(secret_key: &str) -> Result { - let secret_key = if let Some(stripped) = secret_key.strip_prefix("0x") { - hex::decode(stripped) - } else { - hex::decode(secret_key) - } - .map_err(SignatureError::DecodingError)?; - let secret_key = FieldBytes::from_exact_iter(secret_key.into_iter()).ok_or_else(|| { - SignatureError::InvalidSecretKey("expected 32 byte secret key".to_string()) - })?; - SecretKey::from_bytes(&secret_key).map_err(SignatureError::EllipticCurveError) -} - -/// Converts a secret key to a 0x-prefixed hex string. -pub fn secret_key_to_str(secret_key: &SecretKey) -> String { - format!("0x{}", hex::encode(secret_key.to_bytes().as_slice())) -} - -/// An error involving a signature. -#[derive(Debug)] -#[cfg_attr(feature = "std", derive(thiserror::Error))] -pub enum SignatureError { - /// Invalid length, ECDSA secp256k1 signatures with recovery are 65 bytes - #[cfg_attr( - feature = "std", - error("invalid signature length, got {0}, expected 65") - )] - InvalidLength(usize), - /// Invalid secret key. - #[cfg_attr(feature = "std", error("Invalid secret key: {0}"))] - InvalidSecretKey(String), - /// When parsing a signature from string to hex - #[cfg_attr(feature = "std", error(transparent))] - DecodingError(#[cfg_attr(feature = "std", from)] hex::FromHexError), - /// Thrown when signature verification failed (i.e. when the address that - /// produced the signature did not match the expected address) - #[cfg_attr( - feature = "std", - error("Signature verification failed. Expected {0}, got {1}") - )] - VerificationError(Address, Address), - /// ECDSA error - #[cfg_attr(feature = "std", error(transparent))] - ECDSAError(#[cfg_attr(feature = "std", from)] k256::ecdsa::signature::Error), - /// Elliptic curve error - #[cfg_attr(feature = "std", error(transparent))] - EllipticCurveError(#[cfg_attr(feature = "std", from)] k256::elliptic_curve::Error), - /// Error in recovering public key from signature - #[cfg_attr(feature = "std", error("Public key recovery error"))] - RecoveryError, -} - -/// Recovery message data. -/// -/// The message data can either be a binary message that is first hashed -/// according to EIP-191 and then recovered based on the signature or a -/// precomputed hash. -#[derive(Clone, Debug, PartialEq, Eq)] -pub enum RecoveryMessage { - /// Message bytes - Data(Vec), - /// Message hash - Hash(B256), -} - -#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -/// An ECDSA signature -pub struct Signature { - /// R value - pub r: U256, - /// S Value - pub s: U256, - /// V value - pub v: u64, -} - -impl fmt::Display for Signature { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - let sig = <[u8; 65]>::from(self); - write!(f, "{}", hex::encode(&sig[..])) - } -} - -impl Signature { - /// Constructs a new signature from a message and secret key. - /// To obtain the hash of a message consider [`hash_message`]. - pub fn new(message: M, secret_key: &SecretKey) -> Result - where - M: Into, - { - let message = message.into(); - let message_hash = match message { - RecoveryMessage::Data(ref message) => hash_message(message), - RecoveryMessage::Hash(hash) => hash, - }; - - let signing_key: SigningKey = secret_key.into(); - let (signature, recovery_id) = PrehashSigner::<(ECDSASignature, RecoveryId)>::sign_prehash( - &signing_key, - &*message_hash, - ) - .map_err(SignatureError::ECDSAError)?; - - let r = U256::try_from_be_slice(Into::::into(signature.r()).as_slice()) - .expect("Must be valid"); - let s = U256::try_from_be_slice(Into::::into(signature.s()).as_slice()) - .expect("Must be valid"); - let v = 27 + u64::from(Into::::into(recovery_id)); - - Ok(Self { r, s, v }) - } - - /// Returns whether the V value has odd Y parity. - pub fn odd_y_parity(&self) -> bool { - self.v == 28 - } - - /// Verifies that signature on `message` was produced by `address` - pub fn verify(&self, message: M, address: A) -> Result<(), SignatureError> - where - M: Into, - A: Into
, - { - let address = address.into(); - let recovered = self.recover(message)?; - if recovered != address { - return Err(SignatureError::VerificationError(address, recovered)); - } - - Ok(()) - } - - /// Recovers the Ethereum address which was used to sign the given message. - pub fn recover(&self, message: M) -> Result - where - M: Into, - { - let message = message.into(); - let message_hash = match message { - RecoveryMessage::Data(ref message) => hash_message(message), - RecoveryMessage::Hash(hash) => hash, - }; - - let (signature, recovery_id) = self.as_signature()?; - - let verifying_key = - VerifyingKey::recover_from_prehash(message_hash.as_slice(), &signature, recovery_id) - .map_err(SignatureError::ECDSAError)?; - - Ok(public_key_to_address(verifying_key.into())) - } - - /// Retrieves the recovery signature. - fn as_signature(&self) -> Result<(ECDSASignature, RecoveryId), SignatureError> { - let recovery_id = self.recovery_id()?; - let signature = { - let r_bytes = self.r.to_be_bytes::<32>(); - let s_bytes = self.s.to_be_bytes::<32>(); - - let mut bytes = [0u8; 64]; - bytes[..32].copy_from_slice(&r_bytes); - bytes[32..64].copy_from_slice(&s_bytes); - ECDSASignature::from_slice(&bytes).map_err(SignatureError::ECDSAError)? - }; - - Ok((signature, recovery_id)) - } - - /// Retrieve the recovery ID. - pub fn recovery_id(&self) -> Result { - let standard_v = normalize_recovery_id(self.v); - RecoveryId::try_from(standard_v).map_err(SignatureError::ECDSAError) - } - - /// Copies and serializes `self` into a new `Vec` with the recovery id - /// included - #[allow(clippy::wrong_self_convention)] - pub fn to_vec(&self) -> Vec { - self.into() - } -} - -// We need a custom implementation to avoid the struct being treated as an RLP -// list. -impl alloy_rlp::Decodable for Signature { - fn decode(buf: &mut &[u8]) -> alloy_rlp::Result { - let decode = Self { - // The order of these fields determines decoding order. - v: u64::decode(buf)?, - r: U256::decode(buf)?, - s: U256::decode(buf)?, - }; - - Ok(decode) - } -} - -// We need a custom implementation to avoid the struct being treated as an RLP -// list. -impl alloy_rlp::Encodable for Signature { - fn encode(&self, out: &mut dyn BufMut) { - // The order of these fields determines decoding order. - self.v.encode(out); - self.r.encode(out); - self.s.encode(out); - } - - fn length(&self) -> usize { - self.r.length() + self.s.length() + self.v.length() - } -} - -fn normalize_recovery_id(v: u64) -> u8 { - match v { - 0 | 27 => 0, - 1 | 28 => 1, - v if v >= 35 => ((v - 1) % 2) as _, - _ => 4, - } -} - -impl<'a> TryFrom<&'a [u8]> for Signature { - type Error = SignatureError; - - /// Parses a raw signature which is expected to be 65 bytes long where - /// the first 32 bytes is the `r` value, the second 32 bytes the `s` value - /// and the final byte is the `v` value in 'Electrum' notation. - fn try_from(bytes: &'a [u8]) -> Result { - if bytes.len() != 65 { - return Err(SignatureError::InvalidLength(bytes.len())); - } - - let (r_bytes, remainder) = bytes.split_at(32); - let r = U256::from_be_bytes::<32>(r_bytes.try_into().unwrap()); - - let (s_bytes, remainder) = remainder.split_at(32); - let s = U256::from_be_bytes::<32>(s_bytes.try_into().unwrap()); - - let v = remainder[0]; - - Ok(Signature { r, s, v: v.into() }) - } -} - -#[cfg(feature = "std")] -impl FromStr for Signature { - type Err = SignatureError; - - fn from_str(s: &str) -> Result { - let s = s.strip_prefix("0x").unwrap_or(s); - let bytes = hex::decode(s).map_err(SignatureError::DecodingError)?; - Signature::try_from(&bytes[..]) - } -} - -impl From<&Signature> for [u8; 65] { - fn from(src: &Signature) -> [u8; 65] { - let mut sig = [0u8; 65]; - let r_bytes = src.r.to_be_bytes::<32>(); - let s_bytes = src.s.to_be_bytes::<32>(); - sig[..32].copy_from_slice(&r_bytes); - sig[32..64].copy_from_slice(&s_bytes); - // TODO: What if we try to serialize a signature where - // the `v` is not normalized? - - // The u64 to u8 cast is safe because `sig.v` can only ever be 27 or 28 - // here. Regarding EIP-155, the modification to `v` happens during tx - // creation only _after_ the transaction is signed using - // `ethers_signers::to_eip155_v`. - sig[64] = src.v as u8; - sig - } -} - -impl From for [u8; 65] { - fn from(src: Signature) -> [u8; 65] { - <[u8; 65]>::from(&src) - } -} - -impl From<&Signature> for Vec { - fn from(src: &Signature) -> Vec { - <[u8; 65]>::from(src).to_vec() - } -} - -impl From for Vec { - fn from(src: Signature) -> Vec { - <[u8; 65]>::from(&src).to_vec() - } -} - -impl From<&Signature> for Bytes { - fn from(src: &Signature) -> Self { - Bytes::from(Vec::::from(src)) - } -} - -impl From<&[u8]> for RecoveryMessage { - fn from(s: &[u8]) -> Self { - s.to_owned().into() - } -} - -impl From> for RecoveryMessage { - fn from(s: Vec) -> Self { - RecoveryMessage::Data(s) - } -} - -impl From<&str> for RecoveryMessage { - fn from(s: &str) -> Self { - s.as_bytes().to_owned().into() - } -} - -impl From for RecoveryMessage { - fn from(s: String) -> Self { - RecoveryMessage::Data(s.into_bytes()) - } -} - -impl From<[u8; 32]> for RecoveryMessage { - fn from(hash: [u8; 32]) -> Self { - B256::from(hash).into() - } -} - -impl From for RecoveryMessage { - fn from(hash: B256) -> Self { - RecoveryMessage::Hash(hash) - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - - #[test] - fn recover_web3_signature() { - // test vector taken from: - // https://web3js.readthedocs.io/en/v1.2.2/web3-eth-accounts.html#sign - let signature = Signature::from_str( - "0xb91467e570a6466aa9e9876cbcd013baba02900b8979d43fe208a4a4f339f5fd6007e74cd82e037b800186422fc2da167c747ef045e5d18a5f5d4300f8e1a0291c" - ).expect("could not parse signature"); - assert_eq!( - signature.recover("Some data").unwrap(), - Address::from_str("0x2c7536E3605D9C16a7a3D7b1898e529396a65c23").unwrap() - ); - } - - #[test] - fn signature_from_str() { - let s1 = Signature::from_str( - "0xaa231fbe0ed2b5418e6ba7c19bee2522852955ec50996c02a2fe3e71d30ddaf1645baf4823fea7cb4fcc7150842493847cfb6a6d63ab93e8ee928ee3f61f503500" - ).expect("could not parse 0x-prefixed signature"); - - let s2 = Signature::from_str( - "aa231fbe0ed2b5418e6ba7c19bee2522852955ec50996c02a2fe3e71d30ddaf1645baf4823fea7cb4fcc7150842493847cfb6a6d63ab93e8ee928ee3f61f503500" - ).expect("could not parse non-prefixed signature"); - - assert_eq!(s1, s2); - } - - #[test] - fn test_secret_key_to_address() { - // `hardhat node`s default addresses are shown on startup. this is the first - // one: Account #0: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 - // (10000 ETH) Secret Key: - // 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 - // we'll use these as fixtures. - - let expected_address = Address::from_str("0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266") - .expect("should parse address from string"); - - let actual_address = secret_key_to_address( - "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80", - ) - .expect("should derive address"); - assert_eq!(actual_address, expected_address); - } - - #[test] - fn test_signature_new() { - fn verify(msg_input: MsgOrHash, hashed_message: B256) - where - MsgOrHash: Into, - { - let secret_key_str = "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"; - let secret_key = secret_key_from_str(secret_key_str).unwrap(); - - let signature = Signature::new(msg_input, &secret_key).unwrap(); - - let recovered_address = signature.recover(hashed_message).unwrap(); - - assert_eq!( - recovered_address, - secret_key_to_address(secret_key_str).unwrap() - ); - } - - let message = "whatever"; - let hashed_message = hash_message(message); - - verify(message, hashed_message); - verify(hashed_message, hashed_message); - } - - #[test] - fn test_from_str_to_str_secret_key() { - let secret_key_str = "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"; - let secret_key = secret_key_from_str(secret_key_str).unwrap(); - let secret_key_str_result = secret_key_to_str(&secret_key); - assert_eq!(secret_key_str, secret_key_str_result); - } -} diff --git a/crates/edr_eth/src/spec.rs b/crates/edr_eth/src/spec.rs deleted file mode 100644 index 1cd358b37c..0000000000 --- a/crates/edr_eth/src/spec.rs +++ /dev/null @@ -1,258 +0,0 @@ -use std::sync::OnceLock; - -use crate::{HashMap, SpecId}; - -/// A struct that stores the hardforks for a chain. -#[derive(Clone, Debug)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct HardforkActivations { - /// (Start block number -> SpecId) mapping - hardforks: Vec<(u64, SpecId)>, -} - -impl HardforkActivations { - /// Constructs a new instance with the provided hardforks. - pub fn new(hardforks: Vec<(u64, SpecId)>) -> Self { - Self { hardforks } - } - - /// Creates a new instance for a new chain with the provided [`SpecId`]. - pub fn with_spec_id(spec_id: SpecId) -> Self { - Self { - hardforks: vec![(0, spec_id)], - } - } - - /// Whether no hardforks activations are present. - pub fn is_empty(&self) -> bool { - self.hardforks.is_empty() - } - - /// Returns the hardfork's `SpecId` corresponding to the provided block - /// number. - pub fn hardfork_at_block_number(&self, block_number: u64) -> Option { - self.hardforks - .iter() - .rev() - .find(|(hardfork_number, _)| block_number >= *hardfork_number) - .map(|entry| entry.1) - } - - /// Retrieves the block number at which the provided hardfork was activated. - pub fn hardfork_activation(&self, spec_id: SpecId) -> Option { - self.hardforks - .iter() - .find(|(_, id)| *id == spec_id) - .map(|(block, _)| *block) - } -} - -impl From<&[(u64, SpecId)]> for HardforkActivations { - fn from(hardforks: &[(u64, SpecId)]) -> Self { - Self { - hardforks: hardforks.to_vec(), - } - } -} - -struct ChainConfig { - /// Chain name - pub name: String, - /// Hardfork activations for the chain - pub hardfork_activations: HardforkActivations, -} - -const MAINNET_HARDFORKS: &[(u64, SpecId)] = &[ - (0, SpecId::FRONTIER), - (200_000, SpecId::FRONTIER_THAWING), - (1_150_000, SpecId::HOMESTEAD), - (1_920_000, SpecId::DAO_FORK), - (2_463_000, SpecId::TANGERINE), - (2_675_000, SpecId::SPURIOUS_DRAGON), - (4_370_000, SpecId::BYZANTIUM), - (7_280_000, SpecId::CONSTANTINOPLE), - (7_280_000, SpecId::PETERSBURG), - (9_069_000, SpecId::ISTANBUL), - (9_200_000, SpecId::MUIR_GLACIER), - (12_244_000, SpecId::BERLIN), - (12_965_000, SpecId::LONDON), - (13_773_000, SpecId::ARROW_GLACIER), - (15_050_000, SpecId::GRAY_GLACIER), - (15_537_394, SpecId::MERGE), - (17_034_870, SpecId::SHANGHAI), - (19_426_589, SpecId::CANCUN), -]; - -fn mainnet_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = MAINNET_HARDFORKS.into(); - - ChainConfig { - name: "mainnet".to_string(), - hardfork_activations, - } - }) -} - -const ROPSTEN_HARDFORKS: &[(u64, SpecId)] = &[ - (1_700_000, SpecId::BYZANTIUM), - (4_230_000, SpecId::CONSTANTINOPLE), - (4_939_394, SpecId::PETERSBURG), - (6_485_846, SpecId::ISTANBUL), - (7_117_117, SpecId::MUIR_GLACIER), - (9_812_189, SpecId::BERLIN), - (10_499_401, SpecId::LONDON), -]; - -fn ropsten_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = ROPSTEN_HARDFORKS.into(); - - ChainConfig { - name: "ropsten".to_string(), - hardfork_activations, - } - }) -} - -const RINKEBY_HARDFORKS: &[(u64, SpecId)] = &[ - (1_035_301, SpecId::BYZANTIUM), - (3_660_663, SpecId::CONSTANTINOPLE), - (4_321_234, SpecId::PETERSBURG), - (5_435_345, SpecId::ISTANBUL), - (8_290_928, SpecId::BERLIN), - (8_897_988, SpecId::LONDON), -]; - -fn rinkeby_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = RINKEBY_HARDFORKS.into(); - - ChainConfig { - name: "rinkeby".to_string(), - hardfork_activations, - } - }) -} - -const GOERLI_HARDFORKS: &[(u64, SpecId)] = &[ - (0, SpecId::PETERSBURG), - (1_561_651, SpecId::ISTANBUL), - (4_460_644, SpecId::BERLIN), - (5_062_605, SpecId::LONDON), - (7_382_818, SpecId::MERGE), - (8_656_123, SpecId::SHANGHAI), - (10_388_176, SpecId::CANCUN), -]; - -fn goerli_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = GOERLI_HARDFORKS.into(); - - ChainConfig { - name: "goerli".to_string(), - hardfork_activations, - } - }) -} - -const KOVAN_HARDFORKS: &[(u64, SpecId)] = &[ - (5_067_000, SpecId::BYZANTIUM), - (9_200_000, SpecId::CONSTANTINOPLE), - (10_255_201, SpecId::PETERSBURG), - (14_111_141, SpecId::ISTANBUL), - (24_770_900, SpecId::BERLIN), - (26_741_100, SpecId::LONDON), -]; - -fn kovan_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = KOVAN_HARDFORKS.into(); - - ChainConfig { - name: "kovan".to_string(), - hardfork_activations, - } - }) -} - -const HOLESKY_HARDFORKS: &[(u64, SpecId)] = &[ - (0, SpecId::MERGE), - (6_698, SpecId::SHANGHAI), - (894_733, SpecId::CANCUN), -]; - -fn holesky_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = HOLESKY_HARDFORKS.into(); - - ChainConfig { - name: "holesky".to_string(), - hardfork_activations, - } - }) -} - -const SEPOLIA_HARDFORKS: &[(u64, SpecId)] = &[ - (0, SpecId::LONDON), - (1_450_409, SpecId::MERGE), - (2_990_908, SpecId::SHANGHAI), - (5_187_023, SpecId::CANCUN), -]; - -fn sepolia_config() -> &'static ChainConfig { - static CONFIG: OnceLock = OnceLock::new(); - - CONFIG.get_or_init(|| { - let hardfork_activations = SEPOLIA_HARDFORKS.into(); - - ChainConfig { - name: "sepolia".to_string(), - hardfork_activations, - } - }) -} - -fn chain_configs() -> &'static HashMap { - static CONFIGS: OnceLock> = OnceLock::new(); - - CONFIGS.get_or_init(|| { - let mut hardforks = HashMap::new(); - hardforks.insert(1, mainnet_config()); - hardforks.insert(3, ropsten_config()); - hardforks.insert(4, rinkeby_config()); - hardforks.insert(5, goerli_config()); - hardforks.insert(42, kovan_config()); - hardforks.insert(17_000, holesky_config()); - hardforks.insert(11_155_111, sepolia_config()); - - hardforks - }) -} - -/// Returns the name corresponding to the provided chain ID, if it is supported. -pub fn chain_name(chain_id: u64) -> Option<&'static str> { - chain_configs() - .get(&chain_id) - .map(|config| config.name.as_str()) -} - -/// Returns the hardfork activations corresponding to the provided chain ID, if -/// it is supported. -pub fn chain_hardfork_activations(chain_id: u64) -> Option<&'static HardforkActivations> { - chain_configs() - .get(&chain_id) - .map(|config| &config.hardfork_activations) -} diff --git a/crates/edr_eth/src/state.rs b/crates/edr_eth/src/state.rs deleted file mode 100644 index 6ed5b2ce1f..0000000000 --- a/crates/edr_eth/src/state.rs +++ /dev/null @@ -1,66 +0,0 @@ -use crate::{account::BasicAccount, trie::sec_trie_root, Address, HashMap, B256, U256}; - -/// State mapping of addresses to accounts. -pub type State = HashMap; - -/// Account storage mapping of indices to values. -pub type Storage = HashMap; - -/// Calculates the state root hash of the provided state. -pub fn state_root<'a, I>(state: I) -> B256 -where - I: IntoIterator, -{ - sec_trie_root(state.into_iter().map(|(address, account)| { - let account = alloy_rlp::encode(account); - (address, account) - })) -} - -/// Calculates the storage root hash of the provided storage. -pub fn storage_root<'a, I>(storage: I) -> B256 -where - I: IntoIterator, -{ - sec_trie_root(storage.into_iter().map(|(index, value)| { - let value = alloy_rlp::encode(value); - (index.to_be_bytes::<32>(), value) - })) -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::trie::KECCAK_NULL_RLP; - - #[test] - fn empty_state_root() { - let state = State::default(); - - assert_eq!(state_root(&state), KECCAK_NULL_RLP); - } - - #[test] - fn empty_storage_root() { - let storage = Storage::default(); - - assert_eq!(storage_root(&storage), KECCAK_NULL_RLP); - } - - #[test] - fn precompiles_state_root() { - const EXPECTED: &str = "0x5766c887a7240e4d1c035ccd3830a2f6a0c03d213a9f0b9b27c774916a4abcce"; - - let mut state = State::default(); - - for idx in 1..=8u8 { - let mut address = Address::ZERO; - address.0[19] = idx; - state.insert(address, BasicAccount::default()); - } - - assert_eq!(state_root(&state), B256::from_str(EXPECTED).unwrap()); - } -} diff --git a/crates/edr_eth/src/transaction.rs b/crates/edr_eth/src/transaction.rs deleted file mode 100644 index 2162f59630..0000000000 --- a/crates/edr_eth/src/transaction.rs +++ /dev/null @@ -1,59 +0,0 @@ -// Part of this code was inspired by foundry. For the original context see: -// https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/transaction/mod.rs -#![allow(missing_docs)] - -//! transaction related data - -mod fake_signature; -mod kind; -mod request; -mod signed; - -use revm_primitives::B256; - -pub use self::{kind::TransactionKind, request::*, signed::*}; -use crate::{access_list::AccessListItem, Address, Bytes, U256}; - -/// Represents _all_ transaction requests received from RPC -#[derive(Clone, Debug, PartialEq, Eq, Default)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct EthTransactionRequest { - /// from address - pub from: Address, - /// to address - #[cfg_attr(feature = "serde", serde(default))] - pub to: Option
, - /// legacy, gas Price - #[cfg_attr(feature = "serde", serde(default))] - pub gas_price: Option, - /// max base fee per gas sender is willing to pay - #[cfg_attr(feature = "serde", serde(default))] - pub max_fee_per_gas: Option, - /// miner tip - #[cfg_attr(feature = "serde", serde(default))] - pub max_priority_fee_per_gas: Option, - /// gas - #[cfg_attr(feature = "serde", serde(default, with = "crate::serde::optional_u64"))] - pub gas: Option, - /// value of th tx in wei - pub value: Option, - /// Any additional data sent - pub data: Option, - /// Transaction nonce - #[cfg_attr(feature = "serde", serde(default, with = "crate::serde::optional_u64"))] - pub nonce: Option, - /// Chain ID - #[cfg_attr(feature = "serde", serde(default, with = "crate::serde::optional_u64"))] - pub chain_id: Option, - /// warm storage access pre-payment - #[cfg_attr(feature = "serde", serde(default))] - pub access_list: Option>, - /// EIP-2718 type - #[cfg_attr(feature = "serde", serde(default, rename = "type"))] - pub transaction_type: Option, - /// Blobs (EIP-4844) - pub blobs: Option>, - /// Blob versioned hashes (EIP-4844) - pub blob_hashes: Option>, -} diff --git a/crates/edr_eth/src/transaction/fake_signature.rs b/crates/edr_eth/src/transaction/fake_signature.rs deleted file mode 100644 index 2748d1c58f..0000000000 --- a/crates/edr_eth/src/transaction/fake_signature.rs +++ /dev/null @@ -1,89 +0,0 @@ -use crate::{signature::Signature, Address, U256}; - -// Must match the Hardhat implementation to make sure that transaction hashes -// and by extension block hashes match for identical input. -// Hardhat legacy and EIP-155 sender transactions use `v` value 0 while EIP-1559 -// and EIP-2930 transactions use `v` value 1. -pub(super) fn make_fake_signature(sender: &Address) -> Signature { - // The only requirements on a fake signature are that when it is encoded as part - // of a transaction, it produces the same hash for the same transaction from - // a sender, and it produces different hashes for different senders. We - // achieve this by setting the `r` and `s` values to the sender's address. - // This is the simplest implementation and it helps us recognize - // fake signatures in debug logs. - - // We interpret the hash as a big endian U256 value. - let r = U256::try_from_be_slice(sender.as_slice()) - .expect("address is 20 bytes which fits into U256"); - let s = U256::try_from_be_slice(sender.as_slice()) - .expect("address is 20 bytes which fits into U256"); - - // Recovery id for fake signatures is unsupported, so we always set it to the - // one that Hardhat is using. We add the +27 magic number that originates - // from Bitcoin as the `Signature::new` function adds it as well. - let v = V as u64 + 27; - - Signature { r, s, v } -} - -pub(super) fn recover_fake_signature(signature: &Signature) -> Address { - let address: [u8; 32] = signature.r.to_be_bytes(); - Address::from_slice(&address.as_slice()[12..]) -} - -#[cfg(test)] -pub(super) mod tests { - macro_rules! test_fake_sign_properties { - () => { - #[test] - fn hash_with_fake_signature_same_sender() { - let transaction_request = dummy_request(); - - let sender = Address::from(revm_primitives::ruint::aliases::U160::from(1)); - - let signed_transaction_one = transaction_request.clone().fake_sign(&sender); - let signed_transaction_two = transaction_request.fake_sign(&sender); - - let hash_one = signed_transaction_one.hash(); - let hash_two = signed_transaction_two.hash(); - - assert_eq!(hash_one, hash_two); - } - - #[test] - fn hash_with_fake_signature_different_senders() { - let transaction_request = dummy_request(); - - let sender_one = Address::from(revm_primitives::ruint::aliases::U160::from(1)); - let sender_two = Address::from(revm_primitives::ruint::aliases::U160::from(2)); - - let signed_transaction_one = transaction_request.clone().fake_sign(&sender_one); - let signed_transaction_two = transaction_request.fake_sign(&sender_two); - - let hash_one = signed_transaction_one.hash(); - let hash_two = signed_transaction_two.hash(); - - assert_ne!(hash_one, hash_two); - } - - #[test] - fn recovers_fake_sender() { - let transaction_request = dummy_request(); - - // Fails to recover with signature error if tried to ecrocver a fake signature - let sender: Address = "0x67091a7dd65bf4f1e95af0a479fbc782b61c129a" - .parse() - .expect("valid address"); - - let signed_transaction = transaction_request.fake_sign(&sender); - - let recovered = signed_transaction.recover().expect("valid signature"); - - assert_eq!(recovered, sender); - } - }; - } - - // Needs to be `pub(crate`), otherwise export doesn't work. - pub(crate) use test_fake_sign_properties; -} diff --git a/crates/edr_eth/src/transaction/kind.rs b/crates/edr_eth/src/transaction/kind.rs deleted file mode 100644 index 2cab0eff41..0000000000 --- a/crates/edr_eth/src/transaction/kind.rs +++ /dev/null @@ -1,58 +0,0 @@ -use alloy_rlp::{Buf, BufMut}; - -use crate::Address; - -#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub enum TransactionKind { - Call(Address), - Create, -} - -impl TransactionKind { - /// If this transaction is a call this returns the address of the callee - pub fn as_call(&self) -> Option<&Address> { - match self { - TransactionKind::Call(to) => Some(to), - TransactionKind::Create => None, - } - } -} - -impl From> for TransactionKind { - fn from(value: Option
) -> Self { - if let Some(address) = value { - TransactionKind::Call(address) - } else { - TransactionKind::Create - } - } -} - -impl alloy_rlp::Decodable for TransactionKind { - fn decode(buf: &mut &[u8]) -> alloy_rlp::Result { - if !buf.is_empty() && buf[0] == alloy_rlp::EMPTY_STRING_CODE { - buf.advance(1); - - Ok(Self::Create) - } else { - Address::decode(buf).map(Self::Call) - } - } -} - -impl alloy_rlp::Encodable for TransactionKind { - fn length(&self) -> usize { - match self { - TransactionKind::Call(address) => address.length(), - TransactionKind::Create => 1, - } - } - - fn encode(&self, out: &mut dyn BufMut) { - match self { - TransactionKind::Call(address) => address.encode(out), - TransactionKind::Create => out.put_u8(alloy_rlp::EMPTY_STRING_CODE), - } - } -} diff --git a/crates/edr_eth/src/transaction/request.rs b/crates/edr_eth/src/transaction/request.rs deleted file mode 100644 index 156fa9f73d..0000000000 --- a/crates/edr_eth/src/transaction/request.rs +++ /dev/null @@ -1,120 +0,0 @@ -mod eip155; -mod eip1559; -mod eip2930; -mod eip4844; -mod legacy; - -use k256::SecretKey; - -pub use self::{ - eip155::Eip155TransactionRequest, eip1559::Eip1559TransactionRequest, - eip2930::Eip2930TransactionRequest, eip4844::Eip4844TransactionRequest, - legacy::LegacyTransactionRequest, -}; -use crate::{signature::SignatureError, transaction::SignedTransaction, Address, U256}; - -/// Container type for various Ethereum transaction requests -/// -/// Its variants correspond to specific allowed transactions: -/// 1. Legacy (pre-EIP2718) [`LegacyTransactionRequest`] -/// 2. EIP2930 (state access lists) [`Eip2930TransactionRequest`] -/// 3. EIP1559 [`Eip1559TransactionRequest`] -#[derive(Debug, Clone, Eq, PartialEq)] -pub enum TransactionRequest { - /// A legacy transaction request - Legacy(LegacyTransactionRequest), - /// An EIP-155 transaction request - Eip155(Eip155TransactionRequest), - /// An EIP-2930 transaction request - Eip2930(Eip2930TransactionRequest), - /// An EIP-1559 transaction request - Eip1559(Eip1559TransactionRequest), - /// An EIP-4844 transaction request - Eip4844(Eip4844TransactionRequest), -} - -impl TransactionRequest { - /// Retrieves the instance's chain ID. - pub fn chain_id(&self) -> Option { - match self { - TransactionRequest::Legacy(_) => None, - TransactionRequest::Eip155(transaction) => Some(transaction.chain_id), - TransactionRequest::Eip2930(transaction) => Some(transaction.chain_id), - TransactionRequest::Eip1559(transaction) => Some(transaction.chain_id), - TransactionRequest::Eip4844(transaction) => Some(transaction.chain_id), - } - } - - /// Retrieves the instance's gas price. - pub fn gas_price(&self) -> &U256 { - match self { - TransactionRequest::Legacy(transaction) => &transaction.gas_price, - TransactionRequest::Eip155(transaction) => &transaction.gas_price, - TransactionRequest::Eip2930(transaction) => &transaction.gas_price, - TransactionRequest::Eip1559(transaction) => &transaction.max_fee_per_gas, - TransactionRequest::Eip4844(transaction) => &transaction.max_fee_per_gas, - } - } - - /// Retrieves the instance's max fee per gas, if it exists. - pub fn max_fee_per_gas(&self) -> Option<&U256> { - match self { - TransactionRequest::Legacy(_) - | TransactionRequest::Eip155(_) - | TransactionRequest::Eip2930(_) => None, - TransactionRequest::Eip1559(transaction) => Some(&transaction.max_fee_per_gas), - TransactionRequest::Eip4844(transaction) => Some(&transaction.max_fee_per_gas), - } - } - - /// Retrieves the instance's max priority fee per gas, if it exists. - pub fn max_priority_fee_per_gas(&self) -> Option<&U256> { - match self { - TransactionRequest::Legacy(_) - | TransactionRequest::Eip155(_) - | TransactionRequest::Eip2930(_) => None, - TransactionRequest::Eip1559(transaction) => Some(&transaction.max_priority_fee_per_gas), - TransactionRequest::Eip4844(transaction) => Some(&transaction.max_priority_fee_per_gas), - } - } - - /// Retrieves the instance's nonce. - pub fn nonce(&self) -> u64 { - match self { - TransactionRequest::Legacy(transaction) => transaction.nonce, - TransactionRequest::Eip155(transaction) => transaction.nonce, - TransactionRequest::Eip2930(transaction) => transaction.nonce, - TransactionRequest::Eip1559(transaction) => transaction.nonce, - TransactionRequest::Eip4844(transaction) => transaction.nonce, - } - } - - pub fn sign(self, secret_key: &SecretKey) -> Result { - Ok(match self { - TransactionRequest::Legacy(transaction) => transaction.sign(secret_key)?.into(), - TransactionRequest::Eip155(transaction) => transaction.sign(secret_key)?.into(), - TransactionRequest::Eip2930(transaction) => transaction.sign(secret_key)?.into(), - TransactionRequest::Eip1559(transaction) => transaction.sign(secret_key)?.into(), - TransactionRequest::Eip4844(transaction) => transaction.sign(secret_key)?.into(), - }) - } - - pub fn fake_sign(self, sender: &Address) -> SignedTransaction { - match self { - TransactionRequest::Legacy(transaction) => transaction.fake_sign(sender).into(), - TransactionRequest::Eip155(transaction) => transaction.fake_sign(sender).into(), - TransactionRequest::Eip2930(transaction) => transaction.fake_sign(sender).into(), - TransactionRequest::Eip1559(transaction) => transaction.fake_sign(sender).into(), - TransactionRequest::Eip4844(transaction) => transaction.fake_sign(sender).into(), - } - } -} - -/// A transaction request and the sender's address. -#[derive(Clone, Debug)] -pub struct TransactionRequestAndSender { - /// The transaction request. - pub request: TransactionRequest, - /// The sender's address. - pub sender: Address, -} diff --git a/crates/edr_eth/src/transaction/request/eip155.rs b/crates/edr_eth/src/transaction/request/eip155.rs deleted file mode 100644 index 1f0ebc30ef..0000000000 --- a/crates/edr_eth/src/transaction/request/eip155.rs +++ /dev/null @@ -1,201 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{BufMut, Encodable}; -use k256::SecretKey; -use revm_primitives::keccak256; - -use crate::{ - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::make_fake_signature, kind::TransactionKind, signed::Eip155SignedTransaction, - }, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, PartialEq, Eq)] -pub struct Eip155TransactionRequest { - // The order of these fields determines encoding order. - pub nonce: u64, - pub gas_price: U256, - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub chain_id: u64, -} - -impl Eip155TransactionRequest { - /// Computes the hash of the transaction. - pub fn hash(&self) -> B256 { - keccak256(alloy_rlp::encode(self)) - } - - /// Signs the transaction with the provided secret key. - pub fn sign(self, secret_key: &SecretKey) -> Result { - let hash = self.hash(); - - let mut signature = Signature::new(hash, secret_key)?; - signature.v += self.v_value_adjustment(); - - Ok(Eip155SignedTransaction { - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - signature, - hash: OnceLock::new(), - is_fake: false, - }) - } - - /// Creates a fake signature for an impersonated account. - pub fn fake_sign(self, address: &Address) -> Eip155SignedTransaction { - let mut signature = make_fake_signature::<0>(address); - signature.v += self.v_value_adjustment(); - - Eip155SignedTransaction { - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - signature, - hash: OnceLock::new(), - is_fake: true, - } - } - - fn rlp_payload_length(&self) -> usize { - self.nonce.length() - + self.gas_price.length() - + self.gas_limit.length() - + self.kind.length() - + self.value.length() - + self.input.length() - + self.chain_id.length() - + 2 - } - - fn v_value_adjustment(&self) -> u64 { - // `CHAIN_ID * 2 + 35` comes from EIP-155 and we subtract the Bitcoin magic - // number 27, because `Signature::new` adds that. - self.chain_id * 2 + 35 - 27 - } -} - -impl From<&Eip155SignedTransaction> for Eip155TransactionRequest { - fn from(tx: &Eip155SignedTransaction) -> Self { - let chain_id = tx.chain_id(); - Self { - nonce: tx.nonce, - gas_price: tx.gas_price, - gas_limit: tx.gas_limit, - kind: tx.kind, - value: tx.value, - input: tx.input.clone(), - chain_id, - } - } -} - -impl Encodable for Eip155TransactionRequest { - fn length(&self) -> usize { - let payload_length = self.rlp_payload_length(); - payload_length + alloy_rlp::length_of_length(payload_length) - } - - fn encode(&self, out: &mut dyn BufMut) { - alloy_rlp::Header { - list: true, - payload_length: self.rlp_payload_length(), - } - .encode(out); - - self.nonce.encode(out); - self.gas_price.encode(out); - self.gas_limit.encode(out); - self.kind.encode(out); - self.value.encode(out); - self.input.encode(out); - self.chain_id.encode(out); - // Appending these two values requires a custom implementation of - // `Encodable` - 0u8.encode(out); - 0u8.encode(out); - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::transaction::fake_signature::tests::test_fake_sign_properties; - - fn dummy_request() -> Eip155TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip155TransactionRequest { - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - chain_id: 1, - } - } - - #[test] - fn test_eip155_transaction_request_encoding() { - // Generated by Hardhat - let expected = - hex::decode("df01020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234018080") - .unwrap(); - - let request = dummy_request(); - - let encoded = alloy_rlp::encode(&request); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip155_transaction_request_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("df5aea488af414bd517742f599bcba94ba801a581cf71d86a85777cecdbe6743") - .unwrap(), - ); - - let request = dummy_request(); - assert_eq!(expected, request.hash()); - } - - test_fake_sign_properties!(); - - #[test] - fn test_fake_sign_test_vector() -> anyhow::Result<()> { - let transaction = Eip155TransactionRequest { - nonce: 0, - gas_price: U256::from(678_912), - gas_limit: 30_000, - kind: TransactionKind::Call("0xb5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?), - value: U256::from(1), - input: Bytes::default(), - chain_id: 123, - }; - - let fake_sender: Address = "0xa5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?; - - let signed = transaction.fake_sign(&fake_sender); - - let expected_hash: B256 = - "bcdd3230665912079522dfbfe605e70443c81bf78db768a688a8d8007accf14b".parse()?; - assert_eq!(signed.hash(), &expected_hash); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/transaction/request/eip1559.rs b/crates/edr_eth/src/transaction/request/eip1559.rs deleted file mode 100644 index 2d6f1f5457..0000000000 --- a/crates/edr_eth/src/transaction/request/eip1559.rs +++ /dev/null @@ -1,202 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use k256::SecretKey; -use revm_primitives::keccak256; - -use crate::{ - access_list::AccessListItem, - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::make_fake_signature, kind::TransactionKind, - signed::Eip1559SignedTransaction, - }, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, PartialEq, Eq, RlpDecodable, RlpEncodable)] -pub struct Eip1559TransactionRequest { - // The order of these fields determines encoding order. - pub chain_id: u64, - pub nonce: u64, - pub max_priority_fee_per_gas: U256, - pub max_fee_per_gas: U256, - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub access_list: Vec, -} - -impl Eip1559TransactionRequest { - /// Computes the hash of the transaction. - pub fn hash(&self) -> B256 { - let encoded = alloy_rlp::encode(self); - - keccak256(envelop_bytes(2, &encoded)) - } - - pub fn sign(self, secret_key: &SecretKey) -> Result { - let hash = self.hash(); - - let signature = Signature::new(hash, secret_key)?; - - Ok(Eip1559SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - max_priority_fee_per_gas: self.max_priority_fee_per_gas, - max_fee_per_gas: self.max_fee_per_gas, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: false, - }) - } - - pub fn fake_sign(self, sender: &Address) -> Eip1559SignedTransaction { - let signature = make_fake_signature::<1>(sender); - - Eip1559SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - max_priority_fee_per_gas: self.max_priority_fee_per_gas, - max_fee_per_gas: self.max_fee_per_gas, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: true, - } - } -} - -impl From<&Eip1559SignedTransaction> for Eip1559TransactionRequest { - fn from(t: &Eip1559SignedTransaction) -> Self { - Self { - chain_id: t.chain_id, - nonce: t.nonce, - max_priority_fee_per_gas: t.max_priority_fee_per_gas, - max_fee_per_gas: t.max_fee_per_gas, - gas_limit: t.gas_limit, - kind: t.kind, - value: t.value, - input: t.input.clone(), - access_list: t.access_list.0.clone(), - } - } -} - -#[cfg(test)] -pub(crate) mod tests { - use std::str::FromStr; - - use super::*; - use crate::transaction::fake_signature::tests::test_fake_sign_properties; - - fn dummy_request() -> Eip1559TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip1559TransactionRequest { - chain_id: 1, - nonce: 1, - max_priority_fee_per_gas: U256::from(2), - max_fee_per_gas: U256::from(5), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - access_list: vec![AccessListItem { - address: Address::ZERO, - storage_keys: vec![B256::ZERO, B256::from(U256::from(1))], - }], - } - } - - #[test] - fn test_eip1559_transaction_request_encoding() { - // Generated by Hardhat - // QUESTION: What is considered a valid RLP-encoding? With the prepending type? - // or without? - let expected = - hex::decode("f87b010102050394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234f85bf859940000000000000000000000000000000000000000f842a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001") - .unwrap(); - - let request = dummy_request(); - - let encoded = alloy_rlp::encode(&request); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip1559_transaction_request_encoding_empty() { - // Generated by Hardhat - let expected = hex::decode("c90180808080808080c0").unwrap(); - - let empty = Eip1559TransactionRequest { - chain_id: 1, - nonce: 0, - max_priority_fee_per_gas: U256::ZERO, - max_fee_per_gas: U256::ZERO, - gas_limit: 0, - kind: TransactionKind::Create, - value: U256::ZERO, - input: Bytes::new(), - access_list: vec![], - }; - - let encoded = alloy_rlp::encode(&empty); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip1559_transaction_request_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("1d21c520c93f0f8e07c2466361b22a8bb9906cdbf4670e53a701c075bbe69ecf") - .unwrap(), - ); - - let request = dummy_request(); - assert_eq!(expected, request.hash()); - } - - test_fake_sign_properties!(); - - #[test] - fn test_fake_sign_test_vector() -> anyhow::Result<()> { - let transaction = Eip1559TransactionRequest { - chain_id: 123, - nonce: 0, - max_priority_fee_per_gas: U256::from(2), - max_fee_per_gas: U256::from(12), - gas_limit: 30_000, - kind: TransactionKind::Call("0xb5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?), - value: U256::from(1), - input: Bytes::default(), - access_list: vec![], - }; - - let fake_sender: Address = "0xa5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?; - - let signed = transaction.fake_sign(&fake_sender); - - // Generated by Hardhat - let expected_hash: B256 = - "ee788ad79d536e2e5146e26b3be0bd12ee4de921c22b3295de3ee16395a015e0".parse()?; - assert_eq!(signed.hash(), &expected_hash); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/transaction/request/eip2930.rs b/crates/edr_eth/src/transaction/request/eip2930.rs deleted file mode 100644 index 8c207c4f34..0000000000 --- a/crates/edr_eth/src/transaction/request/eip2930.rs +++ /dev/null @@ -1,182 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::RlpEncodable; -use k256::SecretKey; -use revm_primitives::keccak256; - -use crate::{ - access_list::AccessListItem, - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::make_fake_signature, kind::TransactionKind, - signed::Eip2930SignedTransaction, - }, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, PartialEq, Eq, RlpEncodable)] -pub struct Eip2930TransactionRequest { - // The order of these fields determines encoding order. - pub chain_id: u64, - pub nonce: u64, - pub gas_price: U256, - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub access_list: Vec, -} - -impl Eip2930TransactionRequest { - /// Computes the hash of the transaction. - pub fn hash(&self) -> B256 { - let encoded = alloy_rlp::encode(self); - - keccak256(envelop_bytes(1, &encoded)) - } - - /// Signs the transaction with the provided secret key. - pub fn sign(self, secret_key: &SecretKey) -> Result { - let hash = self.hash(); - - let signature = Signature::new(hash, secret_key)?; - - Ok(Eip2930SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: false, - }) - } - - /// Creates a fake signature for an impersonated account. - pub fn fake_sign(self, address: &Address) -> Eip2930SignedTransaction { - let signature = make_fake_signature::<1>(address); - - Eip2930SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: true, - } - } -} - -impl From<&Eip2930SignedTransaction> for Eip2930TransactionRequest { - fn from(tx: &Eip2930SignedTransaction) -> Self { - Self { - chain_id: tx.chain_id, - nonce: tx.nonce, - gas_price: tx.gas_price, - gas_limit: tx.gas_limit, - kind: tx.kind, - value: tx.value, - input: tx.input.clone(), - access_list: tx.access_list.0.clone(), - } - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::transaction::fake_signature::tests::test_fake_sign_properties; - - fn dummy_request() -> Eip2930TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip2930TransactionRequest { - chain_id: 1, - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - access_list: vec![AccessListItem { - address: Address::ZERO, - storage_keys: vec![B256::ZERO, B256::from(U256::from(1))], - }], - } - } - - #[test] - fn test_eip2930_transaction_request_encoding() { - // Generated by Hardhat - // QUESTION: What is considered a valid RLP-encoding? With the prepending type? - // or without? - let expected = - hex::decode("f87a0101020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234f85bf859940000000000000000000000000000000000000000f842a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001") - .unwrap(); - - let request = dummy_request(); - - let encoded = alloy_rlp::encode(&request); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip2930_transaction_request_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("bc070f66a83bf3513c9db59e7ccaf68870b148cc40b3da9bf20a53918489cfc7") - .unwrap(), - ); - - let request = dummy_request(); - assert_eq!(expected, request.hash()); - } - - test_fake_sign_properties!(); - - #[test] - fn test_fake_sign_test_vector() -> anyhow::Result<()> { - let transaction = Eip2930TransactionRequest { - chain_id: 123, - nonce: 0, - gas_price: U256::from(1), - gas_limit: 30_000, - kind: TransactionKind::Call("0xb5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?), - value: U256::from(1), - input: Bytes::default(), - access_list: vec![AccessListItem { - address: "0x57d7ad4d3f0c74e3766874cf06fa1dc23c21f7e8".parse()?, - storage_keys: vec![ - "0xa50e92910457911e0e22d6dd1672f440a37b590b231d8309101255290f5394ec".parse()?, - ], - }], - }; - - let fake_sender: Address = "0xa5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?; - - let signed = transaction.fake_sign(&fake_sender); - - // Generated by Hardhat - let expected_hash: B256 = - "b492d4d9e60ed496eeb16e90879048bb5c70db71fee359efe6b9985f54381dae".parse()?; - assert_eq!(signed.hash(), &expected_hash); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/transaction/request/eip4844.rs b/crates/edr_eth/src/transaction/request/eip4844.rs deleted file mode 100644 index 123d91c974..0000000000 --- a/crates/edr_eth/src/transaction/request/eip4844.rs +++ /dev/null @@ -1,137 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::RlpEncodable; -use k256::SecretKey; -use revm_primitives::keccak256; - -use crate::{ - access_list::AccessListItem, - signature::{Signature, SignatureError}, - transaction::{fake_signature::make_fake_signature, Eip4844SignedTransaction}, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, PartialEq, Eq, RlpEncodable)] -pub struct Eip4844TransactionRequest { - // The order of these fields determines encoding order. - pub chain_id: u64, - pub nonce: u64, - pub max_priority_fee_per_gas: U256, - pub max_fee_per_gas: U256, - pub gas_limit: u64, - pub to: Address, - pub value: U256, - pub input: Bytes, - pub access_list: Vec, - pub max_fee_per_blob_gas: U256, - pub blob_hashes: Vec, -} - -impl Eip4844TransactionRequest { - /// Computes the hash of the transaction. - pub fn hash(&self) -> B256 { - let encoded = alloy_rlp::encode(self); - - keccak256(envelop_bytes(2, &encoded)) - } - - pub fn sign(self, private_key: &SecretKey) -> Result { - let hash = self.hash(); - - let signature = Signature::new(hash, private_key)?; - - Ok(Eip4844SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - max_priority_fee_per_gas: self.max_priority_fee_per_gas, - max_fee_per_gas: self.max_fee_per_gas, - max_fee_per_blob_gas: self.max_fee_per_blob_gas, - gas_limit: self.gas_limit, - to: self.to, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - blob_hashes: self.blob_hashes, - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: false, - }) - } - - pub fn fake_sign(self, address: &Address) -> Eip4844SignedTransaction { - let signature = make_fake_signature::<1>(address); - - Eip4844SignedTransaction { - chain_id: self.chain_id, - nonce: self.nonce, - max_priority_fee_per_gas: self.max_priority_fee_per_gas, - max_fee_per_gas: self.max_fee_per_gas, - max_fee_per_blob_gas: self.max_fee_per_blob_gas, - gas_limit: self.gas_limit, - to: self.to, - value: self.value, - input: self.input, - access_list: self.access_list.into(), - blob_hashes: self.blob_hashes, - odd_y_parity: signature.odd_y_parity(), - r: signature.r, - s: signature.s, - hash: OnceLock::new(), - is_fake: true, - } - } -} - -impl From<&Eip4844SignedTransaction> for Eip4844TransactionRequest { - fn from(t: &Eip4844SignedTransaction) -> Self { - Self { - chain_id: t.chain_id, - nonce: t.nonce, - max_priority_fee_per_gas: t.max_priority_fee_per_gas, - max_fee_per_gas: t.max_fee_per_gas, - max_fee_per_blob_gas: t.max_fee_per_blob_gas, - gas_limit: t.gas_limit, - to: t.to, - value: t.value, - input: t.input.clone(), - access_list: t.access_list.0.clone(), - blob_hashes: t.blob_hashes.clone(), - } - } -} - -#[cfg(test)] -pub(crate) mod tests { - use std::str::FromStr; - - use super::*; - use crate::transaction::fake_signature::tests::test_fake_sign_properties; - - fn dummy_request() -> Eip4844TransactionRequest { - // From https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/tx/test/eip4844.spec.ts#L68 - Eip4844TransactionRequest { - chain_id: 0x28757b3, - nonce: 0, - max_priority_fee_per_gas: U256::from(0x12a05f200u64), - max_fee_per_gas: U256::from(0x12a05f200u64), - max_fee_per_blob_gas: U256::from(0xb2d05e00u64), - gas_limit: 0x33450, - to: Address::from_str("0xffb38a7a99e3e2335be83fc74b7faa19d5531243").unwrap(), - value: U256::from(0xbc614eu64), - input: Bytes::default(), - access_list: Vec::new(), - blob_hashes: vec![B256::from_str( - "0x01b0a4cdd5f55589f5c5b4d46c76704bb6ce95c0a8c09f77f197a57808dded28", - ) - .unwrap()], - } - } - - test_fake_sign_properties!(); - - // Hardhat doesn't support EIP-4844 yet, hence no fake signature test - // vector. -} diff --git a/crates/edr_eth/src/transaction/request/legacy.rs b/crates/edr_eth/src/transaction/request/legacy.rs deleted file mode 100644 index 364f96a1b7..0000000000 --- a/crates/edr_eth/src/transaction/request/legacy.rs +++ /dev/null @@ -1,150 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::RlpEncodable; -use k256::SecretKey; -use revm_primitives::keccak256; - -use crate::{ - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::make_fake_signature, kind::TransactionKind, signed::LegacySignedTransaction, - }, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, PartialEq, Eq, RlpEncodable)] -pub struct LegacyTransactionRequest { - // The order of these fields determines encoding order. - pub nonce: u64, - pub gas_price: U256, - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, -} - -impl LegacyTransactionRequest { - /// Computes the hash of the transaction. - pub fn hash(&self) -> B256 { - keccak256(alloy_rlp::encode(self)) - } - - /// Signs the transaction with the provided secret key. - pub fn sign(self, secret_key: &SecretKey) -> Result { - let hash = self.hash(); - - let signature = Signature::new(hash, secret_key)?; - - Ok(LegacySignedTransaction { - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - signature, - hash: OnceLock::new(), - is_fake: false, - }) - } - - /// Creates a fake signature for an impersonated account. - pub fn fake_sign(self, sender: &Address) -> LegacySignedTransaction { - let signature = make_fake_signature::<0>(sender); - - LegacySignedTransaction { - nonce: self.nonce, - gas_price: self.gas_price, - gas_limit: self.gas_limit, - kind: self.kind, - value: self.value, - input: self.input, - signature, - hash: OnceLock::new(), - is_fake: true, - } - } -} - -impl From<&LegacySignedTransaction> for LegacyTransactionRequest { - fn from(tx: &LegacySignedTransaction) -> Self { - Self { - nonce: tx.nonce, - gas_price: tx.gas_price, - gas_limit: tx.gas_limit, - kind: tx.kind, - value: tx.value, - input: tx.input.clone(), - } - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - use crate::transaction::fake_signature::tests::test_fake_sign_properties; - - fn dummy_request() -> LegacyTransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - LegacyTransactionRequest { - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - } - } - - #[test] - fn test_legacy_transaction_request_encoding() { - // Generated by Hardhat - let expected = - hex::decode("dc01020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234").unwrap(); - - let request = dummy_request(); - - let encoded = alloy_rlp::encode(&request); - assert_eq!(expected, encoded); - } - - #[test] - fn test_legacy_transaction_request_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("41a46eddeeb251dc89bfe9d59ad27413909630a4c973dbdbbf23ab4aeed02818") - .unwrap(), - ); - - let request = dummy_request(); - assert_eq!(expected, request.hash()); - } - - test_fake_sign_properties!(); - - #[test] - fn test_fake_sign_test_vector() -> anyhow::Result<()> { - let transaction = LegacyTransactionRequest { - nonce: 0, - gas_price: U256::from(678_912), - gas_limit: 30_000, - kind: TransactionKind::Call("0xb5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?), - value: U256::from(1), - input: Bytes::default(), - }; - - let fake_sender: Address = "0xa5bc06d4548a3ac17d72b372ae1e416bf65b8ead".parse()?; - - let signed = transaction.fake_sign(&fake_sender); - - // Generated by Hardhat - let expected_hash: B256 = - "e2fea338f86a021a90028336d380e030030ff98466f13a0367061729232df0ca".parse()?; - assert_eq!(signed.hash(), &expected_hash); - - Ok(()) - } -} diff --git a/crates/edr_eth/src/transaction/signed.rs b/crates/edr_eth/src/transaction/signed.rs deleted file mode 100644 index cd3637a0d0..0000000000 --- a/crates/edr_eth/src/transaction/signed.rs +++ /dev/null @@ -1,705 +0,0 @@ -mod eip155; -mod eip1559; -mod eip2930; -mod eip4844; -mod legacy; - -use alloy_rlp::{Buf, BufMut, Decodable}; - -pub use self::{ - eip155::Eip155SignedTransaction, eip1559::Eip1559SignedTransaction, - eip2930::Eip2930SignedTransaction, eip4844::Eip4844SignedTransaction, - legacy::LegacySignedTransaction, -}; -use super::kind::TransactionKind; -use crate::{ - access_list::AccessList, - signature::{Signature, SignatureError}, - utils::enveloped, - Address, Bytes, B256, U256, -}; - -const INVALID_TX_TYPE_ERROR_MESSAGE: &str = "invalid tx type"; - -#[derive(Clone, Debug, PartialEq, Eq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub enum SignedTransaction { - /// Legacy transaction type - PreEip155Legacy(LegacySignedTransaction), - /// EIP-155 transaction - PostEip155Legacy(Eip155SignedTransaction), - /// EIP-2930 transaction - Eip2930(Eip2930SignedTransaction), - /// EIP-1559 transaction - Eip1559(Eip1559SignedTransaction), - /// EIP-4844 transaction - Eip4844(Eip4844SignedTransaction), -} - -impl SignedTransaction { - /// Returns the effective gas price of the transaction. - pub fn effective_gas_price(&self, block_base_fee: U256) -> U256 { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.gas_price, - SignedTransaction::PostEip155Legacy(tx) => tx.gas_price, - SignedTransaction::Eip2930(tx) => tx.gas_price, - SignedTransaction::Eip1559(tx) => tx - .max_fee_per_gas - .min(block_base_fee + tx.max_priority_fee_per_gas), - SignedTransaction::Eip4844(tx) => tx - .max_fee_per_gas - .min(block_base_fee + tx.max_priority_fee_per_gas), - } - } - - /// Returns the gas price of the transaction. - pub fn gas_price(&self) -> U256 { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.gas_price, - SignedTransaction::PostEip155Legacy(tx) => tx.gas_price, - SignedTransaction::Eip2930(tx) => tx.gas_price, - SignedTransaction::Eip1559(tx) => tx.max_fee_per_gas, - SignedTransaction::Eip4844(tx) => tx.max_fee_per_gas, - } - } - - /// Returns the gas limit of the transaction. - pub fn gas_limit(&self) -> u64 { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.gas_limit, - SignedTransaction::PostEip155Legacy(tx) => tx.gas_limit, - SignedTransaction::Eip2930(tx) => tx.gas_limit, - SignedTransaction::Eip1559(tx) => tx.gas_limit, - SignedTransaction::Eip4844(tx) => tx.gas_limit, - } - } - - /// Returns the value of the transaction. - pub fn value(&self) -> U256 { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.value, - SignedTransaction::PostEip155Legacy(tx) => tx.value, - SignedTransaction::Eip2930(tx) => tx.value, - SignedTransaction::Eip1559(tx) => tx.value, - SignedTransaction::Eip4844(tx) => tx.value, - } - } - - /// Returns the input data of the transaction. - pub fn data(&self) -> &Bytes { - match self { - SignedTransaction::PreEip155Legacy(tx) => &tx.input, - SignedTransaction::PostEip155Legacy(tx) => &tx.input, - SignedTransaction::Eip2930(tx) => &tx.input, - SignedTransaction::Eip1559(tx) => &tx.input, - SignedTransaction::Eip4844(tx) => &tx.input, - } - } - - /// Returns the access list of the transaction, if any. - pub fn access_list(&self) -> Option<&AccessList> { - match self { - SignedTransaction::PreEip155Legacy(_) | SignedTransaction::PostEip155Legacy(_) => None, - SignedTransaction::Eip2930(tx) => Some(&tx.access_list), - SignedTransaction::Eip1559(tx) => Some(&tx.access_list), - SignedTransaction::Eip4844(tx) => Some(&tx.access_list), - } - } - - /// Max cost of the transaction - pub fn max_cost(&self) -> U256 { - U256::from(self.gas_limit()).saturating_mul(self.gas_price()) - } - - /// Retrieves the max fee per gas of the transaction, if any. - pub fn max_fee_per_gas(&self) -> Option { - match self { - SignedTransaction::PreEip155Legacy(_) - | SignedTransaction::PostEip155Legacy(_) - | SignedTransaction::Eip2930(_) => None, - SignedTransaction::Eip1559(tx) => Some(tx.max_fee_per_gas), - SignedTransaction::Eip4844(tx) => Some(tx.max_fee_per_gas), - } - } - - /// Retrieves the max priority fee per gas of the transaction, if any. - pub fn max_priority_fee_per_gas(&self) -> Option { - match self { - SignedTransaction::PreEip155Legacy(_) - | SignedTransaction::PostEip155Legacy(_) - | SignedTransaction::Eip2930(_) => None, - SignedTransaction::Eip1559(tx) => Some(tx.max_priority_fee_per_gas), - SignedTransaction::Eip4844(tx) => Some(tx.max_priority_fee_per_gas), - } - } - - /// Retrieves the max fee per blob gas of the transaction, if any. - pub fn max_fee_per_blob_gas(&self) -> Option { - match self { - SignedTransaction::PreEip155Legacy(_) - | SignedTransaction::PostEip155Legacy(_) - | SignedTransaction::Eip2930(_) - | SignedTransaction::Eip1559(_) => None, - SignedTransaction::Eip4844(tx) => Some(tx.max_fee_per_blob_gas), - } - } - - /// Retrieves the blob hashes of the transaction, if any. - pub fn blob_hashes(&self) -> Option> { - match self { - SignedTransaction::PreEip155Legacy(_) - | SignedTransaction::PostEip155Legacy(_) - | SignedTransaction::Eip2930(_) - | SignedTransaction::Eip1559(_) => None, - SignedTransaction::Eip4844(tx) => Some(tx.blob_hashes.clone()), - } - } - - /// Upfront cost of the transaction - pub fn upfront_cost(&self) -> U256 { - self.max_cost().saturating_add(self.value()) - } - - /// Returns the nonce of the transaction. - pub fn nonce(&self) -> u64 { - match self { - SignedTransaction::PreEip155Legacy(t) => t.nonce, - SignedTransaction::PostEip155Legacy(t) => t.nonce, - SignedTransaction::Eip2930(t) => t.nonce, - SignedTransaction::Eip1559(t) => t.nonce, - SignedTransaction::Eip4844(t) => t.nonce, - } - } - - /// Returns the chain id of the transaction. - pub fn chain_id(&self) -> Option { - match self { - SignedTransaction::PreEip155Legacy(_) => None, - SignedTransaction::PostEip155Legacy(t) => Some(t.chain_id()), - SignedTransaction::Eip2930(t) => Some(t.chain_id), - SignedTransaction::Eip1559(t) => Some(t.chain_id), - SignedTransaction::Eip4844(t) => Some(t.chain_id), - } - } - - pub fn as_legacy(&self) -> Option<&LegacySignedTransaction> { - match self { - SignedTransaction::PreEip155Legacy(tx) => Some(tx), - _ => None, - } - } - - /// Returns whether this is a legacy transaction - pub fn is_legacy(&self) -> bool { - matches!(self, SignedTransaction::PreEip155Legacy(_)) - } - - /// Returns whether this is an EIP-1559 transaction - pub fn is_eip155(&self) -> bool { - matches!(self, SignedTransaction::PostEip155Legacy(_)) - } - - /// Returns whether this is an EIP-1559 transaction - pub fn is_eip1559(&self) -> bool { - matches!(self, SignedTransaction::Eip1559(_)) - } - - /// Computes the hash of the transaction. - pub fn hash(&self) -> &B256 { - match self { - SignedTransaction::PreEip155Legacy(t) => t.hash(), - SignedTransaction::PostEip155Legacy(t) => t.hash(), - SignedTransaction::Eip2930(t) => t.hash(), - SignedTransaction::Eip1559(t) => t.hash(), - SignedTransaction::Eip4844(t) => t.hash(), - } - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.recover(), - SignedTransaction::PostEip155Legacy(tx) => tx.recover(), - SignedTransaction::Eip2930(tx) => tx.recover(), - SignedTransaction::Eip1559(tx) => tx.recover(), - SignedTransaction::Eip4844(tx) => tx.recover(), - } - } - - /// Returns what kind of transaction this is - pub fn kind(&self) -> TransactionKind { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.kind, - SignedTransaction::PostEip155Legacy(tx) => tx.kind, - SignedTransaction::Eip2930(tx) => tx.kind, - SignedTransaction::Eip1559(tx) => tx.kind, - SignedTransaction::Eip4844(tx) => TransactionKind::Call(tx.to), - } - } - - /// Returns the callee if this transaction is a call - pub fn to(&self) -> Option
{ - self.kind().as_call().copied() - } - - /// Returns the [`Signature`] of the transaction - pub fn signature(&self) -> Signature { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.signature, - SignedTransaction::PostEip155Legacy(tx) => tx.signature, - SignedTransaction::Eip2930(tx) => Signature { - r: tx.r, - s: tx.s, - v: u64::from(tx.odd_y_parity), - }, - SignedTransaction::Eip1559(tx) => Signature { - r: tx.r, - s: tx.s, - v: u64::from(tx.odd_y_parity), - }, - SignedTransaction::Eip4844(tx) => Signature { - r: tx.r, - s: tx.s, - v: u64::from(tx.odd_y_parity), - }, - } - } - - /// Total blob gas used by the transaction. - pub fn total_blob_gas(&self) -> Option { - match self { - SignedTransaction::Eip4844(tx) => Some(tx.total_blob_gas()), - _ => None, - } - } - - pub fn transaction_type(&self) -> u64 { - match self { - SignedTransaction::PreEip155Legacy(_) | SignedTransaction::PostEip155Legacy(_) => 0, - SignedTransaction::Eip2930(_) => 1, - SignedTransaction::Eip1559(_) => 2, - SignedTransaction::Eip4844(_) => 3, - } - } - - pub fn is_invalid_transaction_type_error(message: &str) -> bool { - message == INVALID_TX_TYPE_ERROR_MESSAGE - } -} - -impl Decodable for SignedTransaction { - fn decode(buf: &mut &[u8]) -> alloy_rlp::Result { - fn is_list(byte: u8) -> bool { - byte >= 0xc0 - } - - let first = buf.first().ok_or(alloy_rlp::Error::InputTooShort)?; - - match *first { - 0x01 => { - buf.advance(1); - - Ok(SignedTransaction::Eip2930( - Eip2930SignedTransaction::decode(buf)?, - )) - } - 0x02 => { - buf.advance(1); - - Ok(SignedTransaction::Eip1559( - Eip1559SignedTransaction::decode(buf)?, - )) - } - 0x03 => { - buf.advance(1); - - Ok(SignedTransaction::Eip4844( - Eip4844SignedTransaction::decode(buf)?, - )) - } - byte if is_list(byte) => { - let tx = LegacySignedTransaction::decode(buf)?; - if tx.signature.v >= 35 { - Ok(SignedTransaction::PostEip155Legacy(tx.into())) - } else { - Ok(SignedTransaction::PreEip155Legacy(tx)) - } - } - _ => Err(alloy_rlp::Error::Custom(INVALID_TX_TYPE_ERROR_MESSAGE)), - } - } -} - -impl alloy_rlp::Encodable for SignedTransaction { - fn encode(&self, out: &mut dyn BufMut) { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.encode(out), - SignedTransaction::PostEip155Legacy(tx) => tx.encode(out), - SignedTransaction::Eip2930(tx) => enveloped(1, tx, out), - SignedTransaction::Eip1559(tx) => enveloped(2, tx, out), - SignedTransaction::Eip4844(tx) => enveloped(3, tx, out), - } - } - - fn length(&self) -> usize { - match self { - SignedTransaction::PreEip155Legacy(tx) => tx.length(), - SignedTransaction::PostEip155Legacy(tx) => tx.length(), - SignedTransaction::Eip2930(tx) => tx.length() + 1, - SignedTransaction::Eip1559(tx) => tx.length() + 1, - SignedTransaction::Eip4844(tx) => tx.length() + 1, - } - } -} - -impl From for SignedTransaction { - fn from(transaction: LegacySignedTransaction) -> Self { - Self::PreEip155Legacy(transaction) - } -} - -impl From for SignedTransaction { - fn from(transaction: Eip155SignedTransaction) -> Self { - Self::PostEip155Legacy(transaction) - } -} - -impl From for SignedTransaction { - fn from(transaction: Eip2930SignedTransaction) -> Self { - Self::Eip2930(transaction) - } -} - -impl From for SignedTransaction { - fn from(transaction: Eip1559SignedTransaction) -> Self { - Self::Eip1559(transaction) - } -} - -impl From for SignedTransaction { - fn from(transaction: Eip4844SignedTransaction) -> Self { - Self::Eip4844(transaction) - } -} - -#[cfg(test)] -mod tests { - use std::sync::OnceLock; - - use super::*; - use crate::Bytes; - - #[test] - fn can_recover_sender() { - // Generated based on - // "f85f800182520894095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba048b55bfa915ac795c431978d8a6a992b628d557da5ff759b307d495a36649353a0efffd310ac743f371de3b9f7f9cb56c0b28ad43601b4ab949f53faa07bd2c804" - // but with a normalized signature - let bytes = hex::decode("f85f800182520894095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca048b55bfa915ac795c431978d8a6a992b628d557da5ff759b307d495a36649353a010002cef538bc0c8e21c46080634a93e082408b0ad93f4a7207e63ec5463793d").unwrap(); - - let tx = SignedTransaction::decode(&mut bytes.as_slice()) - .expect("decoding TypedTransaction failed"); - - let tx = match tx { - SignedTransaction::PreEip155Legacy(tx) => tx, - _ => panic!("Invalid typed transaction"), - }; - - assert_eq!(tx.input, Bytes::new()); - assert_eq!(tx.gas_price, U256::from(0x01u64)); - assert_eq!(tx.gas_limit, 0x5208u64); - assert_eq!(tx.nonce, 0x00u64); - if let TransactionKind::Call(ref to) = tx.kind { - assert_eq!( - *to, - "0x095e7baea6a6c7c4c2dfeb977efac326af552d87" - .parse::
() - .unwrap() - ); - } else { - panic!(); - } - assert_eq!(tx.value, U256::from(0x0au64)); - assert_eq!( - tx.recover().unwrap(), - "0x0f65fe9276bc9a24ae7083ae28e2660ef72df99e" - .parse::
() - .unwrap() - ); - } - - macro_rules! impl_test_signed_transaction_encoding_round_trip { - ($( - $name:ident => $transaction:expr, - )+) => { - $( - paste::item! { - #[test] - fn []() { - let transaction = $transaction; - - let encoded = alloy_rlp::encode(&transaction); - let decoded = SignedTransaction::decode(&mut encoded.as_slice()).unwrap(); - - assert_eq!(decoded, transaction); - } - } - )+ - }; - } - - impl_test_signed_transaction_encoding_round_trip! { - pre_eip155 => SignedTransaction::PreEip155Legacy(LegacySignedTransaction { - nonce: 0, - gas_price: U256::from(1), - gas_limit: 2, - kind: TransactionKind::Call(Address::default()), - value: U256::from(3), - input: Bytes::from(vec![1, 2]), - signature: Signature { - r: U256::default(), - s: U256::default(), - v: 1, - }, - hash: OnceLock::new(), - is_fake: false - }), - post_eip155 => SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: 0, - gas_price: U256::from(1), - gas_limit: 2, - kind: TransactionKind::Create, - value: U256::from(3), - input: Bytes::from(vec![1, 2]), - signature: Signature { - r: U256::default(), - s: U256::default(), - v: 37, - }, - hash: OnceLock::new(), - is_fake: false - }), - eip2930 => SignedTransaction::Eip2930(Eip2930SignedTransaction { - chain_id: 1, - nonce: 0, - gas_price: U256::from(1), - gas_limit: 2, - kind: TransactionKind::Call(Address::random()), - value: U256::from(3), - input: Bytes::from(vec![1, 2]), - odd_y_parity: true, - r: U256::default(), - s: U256::default(), - access_list: vec![].into(), - hash: OnceLock::new(), - is_fake: false - }), - eip1559 => SignedTransaction::Eip1559(Eip1559SignedTransaction { - chain_id: 1, - nonce: 0, - max_priority_fee_per_gas: U256::from(1), - max_fee_per_gas: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Create, - value: U256::from(4), - input: Bytes::from(vec![1, 2]), - access_list: vec![].into(), - odd_y_parity: true, - r: U256::default(), - s: U256::default(), - hash: OnceLock::new(), - is_fake: false - }), - eip4844 => SignedTransaction::Eip4844(Eip4844SignedTransaction { - chain_id: 1, - nonce: 0, - max_priority_fee_per_gas: U256::from(1), - max_fee_per_gas: U256::from(2), - max_fee_per_blob_gas: U256::from(7), - gas_limit: 3, - to: Address::random(), - value: U256::from(4), - input: Bytes::from(vec![1, 2]), - access_list: vec![].into(), - blob_hashes: vec![B256::random(), B256::random()], - odd_y_parity: true, - r: U256::default(), - s: U256::default(), - hash: OnceLock::new(), - is_fake: false - }), - } - - #[test] - fn test_signed_transaction_decode_multiple_networks() { - use std::str::FromStr; - - let bytes_first = hex::decode("f86b02843b9aca00830186a094d3e8763675e4c425df46cc3b5c0f6cbdac39604687038d7ea4c68000802ba00eb96ca19e8a77102767a41fc85a36afd5c61ccb09911cec5d3e86e193d9c5aea03a456401896b1b6055311536bf00a718568c744d8c1f9df59879e8350220ca18").unwrap(); - let expected = SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: 2u64, - gas_price: U256::from(1000000000u64), - gas_limit: 100000, - kind: TransactionKind::Call(Address::from_slice( - &hex::decode("d3e8763675e4c425df46cc3b5c0f6cbdac396046").unwrap(), - )), - value: U256::from(1000000000000000u64), - input: Bytes::default(), - signature: Signature { - v: 43, - r: U256::from_str( - "0xeb96ca19e8a77102767a41fc85a36afd5c61ccb09911cec5d3e86e193d9c5ae", - ) - .unwrap(), - s: U256::from_str( - "0x3a456401896b1b6055311536bf00a718568c744d8c1f9df59879e8350220ca18", - ) - .unwrap(), - }, - hash: OnceLock::new(), - is_fake: false, - }); - assert_eq!( - expected, - SignedTransaction::decode(&mut bytes_first.as_slice()).unwrap() - ); - - let bytes_second = hex::decode("f86b01843b9aca00830186a094d3e8763675e4c425df46cc3b5c0f6cbdac3960468702769bb01b2a00802ba0e24d8bd32ad906d6f8b8d7741e08d1959df021698b19ee232feba15361587d0aa05406ad177223213df262cb66ccbb2f46bfdccfdfbbb5ffdda9e2c02d977631da").unwrap(); - let expected = SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: 1, - gas_price: U256::from(1000000000u64), - gas_limit: 100000, - kind: TransactionKind::Call(Address::from_slice( - &hex::decode("d3e8763675e4c425df46cc3b5c0f6cbdac396046").unwrap(), - )), - value: U256::from(693361000000000u64), - input: Bytes::default(), - signature: Signature { - v: 43, - r: U256::from_str( - "0xe24d8bd32ad906d6f8b8d7741e08d1959df021698b19ee232feba15361587d0a", - ) - .unwrap(), - s: U256::from_str( - "0x5406ad177223213df262cb66ccbb2f46bfdccfdfbbb5ffdda9e2c02d977631da", - ) - .unwrap(), - }, - hash: OnceLock::new(), - is_fake: false, - }); - assert_eq!( - expected, - SignedTransaction::decode(&mut bytes_second.as_slice()).unwrap() - ); - - let bytes_third = hex::decode("f86b0384773594008398968094d3e8763675e4c425df46cc3b5c0f6cbdac39604687038d7ea4c68000802ba0ce6834447c0a4193c40382e6c57ae33b241379c5418caac9cdc18d786fd12071a03ca3ae86580e94550d7c071e3a02eadb5a77830947c9225165cf9100901bee88").unwrap(); - let expected = SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: 3, - gas_price: U256::from(2000000000u64), - gas_limit: 10000000, - kind: TransactionKind::Call(Address::from_slice( - &hex::decode("d3e8763675e4c425df46cc3b5c0f6cbdac396046").unwrap(), - )), - value: U256::from(1000000000000000u64), - input: Bytes::default(), - signature: Signature { - v: 43, - r: U256::from_str( - "0xce6834447c0a4193c40382e6c57ae33b241379c5418caac9cdc18d786fd12071", - ) - .unwrap(), - s: U256::from_str( - "0x3ca3ae86580e94550d7c071e3a02eadb5a77830947c9225165cf9100901bee88", - ) - .unwrap(), - }, - hash: OnceLock::new(), - is_fake: false, - }); - assert_eq!( - expected, - SignedTransaction::decode(&mut bytes_third.as_slice()).unwrap() - ); - - let bytes_fourth = hex::decode("02f872041a8459682f008459682f0d8252089461815774383099e24810ab832a5b2a5425c154d58829a2241af62c000080c001a059e6b67f48fb32e7e570dfb11e042b5ad2e55e3ce3ce9cd989c7e06e07feeafda0016b83f4f980694ed2eee4d10667242b1f40dc406901b34125b008d334d47469").unwrap(); - let expected = SignedTransaction::Eip1559(Eip1559SignedTransaction { - chain_id: 4, - nonce: 26, - max_priority_fee_per_gas: U256::from(1500000000u64), - max_fee_per_gas: U256::from(1500000013u64), - gas_limit: 21000, - kind: TransactionKind::Call(Address::from_slice( - &hex::decode("61815774383099e24810ab832a5b2a5425c154d5").unwrap(), - )), - value: U256::from(3000000000000000000u64), - input: Bytes::default(), - access_list: AccessList::default(), - odd_y_parity: true, - r: U256::from_str("0x59e6b67f48fb32e7e570dfb11e042b5ad2e55e3ce3ce9cd989c7e06e07feeafd") - .unwrap(), - s: U256::from_str("0x016b83f4f980694ed2eee4d10667242b1f40dc406901b34125b008d334d47469") - .unwrap(), - hash: OnceLock::new(), - is_fake: false, - }); - assert_eq!( - expected, - SignedTransaction::decode(&mut bytes_fourth.as_slice()).unwrap() - ); - - let bytes_fifth = hex::decode("f8650f84832156008287fb94cf7f9e66af820a19257a2108375b180b0ec491678204d2802ca035b7bfeb9ad9ece2cbafaaf8e202e706b4cfaeb233f46198f00b44d4a566a981a0612638fb29427ca33b9a3be2a0a561beecfe0269655be160d35e72d366a6a860").unwrap(); - let expected = SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: 15u64, - gas_price: U256::from(2200000000u64), - gas_limit: 34811, - kind: TransactionKind::Call(Address::from_slice( - &hex::decode("cf7f9e66af820a19257a2108375b180b0ec49167").unwrap(), - )), - value: U256::from(1234u64), - input: Bytes::default(), - signature: Signature { - v: 44, - r: U256::from_str( - "0x35b7bfeb9ad9ece2cbafaaf8e202e706b4cfaeb233f46198f00b44d4a566a981", - ) - .unwrap(), - s: U256::from_str( - "0x612638fb29427ca33b9a3be2a0a561beecfe0269655be160d35e72d366a6a860", - ) - .unwrap(), - }, - hash: OnceLock::new(), - is_fake: false, - }); - assert_eq!( - expected, - SignedTransaction::decode(&mut bytes_fifth.as_slice()).unwrap() - ); - } - - // - #[test] - fn test_recover_legacy_tx() { - let raw_tx = "f9015482078b8505d21dba0083022ef1947a250d5630b4cf539739df2c5dacb4c659f2488d880c46549a521b13d8b8e47ff36ab50000000000000000000000000000000000000000000066ab5a608bd00a23f2fe000000000000000000000000000000000000000000000000000000000000008000000000000000000000000048c04ed5691981c42154c6167398f95e8f38a7ff00000000000000000000000000000000000000000000000000000000632ceac70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006c6ee5e31d828de241282b9606c8e98ea48526e225a0c9077369501641a92ef7399ff81c21639ed4fd8fc69cb793cfa1dbfab342e10aa0615facb2f1bcf3274a354cfe384a38d0cc008a11c2dd23a69111bc6930ba27a8"; - - let tx: SignedTransaction = - SignedTransaction::decode(&mut hex::decode(raw_tx).unwrap().as_slice()).unwrap(); - let recovered = tx.recover().unwrap(); - let expected: Address = "0xa12e1462d0ced572f396f58b6e2d03894cd7c8a4" - .parse() - .unwrap(); - assert_eq!(expected, recovered); - } - - #[test] - fn from_is_implemented_for_all_variants() { - fn _compile_test(transaction: SignedTransaction) -> SignedTransaction { - match transaction { - SignedTransaction::PreEip155Legacy(transaction) => transaction.into(), - SignedTransaction::PostEip155Legacy(transaction) => transaction.into(), - SignedTransaction::Eip2930(transaction) => transaction.into(), - SignedTransaction::Eip1559(transaction) => transaction.into(), - SignedTransaction::Eip4844(transaction) => transaction.into(), - } - } - } -} diff --git a/crates/edr_eth/src/transaction/signed/eip155.rs b/crates/edr_eth/src/transaction/signed/eip155.rs deleted file mode 100644 index c1be9070bf..0000000000 --- a/crates/edr_eth/src/transaction/signed/eip155.rs +++ /dev/null @@ -1,156 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use revm_primitives::keccak256; - -use super::LegacySignedTransaction; -use crate::{ - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::recover_fake_signature, kind::TransactionKind, - request::Eip155TransactionRequest, - }, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct Eip155SignedTransaction { - // The order of these fields determines de-/encoding order. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: u64, - pub gas_price: U256, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub signature: Signature, - /// Cached transaction hash - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub hash: OnceLock, - /// Whether the signed transaction is from an impersonated account. - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub is_fake: bool, -} - -impl Eip155SignedTransaction { - pub fn hash(&self) -> &B256 { - self.hash.get_or_init(|| keccak256(alloy_rlp::encode(self))) - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - if self.is_fake { - return Ok(recover_fake_signature(&self.signature)); - } - self.signature - .recover(Eip155TransactionRequest::from(self).hash()) - } - - pub fn chain_id(&self) -> u64 { - (self.signature.v - 35) / 2 - } -} - -impl From for Eip155SignedTransaction { - fn from(tx: LegacySignedTransaction) -> Self { - Self { - nonce: tx.nonce, - gas_price: tx.gas_price, - gas_limit: tx.gas_limit, - kind: tx.kind, - value: tx.value, - input: tx.input, - signature: tx.signature, - hash: tx.hash, - is_fake: tx.is_fake, - } - } -} - -impl PartialEq for Eip155SignedTransaction { - fn eq(&self, other: &Self) -> bool { - self.nonce == other.nonce - && self.gas_price == other.gas_price - && self.gas_limit == other.gas_limit - && self.kind == other.kind - && self.value == other.value - && self.input == other.input - && self.signature == other.signature - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use alloy_rlp::Decodable; - use k256::SecretKey; - - use super::*; - use crate::signature::secret_key_from_str; - - fn dummy_request() -> Eip155TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip155TransactionRequest { - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - chain_id: 1, - } - } - - fn dummy_secret_key() -> SecretKey { - secret_key_from_str("e331b6d69882b4cb4ea581d88e0b604039a3de5967688d3dcffdd2270c0fd109") - .unwrap() - } - - #[test] - fn test_eip155_signed_transaction_encoding() { - // Generated by Hardhat - let expected = - hex::decode("f85f01020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e0482123426a0fc9f82c3002f9ed8c05d6e8e821cf14eab65a1b4647e002957e170149393f40ba077f230fafdb096cf80762af3d3f4243f02e754f363fb9443d914c3a286fa2774") - .unwrap(); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip155_signed_transaction_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("4da115513cdabaed0e9c9e503acd2fa7af29e5baae7f79a6ffa878b3ff380de6") - .unwrap(), - ); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - assert_eq!(expected, *signed.hash()); - } - - #[test] - fn test_eip155_signed_transaction_rlp() { - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!( - signed, - Eip155SignedTransaction::decode(&mut encoded.as_slice()).unwrap() - ); - } -} diff --git a/crates/edr_eth/src/transaction/signed/eip1559.rs b/crates/edr_eth/src/transaction/signed/eip1559.rs deleted file mode 100644 index d2ce26dd9f..0000000000 --- a/crates/edr_eth/src/transaction/signed/eip1559.rs +++ /dev/null @@ -1,180 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use revm_primitives::keccak256; - -use crate::{ - access_list::AccessList, - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::recover_fake_signature, kind::TransactionKind, - request::Eip1559TransactionRequest, - }, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct Eip1559SignedTransaction { - // The order of these fields determines de-/encoding order. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub chain_id: u64, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: u64, - pub max_priority_fee_per_gas: U256, - pub max_fee_per_gas: U256, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub access_list: AccessList, - pub odd_y_parity: bool, - pub r: U256, - pub s: U256, - /// Cached transaction hash - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub hash: OnceLock, - /// Whether the signature is from an impersonated account. - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub is_fake: bool, -} - -impl Eip1559SignedTransaction { - pub fn hash(&self) -> &B256 { - self.hash.get_or_init(|| { - let encoded = alloy_rlp::encode(self); - let enveloped = envelop_bytes(2, &encoded); - - keccak256(enveloped) - }) - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - let signature = Signature { - r: self.r, - s: self.s, - v: u64::from(self.odd_y_parity), - }; - - if self.is_fake { - return Ok(recover_fake_signature(&signature)); - } - - signature.recover(Eip1559TransactionRequest::from(self).hash()) - } -} - -impl PartialEq for Eip1559SignedTransaction { - fn eq(&self, other: &Self) -> bool { - self.chain_id == other.chain_id - && self.nonce == other.nonce - && self.max_priority_fee_per_gas == other.max_priority_fee_per_gas - && self.max_fee_per_gas == other.max_fee_per_gas - && self.gas_limit == other.gas_limit - && self.kind == other.kind - && self.value == other.value - && self.input == other.input - && self.access_list == other.access_list - && self.odd_y_parity == other.odd_y_parity - && self.r == other.r - && self.s == other.s - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use alloy_rlp::Decodable; - use k256::SecretKey; - - use super::*; - use crate::{ - access_list::AccessListItem, - signature::{secret_key_from_str, secret_key_to_address}, - }; - - const DUMMY_SECRET_KEY: &str = - "e331b6d69882b4cb4ea581d88e0b604039a3de5967688d3dcffdd2270c0fd109"; - - fn dummy_request() -> Eip1559TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip1559TransactionRequest { - chain_id: 1, - nonce: 1, - max_priority_fee_per_gas: U256::from(2), - max_fee_per_gas: U256::from(5), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - access_list: vec![AccessListItem { - address: Address::ZERO, - storage_keys: vec![B256::ZERO, B256::from(U256::from(1))], - }], - } - } - - fn dummy_secret_key() -> SecretKey { - secret_key_from_str(DUMMY_SECRET_KEY).unwrap() - } - - #[test] - fn test_eip1559_signed_transaction_encoding() { - // Generated by Hardhat - let expected = - hex::decode("f8be010102050394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234f85bf859940000000000000000000000000000000000000000f842a00000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000101a07764e376b5b4090264f73abee68ebb5fdc9f76050eff800237e5a2bedadcd7eda044c0ae9b07c75cf4e0a14aebfe792ab2fdccd7d89550b166b1b4a4ece0054f02") - .unwrap(); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip1559_signed_transaction_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("043d6f6de2e81af3f48d6c64d4cdfc7576f8754c73569bc6903e50f3c92988d8") - .unwrap(), - ); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - assert_eq!(expected, *signed.hash()); - } - - #[test] - fn test_eip1559_signed_transaction_recover() { - let request = dummy_request(); - - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let expected = secret_key_to_address(DUMMY_SECRET_KEY) - .expect("Failed to retrieve address from secret key"); - assert_eq!(expected, signed.recover().expect("should succeed")); - } - - #[test] - fn test_eip1559_signed_transaction_rlp() { - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!( - signed, - Eip1559SignedTransaction::decode(&mut encoded.as_slice()).unwrap() - ); - } -} diff --git a/crates/edr_eth/src/transaction/signed/eip2930.rs b/crates/edr_eth/src/transaction/signed/eip2930.rs deleted file mode 100644 index 1f7726a7fa..0000000000 --- a/crates/edr_eth/src/transaction/signed/eip2930.rs +++ /dev/null @@ -1,161 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use revm_primitives::keccak256; - -use crate::{ - access_list::AccessList, - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::recover_fake_signature, kind::TransactionKind, - request::Eip2930TransactionRequest, - }, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct Eip2930SignedTransaction { - // The order of these fields determines de-/encoding order. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub chain_id: u64, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: u64, - pub gas_price: U256, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub access_list: AccessList, - pub odd_y_parity: bool, - pub r: U256, - pub s: U256, - /// Cached transaction hash - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub hash: OnceLock, - /// Whether the signed transaction is from an impersonated account. - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub is_fake: bool, -} - -impl Eip2930SignedTransaction { - pub fn hash(&self) -> &B256 { - self.hash.get_or_init(|| { - let encoded = alloy_rlp::encode(self); - let enveloped = envelop_bytes(1, &encoded); - - keccak256(enveloped) - }) - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - let signature = Signature { - r: self.r, - s: self.s, - v: u64::from(self.odd_y_parity), - }; - - if self.is_fake { - return Ok(recover_fake_signature(&signature)); - } - - signature.recover(Eip2930TransactionRequest::from(self).hash()) - } -} - -impl PartialEq for Eip2930SignedTransaction { - fn eq(&self, other: &Self) -> bool { - self.chain_id == other.chain_id - && self.nonce == other.nonce - && self.gas_price == other.gas_price - && self.gas_limit == other.gas_limit - && self.kind == other.kind - && self.value == other.value - && self.input == other.input - && self.access_list == other.access_list - && self.odd_y_parity == other.odd_y_parity - && self.r == other.r - && self.s == other.s - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use alloy_rlp::Decodable; - use k256::SecretKey; - - use super::*; - use crate::{access_list::AccessListItem, signature::secret_key_from_str}; - - fn dummy_request() -> Eip2930TransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - Eip2930TransactionRequest { - chain_id: 1, - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - access_list: vec![AccessListItem { - address: Address::ZERO, - storage_keys: vec![B256::ZERO, B256::from(U256::from(1))], - }], - } - } - - fn dummy_secret_key() -> SecretKey { - secret_key_from_str("e331b6d69882b4cb4ea581d88e0b604039a3de5967688d3dcffdd2270c0fd109") - .unwrap() - } - - #[test] - fn test_eip2930_signed_transaction_encoding() { - // Generated by Hardhat - let expected = - hex::decode("f8bd0101020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e04821234f85bf859940000000000000000000000000000000000000000f842a00000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000101a0a9f9f0c845cc2d257838df2679a59af6f19055012ce1de11ba25b4ca9df503cfa02c70c54cf6c49b4a641b269c93308fa07de541aa3bcd3fce0fc722aaabe3a8d8") - .unwrap(); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!(expected, encoded); - } - - #[test] - fn test_eip2930_signed_transaction_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("1d4f5ef5c7b4b0bd61d4dd622615ec280ae5b9a57136ce6b7686025999220611") - .unwrap(), - ); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - assert_eq!(expected, *signed.hash()); - } - - #[test] - fn test_eip2930_signed_transaction_rlp() { - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!( - signed, - Eip2930SignedTransaction::decode(&mut encoded.as_slice()).unwrap() - ); - } -} diff --git a/crates/edr_eth/src/transaction/signed/eip4844.rs b/crates/edr_eth/src/transaction/signed/eip4844.rs deleted file mode 100644 index 38e7cef56f..0000000000 --- a/crates/edr_eth/src/transaction/signed/eip4844.rs +++ /dev/null @@ -1,156 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use revm_primitives::{keccak256, GAS_PER_BLOB}; - -use crate::{ - access_list::AccessList, - signature::{Signature, SignatureError}, - transaction::{fake_signature::recover_fake_signature, Eip4844TransactionRequest}, - utils::envelop_bytes, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct Eip4844SignedTransaction { - // The order of these fields determines de-/encoding order. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub chain_id: u64, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: u64, - pub max_priority_fee_per_gas: U256, - pub max_fee_per_gas: U256, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_limit: u64, - pub to: Address, - pub value: U256, - pub input: Bytes, - pub access_list: AccessList, - pub max_fee_per_blob_gas: U256, - pub blob_hashes: Vec, - pub odd_y_parity: bool, - pub r: U256, - pub s: U256, - /// Cached transaction hash - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub hash: OnceLock, - /// Whether the signed transaction is from an impersonated account. - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub is_fake: bool, -} - -impl Eip4844SignedTransaction { - pub fn nonce(&self) -> &u64 { - &self.nonce - } - - pub fn hash(&self) -> &B256 { - self.hash.get_or_init(|| { - let encoded = alloy_rlp::encode(self); - let enveloped = envelop_bytes(3, &encoded); - - keccak256(enveloped) - }) - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - let signature = Signature { - r: self.r, - s: self.s, - v: u64::from(self.odd_y_parity), - }; - - if self.is_fake { - return Ok(recover_fake_signature(&signature)); - } - - signature.recover(Eip4844TransactionRequest::from(self).hash()) - } - - /// Total blob gas used by the transaction. - pub fn total_blob_gas(&self) -> u64 { - GAS_PER_BLOB * self.blob_hashes.len() as u64 - } -} - -impl PartialEq for Eip4844SignedTransaction { - fn eq(&self, other: &Self) -> bool { - self.chain_id == other.chain_id - && self.nonce == other.nonce - && self.max_priority_fee_per_gas == other.max_priority_fee_per_gas - && self.max_fee_per_gas == other.max_fee_per_gas - && self.max_fee_per_blob_gas == other.max_fee_per_blob_gas - && self.gas_limit == other.gas_limit - && self.to == other.to - && self.value == other.value - && self.input == other.input - && self.access_list == other.access_list - && self.blob_hashes == other.blob_hashes - && self.odd_y_parity == other.odd_y_parity - && self.r == other.r - && self.s == other.s - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use super::*; - - // From https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/tx/test/eip4844.spec.ts#L68 - fn dummy_transaction() -> Eip4844SignedTransaction { - Eip4844SignedTransaction { - chain_id: 0x28757b3, - nonce: 0, - max_priority_fee_per_gas: U256::from(0x12a05f200u64), - max_fee_per_gas: U256::from(0x12a05f200u64), - max_fee_per_blob_gas: U256::from(0xb2d05e00u64), - gas_limit: 0x33450, - to: Address::from_str("0xffb38a7a99e3e2335be83fc74b7faa19d5531243").unwrap(), - value: U256::from(0xbc614eu64), - input: Bytes::default(), - access_list: Vec::new().into(), - blob_hashes: vec![B256::from_str( - "0x01b0a4cdd5f55589f5c5b4d46c76704bb6ce95c0a8c09f77f197a57808dded28", - ) - .unwrap()], - r: U256::from_str("0x8a83833ec07806485a4ded33f24f5cea4b8d4d24dc8f357e6d446bcdae5e58a7") - .unwrap(), - s: U256::from_str("0x68a2ba422a50cf84c0b5fcbda32ee142196910c97198ffd99035d920c2b557f8") - .unwrap(), - odd_y_parity: false, - hash: OnceLock::new(), - is_fake: false, - } - } - - #[test] - fn eip4884_signed_transaction_encoding() { - // From https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/tx/test/eip4844.spec.ts#L86 - let expected = - hex::decode("f89b84028757b38085012a05f20085012a05f2008303345094ffb38a7a99e3e2335be83fc74b7faa19d553124383bc614e80c084b2d05e00e1a001b0a4cdd5f55589f5c5b4d46c76704bb6ce95c0a8c09f77f197a57808dded2880a08a83833ec07806485a4ded33f24f5cea4b8d4d24dc8f357e6d446bcdae5e58a7a068a2ba422a50cf84c0b5fcbda32ee142196910c97198ffd99035d920c2b557f8") - .unwrap(); - - let signed = dummy_transaction(); - let encoded = alloy_rlp::encode(&signed); - assert_eq!(expected, encoded); - } - - #[test] - fn eip4884_signed_transaction_hash() { - // From https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/tx/test/eip4844.spec.ts#L86 - let expected = - B256::from_str("0xe5e02be0667b6d31895d1b5a8b916a6761cbc9865225c6144a3e2c50936d173e") - .unwrap(); - - let signed = dummy_transaction(); - assert_eq!(expected, *signed.hash()); - } -} diff --git a/crates/edr_eth/src/transaction/signed/legacy.rs b/crates/edr_eth/src/transaction/signed/legacy.rs deleted file mode 100644 index 4097250c1a..0000000000 --- a/crates/edr_eth/src/transaction/signed/legacy.rs +++ /dev/null @@ -1,133 +0,0 @@ -use std::sync::OnceLock; - -use alloy_rlp::{RlpDecodable, RlpEncodable}; -use revm_primitives::keccak256; - -use crate::{ - signature::{Signature, SignatureError}, - transaction::{ - fake_signature::recover_fake_signature, kind::TransactionKind, - request::LegacyTransactionRequest, - }, - Address, Bytes, B256, U256, -}; - -#[derive(Clone, Debug, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct LegacySignedTransaction { - // The order of these fields determines de-/encoding order. - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub nonce: u64, - pub gas_price: U256, - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub gas_limit: u64, - pub kind: TransactionKind, - pub value: U256, - pub input: Bytes, - pub signature: Signature, - /// Cached transaction hash - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub hash: OnceLock, - /// Whether the signature is from an impersonated account. - #[rlp(default)] - #[rlp(skip)] - #[cfg_attr(feature = "serde", serde(skip))] - pub is_fake: bool, -} - -impl LegacySignedTransaction { - pub fn hash(&self) -> &B256 { - self.hash.get_or_init(|| keccak256(alloy_rlp::encode(self))) - } - - /// Recovers the Ethereum address which was used to sign the transaction. - pub fn recover(&self) -> Result { - if self.is_fake { - return Ok(recover_fake_signature(&self.signature)); - } - self.signature - .recover(LegacyTransactionRequest::from(self).hash()) - } -} - -impl PartialEq for LegacySignedTransaction { - fn eq(&self, other: &Self) -> bool { - self.nonce == other.nonce - && self.gas_price == other.gas_price - && self.gas_limit == other.gas_limit - && self.kind == other.kind - && self.value == other.value - && self.input == other.input - && self.signature == other.signature - } -} - -#[cfg(test)] -mod tests { - use std::str::FromStr; - - use alloy_rlp::Decodable; - use k256::SecretKey; - - use super::*; - use crate::signature::secret_key_from_str; - - fn dummy_request() -> LegacyTransactionRequest { - let to = Address::from_str("0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e").unwrap(); - let input = hex::decode("1234").unwrap(); - LegacyTransactionRequest { - nonce: 1, - gas_price: U256::from(2), - gas_limit: 3, - kind: TransactionKind::Call(to), - value: U256::from(4), - input: Bytes::from(input), - } - } - - fn dummy_secret_key() -> SecretKey { - secret_key_from_str("e331b6d69882b4cb4ea581d88e0b604039a3de5967688d3dcffdd2270c0fd109") - .unwrap() - } - - #[test] - fn test_legacy_signed_transaction_encoding() { - // Generated by Hardhat - let expected = - hex::decode("f85f01020394c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e048212341ca0c62d73a484ff7c53a0cfdf8eaa5e5896491b70971e9ce4a3e8750772b7c0203fa00562866909572aee9ab72df7470c1dd7aa29b056597be57c17e06f1ee303e7eb").unwrap(); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!(expected, encoded); - } - - #[test] - fn test_legacy_signed_transaction_hash() { - // Generated by hardhat - let expected = B256::from_slice( - &hex::decode("854a9427d54aaca361e7c592b4c3dc7da279c52a00cad157dab0365dcc27578d") - .unwrap(), - ); - - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - assert_eq!(expected, *signed.hash()); - } - - #[test] - fn test_legacy_signed_transaction_rlp() { - let request = dummy_request(); - let signed = request.sign(&dummy_secret_key()).unwrap(); - - let encoded = alloy_rlp::encode(&signed); - assert_eq!( - signed, - LegacySignedTransaction::decode(&mut encoded.as_slice()).unwrap() - ); - } -} diff --git a/crates/edr_eth/src/trie.rs b/crates/edr_eth/src/trie.rs deleted file mode 100644 index 7ab4583082..0000000000 --- a/crates/edr_eth/src/trie.rs +++ /dev/null @@ -1,71 +0,0 @@ -// Part of this code was adapted from foundry and is distributed under their -// licenss: -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT -// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/trie.rs - -//! Utility functions for Ethereum - -use hash256_std_hasher::Hash256StdHasher; -use sha3::{ - digest::generic_array::{typenum::consts::U32, GenericArray}, - Digest, Keccak256, -}; - -use crate::B256; - -/// The KECCAK of the RLP encoding of empty data. -pub const KECCAK_NULL_RLP: B256 = B256::new([ - 0x56, 0xe8, 0x1f, 0x17, 0x1b, 0xcc, 0x55, 0xa6, 0xff, 0x83, 0x45, 0xe6, 0x92, 0xc0, 0xf8, 0x6e, - 0x5b, 0x48, 0xe0, 0x1b, 0x99, 0x6c, 0xad, 0xc0, 0x01, 0x62, 0x2f, 0xb5, 0xe3, 0x63, 0xb4, 0x21, -]); - -/// The KECCAK of the RLP encoding of an empty array. -pub const KECCAK_RLP_EMPTY_ARRAY: B256 = B256::new([ - 0x1d, 0xcc, 0x4d, 0xe8, 0xde, 0xc7, 0x5d, 0x7a, 0xab, 0x85, 0xb5, 0x67, 0xb6, 0xcc, 0xd4, 0x1a, - 0xd3, 0x12, 0x45, 0x1b, 0x94, 0x8a, 0x74, 0x13, 0xf0, 0xa1, 0x42, 0xfd, 0x40, 0xd4, 0x93, 0x47, -]); - -/// Generates a trie root hash for a vector of key-value tuples -pub fn trie_root(input: I) -> B256 -where - I: IntoIterator, - K: AsRef<[u8]> + Ord, - V: AsRef<[u8]>, -{ - B256::from_slice(triehash::trie_root::(input).as_ref()) -} - -/// Generates a key-hashed (secure) trie root hash for a vector of key-value -/// tuples. -pub fn sec_trie_root(input: I) -> B256 -where - I: IntoIterator, - K: AsRef<[u8]>, - V: AsRef<[u8]>, -{ - B256::from_slice(triehash::sec_trie_root::(input).as_ref()) -} - -/// Generates a trie root hash for a vector of values -pub fn ordered_trie_root(input: I) -> B256 -where - I: IntoIterator, - V: AsRef<[u8]>, -{ - B256::from_slice(triehash::ordered_trie_root::(input).as_ref()) -} - -struct KeccakHasher; - -impl hash_db::Hasher for KeccakHasher { - type Out = GenericArray; - - type StdHasher = Hash256StdHasher; - - const LENGTH: usize = 32; - - fn hash(x: &[u8]) -> Self::Out { - Keccak256::digest(x) - } -} diff --git a/crates/edr_eth/src/utils.rs b/crates/edr_eth/src/utils.rs deleted file mode 100644 index 2f543e219b..0000000000 --- a/crates/edr_eth/src/utils.rs +++ /dev/null @@ -1,95 +0,0 @@ -// Part of this code was adapted from foundry and is distributed under their -// licenss: -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE -// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT -// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/utils.rs -// -// Part of this code was adapted from ethers-rs and is distributed under their -// licenss: -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-APACHE -// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-MIT -// For the original context see: https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/ethers-core/src/utils/hash.rs - -use alloy_rlp::{BufMut, Encodable}; -use revm_primitives::keccak256; - -use crate::{B256, U256, U64}; - -/// RLP-encodes the provided value and prepends it with the provided ID. -pub fn enveloped(id: u8, v: &T, out: &mut dyn BufMut) { - out.put_u8(id); - v.encode(out); -} - -/// Prepends the provided (RLP-encoded) bytes with the provided ID. -pub fn envelop_bytes(id: u8, bytes: &[u8]) -> Vec { - let mut out = vec![0; 1 + bytes.len()]; - out[0] = id; - out[1..].copy_from_slice(bytes); - - out -} - -/// Hash a message according to EIP-191. -/// -/// The data is a UTF-8 encoded string and will be enveloped as follows: -/// `"\x19Ethereum Signed Message:\n" + message.length + message` and hashed -/// using keccak256. -pub fn hash_message(message: S) -> B256 -where - S: AsRef<[u8]>, -{ - const PREFIX: &str = "\x19Ethereum Signed Message:\n"; - - let message = message.as_ref(); - - let mut eth_message = format!("{}{}", PREFIX, message.len()).into_bytes(); - eth_message.extend_from_slice(message); - - keccak256(ð_message) -} - -/// Convert a U256 to String as a 32-byte 0x prefixed hex string. -pub fn u256_to_padded_hex(word: &U256) -> String { - if word == &U256::ZERO { - // For 0 zero, the #066x formatter doesn't add padding. - format!("0x{}", "0".repeat(64)) - } else { - // 66 = 64 hex chars + 0x prefix - format!("{word:#066x}") - } -} - -/// Convert a U64 to String as an 8-byte 0x prefixed hex string. -pub fn u64_to_padded_hex(word: U64) -> String { - if word == U64::ZERO { - // For 0 zero, the #066x formatter doesn't add padding. - format!("0x{}", "0".repeat(16)) - } else { - // 18 = 16 hex chars + 0x prefix - format!("{word:#018x}") - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_u256_to_padded_hex() { - assert_eq!( - u256_to_padded_hex(&U256::ZERO), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - assert_eq!( - u256_to_padded_hex(&U256::from(1)), - "0x0000000000000000000000000000000000000000000000000000000000000001" - ); - } - - #[test] - fn test_u64_to_padded_hex() { - assert_eq!(u64_to_padded_hex(U64::ZERO), "0x0000000000000000"); - assert_eq!(u64_to_padded_hex(U64::from(1)), "0x0000000000000001"); - } -} diff --git a/crates/edr_eth/src/withdrawal.rs b/crates/edr_eth/src/withdrawal.rs deleted file mode 100644 index 7456459bb0..0000000000 --- a/crates/edr_eth/src/withdrawal.rs +++ /dev/null @@ -1,22 +0,0 @@ -//! Ethereum withdrawal type - -use alloy_rlp::{RlpDecodable, RlpEncodable}; - -use crate::{Address, U256}; - -/// Ethereum withdrawal -#[derive(Clone, Debug, PartialEq, Eq, RlpDecodable, RlpEncodable)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -pub struct Withdrawal { - /// The index of withdrawal - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub index: u64, - /// The index of the validator that generated the withdrawal - #[cfg_attr(feature = "serde", serde(with = "crate::serde::u64"))] - pub validator_index: u64, - /// The recipient address for withdrawal value - pub address: Address, - /// The value contained in withdrawal - pub amount: U256, -} diff --git a/crates/edr_eth/tests/receipt.rs b/crates/edr_eth/tests/receipt.rs deleted file mode 100644 index b6ebb38518..0000000000 --- a/crates/edr_eth/tests/receipt.rs +++ /dev/null @@ -1,48 +0,0 @@ -#[cfg(feature = "test-remote")] -mod remote { - use serial_test::serial; - - macro_rules! impl_test_remote_block_receipt_root { - ($( - $name:ident => $block_number:literal, - )+) => { - $( - paste::item! { - #[tokio::test] - #[serial] - async fn []() { - use edr_eth::{remote::{RpcClient, PreEip1898BlockSpec}, trie::ordered_trie_root}; - use edr_test_utils::env::get_alchemy_url; - - let client = RpcClient::new(&get_alchemy_url(), edr_defaults::CACHE_DIR.into(), None).expect("url ok"); - - let block = client - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::Number($block_number)) - .await - .expect("Should succeed"); - - let receipts = client.get_transaction_receipts(block.transactions.iter().map(|transaction| &transaction.hash)) - .await - .expect("Should succeed") - .expect("All receipts of a block should exist"); - - let receipts_root = ordered_trie_root( - receipts - .into_iter() - .map(|receipt| alloy_rlp::encode(&**receipt)), - ); - - assert_eq!(block.receipts_root, receipts_root); - } - } - )+ - }; - } - - impl_test_remote_block_receipt_root! { - pre_eip658 => 1_500_000u64, - post_eip658 => 5_370_000u64, - eip2930 => 12_751_000u64, // block contains at least one transaction with type 1 - eip1559 => 14_000_000u64, // block contains at least one transaction with type 2 - } -} diff --git a/crates/edr_evm/Cargo.toml b/crates/edr_evm/Cargo.toml deleted file mode 100644 index 7f6f7d98fd..0000000000 --- a/crates/edr_evm/Cargo.toml +++ /dev/null @@ -1,65 +0,0 @@ -[lib] -bench = false - -[package] -name = "edr_evm" -version = "0.3.5" -edition = "2021" - -[dependencies] -alloy-rlp = { version = "0.3", default-features = false, features = ["derive"] } -async-rwlock = { version = "1.3.0", default-features = false } -auto_impl = { version = "1.2", default-features = false } -cita_trie = { version = "4.0.0", default-features = false } -dyn-clone = { version = "1.0.13", default-features = false } -futures = { version = "0.3.28", features = ["alloc", "async-await", "executor", "std"] } -hasher = { version = "0.1.4", default-features = false, features = ["hash-keccak"] } -indexmap = { version = "2.0.0", default-features = false, features = ["std"] } -itertools = { version = "0.11.0", default-features = false, features = ["use_alloc", "use_std"] } -log = { version = "0.4.17", default-features = false } -once_cell = { version = "1.18.0", default-features = false, features = ["alloc", "race", "std"] } -parking_lot = { version = "0.12.1", default-features = false } -edr_defaults = { version = "0.3.5", path = "../edr_defaults" } -edr_eth = { version = "0.3.5", path = "../edr_eth", features = ["rand", "serde"] } -revm = { git = "https://github.com/Wodann/revm", rev = "451f122", version = "8.0", default-features = false, features = ["c-kzg", "dev", "serde"] } -rpds = { version = "1.1.0", default-features = false, features = ["std"] } -serde = { version = "1.0.158", default-features = false, features = ["std"] } -serde_json = { version = "1.0.94", default-features = false, features = ["std"] } -thiserror = { version = "1.0.38", default-features = false } -tokio = { version = "1.21.2", default-features = false, features = ["macros", "rt-multi-thread", "sync"] } -tracing = { version = "0.1.37", features = ["attributes", "std"], optional = true } - -[dev-dependencies] -anyhow = "1.0.75" -criterion = { version = "0.4.0", default-features = false, features = ["cargo_bench_support", "html_reports", "plotters"] } -edr_test_utils = { version = "0.3.5", path = "../edr_test_utils" } -lazy_static = "1.4.0" -paste = { version = "1.0.14", default-features = false } -serial_test = "2.0.0" -tempfile = "3.7.1" - -[features] -bench-once = [] # limits the benchmark variants to one -test-remote = [] -test-utils = [] -tracing = ["dep:tracing", "edr_eth/tracing"] - -[[bench]] -name = "database_commit" -path = "benches/state/database_commit.rs" -harness = false - -[[bench]] -name = "state_clone" -path = "benches/state/state_clone.rs" -harness = false - -[[bench]] -name = "state_debug" -path = "benches/state/state_debug.rs" -harness = false - -[[bench]] -name = "state_ref" -path = "benches/state/state_ref.rs" -harness = false diff --git a/crates/edr_evm/benches/state/database_commit.rs b/crates/edr_evm/benches/state/database_commit.rs deleted file mode 100644 index 3b3cc63f6d..0000000000 --- a/crates/edr_evm/benches/state/database_commit.rs +++ /dev/null @@ -1,106 +0,0 @@ -use criterion::{criterion_group, criterion_main, Criterion}; -use edr_eth::{Address, Bytes, U256}; -use edr_evm::{AccountStatus, HashMap}; -use revm::primitives::Bytecode; - -mod util; -use util::{bench_sync_state_method, state_prep_no_op}; - -fn bench_database_commit(c: &mut Criterion) { - use edr_evm::{Account, AccountInfo, StorageSlot}; - use revm::primitives::KECCAK_EMPTY; - - #[derive(Debug, serde::Deserialize)] - #[serde(rename_all = "camelCase")] - struct AccountState { - #[serde(deserialize_with = "edr_eth::serde::optional_u64::deserialize")] - nonce: Option, - balance: Option, - storage: HashMap>, - code: Option, - storage_cleared: bool, - } - - let mut accounts_to_commit: HashMap = HashMap::new(); - let json_accounts: HashMap = serde_json::from_str( - &std::fs::read_to_string( - "benches/state/fixtures/accounts_changed_in_mainnet_block_17295357.json", - ) - .unwrap(), - /* a fresh set of account updates can be retrieved via, eg: - BLOCK=17295357 \ - HARDHAT_EXPERIMENTAL_VM_MODE=ethereumjs \ - HARDHAT_RUN_FULL_BLOCK_DUMP_STATE_TO_FILE=../../crates/edr_evm/benches/fixtures/accounts_changed_in_mainnet_block_${BLOCK}.json \ - sh -c 'pnpm ts-node scripts/test-run-forked-block.ts $ALCHEMY_URL $BLOCK' - note that this should be done from the packages/hardhat-core directory. - */ - ) - .unwrap(); - for (address, account_state) in json_accounts.iter() { - let mut storage: HashMap = HashMap::new(); - for (location, value) in account_state.storage.clone() { - storage.insert( - location, - StorageSlot { - previous_or_original_value: U256::ZERO, // TODO: something better? - present_value: value.unwrap_or(U256::ZERO), - }, - ); - } - let code = account_state.code.clone().map(Bytecode::new_raw); - - let mut account = Account { - info: AccountInfo { - balance: account_state.balance.unwrap(), - nonce: account_state.nonce.unwrap(), - code: code.clone(), - code_hash: code.map_or(KECCAK_EMPTY, |code| code.hash_slow()), - }, - storage, - status: AccountStatus::Touched, - }; - - account.mark_touch(); - - // TODO: https://github.com/NomicFoundation/edr/issues/143 - if account_state.storage_cleared { - account.mark_created(); - } - - accounts_to_commit.insert(*address, account); - } - - bench_sync_state_method( - c, - "DatabaseCommit:commit", - state_prep_no_op, - |state, _number_of_accounts| { - state.commit(accounts_to_commit.clone()); - - #[cfg(debug_assertions)] - json_accounts.iter().for_each(|(address, json)| { - if let Some(committed) = state.basic(*address).unwrap() { - debug_assert!(committed.balance == json.balance.unwrap()); - debug_assert!(committed.nonce == json.nonce.unwrap()); - if let Some(json_code) = json.code.clone().map(Bytecode::new_raw) { - debug_assert_eq!( - state - .code_by_hash(committed.code_hash) - .unwrap() - .original_bytes(), - json_code.original_bytes() - ); - } else { - debug_assert!(committed.code.is_none()); - } - } else { - debug_assert!(false); - } - }); - }, - &[0], - ); -} - -criterion_group!(benches, bench_database_commit); -criterion_main!(benches); diff --git a/crates/edr_evm/benches/state/fixtures/accounts_changed_in_mainnet_block_17295357.json b/crates/edr_evm/benches/state/fixtures/accounts_changed_in_mainnet_block_17295357.json deleted file mode 100644 index 5a2909739e..0000000000 --- a/crates/edr_evm/benches/state/fixtures/accounts_changed_in_mainnet_block_17295357.json +++ /dev/null @@ -1 +0,0 @@ -{"0x5056b7eb3ab40d9502ed7a38b6d9d3416a96a790":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":null,"0x000000000000000000000000000000000000000000000000000000000000000d":null,"0x1568583e08805eb551e329fbb5fcf7f52840d0f379b5bc32184e5428144f3ede":"0x443dcf72427f3c56bf9195a6dfbfb3cafb3dfb8a57a561f2c7b1d9cb7f5ddb6c","0x92b9e481a8783712fa635f342ee652fdd5ba432bb722cb5971e17bc3937405ac":"0x01df71a494493b4263a4350e7b9d6e47f8974bc13857cf21d7802533b2d8073c","0x6ba10c8c9a5367d577f8bad6c6aa099a5f76bbb081c7ad5d9d4975e549405a00":"0x02c006b666f0bc676370d2f3f33f8df98bbd84a5f73c7ed81e2abb16ff098198","0x0000000000000000000000000000000000000000000000000000000000000006":"0xfffffffffffffffffffffffffffffffffffffffffffffffe8131eaf308580000","0x0000000000000000000000000000000000000000000000000000000000000007":null},"storageCleared":false},"0xb16e2805d080c08d88e660c8d0ffd625e197a5d7":{"nonce":"0x7","balance":"0x17d5a23f6662781","storage":{},"code":"0x","storageCleared":false},"0xcd341e1c30207c12210a3825092bd1abf6ee02a8":{"nonce":"0x66","balance":"0x7c3da18dd1f89fe","storage":{},"code":"0x","storageCleared":false},"0x5ec054b3dab5e84c851f2eacbf9f58bb64daac01":{"nonce":"0x11f","balance":"0xb94305e0fe07b063","storage":{},"code":"0x","storageCleared":false},"0x95222290dd7278aa3ddd389cc1e1d165cc4bafe5":{"nonce":"0x38bbe","balance":"0x6d8227b6d4486fe2","storage":{},"code":"0x","storageCleared":false},"0x73471eef382b669185c8b053a1c993afd81a99a1":{"nonce":"0x85","balance":"0x155e8c589d1ddc3","storage":{},"code":"0x","storageCleared":false},"0x5d0c406c666275bd8ab8bb3fbd0ac8d302bb815b":{"nonce":"0xd25","balance":"0x76443e7aefa1bbc","storage":{},"code":"0x","storageCleared":false},"0xdac17f958d2ee523a2206206994597c13d831ec7":{"nonce":"0x1","balance":"0x1","storage":{"0x79f0232d4607acd6c4faef6e48a4d83dd5e342fbd9dba6f0f3ca56f73ace5e75":"0x01553d3e67","0x9fbcc09c543a36cd917574b31e71c8069a4c25df01755d043305fc25ca6a5122":"0x43ee9830","0xfe84ff7695d87ccac35b50a3b46ccd56b3d64fb684d92145c3bbaa302527f004":"0x6b50d9f1","0x60b9de5049cfb5f2cbb9be282bd5b244ba90ee21b42f69fa328564de397cce2c":"0x178c41fa","0x361f9cc3c280c627f82869bb13a5f8e962ffcd36369d4f26b614edd2dbe3e9f3":"0x04a817de7d","0x0be59b254a92a463d242c1dabf7ae21faf14c58fc07dae37cf59bf8002e059c8":null,"0x53d8a4bdc24a86646a43cbfdd49371bbab497e3478650e5fc7e831fb6d2c6cf2":"0x98c313afc6","0xd2cbd1dc2591e9c4a7316123ad6db3a7ced92eb0105cd2fa7f54c16490a06ecd":"0x135db34ffe","0x41544e5c037b91ac90ed0eef3e83d8b312076c295b72cd5b9362f87d5cb0c2c1":"0x1047022680","0x9072d126926472a4a3b4c41ced38519fd683d8fcc056ca5628b2a0b5ed1876aa":"0x1a6dd1711c7d","0x5f79eb83d0e8105207dc14bde0aac6084cef59c63f14d7386aac7affbfd1e137":"0x0190fef4f9","0xd6a002188826c059a3e0531a31a8935948ea94710819f9a25b55a4137326d35d":"0x3edcd86473","0x102546ed88f429832d729124dcdf697cf7e147a64d7c620d4d4e03554d0249de":"0x1dce2850","0xa45319c65eb0a605ee6eb8056d111ae2f2843b36a7e8cda85f574916c8585db1":"0x27ea2de6a5e8","0xf212c3a7e819373cd554d91e9b344b41b301151e9467829ec3ee2de4b2b48dc1":"0x05e69ec0","0x4966c331fd21bb95e5096f54ff5bc865ffddab6a0f3c4edcb615c80b8d472ba5":"0x5f0d18585dfc","0x52b711d5e52e687605344979f59d9fc228604c9dc580c2102001da2395e2a51e":"0x40c62f10","0xff2acf1040b8375aae9ffa186abdb003c9aec45e162f5b564ab4bc02ff148678":"0x44ff7d273a59","0xb0ca9303ccf9dd70e344f037a0716e49ba72fa7d18334f2aa6c730c325c94920":"0x1e19b040","0x115af3557c23f303d66b8552d70fb91896311442bcbf92ec092051d70de0f363":"0x2662a900","0x2b62f8c6c8d3ba60bddfa9ea8699fccaeb73c6234b443107ad0198ada50a7db7":null,"0x0a9a3fbcf347077144196d55b61b0fef75e990928988967914225d13fcc8fe0f":null,"0x9129f92166ac74b21849b7e8f18753af3d8a0d5c762cce6b060619ce824c34a3":"0xd0116180","0x7d6100df76da5e22a069783a18829d13127df12582e85c6263f048be18d7f4dc":null,"0x2e0a1d3d853fc923af9721de270208b654f9ae8b9689548ec6e5c6f124d9f03a":"0x280af0447e0c","0x3b08238cf0b32ca31ce19b70950cbef0c31342d77f84039d852b71196f53facc":"0x29e0bbff95","0xdf70affd7af96966d2670c0f3ed33a9da6b177986dc23d985c9fbdd265f954a7":"0x58718364f5d0","0xbed935be2794c8c77c8480d401b35134d9b88aebb6970ed106be47cb10cbabff":"0x1237c5b6","0x92e2c882fe0f8fdcec604dacb915e6380caf458e6a466e88ab149d0652a2a25c":"0x24a23f5cfbf8"},"storageCleared":false},"0x4aaa7135f9dd8abfd14426b77843410438a15b39":{"nonce":"0x117","balance":"0x2e3058cabc7009","storage":{},"code":"0x","storageCleared":false},"0x276cdba3a39abf9cedba0f1948312c0681e6d5fd":{"nonce":"0x84f9","balance":"0x17772df3f91a9189e","storage":{},"code":"0x","storageCleared":false},"0x6e6aada54c36f032969ae42b4b2c77b44e450534":{"nonce":"0x8","balance":"0xa484dda49161eae3","storage":{},"code":"0x","storageCleared":false},"0xf1182229b71e79e504b1d2bf076c15a277311e05":{"nonce":"0x1","balance":"0x0","storage":{"0x4940e22f2a61bf2c69cd0d74cae64bfdb49213c4928212a72844540d3db0af7d":"0x754b2d1e99b481cc0799","0xb39e9ba92c3c47c76d4f70e3bc9c3270ab78d2592718d377c8f5433a34d3470a":"0x01000000000000","0x3b12e2a760a8b636ef13a6e553551355fde7ba987544bb1137c0af356b020234":"0x0788e4b6877bfc99c7d0"},"storageCleared":false},"0x2addef41461534800cb70b4a95d3449d683f8476":{"nonce":"0x0","balance":"0x23d8096b200f57bd","storage":{},"code":"0x","storageCleared":false},"0x05bc96a0e64e7e74a74f8be6f75fc5bd74cda3b3":{"nonce":"0x8","balance":"0x7076f3d4b06d65","storage":{},"code":"0x","storageCleared":false},"0x6d6c389075986f3ebe01d089b04a57638ae79fd4":{"nonce":"0x2","balance":"0xf199426ce3d178","storage":{},"code":"0x","storageCleared":false},"0x7d8146cf21e8d7cbe46054e01588207b51198729":{"nonce":"0x1","balance":"0xdacd20879814926","storage":{"0xb2a6ed63c8df48b18d3d5b7de64897e6e0868f134d00d43ea08a4ac369a4e2c6":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0xbfc1edaded6d13e367a1ad1402f777bbb7a5463f":{"nonce":"0x10","balance":"0x20899b6d42cb17","storage":{},"code":"0x","storageCleared":false},"0xfe38f00d9a3d1fe4268d03f055b9d55ffb26f7e8":{"nonce":"0x1","balance":"0x6b94a2ed9ad4000","storage":{},"storageCleared":false},"0xfacd33b0b818b677738b99267aecd13215dfeadc":{"nonce":"0x2a","balance":"0x1c246a651c24793","storage":{},"code":"0x","storageCleared":false},"0x28c6c06298d514db089934071355e5743bf21d60":{"nonce":"0x66aee1","balance":"0xe3a3b41eddec7443f10","storage":{},"code":"0x","storageCleared":false},"0xb9d351e1f769dd3d27d47f7a77e1d38e0abe5684":{"nonce":"0x158","balance":"0x62be368207295c1","storage":{},"code":"0x","storageCleared":false},"0x3fe476aaa285c3a24fe20fb296a3a5d5189a9eb8":{"nonce":"0x1","balance":"0x0","storage":{"0x5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7":"0xa38a6807f55c3d934dda08"},"storageCleared":false},"0x0d189163600c7e8ac7c50fc04fdc72fe4358422d":{"nonce":"0x4e9","balance":"0x3bfbe55e3c19f17f","storage":{},"code":"0x","storageCleared":false},"0x936e0f87e42f418f22e5d99fe929dfbd78243bd0":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x24d4bd055ca93e9fb0e0c0a200000c6373afa96c4ec8","0x000000000000000000000000000000000000000000000000000000000000000a":"0x39024fd9bb3a376af85c","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb08cb36d2672d5ea931d5e78baba800000000000016c64671ebc5f7a9"},"storageCleared":false},"0xd83ee8fa7806a97f091cc3fb41a204c1b57ea1cd":{"nonce":"0x1","balance":"0x0","storage":{"0x25c0d1bd88c496bfd628a63275ed4f35c74673e493f3a15a2c3e4aa828862113":"0x08e8402c82655f347d63d4","0x04568f579e95cbfe01f28c948ef9fc38dfc35981218e72d095f80436619d6477":"0x4f8a6217f962b114294c6361"},"storageCleared":false},"0xb0d54c702fc772e82f8fb586810c0580710dced6":{"nonce":"0x4","balance":"0xe91bee349350a7","storage":{},"code":"0x","storageCleared":false},"0x75c168727666c8f2254c9f7561c53ba9c7b00681":{"nonce":"0x1","balance":"0x2d12c302d348475b","storage":{},"storageCleared":false},"0x4d224452801aced8b2f0aebe155379bb5d594381":{"nonce":"0x1","balance":"0x0","storage":{"0x5a487aff099fdb9bdbbe24c0a1f715ba19809799b929663b46f0f8b34e914ca4":"0x8b8b9a626fca87e7e20df3","0x410ca27d10f5d66105fe7d3dad3cd2d83c9f95227aed8501a83b3e26e0b55ec0":"0x0712f4e5b88642098c"},"storageCleared":false},"0xffa397285ce46fb78c588a9e993286aac68c37cd":{"nonce":"0xd46bf","balance":"0x0","storage":{},"storageCleared":false},"0x708c71f07baf6e67365b526c6698e2c85eb518d2":{"nonce":"0xfd","balance":"0x7ed672f040318c9","storage":{},"code":"0x","storageCleared":false},"0xfa46908b587f9102e81ce6c43b7b41b52881c57f":{"nonce":"0x23ca","balance":"0x7bfc85d1731a327f","storage":{},"code":"0x","storageCleared":false},"0x2c169dfe5fbba12957bdd0ba47d9cedbfe260ca7":{"nonce":"0xe272","balance":"0x164539083aafa260c","storage":{},"code":"0x","storageCleared":false},"0x967b0c95295ead8faef70d26a7846aecd349aaff":{"nonce":"0x1","balance":"0x0","storage":{"0x8b961c7b5f420ac3d53e482b008bb758a3a1a141c5a55b5fe23e289c233c6f78":"0x0515c23c","0xd9334c04abedbeaadde6a54b190c6ceb50565d93e102be20b4c5745c5b6f0918":"0x3b601a3510bf8b67fc00"},"storageCleared":false},"0x044501db401398b5262204e45d02c0e7089daa8e":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x0477f78cdd4ff82f01a12ba46dccf471ac","0x000000000000000000000000000000000000000000000000000000000000000a":"0x235bc17cb4f97cfc43370545723c574d48","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000001d2223accea739b74000000000003f00b5f21ff120fce"},"storageCleared":false},"0x0000a26b00c1f0df003000390027140000faa719":{"nonce":"0x1","balance":"0xef542870655d336dd","storage":{},"storageCleared":false},"0x694114618f072e8032c6904ee53bb05b234ad2d2":{"nonce":"0x63","balance":"0x1292189c35b9bdb","storage":{},"code":"0x","storageCleared":false},"0xdec0c57471dc56f76d54e92aef455a57ff5fcb26":{"nonce":"0x0","balance":"0x89d864f9490000","storage":{},"code":"0x","storageCleared":false},"0xd548f81a909708e8102d7dfacf95bfd8cc571279":{"nonce":"0x0","balance":"0xddea6bfbcd2414","storage":{},"code":"0x","storageCleared":false},"0x3b3ae790df4f312e745d270119c6052904fb6790":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x1ce270557c1f68cfb577b856766310bf8b47fd9c":{"nonce":"0x1","balance":"0x0","storage":{"0x1ca061e1e3292b799b8f98d539c8ffa67de8d9dd287ffb2134186979bdabb11f":null,"0xe4237cafddc4cdad73c74fb4b79436485d99a2e9fc398cc16d72d138ffae441f":"0x06025262bbf07c6302e5a6e5d0","0x4fd25dc08ea83672bd3b4765f22fc40b4f6122be36fc5eb42be18e93f4b3202d":"0x069a7bb35534742741d31822","0xfc0f0d5fbb81adb1d7bc9389e8e2276c27e125188bada2a793ad07ace6376579":"0x08e889a39fb8685cb52b94d734"},"storageCleared":false},"0x388c818ca8b9251b393131c08a736a67ccb19297":{"nonce":"0x1","balance":"0x58a7658ea3bc6cf54","storage":{},"storageCleared":false},"0xea5950917fc7c714149fa501ce1633a9f1ef3277":{"nonce":"0x6","balance":"0xec16665cdae72","storage":{},"code":"0x","storageCleared":false},"0x7123a624a34eebf95e7352c5ae18d89a1b0a2b47":{"nonce":"0x156","balance":"0x124b83e554539884","storage":{},"code":"0x","storageCleared":false},"0x4f77a438c9c7b91cf52b89777b98fe04b2684389":{"nonce":"0x42","balance":"0x26db992a3b180000","storage":{},"code":"0x","storageCleared":false},"0x516e2758b044433371076a48127b8cfa7b0bdb43":{"nonce":"0x1","balance":"0x0","storage":{"0x715ccb45f3fbedc70caed1d032184f27efa7bda77633f3e5752f260c69a49fc7":"0x02c58af95c4301bc4d93a3034e61","0x3dacd4b0f40de816cebbeab64971da7ea20a6302ffbbd2c6d516e8443fe27977":"0x3ba825a69a6ca2749e177daf"},"storageCleared":false},"0x36a017ef1f7c5ed5843b446ce0fa95448ad4d475":{"nonce":"0x40c","balance":"0x3e9bcf6a54ab18fc9","storage":{},"code":"0x","storageCleared":false},"0x70b20cd9d236171ccbe910eab61b4b1ab02f930e":{"nonce":"0x0","balance":"0x2cfc159df71f800","storage":{},"code":"0x","storageCleared":false},"0xc773222687e21169f207a73fee9c459e5239e4b7":{"nonce":"0xdc","balance":"0xd5aa1ecf2327b0d","storage":{},"code":"0x","storageCleared":false},"0x1ca4713fc4a95f76fcb498b2a5fe8759c53df1a1":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x012320b4f99c108b5b495eca1e565112f8a027e27bc4","0x000000000000000000000000000000000000000000000000000000000000000a":"0x555ca64551e88f7b845daa0c","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb02011077bf95d331154aad7cafb2000000000011a14bf1c32f46776f"},"storageCleared":false},"0x699a3259b25d13d5e6ee108e6c14af96306ea0b5":{"nonce":"0x51d","balance":"0x2ef0ad65a17604e8","storage":{},"code":"0x","storageCleared":false},"0x4dc377c2b63d06ff47bbd2b3b1177cfac1906b1e":{"nonce":"0x1","balance":"0x0","storage":{"0xa4fbf26a0aa0f0f7586eb556b24011240f012900a57254a99b6f52abbae5bb99":null,"0x0000000000000000000000000000000000000000000000000000000000000002":"0x03bb3144cbbdd5ea5c3d80","0x0000000000000000000000000000000000000000000000000000000000000004":"0x018a","0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd636":"0xd2eda519196fb6baa1aa602820130ef3093f9c23","0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd637":"0x3a972e88dcc1e099d740","0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd638":"0x646bb67b"},"storageCleared":false},"0xd1d2eb1b1e90b638588728b4130137d262c87cae":{"nonce":"0x1","balance":"0x0","storage":{"0x552d81f5c36c4b4697dae3df6b63accacb93c77181f844531f7682304b52056d":"0x9896b0","0xa0e022dc67fa206146481c5eb374aa0d31e15d32fc2fa7d9749f94234517010f":"0x1c1707e880e8","0xc65d9d02022c57f9a90b3bb42a851ec51a0720f1aa2adb124f825d5566936411":"0x0e8f5820e1cb6e","0x4e039e42fa5b15db1b8e62b012a4fc56d303866b065f22d01a7b95d701fadfd8":"0xe3908ee32b"},"storageCleared":false},"0x7821db8c2997c8df515b5c3570f6a5c3efa7e39f":{"nonce":"0x4","balance":"0x44a4d333c0b1280","storage":{},"code":"0x","storageCleared":false},"0xda74aeb14546b4272036121aed3a97515c84f317":{"nonce":"0x1","balance":"0x0","storage":{"0x9da90d0ac8b136be039598c681c780eac933ddb31c34429fa6a31e3c5ec72f93":"0x01"},"storageCleared":false},"0x25d0eae2d1958006e529b55105d113b226f4fecf":{"nonce":"0xa","balance":"0x483cfbe670fac8","storage":{},"code":"0x","storageCleared":false},"0xae2fc483527b8ef99eb5d9b44875f005ba1fae13":{"nonce":"0x7a108","balance":"0xf973ada06832b9b1f","storage":{},"code":"0x","storageCleared":false},"0x32b86b99441480a7e5bd3a26c124ec2373e3f015":{"nonce":"0x1","balance":"0x0","storage":{"0x660b4f9675ac0fd6d542b9fef12c3b14cfafa1a539f62ed9b307bef6f18e190a":"0x67cc8a832e32db082b878000","0x65b9949d6f1b353ac49610b3cb2738915d1d603bc6f410b20bbd62ae8320c58c":null,"0xeb446943c767298bdb8fcaa715b72549d7226f272a6e59871fa4f4a0f867205e":"0x02169348d7b38bed43084f1cc2b6"},"storageCleared":false},"0x6fe2a59cbf0d1929d0283b9bd577ce385f92dfd1":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x010000010001000003e63300000000000565cce1579ad1fac2f8a35b8bd6e2","0x332163f6653bbe15f4e60326835d57ef631c08cadb40b55688b8c772e94a0d16":"0x10df6d811ba799a181aba8961d58","0x332163f6653bbe15f4e60326835d57ef631c08cadb40b55688b8c772e94a0d17":"0x0110dddd1539f20cb78fcd820fa6e212c1e751","0x332163f6653bbe15f4e60326835d57ef631c08cadb40b55688b8c772e94a0d18":"0x016467bb3b0000000000000000000000038fc7148bc6a018a4000010a3297880","0x0000000000000000000000000000000000000000000000000000000000000008":"0x0100000000000000000000000396288a07e9799cdc000010bd8534306467c1fb","0x0000000000000000000000000000000000000000000000000000000000000004":"0x0127d0d3bb1f1eaa63c4b8","0x0000000000000000000000000000000000000000000000000000000000000002":"0x0113d5d8a14a8e60f4925131c2bd94a09d86a8"},"storageCleared":false},"0x22d6dcd96bf26dd1a75108f72d698e3790901138":{"nonce":"0x1e","balance":"0xdcb5ba6f311a5960","storage":{},"code":"0x","storageCleared":false},"0x8d1f2ebfaccf1136db76fdd1b86f1dede2d23852":{"nonce":"0xf552","balance":"0x7b2c5346c7eb0cc6b","storage":{},"storageCleared":false},"0x41722457cbfa517bd1070d7e64e00bc71539e4ce":{"nonce":"0x68b","balance":"0x173fe8d2ba0c16c44","storage":{},"code":"0x","storageCleared":false},"0xb1e8df7e585b1ffed100843ea99b54324db49d67":{"nonce":"0x1","balance":"0x1bc2561dd29e0ae","storage":{"0x51fc27c8101ab2eb704948eb0951a657aaca27861b8b81a20d106c696b05041d":"0x02df915ac3ca54bde5189743","0xd35ff8a50820e516920570761c8a184c276a474a18478d360dd075098b08e2b8":"0x14bddbdd0e5dc5c152efcb","0x0708f431b05676b52a68cb09c3058dd6e762f57c04b4dfa0d73f0f9387b54861":"0x01fb70673d48ee01c30e0a","0x44a870d3062e91bb3350c4a44bb7650147d8d74d9086d622d7f4ac206a7b4d06":"0x0b07aad447c81ef7520706c0","0x8c29fc9b544941c1ec66254f0025502ce62002d80e1fa4b3d8355e3e6ae4ad5e":"0x0adb64c554aaaa28ccecfbe0","0x19e8618beb5d8abd75842f932a4bef76f0750dee17b3c6fa5fb8c8444b1cdee3":"0xfb1981d124327bd122af","0x5c9e437f542108dd2a8adbb25e778429d7155208ac90320db7b94137124918bb":"0x020186b6ad397a9eb05492","0xbeb901d48de7c60d548f95d58ec6cb298c2686b2ac1764132ad10a7265b88233":"0x0228763218acfa53a2d62b","0x9593e97882242f4f34feccf63004f304a81c667e04bed86f6139d5e914ab8f03":"0x7c08838c249cd18db5f053","0x505415fba146b59be927c4ff1346f8b5568ae9b408bfa400a4f5c41addcac43c":"0x02250cfa0c3e61e40bdc08","0xf9cddc607e91a1a9314dbe5bd1c31743a2ff345e00ed5f46023a9adf6c34066f":"0x01f3fb3153b1463535f515","0xb2d2a3342dbd1fe13825e435401fdad260dac1eeda8094fa0abaa4c347dd512c":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0xf00f1bab37de08b58789493673952358f4e8675795bf38dbfdba6f55fd82ac9c":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x000000000000000000000000000000000000000000000000000000000000000b":"0x6a32e790d87a04a1bd29c2","0x000000000000000000000000000000000000000000000000000000000000000c":"0x069efcac4f8153186596f7","0x000000000000000000000000000000000000000000000000000000000000000d":"0x0b369f4efca179d3932f62","0xfa3c1aa689002ab0c2c3e902ccdc7b3e5a3e462a0274540c9c01cb0bd0889e01":"0x01f86f9f8316d8521d2c6e","0xbe6a3e130d2575213e529c6abf0b7b086b1b6043845096a9202fc80fbf704f04":"0x01fe781294af1397cf7c40"},"storageCleared":false},"0xc662c410c0ecf747543f5ba90660f6abebd9c8c4":{"nonce":"0x1","balance":"0x111c996910b0e643","storage":{"0x71a8ef1b1265359d77973c3524afac225c0a0d829a0d4da5cac3b34532019fed":"0xe271","0x71a8ef1b1265359d77973c3524afac225c0a0d829a0d4da5cac3b34532019fec":"0x05146a507835ff578d0897d507f5481adb1d684e3c1a53b1669b4f66775cd816","0xb8c5247e6c154c790e6df371f30cabe42fb53ca427052c8d7078d5ee02f1955c":null,"0x2c38b2aef5053766ae46b7ae2d7e225c24a0c4c42140721d305658ab83504e49":null,"0xdaf611a9d2dcea965e7ff10c1eb188262daac3b2e106a397ee6c939a379dfe89":null},"storageCleared":false},"0xbc33bda38fe8382053b2fbc2e8b511497baf2d10":{"nonce":"0x15b","balance":"0x5b771bf7943944d0","storage":{},"code":"0x","storageCleared":false},"0xcfc278afdb04ff1d7492fffd3c1222cbb9423171":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x3dcae18af0547840a4646c9b7b75c52360","0x000000000000000000000000000000000000000000000000000000000000000a":"0x184b44ae6e34704cd52990ffe7acc8","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000000000077371410ce86265000000000000000205a13d0ed9f4a"},"storageCleared":false},"0xebbec4a96db40db23735301c4ed74d3b320ea4d6":{"nonce":"0x215","balance":"0x174f34169099f4fe","storage":{},"code":"0x","storageCleared":false},"0x60e4d786628fea6478f785a6d7e704777c86a7c6":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x000000d40b595b94918a28b27d1e2c66f43a51d3":{"nonce":"0x1","balance":"0x248f875e7d4875","storage":{},"storageCleared":false},"0x7163436b8efffb469f6bb81cc908b1661d4795e6":{"nonce":"0x1","balance":"0x0","storage":{"0xd34ac2280c52447829eb4735cb22f7b42b33776b004924995d0d330e045d2ffc":"0xec64309f31f16c38e7a679ecca","0x8ea8b76a47274fdcd63d44ce4e8ca745ec840cb1c66ce7753662d234a9f0717f":"0x04055b28b38697b67a78dabae4"},"storageCleared":false},"0x7a250d5630b4cf539739df2c5dacb4c659f2488d":{"nonce":"0x1","balance":"0x58d15e17628000","storage":{},"storageCleared":false},"0x499a1b7cd389033ceb0c7a0fadf5161adc068592":{"nonce":"0x623","balance":"0x109cabfad67cec3d","storage":{},"code":"0x","storageCleared":false},"0x4b4e14a3773ee558b6597070797fd51eb48606e5":{"nonce":"0x18f7e","balance":"0x23c1cb94821db9c6e68","storage":{},"code":"0x","storageCleared":false},"0x53885c5a3c52fe0e6649dc646f583a9ecf8ff381":{"nonce":"0x28","balance":"0xe685daa2ec569eb","storage":{},"code":"0x","storageCleared":false},"0x2c8cd502b212f8f6470b2a5892e4707ae42d1803":{"nonce":"0x56","balance":"0x9159a4ebcef26","storage":{},"code":"0x","storageCleared":false},"0x81232f737a7ceea2e63f7638b2ed78118aba810e":{"nonce":"0xb9","balance":"0x2641a98aefbc8e9","storage":{},"code":"0x","storageCleared":false},"0x95ad5d38ad6bb17500e9a57bfeb6569b36a94ea5":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x0100000100010000fc692b0000000000000000000082fc0558086ec0416b7a","0x0000000000000000000000000000000000000000000000000000000000000008":"0x010004efa80000000000000008777cded4c81837bbffff92f51f14606467c1fb","0x0000000000000000000000000000000000000000000000000000000000000001":"0x01a8250fc61babff789f0ce952297e80477165"},"storageCleared":false},"0x7b56d22ab77d0fc74bcb9fc032fb0f2c70ccf0fd":{"nonce":"0x1","balance":"0x770407bc5efc087","storage":{},"code":"0x","storageCleared":false},"0xe8290f343336979d372f53aee1fcc2d06a8b4ddc":{"nonce":"0x3","balance":"0x69f302171165e6","storage":{},"code":"0x","storageCleared":false},"0x32400084c286cf3e17e7b677ea9583e60a000324":{"nonce":"0x1","balance":"0x15484eff9e984ba6452d","storage":{"0x8e94fed44239eb2314ab7a406345e6c5a8f0ccedf3b600de3d004e672c33abf4":"0x01","0xbfb28c81204e63a90bb21c3a5bce93c4bed82b5f6cbe2022a82a93787fbc1793":"0xd392ac7d3f1b314ddb7e65456c30bf3e71fe5e8ef1d259fa4f1d0b47df81ee68","0xbfb28c81204e63a90bb21c3a5bce93c4bed82b5f6cbe2022a82a93787fbc1794":"0x6467c1fb","0x0000000000000000000000000000000000000000000000000000000000000011":"0x0acca1"},"storageCleared":false},"0x6cb3ee90c50a38a0e4662bb7e7e6e40b91361bf6":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x4e9c9bf9c649b2b7a73caebe898c552565972f43":{"nonce":"0x0","balance":"0x13204b3bcfa8fd2","storage":{},"code":"0x","storageCleared":false},"0x0c0f7324b836d7bde5c7c302761dc3d50c9d6fc7":{"nonce":"0x2","balance":"0x326b0cb765158f","storage":{},"code":"0x","storageCleared":false},"0xb4bc5f9280714ab0404b548ba8231dbd8637efe8":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0xf261df950581860f79c99be780306420","0x000000000000000000000000000000000000000000000000000000000000000a":"0x1063bf365d4de8870bf5b389680b2280","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb0000000000022061156702a31ad0000000000000e3e2331ed5d030f1"},"storageCleared":false},"0xd0205b4f442a2a4c4fb01cc94f8b5bf1dfd29458":{"nonce":"0x10e0","balance":"0xcf1e31c37cdea","storage":{},"code":"0x","storageCleared":false},"0xd97a2bd632d32e85ebf88a705bdc47e3a25787ab":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x0100000100010000fd649c0000000000000000000cc8c54a2ca0848a98f710","0x0000000000000000000000000000000000000000000000000000000000000008":"0x01000000000000000000000002e92391a7be699600fffffb6e15eebc6467c1fb","0x0000000000000000000000000000000000000000000000000000000000000002":"0x9ac8a43a0b22a6bb4ba9eb7e5a0e"},"storageCleared":false},"0xd6551d136146f5cf40f50ae8f41681cfcd140448":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x4976a4a02f38326660d17bf34b431dc6e2eb2327":{"nonce":"0x292b36","balance":"0x48d0348a9ae9113368a","storage":{},"code":"0x","storageCleared":false},"0x540948e252f1785615af6ebebec2498dba5a8a6b":{"nonce":"0x1","balance":"0xbda380be515a90","storage":{},"code":"0x","storageCleared":false},"0x8d44af9159aede57018cafd602c6a33344e8c6fc":{"nonce":"0x24","balance":"0x22a1d265e1a08a","storage":{},"code":"0x","storageCleared":false},"0x7167aeabf6840a932c95fee4c4b2d3a7b240f58f":{"nonce":"0x1","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0x8376ac6c3f73a25dd994e0b0669ca7ee0c02f089":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x4ec33287b9c150cde9da415c33f29b2377ce0fb9":{"nonce":"0x268","balance":"0x249f7f5a98d9685","storage":{},"code":"0x","storageCleared":false},"0xb023820d514492b5a8467ac55d1e76045ee4ef67":{"nonce":"0xc3","balance":"0xae663455a0571f","storage":{},"code":"0x","storageCleared":false},"0x0000000000000000000000000000000000000001":{"nonce":"0x0","balance":"0x2e5a8b27c37817b26","storage":{},"code":"0x","storageCleared":false},"0x54d975bcc5c1ce6a141ee0f8fd6771c596e29298":{"nonce":"0x59","balance":"0x57cbeb879978de","storage":{},"code":"0x","storageCleared":false},"0xc1bb2c3696e8119ea63f813e3d2423bd6e34a0fa":{"nonce":"0x60","balance":"0x11139ccd66de0c9","storage":{},"code":"0x","storageCleared":false},"0xddd162e45c007ba3aa47f50dd1feb71391d99a44":{"nonce":"0x2","balance":"0xa5b8648d8f4a3","storage":{},"code":"0x","storageCleared":false},"0x4fcc11b5d5cffe2cc96e85677d0a08adaf066469":{"nonce":"0xf0","balance":"0xd6c78edc39f8","storage":{},"code":"0x","storageCleared":false},"0x983b4407a83e8757435dbd03f94e7b3702b9d9b1":{"nonce":"0x169","balance":"0xae9c5390b2c0a7e0","storage":{},"code":"0x","storageCleared":false},"0x56099566d33c60f141649938356d48baa02835f4":{"nonce":"0x0","balance":"0x1a456dab2ce110","storage":{},"code":"0x","storageCleared":false},"0xad1c8f7882df055e38af9dc41c8895ba8746e05c":{"nonce":"0x69","balance":"0x2def371c38f945f","storage":{},"code":"0x","storageCleared":false},"0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0":{"nonce":"0x1","balance":"0x0","storage":{"0x35aa462e5bf4eec03c1b5fbc2df33992b6027b37dc1bda87034a803074b1102b":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x0c2597a34409fa750a6f27ab4dc0b968b394b7748489175f577d4cb6ca85f4f5":"0x0b087db60c1f9e5becb538","0xd6ebd5c85790afc1277993b919aefb3bb857382d7a9e1cbc7fb7fa72a2bf7a99":"0x0786dbba605dabb800"},"storageCleared":false},"0xd4e4f0a85f8d8f7c0ba36ef676812790eed67603":{"nonce":"0x1","balance":"0x29e1b1075f5a1c2d8","storage":{},"storageCleared":false},"0x2d9d5bd3ea935f0d597cd7ce989ff9f412d8df38":{"nonce":"0x1","balance":"0x0","storage":{"0xc6e545eb98be9d7f8cfc37334604200f73b6e2a8b311878b96e453a3cad30348":"0x6467c1fb","0x5a616d0058606c4d9f7a7efe78777e529c21ea9948054b882e6a2a8cfe4515f8":"0x0fc8cc71631e458b35727511","0x07b1c305be97ed79bd1d537b74190dc6d83cb2c7246b60f6161c32712cbaaa03":"0x28295431386bfee8a3b1b6","0x3c85c4d8a139c5b6435849d0edb2b70e4b05a72b69db60fa6065e8ecdf922f27":"0x42c8b3da47c5b78ead5ac4"},"storageCleared":false},"0x2e9016c0f979acdeee1e024cb4473f01a474476c":{"nonce":"0x318","balance":"0x1661b433914f0115","storage":{},"code":"0x","storageCleared":false},"0x6ca87b5b57c777e395015d24f7b6ec24c50f0316":{"nonce":"0x73","balance":"0x4b9ee0f07152312","storage":{},"code":"0x","storageCleared":false},"0x80381dc381724099d52e3f75e6e8fac13268f314":{"nonce":"0x10","balance":"0x27346583684767","storage":{},"code":"0x","storageCleared":false},"0x8842e445d0acdf5f1f22e01022836cee4ed2b2ca":{"nonce":"0x61","balance":"0xdfeee6129eabea0","storage":{},"code":"0x","storageCleared":false},"0x97dbbca2213607ac880a05f2481c994a387cbee6":{"nonce":"0x1b","balance":"0x451f32aeee4b30bc","storage":{},"code":"0x","storageCleared":false},"0x19d662b40b97660799209764c28dc57f620000d6":{"nonce":"0x6a","balance":"0xad93368f947051e","storage":{},"code":"0x","storageCleared":false},"0x977442cf37efc1064522f96426353a790e283afc":{"nonce":"0x1","balance":"0x8f0fc1ab3693b1a","storage":{},"code":"0x","storageCleared":false},"0x8c2efcd009b863c46492ded8ddf4d3d0279002fb":{"nonce":"0x5e","balance":"0xa5daa05b111ff6d","storage":{},"code":"0x","storageCleared":false},"0xb28846d199d80b0aae943ab69f1ea786617f4dfc":{"nonce":"0xbe","balance":"0xd33ef833904b0a","storage":{},"code":"0x","storageCleared":false},"0x27c307696fb2693496b46230514301d6d4f158c0":{"nonce":"0x2cd","balance":"0x2d305811e87ba73","storage":{},"code":"0x","storageCleared":false},"0x00204127ead82d033ca07e683dc458ff7d098481":{"nonce":"0x15f","balance":"0x3b56733241e6fe7","storage":{},"code":"0x","storageCleared":false},"0xadacc5d696263a7b8b9b119b24fcb1b1d57a9c69":{"nonce":"0x0","balance":"0x1aa535d3d0c0000","storage":{},"code":"0x","storageCleared":false},"0x47312450b3ac8b5b8e247a6bb6d523e7605bdb60":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x436ec1e4e9218d2a1bbb8f9da44a11796f9e5965":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000f":"0x01","0x3af85b912f45281b09c119a38ffd6f1bdc5775ca36314bf2b6d509f199573117":"0x010000000000000001","0x9a8e6b6c77f3df580a2566c53960e8dfff7d2e18bbbce6a43b049c15c3a3f16b":"0x02000000006467c1fb80381dc381724099d52e3f75e6e8fac13268f314","0x0000000000000000000000000000000000000000000000000000000000000000":"0x02aa"},"storageCleared":false},"0xb1b4e50f93d6707db0392a03a1982a8886bb9a23":{"nonce":"0x1","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0x28d714c51ada49f591a02881adfe02e7b011b052":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x02f3dd23a6709f27f0d63a93f8","0x000000000000000000000000000000000000000000000000000000000000000a":"0x012948d6c634746c6739ff61ca0fad6446a4b4f8","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb0000000000004172068b6ab01feb00000161aab562f90b7852d8c85c"},"storageCleared":false},"0x82c7a8f707110f5fbb16184a5933e9f78a34c6ab":{"nonce":"0x1","balance":"0x0","storage":{"0x54fa3cf10c25f7745ba6228af288ce55921a5a3be8a9a34044cd4b0a08cf59f3":"0x1c5c4f3855e8e3e9ac82fdba60f18171ea908db5","0x9ed26502bb7738ecc139c7368ad96f055ebacdfe5649814a9c722940e0620f8f":null,"0x748fa9c17a74cf6073929bb5606c86118b36044070352749296346e75d9427bd":null,"0x979b191615bc5f5cd37335a708d09737d43fb9aa35bf18c1432d5cdc80b426eb":"0x05","0xfb270070a2d2767ca932ef8f543bb0de7d3360f5ee576e199af4145e572c93c9":"0x98224340b6ed69","0x1c2756691be76157c52c2d2ada0997647f79401bb76d56b1370f663a995e3059":"0x04"},"storageCleared":false},"0xfc4913214444af5c715cc9f7b52655e788a569ed":{"nonce":"0x2","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000005":"0x01","0x4a0be166aa698a6448ceef41f28665448c6d2f08965608a5d58c7076452c0559":"0x010000000000000000000000025818a300000000000001bf00000000000001bf","0x4a0be166aa698a6448ceef41f28665448c6d2f08965608a5d58c7076452c055a":"0x010e0000000009c1e9d81a840000000000000000000000000000000000000000","0x89ba1f20a3d756715aa8b2903074d3b7a0c043793943ef2c8c190ee17a6b65f2":"0x3f09da8e","0x000000000000000000000000000000000000000000000000000000000000001c":"0xa2c4341ae8458c","0x361ffa77d351d834bbfab5e02607ee77430b6ceb482230606834a271b52e78b5":null,"0x0000000000000000000000000000000000000000000000000000000000000002":"0x1bf9b092d81177"},"storageCleared":false},"0x4504dfa3861ec902226278c9cb7a777a01118574":{"nonce":"0x9ac8","balance":"0x246484d0697d6deb0","storage":{},"code":"0x","storageCleared":false},"0x4c9af439b1a6761b8e549d8d226a468a6b2803a8":{"nonce":"0x42830","balance":"0x186d9e3ace29ae6f","storage":{},"code":"0x","storageCleared":false},"0xc2c862322e9c97d6244a3506655da95f05246fd8":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x01"},"storageCleared":false},"0x5954ab967bc958940b7eb73ee84797dc8a2afbb9":{"nonce":"0x1","balance":"0x0","storage":{"0x1af2652817f9cf56326e4d64a263e34f6702d7d34e089b806285fbcf8ae56016":"0x044413bead3ed284bf03607ed2bc300000"},"storageCleared":false},"0xf645877ab54e5856f39dc90425ae21748f52b5d4":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000002":"0x01"},"storageCleared":false},"0x00000000a82b4758df44fcb124e26a9b441e59a0":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000003":"0x419bb692b85cb410bc4dd0","0x42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd":"0x15b68138d661576e91b9c4","0xba986ec5f8b7af6f83d50aaf5d0aab8423b4c648b713c5e63bcac134f4b3f307":"0x05e8d220eb90edc99e42d8"},"storageCleared":false},"0x823556202e86763853b40e9cde725f412e294689":{"nonce":"0x1","balance":"0x0","storage":{"0xcc0fe2c31e663c66523ab30f4a767eb1ed2cf987cab52c389dc66dd26a52a7e5":null,"0x308391d390c0530308f6390f16bc17f1121d82e60c7bcd68877ec8eb75592c62":"0xa38a6807f55c3d934dda08"},"storageCleared":false},"0x91a0bac9575073b35adaa7c9b09921d71304b5c5":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x24b2c0b7ed9649a1ba4829f0","0x000000000000000000000000000000000000000000000000000000000000000a":"0x0d7cd3b32307ab1b1f7ab5c32751f71942e034aa81bc","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000006ee6e8372347c2dec02c58af95c4301bc4d93a3034e61"},"storageCleared":false},"0x60660e6cdeb423cf847dd11de4c473130d65b627":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0xd37e07db16a21aa82d35eec28eb5bf266408097d":{"nonce":"0x80","balance":"0x73b6a2cd25c560a","storage":{},"code":"0x","storageCleared":false},"0x979207f06ac3b3ef08577fe818271a1b3e012689":{"nonce":"0x1d7","balance":"0x3ff71bbcdeabc28","storage":{},"code":"0x","storageCleared":false},"0xeabd80ed9425a695a147a4c9f9f7596e7af8330c":{"nonce":"0x2","balance":"0x27ddc6ea3e43a540","storage":{},"code":"0x","storageCleared":false},"0xfc2e76d166b2ba576772279745cec03ea0158afb":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x09951b477ec0b7b112007566591a0154","0x000000000000000000000000000000000000000000000000000000000000000a":"0x4ba78a54c4c9abdf196d845ca5bc3398","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000000637eeb18365242aa000000000000ff41c8246c9a8a5a"},"storageCleared":false},"0xf89d7b9c864f589bbf53a82105107622b35eaa40":{"nonce":"0xe6c9c","balance":"0x3e176c7640d10dc1f5c","storage":{},"code":"0x","storageCleared":false},"0x9754f5a0da7db723d0c808a1eec8c9d023768663":{"nonce":"0x333","balance":"0xb396913a2ae0a08","storage":{},"code":"0x","storageCleared":false},"0xe73c594e38054c1ef338a547d515a0c78585d9c5":{"nonce":"0x5e","balance":"0x9541f5450d89c151","storage":{},"code":"0x","storageCleared":false},"0x08cd6f1182dd99198d7b8b139496558f5fcc30c8":{"nonce":"0x36","balance":"0x54fc16355c2451","storage":{},"code":"0x","storageCleared":false},"0x53209d986c0de9c277c1d62423d6363eb73350ad":{"nonce":"0x1","balance":"0x0","storage":{"0xfbe9fc6f6d4940481c1bda90e70f9a81bb4b244a2dc8d1c8488a5625e7986362":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x63e4465e6ab74c0e815da1fed40705b3560b3a66":{"nonce":"0x5","balance":"0x5706db98cbf680","storage":{},"code":"0x","storageCleared":false},"0x17148284d2da2f38c96346f1776c1bf7d7691231":{"nonce":"0x1","balance":"0x0","storage":{"0x1a1b2ecc8dab726adf18fd9ffdc5004b0a46b3638c6df96412fbb51f4e15f3c9":"0x7aa5105fa063149532cfc198f678134993be626e3ff8af14c31eb5259c99bfb9","0x0000000000000000000000000000000000000000000000000000000000000002":"0x0107e7e2006467c0ed0000005ef500000f7ebd00000044d0"},"storageCleared":false},"0xd08623fb2a1f044025eec65886011cf5d0f06b01":{"nonce":"0x1","balance":"0x0","storage":{"0x5740a80d6daefde6e1c7d73a7effad737ca680dd1c0c7b7b6bbd31d430bcf6ba":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x2efaf4c3ddb991f839ed75e726eb489c20561a29":{"nonce":"0x1","balance":"0x0","storage":{"0x5ad560a8cb50e9c454e54aaeb7638ba15f8e8570217e79f17baba8933ada9fdd":"0xbc87f16838341c4221ad0c","0xb39e9ba92c3c47c76d4f70e3bc9c3270ab78d2592718d377c8f5433a34d3470a":"0x010000000000000000","0xb9c9a2bf199256f61e1c3bfdc7c41b0c17bfb44e5890fbbaeae4d3cbd78e605b":"0x08fb9cb1ee6160d375f8e5"},"storageCleared":false},"0x6081258689a75d253d87ce902a8de3887239fe80":{"nonce":"0x6b2f8","balance":"0x1aa78bf5616001c783e","storage":{},"code":"0x","storageCleared":false},"0xbe92b510007bd3ec0adb3d1fca338dd631e98de7":{"nonce":"0x1","balance":"0x0","storage":{"0x138028b06c7fbd6a5c9c2a3cc18d300810e4ea8062a89afaef7f01683d5c5403":"0x81ea464f7a95367df695ed30","0x08beb18e33b7c433a14fda9280e5d91738f4cb554325fe7d6b90aab630d810c3":"0x07abca5a296b248f4569a8"},"storageCleared":false},"0xed8b9f4400fe1afe1fc223d750dedcaf8cb2cf7d":{"nonce":"0x1","balance":"0x1414f9dfe3c68","storage":{},"code":"0x","storageCleared":false},"0x8224b577d47e9eec5e7bd50eccb3504ed6a7ab8a":{"nonce":"0x8d","balance":"0x938c332365fab3","storage":{},"code":"0x","storageCleared":false},"0xc654729a72e0639b14ba26f9ce1c4debd31ef021":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x0e91b75266ba2ed68a5fc6c7c677c57b961f6928","0x000000000000000000000000000000000000000000000000000000000000000a":"0x04ef00eb508fbce12d8bde24fd60","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000008e8402c82655f347d63d4000000000001cfd631b603241f21"},"storageCleared":false},"0x061883cd8a060ef5b8d83cde362c3fdbd8162eee":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x01fb7c9ead1b2d341d88101d6504d767760278","0x000000000000000000000000000000000000000000000000000000000000000a":"0x01394bcfd73607e42bd173f7191e7010","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000000754b2d1e99b481cc07990000000000108287f454d2f7ab0e"},"storageCleared":false},"0x29c830864930c897efa2b9e9851342187b82010e":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x1a93df42bbe11acb17cc7c40","0x000000000000000000000000000000000000000000000000000000000000000a":"0x12bab5663dcb9991a1e05ab421eecf663aacb14dd5e8","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000006c68e3e1b2c63e57a02169348d7b38bed43084f1cc2b6"},"storageCleared":false},"0x27899fface558bde9f284ba5c8c91ec79ee60fd6":{"nonce":"0xe45f","balance":"0x6a13acdc419f81b5","storage":{},"code":"0x","storageCleared":false},"0xe4f9ec13f59c5f89d3c73aff330e430df4b303cc":{"nonce":"0x4a","balance":"0x78d0245fa278a007","storage":{},"code":"0x","storageCleared":false},"0x1e0049783f008a0085193e00003d00cd54003c71":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x66e6c69838d618f40f07d6f795386bfbda078fca":{"nonce":"0x9d","balance":"0x42f3475376b7e7e","storage":{},"code":"0x","storageCleared":false},"0x000000000022d473030f116ddee9f6b43ac78ba3":{"nonce":"0x1","balance":"0x0","storage":{"0x4101ac69139ae2e84dcb4ee0efd9dce2088a5912ba57329e3a6785f426291321":"0x010000648f4ea4ffffffffffffffffffffffffffffffffffffffff","0xa5f6b079cd6e2c86b07fbd73366294e740b7d3930202398ad0ee93d189374951":"0x010000648f4ee4ffffffffffffffffffffffffffffffffffffffff","0xadceed8db86b199ed1858663344dd0dea99b5d748b23e638ef6da3efa6292365":"0x010000648f4eecffffffffffffffffffffffffffffffffffffffff","0x1dd4ed80d2af9c670999978314f4fa8216afc4318de5e82f3235905fa43f3a8a":"0x010000648f4ee3ffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x04195b5d04b546aa385be8756f04939d8bb32f95":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000e":"0x01a8","0x53873db95948d9777a2c6a0d3231e7acb54b45188889b7d837698fbdfed125c8":"0x205a13d0ed9f4a","0x3f87672eb2de119c6ca09d430f6d156f897b59cf514c67ccdfb60ea0be1835b5":"0x61411531ac31"},"storageCleared":false},"0x49439d8edb87f279979b6823247ef03d3722b083":{"nonce":"0x149","balance":"0xca283a235aeb1b","storage":{},"code":"0x","storageCleared":false},"0xd7ca5ad3704150348e7ddff8aa890a440f3b25cf":{"nonce":"0x1","balance":"0x0","storage":{"0x039ad05b540ee10331f38f7f5456dbc91f25f7763fa99ae247b61f299a66e04e":"0x6467c1fb00000000000000000000000000000000ce6999427674efc0","0x000000000000000000000000000000000000000000000000000000000000002b":"0x02da050001bfff06a7882bdf06fd057db091171c47d4e07c","0x0000000000000000000000000000000000000000000000000000000000000005":"0x0e000e000e000e000e000e000d000e000e000e000e000e000e000e000e000e","0x0000000000000000000000000000000000000000000000000000000000000006":"0x0100010001000100010001000100010001000100010001000100010001","0x0000000000000000000000000000000000000000000000000000000000000017":"0x355ab0ba9eda6c61"},"storageCleared":false},"0xd96f05160fa880b0afb549ffe67688408947050e":{"nonce":"0xe","balance":"0x1023676896fdd2a8","storage":{},"code":"0x","storageCleared":false},"0x4c21c63013b1d3cf70137766f120b3d317e0b621":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000d":"0x7a250d5630b4cf539739df2c5dacb4c659f2488d","0x0000000000000000000000000000000000000000000000000000000000000023":null,"0xd3e706bb35b8995118365f97fd376118b36a0f0bac2aafcf05e6afc55718c3b2":"0x0ff6a78ec3664839d65fbe","0x1a16e100d823f78ed43758eb5cee28fb9b0476a9d5986fd1cacfd04bd6f15c11":"0x0161aab562f90b7852d8c85c","0xd6bd535a2b756159dcdd2dc1f8e394a5957ad33243e46f9c412b17b9a2849eb4":"0xffffffffffffffffffffffffffffffffffffffffffee00d6cce9355a005841c5","0xedeeb1a8bb29c2dff5e98634acdb841ca2024501d6744c271ac50d1a44f27b93":"0x0107e7fd","0xb19cbd7d274496c3dd84df741c13eeb0cf448331a6596ddf6e9834f927e14f8d":"0x6467c1fb","0xae9457052cbcbd199b59597b60d93743736d81d18c71d9e2af345d510688708d":"0x016d27b56f16e3bcf6ef2d"},"storageCleared":false},"0xfa925512128ecb29a74e50219ba6dc465b4f65bd":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x731b6500a094b2f7422ed20ea4","0x000000000000000000000000000000000000000000000000000000000000000a":"0x159c0812dbe4358e4fe8343a8f00cc9005761c","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000000000112bd26eb92de54b00000001025c3772f4f4936b12e5c"},"storageCleared":false},"0xcac0f1a06d3f02397cfb6d7077321d73b504916e":{"nonce":"0x11f","balance":"0x82343a622e911a9cb","storage":{},"code":"0x","storageCleared":false},"0x7e0905d9ca2d1a8f654402eb3a2409a9d7a6992e":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0xcb43a925b403caa96e691f71c41c88ce8c2fdf97":{"nonce":"0x2ff","balance":"0x1989b308785f26c7","storage":{},"code":"0x","storageCleared":false},"0xc06b0ee51a347efedea5a264522b59731602e516":{"nonce":"0x1","balance":"0x0","storage":{"0x85bf03e824c12eebdaeb1556405b5c2982198b9c06e546ade602a5a398bbe226":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x3647ce0bbb487372c93b74b3a5459e518c552d84791d38612ea1a18d6650fbaf":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x572a17689f9fb04b1eddbeca90b25f71312f6d2254639ee495c61ab4d5a91d71":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x54c279ae2795195d8fb56d30ca6b1de164f71ace199c0986f725ce953331810a":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0xeed79d3f4a3bd7514a7ce61960095ab61f97bc20cde48a2548fe431d7cc80dd9":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x7d9569e87700451f98ed4c54dea7fcf4ee6a192e":{"nonce":"0x7e9","balance":"0x9e760d945b1ed8d8","storage":{},"code":"0x","storageCleared":false},"0xbd3531da5cf5857e7cfaa92426877b022e612cf8":{"nonce":"0x1","balance":"0x0","storage":{"0xcc0f2c168773a6f8e8eeb4bb71e29f84417cbdc4438d61add93b0629adb0a770":"0x11fd","0x661c6f199ce6b6d519fbccf6e53e70eebbbfa66d9eb4eede88ab8b35484d29c6":"0x11","0xee99672a9068102c634991b101300b28690de4382b8e4d97db7ff0f28cc5aac0":"0x9754f5a0da7db723d0c808a1eec8c9d023768663","0x20e62e314c8931a99f45dad131255afd5df727c65423c25f34e1835ac91ed5b7":"0x01","0x4faeab27465c38348033bcd5a77d5b2da0a9045e393321eb7f10ada80e4126b2":"0x08","0x35ccaea681792c9a40d9871f666707b172b8c75ea8291218220d14b24fef305d":null,"0xd5367634cc873bb64724acfca062a8b11288c61fb8999c5bc3da1da17007dcee":null,"0x82b1aece3633a4cf9910068bf1e6fb6981b0a80a443af2f6e7309a9c75a88fab":null,"0x12742a0cdf9a12e44b74a273d02c2962c68a56af0f7613cdaffc06742a2aa45d":"0x1bbd"},"storageCleared":false},"0x0c14d1762651f858000d8c6e4035fcd048613342":{"nonce":"0x2e7","balance":"0x3d57e38aaf93355","storage":{},"code":"0x","storageCleared":false},"0x11950d141ecb863f01007add7d1a342041227b58":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x010000b400b40075fccf4400000000000000000001e3e8ea7d396972f52196","0x000000000000000000000000000000000000000000000000000000000000007d":"0x01000005e80000000000000003d4effb91575ea07fffff7f1f1c4a8c6467c1fb","0x0000000000000000000000000000000000000000000000000000000000000001":"0x5f1515160981480ab47f21c975d524b0ff5b"},"storageCleared":false},"0xd4096bc36aa82bff58f580fbd5e447ded59011b2":{"nonce":"0x1","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0x7bbd213ea4316b12ba1bca5732e4b3cd90166414":{"nonce":"0x7","balance":"0x1da81426ed452540","storage":{},"code":"0x","storageCleared":false},"0x06130c9a68046baeed928c18ea1713ae54d7e750":{"nonce":"0x40","balance":"0x11eb62d92585e60","storage":{},"code":"0x","storageCleared":false},"0x5bb441fb23263b59e97e20b37a0534e33b9b88e8":{"nonce":"0x1","balance":"0x0","storage":{"0xa09aa914f40987d8247edd60ea329e1e6212ff38e3c8069fa91d7e27ab481a10":"0x03f00b5f21ff120fce","0x3aec97020b117ebdbc50948f1712880761d6f14ed787bbd98587764a54a64dcf":"0x1ae54234d4eaee99","0x046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd09334299":null,"0x1ca9ff1ed3eb552c637bc7a4c996c494f2619f6fc147307be2ca1cef5327c619":"0x0ee214951743f765"},"storageCleared":false},"0x35425ea103da2d9890dc6a26fa9f45e01e5872b0":{"nonce":"0x86","balance":"0x44303379e0cd73aa148","storage":{},"code":"0x","storageCleared":false},"0x9bbf030a32d778e9cf909e5ef85d24a33d7b5c5b":{"nonce":"0x2b","balance":"0x2fe2d53430cbcc5","storage":{},"code":"0x","storageCleared":false},"0xf66907eb62098d9ac01003bd25b78da74112e523":{"nonce":"0x0","balance":"0x2cc9142efb03000","storage":{},"code":"0x","storageCleared":false},"0x53692faff09e221d2aaea4ccb981f37e023378c6":{"nonce":"0x3","balance":"0x1d7993ebb4a9e1586","storage":{},"code":"0x","storageCleared":false},"0x42239bd9d44f6be2f65efbf6004145a92c9ac9bc":{"nonce":"0x9","balance":"0x716df0df094ea16c","storage":{},"code":"0x","storageCleared":false},"0xbd5d2e4bde156a7c285d62c70dfb411b1c4a4394":{"nonce":"0x7","balance":"0x38daf674ab73800","storage":{},"code":"0x","storageCleared":false},"0x62adb57988ae4ee0c926a67cf668a96f036e2abb":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000005":null,"0x6dab89b23f8191d7ce5706f02bcd4707f9e5cf4c15fa3acefd56edc6d45494a1":null,"0x1fc248cac2e1b1e7b1888afaf349695ee70950978264742cd58b547790871baa":"0x03ea1705b39677a028419c","0xe152d50a9a1e7911c1581214e222466582112663254a081cc02705feeba12bcc":"0x15b6ff2ef82d8ecf03c20ac2","0x000000000000000000000000000000000000000000000000000000000000000d":"0x03ea1705b39677a028419c","0xb525d41491ae574b285c67870f5810b2273b45765f1a7c6579c13ea4fe56fad0":null,"0x60750f516bb680687e1f28abf9df1f2558067154c5da0c5028fe61416c1f4127":"0xffffffffffffffffffffffffffffffffffffffffffc8146df7b15153100a0d87"},"storageCleared":false},"0xed19effe983d7b8bc6478d988c0833776c2f3904":{"nonce":"0x1","balance":"0x0","storage":{"0x1d3ce8e37ac58f9b6e79892bbe19e54d550f9a1445a0d59d2e42875d88e44fbe":"0x0cb3423e11de1b08","0x8fe0c87e5d89e9bf8b684358034b58a3685fe36964867462f33bdc43ea1d2b9f":"0x08cb36d2672d5ea931d5e78baba8","0x64810deed7ec5e498e707732e2671fa6ccd73a0f1807c1c4365a9c562664474e":"0xffffffffffffffffffffffffffffffffffffffeb064ac4c818debea113f3ffff","0x647fc0637e231c5392c3781306179dc00ede4b9616e797da46efeced564c88a8":null,"0x2d4e7e1cb16bdf2a09c2f5c8a820748be19e57ee585ea192ba794997bbca2b54":"0xffffffffffffffffffffffffffffffffffffffeb3a7d200cec11389e3c0c14d4"},"storageCleared":false},"0x2b591e99afe9f32eaa6214f7b7629768c40eeb39":{"nonce":"0x1","balance":"0x12a9038487faa82c","storage":{},"storageCleared":false},"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48":{"nonce":"0x1","balance":"0x0","storage":{"0x21f92c44441bcfa606b163719d9d5015193db8b617a4ff96025168c80f17cf5c":null,"0xbea8e65f23197617c47dd8e0d87d26b16c534d98f30054126fcc1f7fdef4167d":"0x011b4d7c064c"},"storageCleared":false},"0xd04aa6c33e03160381f306fe5386ffd3291e7ca4":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x15caa141bf168ad91a7230e8","0x000000000000000000000000000000000000000000000000000000000000000a":"0x02c4baf473739ac4f6dacbbe2dad65c75781117c3f18","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb0000000000030452e06ab54bbe2500ec64309f31f16c38e7a679ecca"},"storageCleared":false},"0xcfc0f98f30742b6d880f90155d4ebb885e55ab33":{"nonce":"0x55337","balance":"0x7a3de589db0ae5071b","storage":{},"code":"0x","storageCleared":false},"0x283c37cbfdf82fd527350be9dd15585554dd9caa":{"nonce":"0x42","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0xe8342110f9c4564e04102929d23128a7fb8a9939":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x6c50498c213a06d4aafff1efe0","0x000000000000000000000000000000000000000000000000000000000000000a":"0x9c9120c5f725bdf2015ecc8d584ac788738886c4","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000003d59f64474cc2318100000fc8cc71631e458b35727511"},"storageCleared":false},"0x32debf31d5ed90ca2e287d306fc23fafad9361c6":{"nonce":"0x1","balance":"0x0","storage":{"0xc097c30e7777ea1e13f5815a09610690ab2e9490dadc9c1cf16bebcd4f547290":"0x70d3dfb50a7b8de91000"},"storageCleared":false},"0xd8c38efb54da57bdd5df793988534e68aabe6c25":{"nonce":"0x1","balance":"0x475c28a2b0737760","storage":{},"code":"0x","storageCleared":false},"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2":{"nonce":"0x1","balance":"0x2e72c58bcc033238f4a61","storage":{"0x0f74464ba9b9431e242453c9ad8b7659c697640884054bb4598a9772d7018df4":"0x012d1756236e259c15","0xbf6ac16ce6fd1869180b0110cb4d7a40f112f008dd0465de16ebf141376d87e1":"0xb22f2f33e497eb01b4de7839fef7206a4b90f5d9eaaa","0x4783ad897242245e9276fffc9a6f2b9b388286b0f929940056c039d4ab8ff48c":"0xe3e2331ed5d030f1","0x3220b2be710559836233b7978122abf09f59b3ef0682ca1db06d75b771678669":"0x01cfd631b603241f21","0x0595418483ee6d35f6cf686f8dbaae5d6dce4d0ce8492ea995f3670bf8daf905":"0x01d6619ff740b836fe","0x41b243406b3f25e91cfe278cc158842284205db95ddf78623acd51318b8fd61f":"0x06ee6e8372347c2dec","0x1a824a6850dcbd9223afea4418727593881e2911ed2e734272a263153159fe26":"0x0481d2df5fb60b762e","0xc906b0b0df36e2042f059120e95e6dd99f11c9ac2ef306a59ba0efa77fd8622d":"0x3af0f6e9a7ee3bea2a","0xa5e0382f815c6973e9131aef805f327e4eda6487650286fd3c738e98a51b77cf":"0x0112bd26eb92de54b0","0xb3b410c28d68d26c2073edede4c156d549a48199c0557881665aebab1fb07677":"0x09d80d97cb556fcfed","0x34fd927ebdbee13bf553540b93b4dc48def81e4b889079f85384519329d6647b":"0x77371410ce862650","0xe2df0dc07d83a64b3028eb2041504bd1088c32213edc3474d4f57a73fab10d90":"0xf0d1ee5e9ae4b7a4","0xf56af4be264b6e6452da2e8b33f5032838c0767a4395962d66e0a7a4b9e2df2a":"0x1dd410b3abe3e56c","0x0072bedd280c56d0bfea0c88d8c73cf034b56d02b33287fd469543b71e0fc4e7":"0x030452e06ab54bbe25","0xee61682ec263cf9ac626d5a9b0cd5e26edbfa98b5b368b540e65bd739c37e3b7":"0x01","0xb5d7aa63862db085c40ea101f3e6173ce5abc4e99fd8ac2d91dfcaa68ff035f6":"0x4172068b6ab01feb","0xe652c8bcddb4f191c22d4d71dec1505a9d4afd228a0dc1dc03c3d5890fe3eb6d":"0x01993214daf3ed873a","0x29637e4e7746790fee278e174f4585f655f8f9eb93ccdfba31b482e7a484285a":null,"0x2f0294e7544c2b846cbc957c351e6f2124abfbb7be278c7b09c1875045ebcf0c":"0x03d59f64474cc23181","0xc202aa058ade9c945a01c50108fc43db67287291075ca91cd6a0814ea37e6857":"0x01d2223accea739b74","0xa735e023d63b3fc8560524cba07b91f8f1ec0955df156af0aac4849acc050bcc":"0x075a5d8b212284d37a","0x3f7e202fe7698ee432073959bae4399738206bd31ae4d842300c907c62d8adc9":"0x10da2e46ec0337930b","0x14d84be9c0fc2b1da6709f8f272a9cb29bd7f20d6ba6081442814d2cb00c65c8":"0x16c64671ebc5f7a9","0x12231cd4c753cb5530a43a74c45106c24765e6f81dc8927d4f4be7e53315d5a8":"0x14442718725b5d9aae","0x1acc19d877a479b1658f42298857e8a61c4cb71ce82a4cc429336768ecc65227":"0x108287f454d2f7ab0e","0xdc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208":null,"0xadfc4f8803efc0a6d14736fb68e425ea99781bdc3b86e469856717f9d45c4be0":"0x99312adfcaac506d","0x3af96bb5a4975f23eeda51e51ed23b924fe098826485138fff6173eb104d2f07":"0x11a14bf1c32f46776f","0xbd348c164d25dea0c2ae804d1e4e64081126c54a3c3c68949e73d446ccc1f8cb":"0x02095478205d1d9c2d","0xfb19a963956c9cb662dd3ae48988c4b90766df71ea130109840abe0a1b23dba8":null,"0x52eb1ee7d77473b3514d689649f518c0e841dcbfa0c60a2625f836fa81f2af87":"0x637eeb18365242aa","0xa88ea72da32a25ddde424226a3e6db871c27c5f01ffffcf1e451a35c75c43a8e":"0x06c68e3e1b2c63e57a","0x5bebc1d66255dc5622774be2d4302fc1e7eeff454c5a800f05e2040f4af24f2f":null,"0x6bb3647e026436fcb06b6e3d0eb52c955e95677647f7ab61720f19c6e877bf11":"0x5328ef5d51c15c4a"},"storageCleared":false},"0xd31ad7c9250742b77c53c1bc1c490d10f3b8aa89":{"nonce":"0x10","balance":"0x148a04289b940000","storage":{},"code":"0x","storageCleared":false},"0x83d9ee698d6b1787254f4c81bf136a88d98b43f6":{"nonce":"0x1","balance":"0x1373afeeadb3f6","storage":{},"code":"0x","storageCleared":false},"0x6ed648e209ffb7c9855eec26698439078476ffd4":{"nonce":"0xcd","balance":"0xa5a1d2683e4f667","storage":{},"code":"0x","storageCleared":false},"0x807cf9a772d5a3f9cefbc1192e939d62f0d9bd38":{"nonce":"0x1","balance":"0x65dd0837000","storage":{},"storageCleared":false},"0x536a51690bfa8775ded174f5eaf5a373e422e706":{"nonce":"0x244","balance":"0xfa70db752ceadd0","storage":{},"code":"0x","storageCleared":false},"0x3685204f95bfb6198d46a5870c452baa56a7b22f":{"nonce":"0x16","balance":"0x1229d3619c23ea","storage":{},"code":"0x","storageCleared":false},"0x9696f59e4d72e237be84ffd425dcad154bf96976":{"nonce":"0x450f14","balance":"0x44951eb990ca75b8c2f","storage":{},"code":"0x","storageCleared":false},"0xc10c1929888e3e45620d33c2075f83934656630a":{"nonce":"0xf","balance":"0x3af4c2cf2340f0a","storage":{},"code":"0x","storageCleared":false},"0xb46abe2e6ec04d6642848f4764afe35393b2613b":{"nonce":"0x91","balance":"0xa8295d61cdbc2e9","storage":{},"code":"0x","storageCleared":false},"0x8bc7ad5762a90f6f3acae57744514928db88c442":{"nonce":"0x1","balance":"0x268ff4c92d82400","storage":{},"storageCleared":false},"0x46705dfff24256421a05d056c29e81bdc09723b8":{"nonce":"0x1d8b99","balance":"0x4e634921e8f8a3a3a","storage":{},"code":"0x","storageCleared":false},"0xfbfe47a693e0d20702df9c5484c3391c83ce5f23":{"nonce":"0x0","balance":"0x354a6ba7a18000","storage":{},"code":"0x","storageCleared":false},"0xd2eda519196fb6baa1aa602820130ef3093f9c23":{"nonce":"0x50","balance":"0xea5ca2da7a96c6","storage":{},"code":"0x","storageCleared":false},"0xfc8913090de9bc6735d63fb9dfb34e6809be7c20":{"nonce":"0x24","balance":"0x68242461001cdb","storage":{},"code":"0x","storageCleared":false},"0x56eddb7aa87536c09ccc2793473599fd21a8b17f":{"nonce":"0x4a53f7","balance":"0x7e85fadbb53d7c98573","storage":{},"code":"0x","storageCleared":false},"0x58b704065b7aff3ed351052f8560019e05925023":{"nonce":"0x11538","balance":"0x26f487072315f11859","storage":{},"code":"0x","storageCleared":false},"0x20a7884275ecc1d3bb936b777faf881f7bcd61f2":{"nonce":"0x0","balance":"0x31bced02db0000","storage":{},"code":"0x","storageCleared":false},"0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce":{"nonce":"0x1","balance":"0x0","storage":{"0x64c9a3c3ab48814c98768ecf3ae20bd86b7a99c6c21c3246af5353f81bce02ea":"0x72dd16ce8d1298b28344e000","0xf75e26945111df458d4bc621010473a3fc43ec89d6248b2cfaf51dd23c0a2076":"0x46895fe184b55a638b3043ed78"},"storageCleared":false},"0xed75123d261f2155aa75459b05fafb693d4469e0":{"nonce":"0x37","balance":"0x1caa9120786662","storage":{},"code":"0x","storageCleared":false},"0x9cf611b667f3c3746e747b3a3f45e7c96c59d6ef":{"nonce":"0xd","balance":"0x7c85795024bf0ae","storage":{},"code":"0x","storageCleared":false},"0xcae3faa4b6cf660aef18474074949ba0948bc025":{"nonce":"0x1","balance":"0x0","storage":{"0x577b913a3c8810dd10161c9ae11e2ee31042564c62114c83b0bc5d3a3e71b362":"0x10b42e6e481a6d484bacde12e9","0x656ad046500aefcb3fb132a6941479ef01297bb33ec0ebb5ad6952623b53e2b7":"0x02011077bf95d331154aad7cafb2","0x5443ff45be0a62c1853508bfa681036a284fba87580029284144ba026e6db116":"0x01","0xbbdbcf7a0e3e1a415fbf51e344a45ff5313518534cba6ac144853379085c546c":"0x01","0x8a27dd0598bc43e6894402cc57f8b396d7ccb00272d2210ce1ff36b7c4684170":"0x08c3c3a2163016b36c130f46e1","0xb9a57d65ea07148ad12cd70d7e722d01ec23efea88af3e6aa3849b79da79e39d":null,"0x65b586efc411c19f255d0da0cb0f85a0a252672cce8bb96c2d7d47767eb44bab":null},"storageCleared":false},"0x1111111254eeb25477b68fb85ed929f73a960582":{"nonce":"0x1","balance":"0x1","storage":{},"storageCleared":false},"0x734ed865b93b61cbd0e919a134fff2409ec68e45":{"nonce":"0x3","balance":"0x2c7a8f0a4507c8","storage":{},"code":"0x","storageCleared":false},"0x6982508145454ce325ddbe47a25d4ec3d2311933":{"nonce":"0x1","balance":"0x0","storage":{"0x680af76a126ec6332c558ae4fc1e359c5abfe6f1389580cd7bcf6c70565e0996":"0xa56fa5b99019a5c8000000","0xba43b84b17deebeec7f36d05cea2b2641fd23600f9e29f5940ca5a63978b912d":"0x2f852103667730496018903495","0xb8c1d7342e0646e3a36c3fa5a7edb759bcc0c07be2022ad85d7f7e80da96bf5d":"0xfffffffffffffffffffffffffffffffffffffffffc7d86fcd19a64f09ffbf8f7"},"storageCleared":false},"0xd579277533b3e674a99ee7ef96a8ed3dae72d1b4":{"nonce":"0x7","balance":"0xe8e56c6fdb7f60c","storage":{},"code":"0x","storageCleared":false},"0x1651bc4250269156aa91d1445ae065e6e1598684":{"nonce":"0x355","balance":"0xbfa963d0a551a2a","storage":{},"code":"0x","storageCleared":false},"0x111206594f2fb5927f719b4417ab1da3d41b14b1":{"nonce":"0x4867","balance":"0x7632fb513f94c9d9","storage":{},"code":"0x","storageCleared":false},"0x48786d8be3f5239a67a7d04cba3e9c5c4cef5159":{"nonce":"0x1","balance":"0x0","storage":{"0xf04f98b2c618c7747e43c0824eda7745edc983d5d647382b49fe2d062c8151bf":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x4c4bded2853c3646daeec45dbdcb8bc3a063ce7d0b02eb57b7ac235f0c439bf9":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x75850c75fb1b5ca3252799283de7a09113b2934c2acac12b8d3b52c55ce6e0af":"0x1025c3772f4f4936b12e5c","0x6e83c773b9c371cc912e9416f0bb6ba5e0268799f303b3cff58aebe3f35df985":"0x0aa37a2ceb90db7f5f69","0xdb227a062bd35d7133c065b03ed5039499ea63ae0a2f2f34bf422ed0b9ea3b46":"0x65fb9b19b56d4cd39c49"},"storageCleared":false},"0x959a94121595eb14ba8001c9bec82b1f88869905":{"nonce":"0x0","balance":"0x24e9352c28daec0","storage":{},"code":"0x","storageCleared":false},"0x5e54e69ac3c0dd73b983bda55f54dded3725af9c":{"nonce":"0x5","balance":"0x1414f9dfe3c68","storage":{},"code":"0x","storageCleared":false},"0x3609eed9c4a436f913bd6da261f0930ad5956e59":{"nonce":"0x3e2","balance":"0x3407b01a331e303","storage":{},"code":"0x","storageCleared":false},"0x4d1655b9e7e8a6448641e40fa5cce44020dfc9e8":{"nonce":"0x0","balance":"0x5b4c3f560e11f8","storage":{},"code":"0x","storageCleared":false},"0xe188f821291fbce90cd995e18124d8aa5ec6b819":{"nonce":"0x0","balance":"0x3fce723ad01c0fc","storage":{},"code":"0x","storageCleared":false},"0xf584f8728b874a6a5c7a8d4d387c9aae9172d621":{"nonce":"0xdf04","balance":"0x37f159740a35dfbfa69","storage":{},"code":"0x","storageCleared":false},"0xaa07810ae08575921c476ff088bc949da43e4964":{"nonce":"0x1","balance":"0x0","storage":{"0x37d88d1b64f64d843b05eabd518868d3383e52874998e13ac15fe20649347e85":"0x0d5fc14ed0b9b8e9201e5b2e","0x799a23433176f131d0d84038bfa2ae8a77d3c043343f7862d757856a2e1f3685":"0x0684293633abaa24f13e86"},"storageCleared":false},"0x1c5c4f3855e8e3e9ac82fdba60f18171ea908db5":{"nonce":"0xf","balance":"0xad2fd8bf543fd32","storage":{},"code":"0x","storageCleared":false},"0xc95807a4ad27ae53f1ad9bdf2e458a01dfb3b93d":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x31bf691cfada339c709feb54","0x000000000000000000000000000000000000000000000000000000000000000a":"0x020df5599a4955956cb3449723b45499d1da58","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000001d6619ff740b836fe000002df915ac3ca54bde5189743"},"storageCleared":false},"0x96bc1fbb7c5eaaa5bc0112bfaaa69ae855bed523":{"nonce":"0xa","balance":"0xa730c04f01a43b8","storage":{},"code":"0x","storageCleared":false},"0x2732e872c8cbab3df58a79af15b7b87d2cae08ba":{"nonce":"0xde","balance":"0xb3563bea9a0dfd","storage":{},"code":"0x","storageCleared":false},"0x5de55765bca9e6ed6c8333e36e0edc96dc1c66dc":{"nonce":"0x2e2","balance":"0x13d37468114f03c","storage":{},"code":"0x","storageCleared":false},"0x8ffd57a9b2dcc10327768b601468fa192adc5c86":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x792f653d26d28390e6af17bcd77036928361d670":{"nonce":"0xaf","balance":"0x4752615f9d5de5a","storage":{},"code":"0x","storageCleared":false},"0x21a31ee1afc51d94c2efccaa2092ad1028285549":{"nonce":"0x62e912","balance":"0x6b76cf9e2852249a4e3","storage":{},"code":"0x","storageCleared":false},"0x9e664657823543ceadcece7470733a7e411a3686":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x02414e16ef50c4dd7a3c23f2ab9f03b4","0x000000000000000000000000000000000000000000000000000000000000000a":"0x02de44ddc24503e017cb3b0705d3f2d6073684","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000022b917f959aa23e340edb20006025262bbf07c6302e5a6e5d0"},"storageCleared":false},"0xd65e0cbd31977b2e0e23c8330c8b5f020818fc91":{"nonce":"0x173d5","balance":"0x42c23fd6063eed89","storage":{},"code":"0x","storageCleared":false},"0x80fd2b0aab7fec23b337018d9a68554acbabb586":{"nonce":"0x284","balance":"0x10fd57cf24ba954","storage":{},"code":"0x","storageCleared":false},"0x4c9e577cb6172ca27ba18ed95de9955474d88129":{"nonce":"0x39","balance":"0x16b70400164f67a1","storage":{},"code":"0x","storageCleared":false},"0xa2c41fb0f4a2362f899e865c1f98fcce5da1528f":{"nonce":"0x24","balance":"0x132508ad9ab6ca0","storage":{},"code":"0x","storageCleared":false},"0x3819f64f282bf135d62168c1e513280daf905e06":{"nonce":"0x2","balance":"0x0","storage":{},"storageCleared":false},"0xb04f9043d1abd711968f0509024e8118b156f88d":{"nonce":"0x1","balance":"0x0","storage":{"0xa0375af54b2fddb8093643bb0cee90f50509ab2eefecf8162688e8c3e6539e7a":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","0x0000000000000000000000000000000000000000000000000000000000000016":"0x01","0x0000000000000000000000000000000000000000000000000000000000000017":"0x2386f26fc10000","0x0000000000000000000000000000000000000000000000000000000000000018":"0x5af3107a4000"},"storageCleared":false},"0x6dfc34609a05bc22319fa4cce1d1e2929548c0d7":{"nonce":"0x162e79","balance":"0x4859694bf66c48d85c","storage":{},"code":"0x","storageCleared":false},"0xd4b8b58ec04d2a4a3b65de5b5ac040105d5a2fb5":{"nonce":"0x15","balance":"0x29dbfa7d8e469","storage":{},"code":"0x","storageCleared":false},"0xe4ce491d68e91724268ff2fb6ee48f8d749a49e3":{"nonce":"0xa","balance":"0x2dac2a5cbecfbb4","storage":{},"code":"0x","storageCleared":false},"0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0x3ae9d0b74e3968cfcf89a4de4f0d8b2a326a1dfd":{"nonce":"0x2663","balance":"0x61fd0c5106053046","storage":{},"code":"0x","storageCleared":false},"0x30f2a91d0aaadbfea37dbb635c54765d142ff76f":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x8d1f2ebfaccf1136db76fdd1b86f1dede2d23852"},"code":"0x363d3d373d3d3d363d73059ffafdc6ef594230de44f824e2bd0a51ca5ded5af43d82803e903d91602b57fd5bf3","storageCleared":true},"0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b":{"nonce":"0x1","balance":"0xf","storage":{"0x0000000000000000000000000000000000000000000000000000000000000001":"0x01","0x0000000000000000000000000000000000000000000000000000000000000000":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x2cf3594106a3285c4b731cee95f7f0e16326838c":{"nonce":"0x1","balance":"0x11d4a7559033c8","storage":{},"code":"0x","storageCleared":false},"0x1a136afb86f46f3d93d93007955c9bd8226754f7":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0xd42f958e1c3e2a10e5d66343c4c9a57726e5b4b6":{"nonce":"0xabaa","balance":"0x73a02015d944eb25","storage":{},"code":"0x","storageCleared":false},"0x94562e38f123e52f6df9b1dd209a2e6b7e70e986":{"nonce":"0x3","balance":"0xf10ddb874fdf5","storage":{},"code":"0x","storageCleared":false},"0x8d7523ab01e19ecc1e08faa31ce92b240814e41c":{"nonce":"0x1e62","balance":"0xb4684c2f4d9e93e3","storage":{},"code":"0x","storageCleared":false},"0x729bb3207743bda4f32852cc323938190f310f98":{"nonce":"0x41e","balance":"0xa115e1d703067b2","storage":{},"code":"0x","storageCleared":false},"0x0322f6f11a94cfb1b5b6e95e059d8deb2bf17d6a":{"nonce":"0x1","balance":"0x0","storage":{"0xda07af600560ea9deab8f8fbadd73adbdb4f03db63f7cd6cb1b7b5ad1a941a6b":"0x05","0x63ca62dc04b8131ed1372ab66343babd33b31f67ee575224c102971213f75e9c":"0x07","0xe1c5a35418e021e942f78d2ab7219434dd7b455aadbed7a8ee0caaf48a10aafe":"0x0ebd","0x453cc218d6c449a4be982f2d03b951bf035f2e9663c6f37e86eb0dcc7d4bc74b":"0x0e7b","0xc3573fd3547785907ab9d3a7a0fea4486b9d39fbded5fe47fa2e94b8a89916af":null,"0xb3526221ebd29843e2230aecf99e29ac8129f975d15b446d742a7694270c46f6":"0x06","0x8e237e8b36a2780e842b5afb8554df87c98c1a6239f0b9f9ef2181d522af7a43":null,"0x08f836670179eef4c93b006f6892584b1c0fc3fc45f1da05ff0bbaef74f8c510":null,"0x5f25c7186585c60a3f27798043193b55237e45a736bf053f4e00d12ebab665e0":"0x0776","0xa223ad70c439c60e3c913ac13ed9366e31c92ba02edeab39d6269e32b0570640":null,"0xdccd25212253ec4d13b18ea3b01a5923f50317370ee4430375d33bc298b46e52":null,"0x7fb90310a3da5456e4340d356218bcce8ca1eca637deefda34b1f8292c537d1c":"0x0c14d1762651f858000d8c6e4035fcd048613342","0x22f61720acba60bb27f0db02bbb2c10b8f4570228c431cc4fc62d9e561adc199":null,"0xb130d5faebed388626ca4f760981fd687983679a872b23a072d4f608c828dd97":"0x0c14d1762651f858000d8c6e4035fcd048613342","0xcae9e7080005d8b129dd586eaf630367405bb28213f3e0fa8ac6d525802b4373":"0x08","0x6993a2a3eb16e63bd0fecc22709766bff2bba887a3f2b0be4cab41b92e59cadb":"0x0441","0xc22400d7626891303e9594f3dff7c490ed22a515fe8bcd6f4c4c93b1a2358996":null,"0xf104102bb8596160916c80e80b6fa3f7d0c2d6ca4638c1bfb022c88fca31e75a":null,"0x941e9bb651d4e5c171aad42376b97b5dfc36efb22c28b90e8b280a9690edc0c0":"0x0c14d1762651f858000d8c6e4035fcd048613342","0x23f889979ce0519fc0e0f06462fe62c4b767d961e193cdd698798bc9058cebc1":"0x01","0x0896d21a2e432eee93a9f7f4f70e0f715c30d105e5844d458a85f4fa1cc91ede":null},"storageCleared":false},"0xdf733d5be80a3ba0975afef4d7d7631161ae7640":{"nonce":"0x1","balance":"0x0","storage":{"0x7d24b7a05cb57b0c5150beae3bcc02bda7734fd9a78469d1f7750443fadde1da":"0x022061156702a31ad0","0xd3f04b770681d0303e825c6b7f13feae799b4fd0890739f756618a0e2f667415":"0x50d3c355d8d2176c"},"storageCleared":false},"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984":{"nonce":"0x1","balance":"0x0","storage":{"0x44a6c51a1742636c5f52a567e08612f0b1f580be1e93cc4318bbc864b75b21fe":"0xb4d50eefa59a7faba702","0x8a4a73f8c9d99f4aee67a474fb08a8be159ea174fab37254feac3b94dd19c431":"0x1040c15634166e8400"},"storageCleared":false},"0xd67508233a9f6432748b895655f7df90ccd17976":{"nonce":"0x1","balance":"0x42f6d69835cc000","storage":{"0xe4237cafddc4cdad73c74fb4b79436485d99a2e9fc398cc16d72d138ffae441f":"0x22b917f959aa23e340edb2","0x1ca061e1e3292b799b8f98d539c8ffa67de8d9dd287ffb2134186979bdabb11f":"0xba6cc24a82fd866f49de"},"storageCleared":false},"0x54d73dd02595693223db207fe2bdebf7410339e8":{"nonce":"0x61","balance":"0x36366952daed327","storage":{},"code":"0x","storageCleared":false},"0x8216874887415e2650d12d53ff53516f04a74fd7":{"nonce":"0x83aa2","balance":"0x1368767e89f0708c9","storage":{},"code":"0x","storageCleared":false},"0xf6c3a129878852a14d027a3d162c48d98a44c163":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0xd6dad5e5a6a43364413090af81e884643c8685c9":{"nonce":"0x1fc","balance":"0x217027efe57a1b6","storage":{},"code":"0x","storageCleared":false},"0x4e5b2e1dc63f6b91cb6cd759936495434c7e972f":{"nonce":"0x549b8","balance":"0x183f7e240e7f241ae2","storage":{},"code":"0x","storageCleared":false},"0xc1e194ef7f160c1560abc98a6dffd1b7af09b606":{"nonce":"0x1","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0x2d021b4bea1ff9e1b30997e10379aaecca3729aa":{"nonce":"0xb","balance":"0x4eb5525f110c91","storage":{},"code":"0x","storageCleared":false},"0xcfdb927b7a0176855dd807a68c5c4bce80c3e2e0":{"nonce":"0x1","balance":"0x0","storage":{"0x4d4ce64a260da301f1039efd484dc7bd252a01141529dfe9d2e6414ffdf19cb8":"0x02","0xa6dc1a21f573b37afef71d1b3d142ccc79b88828e0f68b6daa5dc560ea89a860":"0x6467c1fb","0xa6dc1a21f573b37afef71d1b3d142ccc79b88828e0f68b6daa5dc560ea89a861":"0x5ca56b38be1a3eefbdac"},"storageCleared":false},"0xa6adbd033e701278ad4501f77d8a4edb4992e754":{"nonce":"0x15e","balance":"0xc4c392877241770","storage":{},"code":"0x","storageCleared":false},"0x95a40e2e19b71f3c6ac053f839d23121ca7f051a":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x0bf9c0d3ea26696996dc92a648","0x000000000000000000000000000000000000000000000000000000000000000a":"0x0230a5bf5a982eb731d2e20d07c0342baedd882390","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000000000099312adfcaac506d000015b6ff2ef82d8ecf03c20ac2"},"storageCleared":false},"0x743722313d6b2b3d8e9bd3ea0526279d6c6ca74a":{"nonce":"0x7","balance":"0x719cff3f9a63de3","storage":{},"code":"0x","storageCleared":false},"0xf10db848a80fecf1d137c952300ed1d311ceb6da":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000d":null,"0x000000000000000000000000000000000000000000000000000000000000000e":"0x01","0xa6eaa86c56a394428f5aea68d88ad6a04e28bbbf0abab526a6dd58af5f31ffe3":"0x0b40b3797d7bd37327acc12217bfe9f72edc8f1eb22806a23d374f2636b3c7b9","0x822aa24ad8e53c2f74b63f345e63a66bc429b51b5f8808a3dc6e57f4eced0376":"0x09ad0a764fdae38d406539ccd327bde73d4a797420a5ede917c2de50a88494","0x3683239223206fc93df94f4be3b34b83778c20b9c4cbd86daec4f4e975a88ff9":"0x7f72084ef6b1b07686467f1ddea99c704eb6a53e18d2a6d594a421da6498","0x0000000000000000000000000000000000000000000000000000000000000007":"0xfffffffffffffffffffffffffffffffffffffffffffffffff7e52fe5afe40000","0x0000000000000000000000000000000000000000000000000000000000000008":null,"0xaee0b605e6eaac0b5cf6b8bd4cbdc07b281f051819454b9f82c80b9d74abcc90":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0xe4edb277e41dc89ab076a1f049f4a3efa700bce8":{"nonce":"0x1d6cf","balance":"0x89d6d46fc140aa2bb","storage":{},"code":"0x","storageCleared":false},"0x64c47519845f2f8855cd495d21e2dea397d5f2d3":{"nonce":"0x933","balance":"0x257f000bc7f5ed7","storage":{},"code":"0x","storageCleared":false},"0xe6be0d25186129fa096ccf922ab4d99f0f43f0f7":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":null,"0x000000000000000000000000000000000000000000000000000000000000000d":null,"0x9ceb2ea14d13350445b9e417de2ffd8570c7bb57992f474225b6b2bc536791b6":"0x5739e6682147c327c2fcfd60f43b0f6cb94be6615acbfeeaef577a58018d6918","0xa782851a231c5580c60f3c8baa14fa14403a810555e8456c0e1fcfea69c3bff1":"0x038d64aa62550548f18e0697d9e793a145c2cd403e16c56d8ecdaada511258fb","0x95bdb0684eee8b42f19ef73c52f05efc92814c20c7ead44548f6f5a3260d726f":null,"0x0000000000000000000000000000000000000000000000000000000000000006":"0xfffffffffffffffffffffffffffffffffffffffffffffffff7e52fe5afe40000","0x0000000000000000000000000000000000000000000000000000000000000007":null},"storageCleared":false},"0xfa0f34720db146817a932b826b99cf66d088a2f5":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x01083010afa85ca6c08b8e231a64","0x000000000000000000000000000000000000000000000000000000000000000a":"0x05d724012c862edc5fd79a3a95131563595d64c4","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb0000000000012d1756236e259c15000000bc87f16838341c4221ad0c"},"storageCleared":false},"0xeafcf2053985ca053c6a81b62775c028863182e6":{"nonce":"0x47","balance":"0x0","storage":{},"code":"0x","storageCleared":false},"0xf059e7a494491e2f51e66c493081d2ad3dfd0b3f":{"nonce":"0xdaf","balance":"0x655ff0799e864945","storage":{},"code":"0x","storageCleared":false},"0x5558c63d5bf229450995adc160c023c9f4d4be80":{"nonce":"0x227a","balance":"0x5836f1a23574cfea","storage":{},"code":"0x","storageCleared":false},"0x48f83f5ddf20e06c857ec3124f65e0e95487c1f3":{"nonce":"0x18c","balance":"0x1732a2bf836cc2a","storage":{},"code":"0x","storageCleared":false},"0xf60c2ea62edbfe808163751dd0d8693dcb30019c":{"nonce":"0x19ca17","balance":"0x69b894c38f89ba3eb4f","storage":{},"code":"0x","storageCleared":false},"0x0c50235b97d1e7e2da697b39f481deeb6f88a3a8":{"nonce":"0x1cb","balance":"0x6934fa82d93fce","storage":{},"code":"0x","storageCleared":false},"0x966f2f988a60ce3ebed08ee0549637ef4059590c":{"nonce":"0x0","balance":"0x2941605a4d36d400","storage":{},"code":"0x","storageCleared":false},"0xdfd5293d8e347dfe59e90efd55b2956a1343963d":{"nonce":"0x5df12d","balance":"0x5c12111488c08962224","storage":{},"code":"0x","storageCleared":false},"0x00005ea00ac477b1030ce78506496e8c2de24bf5":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x01"},"storageCleared":false},"0x058c1932f94e39aa57bf905c707a5dbd3f88b9f2":{"nonce":"0x30","balance":"0x1b89314a5dfdf3e","storage":{},"code":"0x","storageCleared":false},"0x56b4a2cbce1c6bb293b31b8c1e6db8804ef5abf1":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x01396e7d79aba1ef38814f2cfeed87ac","0x000000000000000000000000000000000000000000000000000000000000000a":"0x0122342895f02cc34ba1a574a49e1ea96604","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000000009c29c21ade8d99000000000001993214daf3ed873a"},"storageCleared":false},"0xfc4c795cdeabd481bfc777e4437df6e1426e10d8":{"nonce":"0xa00","balance":"0x1ded855e23eb1b65","storage":{},"code":"0x","storageCleared":false},"0x13992b9f327faca11568be18a8ad3e9747e87d93":{"nonce":"0x1","balance":"0x0","storage":{"0x963e01ec703bcb55a213be52f58017940e7466d06648c1b14c1516361210b192":"0x9d1828bb51e2fccd109853abdb3914a48825c0aeb080b0e209f1128e8c01ce80","0x0000000000000000000000000000000000000000000000000000000000000002":"0x6467c1fb00000f7eac0000003dd3"},"storageCleared":false},"0x81db2dfd33b24419f0f715e331f678411eb1ec30":{"nonce":"0x65c","balance":"0xef6fbf1c66505f8","storage":{},"code":"0x","storageCleared":false},"0x00000000000000adc04c56bf30ac9d3c0aaf14dc":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000000":"0x01","0xece7577c2192e3eb607bc0dbc805cf0465ecd1eda5f28e4acc0496d950141594":"0x010000000000000000000000000000010001","0x06e423dd490caf9dd432f034a07b03cb73738b638b7c18d69d3bb73ad9f85186":"0x0100","0x704979c94cc3e48f7eac83c45dab97e04d43b83e50a47a7d891954f9f3ba845e":"0x010000000000000000000000000000010001","0x60a5138d19fd4a7a14bb4d478e2ca76bab6c1390e928dda3e76c707f89bd8699":"0x010000000000000000000000000000010001","0xda4a0c77dfa8fa78ec71f6d479e0f7665a4927f45b3e6c96a48301f9edd0d09d":"0x010000000000000000000000000000010001","0xdb481863e5ef62cffb233c4d84f069204d8e68c324e3d7fb2628394e5f3f5ea3":"0x010000000000000000000000000000010001"},"storageCleared":false},"0x3eb44cc778519b354745e5de382732fb6f89b719":{"nonce":"0x0","balance":"0x7be8725bd4d000","storage":{},"code":"0x","storageCleared":false},"0xfbd2541e316948b259264c02f370ed088e04c3db":{"nonce":"0x1","balance":"0x0","storage":{"0x0000000000000000000000000000000000000000000000000000000000000005":"0x5ef5"},"storageCleared":false},"0x264e4b433f75bbe64bd77f256e5c276213b2298a":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x0bdc1d81f1691f40ff54903833cb598c80","0x000000000000000000000000000000000000000000000000000000000000000a":"0x54c99dd94a9bec12fe32fe8c43a487641c","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb00000000000004ba819d4520be180000000000005328ef5d51c15c4a"},"storageCleared":false},"0xec310d4189cc22453bef1dfcb570cfefa262a392":{"nonce":"0x1","balance":"0x2efd9383092f24b","storage":{},"code":"0x","storageCleared":false},"0x37609205cf7d6106deeb5e2a773f4494d8f55298":{"nonce":"0x47","balance":"0x1e85075b5a711898","storage":{},"code":"0x","storageCleared":false},"0xd2c82f2e5fa236e114a81173e375a73664610998":{"nonce":"0x1f13ed","balance":"0x168b4a138a12c8aa3","storage":{},"code":"0x","storageCleared":false},"0x6b75d8af000000e20b7a7ddf000ba900b4009a80":{"nonce":"0x1","balance":"0x28c63c8723","storage":{},"storageCleared":false},"0xbd4de20b77b865ce37bbaa11f8a986d712382a72":{"nonce":"0x27","balance":"0x5a2c19707aefcc3","storage":{},"code":"0x","storageCleared":false},"0x891c203609866791dce93644476344e8a9892a4f":{"nonce":"0x1","balance":"0x0","storage":{"0x44f2d1685cead848e80ac61061738764ae0a58f58f77f4707890718b7bcf978b":"0x0338dccd57f0ef908e927e","0xb89b56482ca4dac3ba2f4e036ac3f472338c5c81027e9cf9cd8483396d371a1c":"0x64808fa1518b6b67fd3c55","0x0dd399216b0479efb86822214437592fe5331ffc2cc79ed80b2cfb9bf95776ce":"0xfffffffffffffffffffffffffffffffffffffffffffa03fab63f052f33b3ffff"},"storageCleared":false},"0xde7355c971a5b733fe2133753abd7e5441d441ec":{"nonce":"0x1","balance":"0x0","storage":{},"storageCleared":false},"0xc63a5fb00aca1adf252c37162eaff16ba0876b2b":{"nonce":"0xb0","balance":"0x2c6ab826afa049c","storage":{},"code":"0x","storageCleared":false},"0xe0fe0440a7121a8815a49de4f15508123c4102e7":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0xb816a6b0d226193ab0ca78a140","0x000000000000000000000000000000000000000000000000000000000000000a":"0xaacb2c1a0a22ef1df7be817285044d214fae3d20","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000009d80d97cb556fcfed000081ea464f7a95367df695ed30"},"storageCleared":false},"0x4aaebbc4a585e2b0eef5f8e81603d58e09ef3679":{"nonce":"0x1","balance":"0x0","storage":{"0xefebb652d47515f2e7d4666a6fedd6985adcb6befa7f258cb9f0b8623aedc4c2":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"storageCleared":false},"0x3d134e2e17ad6be5848fcc51b5305f85af43edd8":{"nonce":"0x2b5","balance":"0x45727f9d03726e","storage":{},"code":"0x","storageCleared":false},"0x182945090f2cc11ba9472257b3edeacb229c7c61":{"nonce":"0x0","balance":"0x161912cb3ca8978","storage":{},"code":"0x","storageCleared":false},"0xeadab51215866d9df1ecd6e8136953731bf32be9":{"nonce":"0x1","balance":"0x0","storage":{"0x000000000000000000000000000000000000000000000000000000000000000c":"0x01","0x0000000000000000000000000000000000000000000000000000000000000009":"0x050a7fe08bc1329220823e5bb808","0x000000000000000000000000000000000000000000000000000000000000000a":"0x606b09bf539a72a731e2e6927d2cff21a41530","0x0000000000000000000000000000000000000000000000000000000000000008":"0x6467c1fb000000000000f0d1ee5e9ae4b7a400000064808fa1518b6b67fd3c55"},"storageCleared":false}} \ No newline at end of file diff --git a/crates/edr_evm/benches/state/state_clone.rs b/crates/edr_evm/benches/state/state_clone.rs deleted file mode 100644 index 846896d5ff..0000000000 --- a/crates/edr_evm/benches/state/state_clone.rs +++ /dev/null @@ -1,19 +0,0 @@ -use criterion::{criterion_group, criterion_main, Criterion}; - -mod util; -use util::{bench_sync_state_method, state_prep_no_op}; - -fn bench_clone(c: &mut Criterion) { - bench_sync_state_method( - c, - "SyncState::clone", - state_prep_no_op, - |state, _number_of_accounts| { - let _cloned = state.clone(); - }, - &[0], - ); -} - -criterion_group!(state_clone_benches, bench_clone); -criterion_main!(state_clone_benches); diff --git a/crates/edr_evm/benches/state/state_debug.rs b/crates/edr_evm/benches/state/state_debug.rs deleted file mode 100644 index 5f9aa8c590..0000000000 --- a/crates/edr_evm/benches/state/state_debug.rs +++ /dev/null @@ -1,397 +0,0 @@ -use criterion::{criterion_group, criterion_main, Criterion}; -use edr_eth::{Address, Bytes, U256}; -use edr_evm::{alloy_primitives::U160, state::AccountModifierFn}; -use revm::{ - db::StateRef, - primitives::{AccountInfo, Bytecode}, -}; - -mod util; -use util::{account_has_code, bench_sync_state_method, permutations, state_prep_no_op}; - -fn bench_account_storage_root_account_doesnt_exist(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:storage_root nonexist acct", - |state, number_of_accounts| { - // ensure account won't exist - let address = Address::from(U160::from(number_of_accounts + 1)); - state.remove_account(address).unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts + 1)); - debug_assert!(state.basic(address).unwrap().is_none()); - let result = state.account_storage_root(&address); - debug_assert!(result.is_ok()); - }, - &permutations::STORAGE_SCALES, - ); -} - -fn bench_account_storage_root_account_exists(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:storage_root exist acct", - state_prep_no_op, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(state.basic(address).unwrap().is_some()); - let result = state.account_storage_root(&address); - debug_assert!(result.is_ok()); - debug_assert!(result.unwrap().is_some()); - }, - &permutations::STORAGE_SCALES, - ); -} - -fn bench_insert_account_already_exists(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:ins exist acct", - state_prep_no_op, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(state.basic(address).unwrap().is_some()); - let result = state.insert_account(address, AccountInfo::default()); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_insert_account_doesnt_exist_without_code(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:ins nonexist acct w.out code", - |state, number_of_accounts| { - // ensure account won't exist - let address = Address::from(U160::from(number_of_accounts + 1)); - state.remove_account(address).unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts + 1)); - debug_assert!(state.basic(address).unwrap().is_none()); - let result = state.insert_account(address, AccountInfo::default()); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_insert_account_doesnt_exist_with_code(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:ins nonexist acct w.code", - |state, number_of_accounts| { - // ensure account won't exist - let address = Address::from(U160::from(number_of_accounts + 1)); - state.remove_account(address).unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts + 1)); - debug_assert!(state.basic(address).unwrap().is_none()); - - let code = Bytecode::new_raw(Bytes::copy_from_slice(address.as_slice())); - let code_hash = code.hash_slow(); - let result = state.insert_account( - address, - AccountInfo { - code_hash, - code: Some(code), - ..AccountInfo::default() - }, - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_doesnt_exist(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod nonexist acct no code chg", - |state, number_of_accounts| { - // ensure account won't exist - let address = Address::from(U160::from(number_of_accounts + 1)); - state.remove_account(address).unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts + 1)); - debug_assert!(state.basic(address).unwrap().is_none()); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(|balance, nonce, _code| { - *balance += U256::from(1); - *nonce += 1; - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_exists_with_code_no_change(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod non-code change", - state_prep_no_op, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(account_has_code(state, &address)); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(|balance, nonce, _code| { - *balance += U256::from(1); - *nonce += 1; - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_exists_with_code_changed_to_empty(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod rm acct code", - |state, number_of_accounts| { - // ensure that the account really does exist and have code - let address = Address::from(U160::from(number_of_accounts)); - let code = Bytecode::new_raw(Bytes::copy_from_slice(address.as_slice())); - state - .insert_account( - address, - AccountInfo { - code_hash: code.hash_slow(), - code: Some(code), - ..AccountInfo::default() - }, - ) - .unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(account_has_code(state, &address)); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(|_balance, _nonce, code| { - code.take(); - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_exists_with_code_changed(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod replace acct code", - state_prep_no_op, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(account_has_code(state, &address)); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(move |_balance, _nonce, code| { - code.replace(Bytecode::new_raw(Bytes::copy_from_slice( - Address::from(U160::from(number_of_accounts + 1)).as_slice(), - ))); - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_exists_without_code_code_changed(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod add code to acct w none", - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - state - .modify_account( - address, - AccountModifierFn::new(Box::new(|_balance, _nonce, code| { - code.take(); - })), - ) - .unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(!account_has_code(state, &address)); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(move |_balance, _nonce, code| { - code.replace(Bytecode::new_raw(Bytes::copy_from_slice( - Address::from(U160::from(number_of_accounts + 1)).as_slice(), - ))); - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_modify_account_exists_without_code_no_code_change(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:mod leave code unchanged", - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - state - .modify_account( - address, - AccountModifierFn::new(Box::new(|_balance, _nonce, code| { - code.take(); - })), - ) - .unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(!account_has_code(state, &address)); - let result = state.modify_account( - address, - AccountModifierFn::new(Box::new(|balance, nonce, _code| { - *balance += U256::from(1); - *nonce += 1; - })), - ); - debug_assert!(result.is_ok()); - }, - &[0], - ); -} - -fn bench_remove_account_with_code(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:rm exist acct w.code", - |state, number_of_accounts| { - // ensure that the account really does exist and have code - let address = Address::from(U160::from(number_of_accounts)); - let code = Bytecode::new_raw(Bytes::copy_from_slice(address.as_slice())); - state - .insert_account( - address, - AccountInfo { - code_hash: code.hash_slow(), - code: Some(code), - ..AccountInfo::default() - }, - ) - .unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(account_has_code(state, &address)); - let result = state.remove_account(address); - debug_assert!(result.is_ok()); - debug_assert!(result.unwrap().is_some()); - }, - &[0], - ); -} - -fn bench_remove_account_without_code(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:rm exist acct w.out code", - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - state - .modify_account( - address, - AccountModifierFn::new(Box::new(|_balance, _nonce, code| { - code.take(); - })), - ) - .unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(!account_has_code(state, &address)); - let result = state.remove_account(address); - debug_assert!(result.is_ok()); - debug_assert!(result.unwrap().is_some()); - }, - &[0], - ); -} - -fn bench_set_account_storage_slot_account_doesnt_exist(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:set_storage nonexist acct", - |state, number_of_accounts| { - // ensure account won't exist - let address = Address::from(U160::from(number_of_accounts + 1)); - state.remove_account(address).unwrap(); - }, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts + 1)); - debug_assert!(state.basic(address).unwrap().is_none()); - let result = state.set_account_storage_slot(address, U256::from(1), U256::from(1)); - debug_assert!(result.is_ok()); - }, - &permutations::STORAGE_SCALES, - ); -} - -fn bench_set_account_storage_slot_account_exists(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:set_storage exist acct", - state_prep_no_op, - |state, number_of_accounts| { - let address = Address::from(U160::from(number_of_accounts)); - debug_assert!(state.basic(address).unwrap().is_some()); - let result = state.set_account_storage_slot(address, U256::from(1), U256::from(1)); - debug_assert!(result.is_ok()); - }, - &permutations::STORAGE_SCALES, - ); -} - -fn bench_state_root(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateDebug:state_root", - state_prep_no_op, - |state, _number_of_accounts| { - let result = state.state_root(); - debug_assert!(result.is_ok()); - }, - &permutations::STORAGE_SCALES, - ); -} - -criterion_group!( - state_debug_benches, - bench_account_storage_root_account_doesnt_exist, - bench_account_storage_root_account_exists, - bench_insert_account_already_exists, - bench_insert_account_doesnt_exist_with_code, - bench_insert_account_doesnt_exist_without_code, - bench_modify_account_doesnt_exist, - bench_modify_account_exists_with_code_no_change, - bench_modify_account_exists_with_code_changed_to_empty, - bench_modify_account_exists_with_code_changed, - bench_modify_account_exists_without_code_code_changed, - bench_modify_account_exists_without_code_no_code_change, - bench_remove_account_with_code, - bench_remove_account_without_code, - bench_set_account_storage_slot_account_doesnt_exist, - bench_set_account_storage_slot_account_exists, - bench_state_root, -); -criterion_main!(state_debug_benches); diff --git a/crates/edr_evm/benches/state/state_ref.rs b/crates/edr_evm/benches/state/state_ref.rs deleted file mode 100644 index 6a83ec765a..0000000000 --- a/crates/edr_evm/benches/state/state_ref.rs +++ /dev/null @@ -1,62 +0,0 @@ -use std::str::FromStr; - -use criterion::{criterion_group, criterion_main, Criterion}; -use edr_eth::{Address, Bytes, U256}; -use edr_evm::alloy_primitives::U160; -use revm::{db::StateRef, primitives::Bytecode}; - -mod util; -use util::{bench_sync_state_method, permutations, state_prep_no_op}; - -fn bench_basic(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateRef:basic", - state_prep_no_op, - |state, number_of_accounts| { - for i in (1..=number_of_accounts).rev() { - let result = state.basic(Address::from_str(&format!("0x{i:0>40x}")).unwrap()); - debug_assert!(result.is_ok()); - } - }, - &[0], - ); -} - -fn bench_code_by_hash(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateRef:code_by_hash", - state_prep_no_op, - |state, number_of_accounts| { - for i in (1..=number_of_accounts).rev() { - let result = state.code_by_hash( - Bytecode::new_raw(Bytes::copy_from_slice( - Address::from(U160::from(i)).as_slice(), - )) - .hash_slow(), - ); - debug_assert!(result.is_ok()); - } - }, - &[0], - ); -} - -fn bench_storage(c: &mut Criterion) { - bench_sync_state_method( - c, - "StateRef:storage", - state_prep_no_op, - |state, number_of_accounts| { - for i in (1..=number_of_accounts).rev() { - let result = state.storage(Address::from(U160::from(i)), U256::from(i)); - debug_assert!(result.is_ok()); - } - }, - &permutations::STORAGE_SCALES, - ); -} - -criterion_group!(benches, bench_basic, bench_code_by_hash, bench_storage,); -criterion_main!(benches); diff --git a/crates/edr_evm/benches/state/util.rs b/crates/edr_evm/benches/state/util.rs deleted file mode 100644 index b0c207f923..0000000000 --- a/crates/edr_evm/benches/state/util.rs +++ /dev/null @@ -1,239 +0,0 @@ -use std::clone::Clone; -#[cfg(all(test, feature = "test-remote"))] -use std::sync::Arc; - -use criterion::{BatchSize, BenchmarkId, Criterion}; -#[cfg(all(test, feature = "test-remote"))] -use edr_eth::remote::PreEip1898BlockSpec; -use edr_eth::{Address, Bytes, U256}; -#[cfg(all(test, feature = "test-remote"))] -use edr_evm::state::ForkState; -use edr_evm::{ - alloy_primitives::U160, - state::{StateError, SyncState, TrieState}, -}; -use revm::primitives::{AccountInfo, Bytecode, KECCAK_EMPTY}; -use tempfile::TempDir; -#[cfg(all(test, feature = "test-remote"))] -use tokio::runtime::Builder; - -#[allow(dead_code)] -struct TestState<'t> { - pub label: &'static str, - pub state_factory: Box Box> + 't>, -} - -pub struct EdrStates { - trie_state: TrieState, - #[cfg(all(test, feature = "test-remote"))] - _runtime: tokio::runtime::Runtime, - #[cfg(all(test, feature = "test-remote"))] - pub fork: ForkState, - // We have to keep the cache dir around to prevent it from being deleted - _cache_dir: TempDir, -} - -impl EdrStates { - pub fn new(#[cfg(all(test, feature = "test-remote"))] fork_block_number: u64) -> Self { - let cache_dir = TempDir::new().expect("can create temp dir"); - - #[cfg(all(test, feature = "test-remote"))] - let runtime = Builder::new_multi_thread() - .enable_io() - .enable_time() - .build() - .unwrap(); - - #[cfg(all(test, feature = "test-remote"))] - let fork = { - use edr_eth::remote::RpcClient; - use edr_evm::RandomHashGenerator; - use parking_lot::Mutex; - - let rpc_client = Arc::new( - RpcClient::new( - &std::env::var_os("ALCHEMY_URL") - .expect("ALCHEMY_URL environment variable not defined") - .into_string() - .unwrap(), - cache_dir.path().to_path_buf(), - None, - ) - .expect("url ok"), - ); - - let block = runtime - .block_on( - rpc_client.get_block_by_number(PreEip1898BlockSpec::Number(fork_block_number)), - ) - .expect("failed to retrieve block by number") - .expect("block should exist"); - - ForkState::new( - runtime.handle().clone(), - rpc_client, - Arc::new(Mutex::new(RandomHashGenerator::with_seed( - edr_defaults::STATE_ROOT_HASH_SEED, - ))), - fork_block_number, - block.state_root, - ) - }; - - Self { - trie_state: TrieState::default(), - #[cfg(all(test, feature = "test-remote"))] - _runtime: runtime, - #[cfg(all(test, feature = "test-remote"))] - fork, - _cache_dir: cache_dir, - } - } - - pub fn fill(&mut self, number_of_accounts: u64, number_of_storage_slots_per_account: u64) { - let mut states: Vec<&mut dyn SyncState> = vec![ - &mut self.trie_state, - #[cfg(all(test, feature = "test-remote"))] - &mut self.fork, - ]; - - for state in states.iter_mut() { - for account_number in 1..=number_of_accounts { - let address = Address::from(U160::from(account_number)); - let code = Bytecode::new_raw(Bytes::copy_from_slice(address.as_slice())); - let code_hash = code.hash_slow(); - - state - .insert_account( - address, - AccountInfo::new( - U256::from(account_number), - account_number, - code_hash, - code, - ), - ) - .unwrap(); - - for storage_slot in 0..number_of_storage_slots_per_account { - state - .set_account_storage_slot( - address, - U256::from(storage_slot), - U256::from(account_number), - ) - .unwrap(); - } - } - } - } - - /// Returns a set of factories, each member of which produces a clone of one - /// of the state objects in this struct. - #[allow(dead_code)] - fn make_state_refs(&self) -> Vec> { - vec![ - TestState { - label: "Trie", - state_factory: Box::new(|| Box::new(self.trie_state.clone())), - }, - #[cfg(all(test, feature = "test-remote"))] - TestState { - label: "Fork", - state_factory: Box::new(|| Box::new(self.fork.clone())), - }, - ] - } -} - -#[cfg(feature = "bench-once")] -pub mod permutations { - pub const ACCOUNT_SCALES: [u64; 1] = [1]; - - #[allow(dead_code)] - pub const STORAGE_SCALES: [u64; 1] = [1]; -} - -#[cfg(not(feature = "bench-once"))] -pub mod permutations { - pub const ACCOUNT_SCALES: [u64; 4] = [10, 100, 1000, 10000]; - - #[allow(dead_code)] - pub const STORAGE_SCALES: [u64; 4] = [1, 10, 100, 1000]; -} - -#[allow(dead_code)] -pub fn bench_sync_state_method( - c: &mut Criterion, - method_name: &str, - mut prep_state: StatePrep, - method_invocation: R, - storage_scales: &[u64], -) where - R: FnMut(&mut Box>, u64) -> O, - StatePrep: FnMut(&mut dyn SyncState, u64), -{ - let mut group = c.benchmark_group(method_name); - let method_invocation = std::cell::RefCell::::new(method_invocation); - for number_of_accounts in permutations::ACCOUNT_SCALES { - for storage_slots_per_account in storage_scales.iter() { - let mut edr_states = EdrStates::new( - #[cfg(all(test, feature = "test-remote"))] - 17274563, - ); - edr_states.fill(number_of_accounts, *storage_slots_per_account); - - for TestState { - label, - state_factory, - } in edr_states.make_state_refs() - { - group.bench_with_input( - BenchmarkId::new( - format!("{label} with {storage_slots_per_account} slots per account"), - number_of_accounts, - ), - &number_of_accounts, - |b, number_of_accounts| { - b.iter_batched( - || { - let mut state = state_factory(); - // in order to prime any caches that the - // state object may be employing, run the - // method invocation here in the setup - // routine. note that we have to run prep - // before THIS invocation, and then AGAIN - // after it, for the "real" invocation. - prep_state(&mut state, *number_of_accounts); - method_invocation.borrow_mut()(&mut state, *number_of_accounts); - prep_state(&mut state, *number_of_accounts); - state - }, - |mut state| { - method_invocation.borrow_mut()(&mut state, *number_of_accounts) - }, - BatchSize::SmallInput, - ); - }, - ); - } - } - } -} - -#[allow(dead_code)] -pub fn state_prep_no_op(_state: &mut dyn SyncState, _number_of_accounts: u64) {} - -#[allow(dead_code)] -pub fn account_has_code(state: &dyn SyncState, address: &Address) -> bool { - let account_info = state - .basic(*address) - .expect("basic should succeed") - .expect("account should exist"); - account_info.code_hash != KECCAK_EMPTY - && !state - .code_by_hash(account_info.code_hash) - .expect("code_by_hash should succeed") - .bytecode - .is_empty() -} diff --git a/crates/edr_evm/src/block.rs b/crates/edr_evm/src/block.rs deleted file mode 100644 index 2abdeec27e..0000000000 --- a/crates/edr_evm/src/block.rs +++ /dev/null @@ -1,113 +0,0 @@ -mod builder; -mod local; -mod remote; - -use std::{fmt::Debug, sync::Arc}; - -use auto_impl::auto_impl; -use edr_eth::{block, receipt::BlockReceipt, remote::eth, withdrawal::Withdrawal, B256, U256}; - -pub use self::{ - builder::{ - BlockBuilder, BlockBuilderCreationError, BlockTransactionError, BuildBlockResult, - ExecutionResultWithContext, - }, - local::LocalBlock, - remote::{CreationError as RemoteBlockCreationError, RemoteBlock}, -}; -use crate::ExecutableTransaction; - -/// Trait for implementations of an Ethereum block. -#[auto_impl(Arc)] -pub trait Block: Debug { - /// The blockchain error type. - type Error; - - /// Returns the block's hash. - fn hash(&self) -> &B256; - - /// Returns the block's header. - fn header(&self) -> &block::Header; - - /// Ommer/uncle block hashes. - fn ommer_hashes(&self) -> &[B256]; - - /// The length of the RLP encoding of this block in bytes. - fn rlp_size(&self) -> u64; - - /// Returns the block's transactions. - fn transactions(&self) -> &[ExecutableTransaction]; - - /// Returns the receipts of the block's transactions. - fn transaction_receipts(&self) -> Result>, Self::Error>; - - /// Withdrawals - fn withdrawals(&self) -> Option<&[Withdrawal]>; -} - -/// Trait that meets all requirements for a synchronous block. -pub trait SyncBlock: Block + Send + Sync {} - -impl SyncBlock for BlockT where BlockT: Block + Send + Sync {} - -/// The result returned by requesting a block by number. -#[derive(Debug)] -pub struct BlockAndTotalDifficulty { - /// The block - pub block: Arc>, - /// The total difficulty with the block - pub total_difficulty: Option, -} - -impl Clone for BlockAndTotalDifficulty { - fn clone(&self) -> Self { - Self { - block: self.block.clone(), - total_difficulty: self.total_difficulty, - } - } -} - -impl From> for eth::Block { - fn from(value: BlockAndTotalDifficulty) -> Self { - let transactions = value - .block - .transactions() - .iter() - .map(|tx| *tx.hash()) - .collect(); - - let header = value.block.header(); - eth::Block { - hash: Some(*value.block.hash()), - parent_hash: header.parent_hash, - sha3_uncles: header.ommers_hash, - state_root: header.state_root, - transactions_root: header.transactions_root, - receipts_root: header.receipts_root, - number: Some(header.number), - gas_used: header.gas_used, - gas_limit: header.gas_limit, - extra_data: header.extra_data.clone(), - logs_bloom: header.logs_bloom, - timestamp: header.timestamp, - difficulty: header.difficulty, - total_difficulty: value.total_difficulty, - uncles: value.block.ommer_hashes().to_vec(), - transactions, - size: value.block.rlp_size(), - mix_hash: Some(header.mix_hash), - nonce: Some(header.nonce), - base_fee_per_gas: header.base_fee_per_gas, - miner: Some(header.beneficiary), - withdrawals: value - .block - .withdrawals() - .map(<[edr_eth::withdrawal::Withdrawal]>::to_vec), - withdrawals_root: header.withdrawals_root, - blob_gas_used: header.blob_gas.as_ref().map(|bg| bg.gas_used), - excess_blob_gas: header.blob_gas.as_ref().map(|bg| bg.excess_gas), - parent_beacon_block_root: header.parent_beacon_block_root, - } - } -} diff --git a/crates/edr_evm/src/block/builder.rs b/crates/edr_evm/src/block/builder.rs deleted file mode 100644 index b1b85caf26..0000000000 --- a/crates/edr_evm/src/block/builder.rs +++ /dev/null @@ -1,587 +0,0 @@ -use std::{ - fmt::Debug, - time::{SystemTime, UNIX_EPOCH}, -}; - -use edr_eth::{ - block::{BlobGas, BlockOptions, PartialHeader}, - log::{add_log_to_bloom, Log}, - receipt::{TransactionReceipt, TypedReceipt, TypedReceiptData}, - transaction::SignedTransaction, - trie::{ordered_trie_root, KECCAK_NULL_RLP}, - withdrawal::Withdrawal, - Address, Bloom, U256, -}; -use revm::{ - db::{DatabaseComponentError, DatabaseComponents, StateRef}, - primitives::{ - BlobExcessGasAndPrice, BlockEnv, CfgEnvWithHandlerCfg, EVMError, EnvWithHandlerCfg, - ExecutionResult, InvalidHeader, InvalidTransaction, Output, ResultAndState, SpecId, - MAX_BLOB_GAS_PER_BLOCK, - }, - Context, DatabaseCommit, Evm, InnerEvmContext, -}; - -use super::local::LocalBlock; -use crate::{ - blockchain::SyncBlockchain, - debug::{DebugContext, EvmContext}, - state::{AccountModifierFn, StateDebug, StateDiff, SyncState}, - ExecutableTransaction, SyncBlock, -}; - -const DAO_EXTRA_DATA: &[u8] = b"dao-hard-fork"; - -/// An error caused during construction of a block builder. -#[derive(Debug, thiserror::Error)] -pub enum BlockBuilderCreationError { - /// The extra data is invalid for a DAO hardfork. - #[error("extraData should be dao-hard-fork")] - DaoHardforkInvalidData, - /// Unsupported hardfork. Hardforks older than Byzantium are not supported - #[error("Unsupported hardfork: {0:?}. Hardforks older than Byzantium are not supported.")] - UnsupportedHardfork(SpecId), -} - -/// An error caused during execution of a transaction while building a block. -#[derive(Debug, thiserror::Error)] -pub enum BlockTransactionError { - /// Blockchain errors - #[error(transparent)] - BlockHash(BE), - /// Custom error - #[error("{0}")] - Custom(String), - /// Transaction has higher gas limit than is remaining in block - #[error("Transaction has a higher gas limit than the remaining gas in the block")] - ExceedsBlockGasLimit, - /// Transaction has higher blob gas usage than is remaining in block - #[error("Transaction has higher blob gas usage than is remaining in block")] - ExceedsBlockBlobGasLimit, - /// Sender does not have enough funds to send transaction. - #[error("Sender doesn't have enough funds to send tx. The max upfront cost is: {max_upfront_cost} and the sender's balance is: {sender_balance}.")] - InsufficientFunds { - /// The maximum upfront cost of the transaction - max_upfront_cost: U256, - /// The sender's balance - sender_balance: U256, - }, - /// Corrupt transaction data - #[error("Invalid transaction: {0:?}")] - InvalidTransaction(InvalidTransaction), - /// State errors - #[error(transparent)] - State(SE), -} - -impl From>> for BlockTransactionError -where - BE: Debug + Send, - SE: Debug + Send, -{ - fn from(error: EVMError>) -> Self { - match error { - EVMError::Transaction(e) => match e { - InvalidTransaction::LackOfFundForMaxFee { fee, balance } => { - Self::InsufficientFunds { - max_upfront_cost: *fee, - sender_balance: *balance, - } - } - _ => Self::InvalidTransaction(e), - }, - EVMError::Database(DatabaseComponentError::State(e)) => Self::State(e), - EVMError::Database(DatabaseComponentError::BlockHash(e)) => Self::BlockHash(e), - // This case is a bug in our codebase for local blockchains, but it can happen that the - // remote returns incorrect block data in which case we should return a custom error. - EVMError::Header( - error @ (InvalidHeader::ExcessBlobGasNotSet | InvalidHeader::PrevrandaoNotSet), - ) => Self::Custom(error.to_string()), - EVMError::Custom(error) => Self::Custom(error), - } - } -} - -/// The result of executing a transaction, along with the context in which it -/// was executed. -pub struct ExecutionResultWithContext< - 'evm, - BlockchainErrorT, - StateErrorT, - DebugDataT, - StateT: StateRef, -> { - /// The result of executing the transaction. - pub result: Result>, - /// The context in which the transaction was executed. - pub evm_context: EvmContext<'evm, BlockchainErrorT, DebugDataT, StateT>, -} - -/// The result of building a block, using the [`BlockBuilder`]. -pub struct BuildBlockResult { - /// Built block - pub block: LocalBlock, - /// State diff - pub state_diff: StateDiff, -} - -/// A builder for constructing Ethereum blocks. -pub struct BlockBuilder { - cfg: CfgEnvWithHandlerCfg, - header: PartialHeader, - transactions: Vec, - state_diff: StateDiff, - receipts: Vec>, - parent_gas_limit: Option, - withdrawals: Option>, -} - -impl BlockBuilder { - /// Creates an intance of [`BlockBuilder`]. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn new( - cfg: CfgEnvWithHandlerCfg, - parent: &dyn SyncBlock, - mut options: BlockOptions, - dao_hardfork_activation_block: Option, - ) -> Result { - if cfg.handler_cfg.spec_id < SpecId::BYZANTIUM { - return Err(BlockBuilderCreationError::UnsupportedHardfork( - cfg.handler_cfg.spec_id, - )); - } - - let parent_header = parent.header(); - let parent_gas_limit = if options.gas_limit.is_none() { - Some(parent_header.gas_limit) - } else { - None - }; - - let withdrawals = std::mem::take(&mut options.withdrawals).or_else(|| { - if cfg.handler_cfg.spec_id >= SpecId::SHANGHAI { - Some(Vec::new()) - } else { - None - } - }); - - options.parent_hash = Some(*parent.hash()); - let header = PartialHeader::new(cfg.handler_cfg.spec_id, options, Some(parent_header)); - - if let Some(dao_hardfork_activation_block) = dao_hardfork_activation_block { - const DAO_FORCE_EXTRA_DATA_RANGE: u64 = 9; - - let drift = header.number - dao_hardfork_activation_block; - if cfg.handler_cfg.spec_id >= SpecId::DAO_FORK - && drift <= DAO_FORCE_EXTRA_DATA_RANGE - && *header.extra_data != DAO_EXTRA_DATA - { - return Err(BlockBuilderCreationError::DaoHardforkInvalidData); - } - } - - Ok(Self { - cfg, - header, - transactions: Vec::new(), - state_diff: StateDiff::default(), - receipts: Vec::new(), - parent_gas_limit, - withdrawals, - }) - } - - /// Retrieves the config of the block builder. - pub fn config(&self) -> &CfgEnvWithHandlerCfg { - &self.cfg - } - - /// Retrieves the amount of gas used in the block, so far. - pub fn gas_used(&self) -> u64 { - self.header.gas_used - } - - /// Retrieves the amount of gas left in the block. - pub fn gas_remaining(&self) -> u64 { - self.header.gas_limit - self.gas_used() - } - - /// Retrieves the header of the block builder. - pub fn header(&self) -> &PartialHeader { - &self.header - } - - /// Adds a pending transaction to - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn add_transaction<'blockchain, 'evm, BlockchainErrorT, DebugDataT, StateT, StateErrorT>( - &mut self, - blockchain: &'blockchain dyn SyncBlockchain, - state: StateT, - transaction: ExecutableTransaction, - debug_context: Option>, - ) -> ExecutionResultWithContext<'evm, BlockchainErrorT, StateErrorT, DebugDataT, StateT> - where - 'blockchain: 'evm, - BlockchainErrorT: Debug + Send, - StateT: StateRef + DatabaseCommit + StateDebug, - StateErrorT: Debug + Send, - { - // transaction's gas limit cannot be greater than the remaining gas in the - // block - if transaction.gas_limit() > self.gas_remaining() { - return ExecutionResultWithContext { - result: Err(BlockTransactionError::ExceedsBlockGasLimit), - evm_context: EvmContext { - debug: debug_context, - state, - }, - }; - } - - let blob_gas_used = transaction.total_blob_gas().unwrap_or_default(); - if let Some(BlobGas { - gas_used: block_blob_gas_used, - .. - }) = self.header.blob_gas.as_ref() - { - if block_blob_gas_used + blob_gas_used > MAX_BLOB_GAS_PER_BLOCK { - return ExecutionResultWithContext { - result: Err(BlockTransactionError::ExceedsBlockBlobGasLimit), - evm_context: EvmContext { - debug: debug_context, - state, - }, - }; - } - } - - let spec_id = self.cfg.handler_cfg.spec_id; - - let block = BlockEnv { - number: U256::from(self.header.number), - coinbase: self.header.beneficiary, - timestamp: U256::from(self.header.timestamp), - difficulty: self.header.difficulty, - basefee: self.header.base_fee.unwrap_or(U256::ZERO), - gas_limit: U256::from(self.header.gas_limit), - prevrandao: if spec_id >= SpecId::MERGE { - Some(self.header.mix_hash) - } else { - None - }, - blob_excess_gas_and_price: self - .header - .blob_gas - .as_ref() - .map(|BlobGas { excess_gas, .. }| BlobExcessGasAndPrice::new(*excess_gas)), - }; - - let env = EnvWithHandlerCfg::new_with_cfg_env( - self.cfg.clone(), - block.clone(), - transaction.clone().into(), - ); - - let db = DatabaseComponents { - state, - block_hash: blockchain, - }; - - let ( - mut evm_context, - ResultAndState { - result, - state: state_diff, - }, - ) = { - if let Some(debug_context) = debug_context { - let mut evm = Evm::builder() - .with_ref_db(db) - .with_external_context(debug_context.data) - .with_env_with_handler_cfg(env) - .append_handler_register(debug_context.register_handles_fn) - .build(); - - let result = evm.transact(); - let Context { - evm: - revm::EvmContext { - inner: InnerEvmContext { db, .. }, - .. - }, - external, - } = evm.into_context(); - - let evm_context = EvmContext { - debug: Some(DebugContext { - data: external, - register_handles_fn: debug_context.register_handles_fn, - }), - state: db.0.state, - }; - - match result { - Ok(result) => (evm_context, result), - Err(error) => { - return ExecutionResultWithContext { - result: Err(error.into()), - evm_context, - }; - } - } - } else { - let mut evm = Evm::builder() - .with_ref_db(db) - .with_env_with_handler_cfg(env) - .build(); - - let result = evm.transact(); - let Context { - evm: - revm::EvmContext { - inner: InnerEvmContext { db, .. }, - .. - }, - .. - } = evm.into_context(); - - let evm_context = EvmContext { - debug: None, - state: db.0.state, - }; - - match result { - Ok(result) => (evm_context, result), - Err(error) => { - return ExecutionResultWithContext { - result: Err(error.into()), - evm_context, - }; - } - } - } - }; - - let state = &mut evm_context.state; - - self.state_diff.apply_diff(state_diff.clone()); - - state.commit(state_diff); - - self.header.gas_used += result.gas_used(); - - if let Some(BlobGas { gas_used, .. }) = self.header.blob_gas.as_mut() { - *gas_used += blob_gas_used; - } - - let logs = result.logs().to_vec(); - let logs_bloom = { - let mut bloom = Bloom::ZERO; - for log in &logs { - add_log_to_bloom(log, &mut bloom); - } - bloom - }; - - let status = u8::from(result.is_success()); - let contract_address = if let ExecutionResult::Success { - output: Output::Create(_, address), - .. - } = &result - { - *address - } else { - None - }; - - let receipt = TransactionReceipt { - inner: TypedReceipt { - cumulative_gas_used: self.header.gas_used, - logs_bloom, - logs, - data: match &*transaction { - SignedTransaction::PreEip155Legacy(_) - | SignedTransaction::PostEip155Legacy(_) => { - if spec_id < SpecId::BYZANTIUM { - TypedReceiptData::PreEip658Legacy { - state_root: state - .state_root() - .expect("Must be able to calculate state root"), - } - } else { - TypedReceiptData::PostEip658Legacy { status } - } - } - SignedTransaction::Eip2930(_) => TypedReceiptData::Eip2930 { status }, - SignedTransaction::Eip1559(_) => TypedReceiptData::Eip1559 { status }, - SignedTransaction::Eip4844(_) => TypedReceiptData::Eip4844 { status }, - }, - spec_id, - }, - transaction_hash: *transaction.hash(), - transaction_index: self.transactions.len() as u64, - from: *transaction.caller(), - to: transaction.to(), - contract_address, - gas_used: result.gas_used(), - effective_gas_price: Some(transaction.effective_gas_price(block.basefee)), - }; - self.receipts.push(receipt); - - self.transactions.push(transaction); - - ExecutionResultWithContext { - result: Ok(result), - evm_context, - } - } - - /// Finalizes the block, returning the block and the callers of the - /// transactions. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn finalize( - mut self, - state: &mut StateT, - rewards: Vec<(Address, U256)>, - ) -> Result - where - StateT: SyncState + ?Sized, - StateErrorT: Debug + Send, - { - for (address, reward) in rewards { - if reward > U256::ZERO { - let account_info = state.modify_account( - address, - AccountModifierFn::new(Box::new(move |balance, _nonce, _code| { - *balance += reward; - })), - )?; - - self.state_diff.apply_account_change(address, account_info); - } - } - - if let Some(gas_limit) = self.parent_gas_limit { - self.header.gas_limit = gas_limit; - } - - self.header.logs_bloom = { - let mut logs_bloom = Bloom::ZERO; - self.receipts.iter().for_each(|receipt| { - logs_bloom.accrue_bloom(receipt.logs_bloom()); - }); - logs_bloom - }; - - self.header.receipts_root = ordered_trie_root( - self.receipts - .iter() - .map(|receipt| alloy_rlp::encode(&**receipt)), - ); - - // Only set the state root if it wasn't specified during construction - if self.header.state_root == KECCAK_NULL_RLP { - self.header.state_root = state - .state_root() - .expect("Must be able to calculate state root"); - } - - // Only set the timestamp if it wasn't specified during construction - if self.header.timestamp == 0 { - self.header.timestamp = SystemTime::now() - .duration_since(UNIX_EPOCH) - .expect("Current time must be after unix epoch") - .as_secs(); - } - - // TODO: handle ommers - let block = LocalBlock::new( - self.header, - self.transactions, - self.receipts, - Vec::new(), - self.withdrawals, - ); - - Ok(BuildBlockResult { - block, - state_diff: self.state_diff, - }) - } -} - -#[cfg(test)] -mod tests { - use edr_eth::Bytes; - use revm::primitives::CfgEnv; - - #[test] - fn dao_hardfork_has_extra_data() { - use edr_eth::block::BlockOptions; - - use super::*; - - const DUMMY_DAO_HARDFORK_BLOCK_NUMBER: u64 = 3; - - // Create a random block header - let partial_header = PartialHeader { - number: DUMMY_DAO_HARDFORK_BLOCK_NUMBER - 1, - ..PartialHeader::default() - }; - - let spec_id = SpecId::BYZANTIUM; - let parent = LocalBlock::empty(spec_id, partial_header); - - let cfg = CfgEnvWithHandlerCfg::new_with_spec_id(CfgEnv::default(), spec_id); - let block_options = BlockOptions { - number: Some(DUMMY_DAO_HARDFORK_BLOCK_NUMBER), - extra_data: Some(Bytes::from(DAO_EXTRA_DATA)), - ..BlockOptions::default() - }; - - let block_builder = BlockBuilder::new( - cfg, - &parent, - block_options, - Some(DUMMY_DAO_HARDFORK_BLOCK_NUMBER), - ); - assert!(block_builder.is_ok()); - } - - #[test] - fn dao_hardfork_missing_extra_data() { - use edr_eth::block::BlockOptions; - - use super::*; - - const DUMMY_DAO_HARDFORK_BLOCK_NUMBER: u64 = 3; - - // Create a random block header - let partial_header = PartialHeader { - number: DUMMY_DAO_HARDFORK_BLOCK_NUMBER - 1, - ..PartialHeader::default() - }; - - let spec_id = SpecId::BYZANTIUM; - let parent = LocalBlock::empty(spec_id, partial_header); - - let cfg = CfgEnvWithHandlerCfg::new_with_spec_id(CfgEnv::default(), spec_id); - - let block_options = BlockOptions { - number: Some(DUMMY_DAO_HARDFORK_BLOCK_NUMBER), - ..BlockOptions::default() - }; - - let block_builder = BlockBuilder::new( - cfg, - &parent, - block_options, - Some(DUMMY_DAO_HARDFORK_BLOCK_NUMBER), - ); - assert!(matches!( - block_builder, - Err(BlockBuilderCreationError::DaoHardforkInvalidData) - )); - } -} diff --git a/crates/edr_evm/src/block/local.rs b/crates/edr_evm/src/block/local.rs deleted file mode 100644 index c5c0eb00b8..0000000000 --- a/crates/edr_evm/src/block/local.rs +++ /dev/null @@ -1,206 +0,0 @@ -use std::sync::Arc; - -use alloy_rlp::RlpEncodable; -use edr_eth::{ - block::{self, Header, PartialHeader}, - log::{FilterLog, FullBlockLog, Log, ReceiptLog}, - receipt::{BlockReceipt, TransactionReceipt, TypedReceipt}, - trie, - withdrawal::Withdrawal, - B256, -}; -use itertools::izip; -use revm::primitives::keccak256; - -use crate::{ - blockchain::BlockchainError, Block, DetailedTransaction, ExecutableTransaction, SpecId, - SyncBlock, -}; - -/// A locally mined block, which contains complete information. -#[derive(Clone, Debug, PartialEq, Eq, RlpEncodable)] -#[rlp(trailing)] -pub struct LocalBlock { - header: block::Header, - transactions: Vec, - #[rlp(skip)] - transaction_receipts: Vec>, - ommers: Vec, - #[rlp(skip)] - ommer_hashes: Vec, - withdrawals: Option>, - #[rlp(skip)] - hash: B256, -} - -impl LocalBlock { - /// Constructs an empty block, i.e. no transactions. - pub fn empty(spec_id: SpecId, partial_header: PartialHeader) -> Self { - let withdrawals = if spec_id >= SpecId::SHANGHAI { - Some(Vec::default()) - } else { - None - }; - - Self::new( - partial_header, - Vec::new(), - Vec::new(), - Vec::new(), - withdrawals, - ) - } - - /// Constructs a new instance with the provided data. - pub fn new( - partial_header: PartialHeader, - transactions: Vec, - transaction_receipts: Vec>, - ommers: Vec
, - withdrawals: Option>, - ) -> Self { - let ommer_hashes = ommers.iter().map(Header::hash).collect::>(); - let ommers_hash = keccak256(alloy_rlp::encode(&ommers)); - let transactions_root = trie::ordered_trie_root(transactions.iter().map(alloy_rlp::encode)); - - let withdrawals_root = withdrawals - .as_ref() - .map(|w| trie::ordered_trie_root(w.iter().map(alloy_rlp::encode))); - - let header = Header::new( - partial_header, - ommers_hash, - transactions_root, - withdrawals_root, - ); - - let hash = header.hash(); - let transaction_receipts = - transaction_to_block_receipts(&hash, header.number, transaction_receipts); - - Self { - header, - transactions, - transaction_receipts, - ommers, - ommer_hashes, - withdrawals, - hash, - } - } - - /// Returns the receipts of the block's transactions. - pub fn transaction_receipts(&self) -> &[Arc] { - &self.transaction_receipts - } - - /// Retrieves the block's transactions. - pub fn detailed_transactions(&self) -> impl Iterator> { - izip!(self.transactions.iter(), self.transaction_receipts.iter()).map( - |(transaction, receipt)| DetailedTransaction { - transaction, - receipt, - }, - ) - } -} - -impl Block for LocalBlock { - type Error = BlockchainError; - - fn hash(&self) -> &B256 { - &self.hash - } - - fn header(&self) -> &block::Header { - &self.header - } - - fn rlp_size(&self) -> u64 { - alloy_rlp::encode(self) - .len() - .try_into() - .expect("usize fits into u64") - } - - fn transactions(&self) -> &[ExecutableTransaction] { - &self.transactions - } - - fn transaction_receipts(&self) -> Result>, Self::Error> { - Ok(self.transaction_receipts.clone()) - } - - fn ommer_hashes(&self) -> &[B256] { - self.ommer_hashes.as_slice() - } - - fn withdrawals(&self) -> Option<&[Withdrawal]> { - self.withdrawals.as_deref() - } -} - -fn transaction_to_block_receipts( - block_hash: &B256, - block_number: u64, - receipts: Vec>, -) -> Vec> { - let mut log_index = 0; - - receipts - .into_iter() - .enumerate() - .map(|(transaction_index, receipt)| { - let transaction_index = transaction_index as u64; - - Arc::new(BlockReceipt { - inner: TransactionReceipt { - inner: TypedReceipt { - cumulative_gas_used: receipt.inner.cumulative_gas_used, - logs_bloom: receipt.inner.logs_bloom, - logs: receipt - .inner - .logs - .into_iter() - .map(|log| FilterLog { - inner: FullBlockLog { - inner: ReceiptLog { - inner: log, - transaction_hash: receipt.transaction_hash, - }, - block_hash: *block_hash, - block_number, - log_index: { - let index = log_index; - log_index += 1; - index - }, - transaction_index, - }, - // Assuming a local block is never reorged out. - removed: false, - }) - .collect(), - data: receipt.inner.data, - spec_id: receipt.inner.spec_id, - }, - transaction_hash: receipt.transaction_hash, - transaction_index, - from: receipt.from, - to: receipt.to, - contract_address: receipt.contract_address, - gas_used: receipt.gas_used, - effective_gas_price: receipt.effective_gas_price, - }, - block_hash: *block_hash, - block_number, - }) - }) - .collect() -} - -impl From for Arc> { - fn from(value: LocalBlock) -> Self { - Arc::new(value) - } -} diff --git a/crates/edr_evm/src/block/remote.rs b/crates/edr_evm/src/block/remote.rs deleted file mode 100644 index 359eef972a..0000000000 --- a/crates/edr_evm/src/block/remote.rs +++ /dev/null @@ -1,177 +0,0 @@ -use std::sync::{Arc, OnceLock}; - -use edr_eth::{ - block::{BlobGas, Header}, - receipt::BlockReceipt, - remote::{eth, RpcClient}, - withdrawal::Withdrawal, - B256, -}; -use tokio::runtime; - -use crate::{ - blockchain::{BlockchainError, ForkedBlockchainError}, - Block, ExecutableTransaction, SyncBlock, TransactionConversionError, -}; - -/// Error that occurs when trying to convert the JSON-RPC `Block` type. -#[derive(Debug, thiserror::Error)] -pub enum CreationError { - /// Missing hash - #[error("Missing hash")] - MissingHash, - /// Missing miner - #[error("Missing miner")] - MissingMiner, - /// Missing mix hash - #[error("Missing mix hash")] - MissingMixHash, - /// Missing nonce - #[error("Missing nonce")] - MissingNonce, - /// Missing number - #[error("Missing numbeer")] - MissingNumber, - /// Transaction conversion error - #[error(transparent)] - TransactionConversionError(#[from] TransactionConversionError), -} - -/// A remote block, which lazily loads receipts. -#[derive(Clone, Debug)] -pub struct RemoteBlock { - header: Header, - transactions: Vec, - /// The receipts of the block's transactions - receipts: OnceLock>>, - /// The hashes of the block's ommers - ommer_hashes: Vec, - /// The staking withdrawals - withdrawals: Option>, - /// The block's hash - hash: B256, - /// The length of the RLP encoding of this block in bytes - size: u64, - // The RPC client is needed to lazily fetch receipts - rpc_client: Arc, - runtime: runtime::Handle, -} - -impl RemoteBlock { - /// Constructs a new instance with the provided JSON-RPC block and client. - pub fn new( - block: eth::Block, - rpc_client: Arc, - runtime: runtime::Handle, - ) -> Result { - let header = Header { - parent_hash: block.parent_hash, - ommers_hash: block.sha3_uncles, - beneficiary: block.miner.ok_or(CreationError::MissingMiner)?, - state_root: block.state_root, - transactions_root: block.transactions_root, - receipts_root: block.receipts_root, - logs_bloom: block.logs_bloom, - difficulty: block.difficulty, - number: block.number.ok_or(CreationError::MissingNumber)?, - gas_limit: block.gas_limit, - gas_used: block.gas_used, - timestamp: block.timestamp, - extra_data: block.extra_data, - mix_hash: block.mix_hash.ok_or(CreationError::MissingMixHash)?, - nonce: block.nonce.ok_or(CreationError::MissingNonce)?, - base_fee_per_gas: block.base_fee_per_gas, - withdrawals_root: block.withdrawals_root, - blob_gas: block.blob_gas_used.and_then(|gas_used| { - block.excess_blob_gas.map(|excess_gas| BlobGas { - gas_used, - excess_gas, - }) - }), - parent_beacon_block_root: block.parent_beacon_block_root, - }; - - let transactions = block - .transactions - .into_iter() - .map(ExecutableTransaction::try_from) - .collect::, _>>()?; - - let hash = block.hash.ok_or(CreationError::MissingHash)?; - - Ok(Self { - header, - transactions, - receipts: OnceLock::new(), - ommer_hashes: block.uncles, - withdrawals: block.withdrawals, - hash, - rpc_client, - size: block.size, - runtime, - }) - } -} - -impl Block for RemoteBlock { - type Error = BlockchainError; - - fn hash(&self) -> &B256 { - &self.hash - } - - fn header(&self) -> &Header { - &self.header - } - - fn ommer_hashes(&self) -> &[B256] { - self.ommer_hashes.as_slice() - } - - fn rlp_size(&self) -> u64 { - self.size - } - - fn transactions(&self) -> &[ExecutableTransaction] { - &self.transactions - } - - fn transaction_receipts(&self) -> Result>, Self::Error> { - if let Some(receipts) = self.receipts.get() { - return Ok(receipts.clone()); - } - - let receipts: Vec> = tokio::task::block_in_place(|| { - self.runtime.block_on( - self.rpc_client.get_transaction_receipts( - self.transactions - .iter() - .map(|transaction| transaction.hash()), - ), - ) - }) - .map_err(ForkedBlockchainError::RpcClient)? - .ok_or_else(|| ForkedBlockchainError::MissingReceipts { - block_hash: *self.hash(), - })? - .into_iter() - .map(Arc::new) - .collect(); - - self.receipts - .set(receipts.clone()) - .expect("We checked that receipts are not set"); - - Ok(receipts) - } - - fn withdrawals(&self) -> Option<&[Withdrawal]> { - self.withdrawals.as_deref() - } -} - -impl From for Arc> { - fn from(value: RemoteBlock) -> Self { - Arc::new(value) - } -} diff --git a/crates/edr_evm/src/blockchain.rs b/crates/edr_evm/src/blockchain.rs deleted file mode 100644 index 70b04868f3..0000000000 --- a/crates/edr_evm/src/blockchain.rs +++ /dev/null @@ -1,276 +0,0 @@ -mod forked; -mod local; -mod remote; -/// Storage data structures for a blockchain -pub mod storage; - -use std::{collections::BTreeMap, fmt::Debug, ops::Bound::Included, sync::Arc}; - -use auto_impl::auto_impl; -use edr_eth::{ - log::FilterLog, receipt::BlockReceipt, spec::HardforkActivations, Address, B256, U256, -}; -use revm::{ - db::BlockHashRef, - primitives::{HashSet, SpecId}, - DatabaseCommit, -}; - -use self::storage::ReservableSparseBlockchainStorage; -pub use self::{ - forked::{CreationError as ForkedCreationError, ForkedBlockchain, ForkedBlockchainError}, - local::{CreationError as LocalCreationError, GenesisBlockOptions, LocalBlockchain}, -}; -use crate::{ - state::{StateDiff, StateOverride, SyncState}, - Block, BlockAndTotalDifficulty, LocalBlock, SyncBlock, -}; - -/// Combinatorial error for the blockchain API. -#[derive(Debug, thiserror::Error)] -pub enum BlockchainError { - /// Block number exceeds storage capacity (usize::MAX) - #[error("Block number exceeds storage capacity.")] - BlockNumberTooLarge, - /// Forked blockchain error - #[error(transparent)] - Forked(#[from] ForkedBlockchainError), - /// An error that occurs when trying to insert a block into storage. - #[error(transparent)] - Insert(#[from] storage::InsertError), - /// Invalid block number - #[error("Invalid block number: {actual}. Expected: {expected}.")] - InvalidBlockNumber { - /// Provided block number - actual: u64, - /// Expected block number - expected: u64, - }, - /// Invalid parent hash - #[error("Invalid parent hash: {actual}. Expected: {expected}.")] - InvalidParentHash { - /// Provided parent hash - actual: B256, - /// Expected parent hash - expected: B256, - }, - /// Missing hardfork activation history - #[error("No known hardfork for execution on historical block {block_number} (relative to fork block number {fork_block_number}). The node was not configured with a hardfork activation history.")] - MissingHardforkActivations { - /// Block number - block_number: u64, - /// Fork block number - fork_block_number: u64, - }, - /// Missing withdrawals for post-Shanghai blockchain - #[error("Missing withdrawals for post-Shanghai blockchain")] - MissingWithdrawals, - /// Block number does not exist in blockchain - #[error("Unknown block number")] - UnknownBlockNumber, - /// No hardfork found for block - #[error("Could not find a hardfork to run for block {block_number}, after having looked for one in the hardfork activation history, which was: {hardfork_activations:?}.")] - UnknownBlockSpec { - /// Block number - block_number: u64, - /// Hardfork activation history - hardfork_activations: HardforkActivations, - }, -} - -/// Trait for implementations of an Ethereum blockchain. -#[auto_impl(&)] -pub trait Blockchain { - /// The blockchain's error type - type BlockchainError; - - /// The state's error type - type StateError; - - /// Retrieves the block with the provided hash, if it exists. - #[allow(clippy::type_complexity)] - fn block_by_hash( - &self, - hash: &B256, - ) -> Result>>, Self::BlockchainError>; - - /// Retrieves the block with the provided number, if it exists. - #[allow(clippy::type_complexity)] - fn block_by_number( - &self, - number: u64, - ) -> Result>>, Self::BlockchainError>; - - /// Retrieves the block that contains a transaction with the provided hash, - /// if it exists. - #[allow(clippy::type_complexity)] - fn block_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>>, Self::BlockchainError>; - - /// Retrieves the instances chain ID. - fn chain_id(&self) -> u64; - - /// Retrieves the last block in the blockchain. - fn last_block( - &self, - ) -> Result>, Self::BlockchainError>; - - /// Retrieves the last block number in the blockchain. - fn last_block_number(&self) -> u64; - - /// Retrieves the logs that match the provided filter. - fn logs( - &self, - from_block: u64, - to_block: u64, - addresses: &HashSet
, - normalized_topics: &[Option>], - ) -> Result, Self::BlockchainError>; - - /// Retrieves the network ID of the blockchain. - fn network_id(&self) -> u64; - - /// Retrieves the receipt of the transaction with the provided hash, if it - /// exists. - fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>, Self::BlockchainError>; - - /// Retrieves the hardfork specification of the block at the provided - /// number. - fn spec_at_block_number(&self, block_number: u64) -> Result; - - /// Retrieves the hardfork specification used for new blocks. - fn spec_id(&self) -> SpecId; - - /// Retrieves the state at a given block. - /// - /// The state overrides are applied after the block they are associated - /// with. The specified override of a nonce may be ignored to maintain - /// validity. - fn state_at_block_number( - &self, - block_number: u64, - // Block number -> state overrides - state_overrides: &BTreeMap, - ) -> Result>, Self::BlockchainError>; - - /// Retrieves the total difficulty at the block with the provided hash. - fn total_difficulty_by_hash(&self, hash: &B256) -> Result, Self::BlockchainError>; -} - -/// Trait for implementations of a mutable Ethereum blockchain -pub trait BlockchainMut { - /// The blockchain's error type - type Error; - - /// Inserts the provided block into the blockchain, returning a reference to - /// the inserted block. - fn insert_block( - &mut self, - block: LocalBlock, - state_diff: StateDiff, - ) -> Result, Self::Error>; - - /// Reserves the provided number of blocks, starting from the next block - /// number. - fn reserve_blocks(&mut self, additional: u64, interval: u64) -> Result<(), Self::Error>; - - /// Reverts to the block with the provided number, deleting all later - /// blocks. - fn revert_to_block(&mut self, block_number: u64) -> Result<(), Self::Error>; -} - -/// Trait that meets all requirements for a synchronous blockchain. -pub trait SyncBlockchain: - Blockchain - + BlockchainMut - + BlockHashRef - + Send - + Sync - + Debug -where - BlockchainErrorT: Debug + Send, -{ -} - -impl SyncBlockchain - for BlockchainT -where - BlockchainT: Blockchain - + BlockchainMut - + BlockHashRef - + Send - + Sync - + Debug, - BlockchainErrorT: Debug + Send, -{ -} - -fn compute_state_at_block( - state: &mut dyn DatabaseCommit, - local_storage: &ReservableSparseBlockchainStorage, - first_local_block_number: u64, - last_local_block_number: u64, - state_overrides: &BTreeMap, -) { - // If we're dealing with a local block, apply their state diffs - let state_diffs = local_storage - .state_diffs_until_block(last_local_block_number) - .unwrap_or_default(); - - let mut overriden_state_diffs: BTreeMap = state_diffs - .iter() - .map(|(block_number, state_diff)| (*block_number, state_diff.clone())) - .collect(); - - for (block_number, state_override) in state_overrides.range(( - Included(&first_local_block_number), - Included(&last_local_block_number), - )) { - overriden_state_diffs - .entry(*block_number) - .and_modify(|state_diff| { - state_diff.apply_diff(state_override.diff.as_inner().clone()); - }) - .or_insert_with(|| state_override.diff.clone()); - } - - for (_block_number, state_diff) in overriden_state_diffs { - state.commit(state_diff.into()); - } -} - -/// Validates whether a block is a valid next block. -fn validate_next_block( - spec_id: SpecId, - last_block: &dyn Block, - next_block: &dyn Block, -) -> Result<(), BlockchainError> { - let last_header = last_block.header(); - let next_header = next_block.header(); - - let next_block_number = last_header.number + 1; - if next_header.number != next_block_number { - return Err(BlockchainError::InvalidBlockNumber { - actual: next_header.number, - expected: next_block_number, - }); - } - - if next_header.parent_hash != *last_block.hash() { - return Err(BlockchainError::InvalidParentHash { - actual: next_header.parent_hash, - expected: *last_block.hash(), - }); - } - - if spec_id >= SpecId::SHANGHAI && next_header.withdrawals_root.is_none() { - return Err(BlockchainError::MissingWithdrawals); - } - - Ok(()) -} diff --git a/crates/edr_evm/src/blockchain/forked.rs b/crates/edr_evm/src/blockchain/forked.rs deleted file mode 100644 index f5e6d1af9f..0000000000 --- a/crates/edr_evm/src/blockchain/forked.rs +++ /dev/null @@ -1,649 +0,0 @@ -use std::{collections::BTreeMap, num::NonZeroU64, str::FromStr, sync::Arc}; - -use edr_eth::{ - beacon::{BEACON_ROOTS_ADDRESS, BEACON_ROOTS_BYTECODE}, - block::{largest_safe_block_number, safe_block_depth, LargestSafeBlockNumberArgs}, - log::FilterLog, - receipt::BlockReceipt, - remote::{client::ForkMetadata, BlockSpec, RpcClient, RpcClientError}, - spec::{chain_hardfork_activations, chain_name, HardforkActivations}, - AccountInfo, Address, Bytes, B256, U256, -}; -use parking_lot::Mutex; -use revm::{ - db::BlockHashRef, - primitives::{ - alloy_primitives::ChainId, Account, AccountStatus, Bytecode, HashMap, HashSet, SpecId, - }, -}; -use tokio::runtime; - -use super::{ - compute_state_at_block, remote::RemoteBlockchain, storage, - storage::ReservableSparseBlockchainStorage, validate_next_block, Blockchain, BlockchainError, - BlockchainMut, -}; -use crate::{ - state::{ForkState, IrregularState, StateDiff, StateError, StateOverride, SyncState}, - Block, BlockAndTotalDifficulty, LocalBlock, RandomHashGenerator, RemoteBlockCreationError, - SyncBlock, -}; - -/// An error that occurs upon creation of a [`ForkedBlockchain`]. -#[derive(Debug, thiserror::Error)] -pub enum CreationError { - /// JSON-RPC error - #[error(transparent)] - RpcClientError(#[from] RpcClientError), - /// The requested block number does not exist - #[error("Trying to initialize a provider with block {fork_block_number} but the current block is {latest_block_number}")] - InvalidBlockNumber { - /// Requested fork block number - fork_block_number: u64, - /// Latest block number - latest_block_number: u64, - }, - /// The detected hardfork is not supported - #[error("Cannot fork {chain_name} from block {fork_block_number}. The hardfork must be at least Spurious Dragon, but {hardfork:?} was detected.")] - InvalidHardfork { - /// Requested fork block number - fork_block_number: u64, - /// Chain name - chain_name: String, - /// Detected hardfork - hardfork: SpecId, - }, -} - -/// Error type for [`ForkedBlockchain`]. -#[derive(Debug, thiserror::Error)] -pub enum ForkedBlockchainError { - /// Remote block creation error - #[error(transparent)] - BlockCreation(#[from] RemoteBlockCreationError), - /// Remote blocks cannot be deleted - #[error("Cannot delete remote block.")] - CannotDeleteRemote, - /// An error that occurs when trying to insert a block into storage. - #[error(transparent)] - Insert(#[from] storage::InsertError), - /// Rpc client error - #[error(transparent)] - RpcClient(#[from] RpcClientError), - /// Missing transaction receipts for a remote block - #[error("Missing receipts for block {block_hash}")] - MissingReceipts { - /// The block hash - block_hash: B256, - }, -} - -/// A blockchain that forked from a remote blockchain. -#[derive(Debug)] -pub struct ForkedBlockchain { - local_storage: ReservableSparseBlockchainStorage>>, - // We can force caching here because we only fork from a safe block number. - remote: RemoteBlockchain>, true>, - state_root_generator: Arc>, - fork_block_number: u64, - /// The chan id of the forked blockchain is either the local chain id - /// override or the chain id of the remote blockchain. - chain_id: u64, - /// The chain id of the remote blockchain. It might deviate from chain_id. - remote_chain_id: u64, - network_id: u64, - spec_id: SpecId, - hardfork_activations: Option, -} - -impl ForkedBlockchain { - /// Constructs a new instance. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::too_many_arguments)] - pub async fn new( - runtime: runtime::Handle, - chain_id_override: Option, - spec_id: SpecId, - rpc_client: Arc, - fork_block_number: Option, - irregular_state: &mut IrregularState, - state_root_generator: Arc>, - hardfork_activation_overrides: &HashMap, - ) -> Result { - let ForkMetadata { - chain_id: remote_chain_id, - network_id, - latest_block_number, - } = rpc_client.fetch_fork_metadata().await?; - - let recommended_block_number = - recommended_fork_block_number(RecommendedForkBlockNumberArgs { - chain_id: remote_chain_id, - latest_block_number, - }); - - let fork_block_number = if let Some(fork_block_number) = fork_block_number { - if fork_block_number > latest_block_number { - return Err(CreationError::InvalidBlockNumber { - fork_block_number, - latest_block_number, - }); - } - - if fork_block_number > recommended_block_number { - let num_confirmations = latest_block_number - fork_block_number + 1; - let required_confirmations = safe_block_depth(remote_chain_id) + 1; - let missing_confirmations = required_confirmations - num_confirmations; - - log::warn!("You are forking from block {fork_block_number} which has less than {required_confirmations} confirmations, and will affect Hardhat Network's performance. Please use block number {recommended_block_number} or wait for the block to get {missing_confirmations} more confirmations."); - } - - fork_block_number - } else { - recommended_block_number - }; - - let hardfork_activations = hardfork_activation_overrides - .get(&remote_chain_id) - .or_else(|| chain_hardfork_activations(remote_chain_id)) - .and_then(|hardfork_activations| { - // Ignore empty hardfork activations - if hardfork_activations.is_empty() { - None - } else { - Some(hardfork_activations.clone()) - } - }); - - if let Some(hardfork) = hardfork_activations - .as_ref() - .and_then(|hardfork_activations| { - hardfork_activations.hardfork_at_block_number(fork_block_number) - }) - { - if hardfork < SpecId::SPURIOUS_DRAGON { - return Err(CreationError::InvalidHardfork { - chain_name: chain_name(remote_chain_id) - .map_or_else(|| "unknown".to_string(), ToString::to_string), - fork_block_number, - hardfork, - }); - } - - if hardfork < SpecId::CANCUN && spec_id >= SpecId::CANCUN { - let beacon_roots_address = - Address::from_str(BEACON_ROOTS_ADDRESS).expect("Is valid address"); - let beacon_roots_contract = Bytecode::new_raw( - Bytes::from_str(BEACON_ROOTS_BYTECODE).expect("Is valid bytecode"), - ); - - let state_root = state_root_generator.lock().next_value(); - - irregular_state - .state_override_at_block_number(fork_block_number) - .and_modify(|state_override| { - state_override.diff.apply_account_change( - beacon_roots_address, - AccountInfo { - code_hash: beacon_roots_contract.hash_slow(), - code: Some(beacon_roots_contract.clone()), - ..AccountInfo::default() - }, - ); - }) - .or_insert_with(|| { - let accounts: HashMap = [( - beacon_roots_address, - Account { - info: AccountInfo { - code_hash: beacon_roots_contract.hash_slow(), - code: Some(beacon_roots_contract), - ..AccountInfo::default() - }, - status: AccountStatus::Created | AccountStatus::Touched, - storage: HashMap::new(), - }, - )] - .into_iter() - .collect(); - - StateOverride { - diff: StateDiff::from(accounts), - state_root, - } - }); - } - } - - Ok(Self { - local_storage: ReservableSparseBlockchainStorage::empty(fork_block_number), - remote: RemoteBlockchain::new(rpc_client, runtime), - state_root_generator, - chain_id: chain_id_override.unwrap_or(remote_chain_id), - remote_chain_id, - fork_block_number, - network_id, - spec_id, - hardfork_activations, - }) - } - - /// Returns the chain id of the remote blockchain. - pub fn remote_chain_id(&self) -> u64 { - self.remote_chain_id - } - - fn runtime(&self) -> &runtime::Handle { - self.remote.runtime() - } -} - -impl BlockHashRef for ForkedBlockchain { - type Error = BlockchainError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn block_hash(&self, number: U256) -> Result { - let number = - u64::try_from(number).map_err(|_error| BlockchainError::BlockNumberTooLarge)?; - - if number <= self.fork_block_number { - tokio::task::block_in_place(move || { - self.runtime().block_on(self.remote.block_by_number(number)) - }) - .map(|block| Ok(*block.hash()))? - } else { - self.local_storage - .block_by_number(number)? - .map(|block| *block.hash()) - .ok_or(BlockchainError::UnknownBlockNumber) - } - } -} - -impl Blockchain for ForkedBlockchain { - type BlockchainError = BlockchainError; - - type StateError = StateError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_hash( - &self, - hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - if let Some(block) = self.local_storage.block_by_hash(hash) { - Ok(Some(block)) - } else { - Ok(tokio::task::block_in_place(move || { - self.runtime().block_on(self.remote.block_by_hash(hash)) - })?) - } - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_number( - &self, - number: u64, - ) -> Result>>, Self::BlockchainError> - { - if number <= self.fork_block_number { - tokio::task::block_in_place(move || { - self.runtime().block_on(self.remote.block_by_number(number)) - }) - .map(|block| Ok(Some(block)))? - } else { - Ok(self.local_storage.block_by_number(number)?) - } - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - if let Some(block) = self - .local_storage - .block_by_transaction_hash(transaction_hash) - { - Ok(Some(block)) - } else { - Ok(tokio::task::block_in_place(move || { - self.runtime() - .block_on(self.remote.block_by_transaction_hash(transaction_hash)) - })?) - } - } - - fn chain_id(&self) -> u64 { - self.chain_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn last_block( - &self, - ) -> Result>, Self::BlockchainError> { - let last_block_number = self.last_block_number(); - if self.fork_block_number < last_block_number { - Ok(self - .local_storage - .block_by_number(last_block_number)? - .expect("Block must exist since block number is less than the last block number")) - } else { - Ok(tokio::task::block_in_place(move || { - self.runtime() - .block_on(self.remote.block_by_number(self.fork_block_number)) - })?) - } - } - - fn last_block_number(&self) -> u64 { - self.local_storage.last_block_number() - } - - fn logs( - &self, - from_block: u64, - to_block: u64, - addresses: &HashSet
, - normalized_topics: &[Option>], - ) -> Result, Self::BlockchainError> { - if from_block <= self.fork_block_number { - let (to_block, mut local_logs) = if to_block <= self.fork_block_number { - (to_block, Vec::new()) - } else { - let local_logs = self.local_storage.logs( - self.fork_block_number + 1, - to_block, - addresses, - normalized_topics, - )?; - - (self.fork_block_number, local_logs) - }; - - let mut remote_logs = tokio::task::block_in_place(move || { - self.runtime().block_on(self.remote.logs( - BlockSpec::Number(from_block), - BlockSpec::Number(to_block), - addresses, - normalized_topics, - )) - })?; - - remote_logs.append(&mut local_logs); - Ok(remote_logs) - } else { - self.local_storage - .logs(from_block, to_block, addresses, normalized_topics) - } - } - - fn network_id(&self) -> u64 { - self.network_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>, Self::BlockchainError> { - if let Some(receipt) = self - .local_storage - .receipt_by_transaction_hash(transaction_hash) - { - Ok(Some(receipt)) - } else { - Ok(tokio::task::block_in_place(move || { - self.runtime() - .block_on(self.remote.receipt_by_transaction_hash(transaction_hash)) - })?) - } - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn spec_at_block_number(&self, block_number: u64) -> Result { - if block_number > self.last_block_number() { - return Err(BlockchainError::UnknownBlockNumber); - } - - if block_number <= self.fork_block_number { - tokio::task::block_in_place(move || { - self.runtime() - .block_on(self.remote.block_by_number(block_number)) - }) - .map_err(BlockchainError::Forked) - .and_then(|block| { - if let Some(hardfork_activations) = &self.hardfork_activations { - hardfork_activations - .hardfork_at_block_number(block.header().number) - .ok_or(BlockchainError::UnknownBlockSpec { - block_number, - hardfork_activations: hardfork_activations.clone(), - }) - } else { - Err(BlockchainError::MissingHardforkActivations { - block_number, - fork_block_number: self.fork_block_number, - }) - } - }) - } else { - Ok(self.spec_id) - } - } - - fn spec_id(&self) -> SpecId { - self.spec_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn state_at_block_number( - &self, - block_number: u64, - state_overrides: &BTreeMap, - ) -> Result>, Self::BlockchainError> { - if block_number > self.last_block_number() { - return Err(BlockchainError::UnknownBlockNumber); - } - - let state_root = if let Some(state_override) = state_overrides.get(&block_number) { - state_override.state_root - } else { - self.block_by_number(block_number)? - .expect( - "Block must exist since block number is less than equal the last block number.", - ) - .header() - .state_root - }; - - let mut state = ForkState::new( - self.runtime().clone(), - self.remote.client().clone(), - self.state_root_generator.clone(), - block_number, - state_root, - ); - - let (first_block_number, last_block_number) = - match block_number.cmp(&self.fork_block_number) { - // Only override the state at the forked block - std::cmp::Ordering::Less => (block_number, block_number), - // Override blocks between the forked block and the requested block - std::cmp::Ordering::Equal | std::cmp::Ordering::Greater => { - (self.fork_block_number, block_number) - } - }; - - compute_state_at_block( - &mut state, - &self.local_storage, - first_block_number, - last_block_number, - state_overrides, - ); - - // Override the state root in case the local state was modified - state.set_state_root(state_root); - - Ok(Box::new(state)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn total_difficulty_by_hash(&self, hash: &B256) -> Result, Self::BlockchainError> { - if let Some(difficulty) = self.local_storage.total_difficulty_by_hash(hash) { - Ok(Some(difficulty)) - } else { - Ok(tokio::task::block_in_place(move || { - self.runtime() - .block_on(self.remote.total_difficulty_by_hash(hash)) - })?) - } - } -} - -impl BlockchainMut for ForkedBlockchain { - type Error = BlockchainError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn insert_block( - &mut self, - block: LocalBlock, - state_diff: StateDiff, - ) -> Result, Self::Error> { - let last_block = self.last_block()?; - - validate_next_block(self.spec_id, &last_block, &block)?; - - let previous_total_difficulty = self - .total_difficulty_by_hash(last_block.hash()) - .expect("No error can occur as it is stored locally") - .expect("Must exist as its block is stored"); - - let total_difficulty = previous_total_difficulty + block.header().difficulty; - - let block = self - .local_storage - .insert_block(block, state_diff, total_difficulty)?; - - Ok(BlockAndTotalDifficulty { - block: block.clone(), - total_difficulty: Some(total_difficulty), - }) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn reserve_blocks(&mut self, additional: u64, interval: u64) -> Result<(), Self::Error> { - let additional = if let Some(additional) = NonZeroU64::new(additional) { - additional - } else { - return Ok(()); // nothing to do - }; - - let last_block = self.last_block()?; - let previous_total_difficulty = self - .total_difficulty_by_hash(last_block.hash())? - .expect("Must exist as its block is stored"); - - let last_header = last_block.header(); - self.local_storage.reserve_blocks( - additional, - interval, - last_header.base_fee_per_gas, - last_header.state_root, - previous_total_difficulty, - self.spec_id, - ); - - Ok(()) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn revert_to_block(&mut self, block_number: u64) -> Result<(), Self::Error> { - match block_number.cmp(&self.fork_block_number) { - std::cmp::Ordering::Less => Err(ForkedBlockchainError::CannotDeleteRemote.into()), - std::cmp::Ordering::Equal => { - self.local_storage = - ReservableSparseBlockchainStorage::empty(self.fork_block_number); - - Ok(()) - } - std::cmp::Ordering::Greater => { - if self.local_storage.revert_to_block(block_number) { - Ok(()) - } else { - Err(BlockchainError::UnknownBlockNumber) - } - } - } - } -} - -/// Arguments for the `recommended_fork_block_number` function. -/// The purpose of this struct is to prevent mixing up the `u64` arguments. -struct RecommendedForkBlockNumberArgs { - /// The chain id - pub chain_id: u64, - /// The latest known block number - pub latest_block_number: u64, -} - -impl<'a> From<&'a RecommendedForkBlockNumberArgs> for LargestSafeBlockNumberArgs { - fn from(value: &'a RecommendedForkBlockNumberArgs) -> Self { - Self { - chain_id: value.chain_id, - latest_block_number: value.latest_block_number, - } - } -} - -/// Determines the recommended block number for forking a specific chain based -/// on the latest block number. -/// -/// # Design -/// -/// If there is no safe block number, then the latest block number will be used. -/// This decision is based on the assumption that a forked blockchain with a -/// `safe_block_depth` larger than the `latest_block_number` has a high -/// probability of being a devnet. -fn recommended_fork_block_number(args: RecommendedForkBlockNumberArgs) -> u64 { - largest_safe_block_number(LargestSafeBlockNumberArgs::from(&args)) - .unwrap_or(args.latest_block_number) -} - -#[cfg(test)] -mod tests { - const ROPSTEN_CHAIN_ID: u64 = 3; - - use super::*; - - #[test] - fn recommended_fork_block_number_with_safe_blocks() { - const LATEST_BLOCK_NUMBER: u64 = 1_000; - - let safe_block_depth = safe_block_depth(ROPSTEN_CHAIN_ID); - let args = RecommendedForkBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - }; - assert_eq!( - recommended_fork_block_number(args), - LATEST_BLOCK_NUMBER - safe_block_depth - ); - } - - #[test] - fn recommended_fork_block_number_all_blocks_unsafe() { - const LATEST_BLOCK_NUMBER: u64 = 50; - - let args = RecommendedForkBlockNumberArgs { - chain_id: ROPSTEN_CHAIN_ID, - latest_block_number: LATEST_BLOCK_NUMBER, - }; - assert_eq!(recommended_fork_block_number(args), LATEST_BLOCK_NUMBER); - } -} diff --git a/crates/edr_evm/src/blockchain/local.rs b/crates/edr_evm/src/blockchain/local.rs deleted file mode 100644 index 010aa9d42a..0000000000 --- a/crates/edr_evm/src/blockchain/local.rs +++ /dev/null @@ -1,463 +0,0 @@ -use std::{ - collections::BTreeMap, - fmt::Debug, - num::NonZeroU64, - str::FromStr, - sync::Arc, - time::{SystemTime, UNIX_EPOCH}, -}; - -use edr_eth::{ - beacon::{BEACON_ROOTS_ADDRESS, BEACON_ROOTS_BYTECODE}, - block::{BlobGas, BlockOptions, PartialHeader}, - log::FilterLog, - AccountInfo, Address, Bytes, B256, U256, -}; -use revm::{ - db::BlockHashRef, - primitives::{Bytecode, HashSet, SpecId}, - DatabaseCommit, -}; - -use super::{ - compute_state_at_block, storage::ReservableSparseBlockchainStorage, validate_next_block, - Blockchain, BlockchainError, BlockchainMut, -}; -use crate::{ - state::{StateDebug, StateDiff, StateError, StateOverride, SyncState, TrieState}, - Block, BlockAndTotalDifficulty, LocalBlock, SyncBlock, -}; - -/// An error that occurs upon creation of a [`LocalBlockchain`]. -#[derive(Debug, thiserror::Error)] -pub enum CreationError { - /// Missing prevrandao for post-merge blockchain - #[error("Missing prevrandao for post-merge blockchain")] - MissingPrevrandao, -} - -#[derive(Debug, thiserror::Error)] -pub enum InsertBlockError { - #[error("Invalid block number: {actual}. Expected: {expected}")] - InvalidBlockNumber { actual: u64, expected: u64 }, - /// Missing withdrawals for post-Shanghai blockchain - #[error("Missing withdrawals for post-Shanghai blockchain")] - MissingWithdrawals, -} - -/// Options for creating a genesis block. -#[derive(Default)] -pub struct GenesisBlockOptions { - /// The block's gas limit - pub gas_limit: Option, - /// The block's timestamp - pub timestamp: Option, - /// The block's mix hash (or prevrandao for post-merge blockchains) - pub mix_hash: Option, - /// The block's base gas fee - pub base_fee: Option, - /// The block's blob gas (for post-Cancun blockchains) - pub blob_gas: Option, -} - -impl From for BlockOptions { - fn from(value: GenesisBlockOptions) -> Self { - Self { - gas_limit: value.gas_limit, - timestamp: value.timestamp, - mix_hash: value.mix_hash, - base_fee: value.base_fee, - blob_gas: value.blob_gas, - ..BlockOptions::default() - } - } -} - -/// A blockchain consisting of locally created blocks. -#[derive(Debug)] -pub struct LocalBlockchain { - storage: ReservableSparseBlockchainStorage>>, - chain_id: u64, - spec_id: SpecId, -} - -impl LocalBlockchain { - /// Constructs a new instance using the provided arguments to build a - /// genesis block. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::too_many_arguments)] - pub fn new( - mut genesis_diff: StateDiff, - chain_id: u64, - spec_id: SpecId, - options: GenesisBlockOptions, - ) -> Result { - const EXTRA_DATA: &[u8] = b"\x12\x34"; - - if spec_id >= SpecId::CANCUN { - let beacon_roots_address = - Address::from_str(BEACON_ROOTS_ADDRESS).expect("Is valid address"); - let beacon_roots_contract = Bytecode::new_raw( - Bytes::from_str(BEACON_ROOTS_BYTECODE).expect("Is valid bytecode"), - ); - - genesis_diff.apply_account_change( - beacon_roots_address, - AccountInfo { - code_hash: beacon_roots_contract.hash_slow(), - code: Some(beacon_roots_contract), - ..AccountInfo::default() - }, - ); - } - - let mut genesis_state = TrieState::default(); - genesis_state.commit(genesis_diff.clone().into()); - - if spec_id >= SpecId::MERGE && options.mix_hash.is_none() { - return Err(CreationError::MissingPrevrandao); - } - - let mut options = BlockOptions::from(options); - options.state_root = Some( - genesis_state - .state_root() - .expect("TrieState is guaranteed to successfully compute the state root"), - ); - - if options.timestamp.is_none() { - options.timestamp = Some( - SystemTime::now() - .duration_since(UNIX_EPOCH) - .expect("Current time must be after unix epoch") - .as_secs(), - ); - } - - options.extra_data = Some(Bytes::from(EXTRA_DATA)); - - let partial_header = PartialHeader::new(spec_id, options, None); - Ok(unsafe { - Self::with_genesis_block_unchecked( - LocalBlock::empty(spec_id, partial_header), - genesis_diff, - chain_id, - spec_id, - ) - }) - } - - /// Constructs a new instance with the provided genesis block, validating a - /// zero block number. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn with_genesis_block( - genesis_block: LocalBlock, - genesis_diff: StateDiff, - chain_id: u64, - spec_id: SpecId, - ) -> Result { - let genesis_header = genesis_block.header(); - - if genesis_header.number != 0 { - return Err(InsertBlockError::InvalidBlockNumber { - actual: genesis_header.number, - expected: 0, - }); - } - - if spec_id >= SpecId::SHANGHAI && genesis_header.withdrawals_root.is_none() { - return Err(InsertBlockError::MissingWithdrawals); - } - - Ok(unsafe { - Self::with_genesis_block_unchecked(genesis_block, genesis_diff, chain_id, spec_id) - }) - } - - /// Constructs a new instance with the provided genesis block, without - /// validating the provided block's number. - /// - /// # Safety - /// - /// Ensure that the genesis block's number is zero. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub unsafe fn with_genesis_block_unchecked( - genesis_block: LocalBlock, - genesis_diff: StateDiff, - chain_id: u64, - spec_id: SpecId, - ) -> Self { - let genesis_block: Arc> = Arc::new(genesis_block); - - let total_difficulty = genesis_block.header().difficulty; - let storage = ReservableSparseBlockchainStorage::with_genesis_block( - genesis_block, - genesis_diff, - total_difficulty, - ); - - Self { - storage, - chain_id, - spec_id, - } - } -} - -impl Blockchain for LocalBlockchain { - type BlockchainError = BlockchainError; - - type StateError = StateError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_hash( - &self, - hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - Ok(self.storage.block_by_hash(hash)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_number( - &self, - number: u64, - ) -> Result>>, Self::BlockchainError> - { - Ok(self.storage.block_by_number(number)?) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - #[allow(clippy::type_complexity)] - fn block_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - Ok(self.storage.block_by_transaction_hash(transaction_hash)) - } - - fn chain_id(&self) -> u64 { - self.chain_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn last_block( - &self, - ) -> Result>, Self::BlockchainError> { - Ok(self - .storage - .block_by_number(self.storage.last_block_number())? - .expect("Block must exist")) - } - - fn last_block_number(&self) -> u64 { - self.storage.last_block_number() - } - - fn logs( - &self, - from_block: u64, - to_block: u64, - addresses: &HashSet
, - normalized_topics: &[Option>], - ) -> Result, Self::BlockchainError> { - self.storage - .logs(from_block, to_block, addresses, normalized_topics) - } - - fn network_id(&self) -> u64 { - self.chain_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>, Self::BlockchainError> { - Ok(self.storage.receipt_by_transaction_hash(transaction_hash)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn spec_at_block_number(&self, block_number: u64) -> Result { - if block_number > self.last_block_number() { - return Err(BlockchainError::UnknownBlockNumber); - } - - Ok(self.spec_id) - } - - fn spec_id(&self) -> SpecId { - self.spec_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn state_at_block_number( - &self, - block_number: u64, - state_overrides: &BTreeMap, - ) -> Result>, Self::BlockchainError> { - if block_number > self.last_block_number() { - return Err(BlockchainError::UnknownBlockNumber); - } - - let mut state = TrieState::default(); - compute_state_at_block(&mut state, &self.storage, 0, block_number, state_overrides); - - Ok(Box::new(state)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn total_difficulty_by_hash(&self, hash: &B256) -> Result, Self::BlockchainError> { - Ok(self.storage.total_difficulty_by_hash(hash)) - } -} - -impl BlockchainMut for LocalBlockchain { - type Error = BlockchainError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn insert_block( - &mut self, - block: LocalBlock, - state_diff: StateDiff, - ) -> Result, Self::Error> { - let last_block = self.last_block()?; - - validate_next_block(self.spec_id, &last_block, &block)?; - - let previous_total_difficulty = self - .total_difficulty_by_hash(last_block.hash()) - .expect("No error can occur as it is stored locally") - .expect("Must exist as its block is stored"); - - let total_difficulty = previous_total_difficulty + block.header().difficulty; - - let block = self - .storage - .insert_block(block, state_diff, total_difficulty)?; - - Ok(BlockAndTotalDifficulty { - block: block.clone(), - total_difficulty: Some(total_difficulty), - }) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn reserve_blocks(&mut self, additional: u64, interval: u64) -> Result<(), Self::Error> { - let additional = if let Some(additional) = NonZeroU64::new(additional) { - additional - } else { - return Ok(()); // nothing to do - }; - - let last_block = self.last_block()?; - let previous_total_difficulty = self - .total_difficulty_by_hash(last_block.hash())? - .expect("Must exist as its block is stored"); - - let last_header = last_block.header(); - - self.storage.reserve_blocks( - additional, - interval, - last_header.base_fee_per_gas, - last_header.state_root, - previous_total_difficulty, - self.spec_id, - ); - - Ok(()) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn revert_to_block(&mut self, block_number: u64) -> Result<(), Self::Error> { - if self.storage.revert_to_block(block_number) { - Ok(()) - } else { - Err(BlockchainError::UnknownBlockNumber) - } - } -} - -impl BlockHashRef for LocalBlockchain { - type Error = BlockchainError; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn block_hash(&self, number: U256) -> Result { - let number = - u64::try_from(number).map_err(|_error| BlockchainError::BlockNumberTooLarge)?; - - self.storage - .block_by_number(number)? - .map(|block| *block.hash()) - .ok_or(BlockchainError::UnknownBlockNumber) - } -} - -#[cfg(test)] -mod tests { - use edr_eth::{AccountInfo, HashMap}; - use revm::primitives::{Account, AccountStatus}; - - use super::*; - use crate::state::IrregularState; - - #[test] - fn compute_state_after_reserve() -> anyhow::Result<()> { - let address1 = Address::random(); - let accounts = vec![( - address1, - AccountInfo { - balance: U256::from(1_000_000_000u64), - ..AccountInfo::default() - }, - )]; - - let genesis_diff = accounts - .iter() - .map(|(address, info)| { - ( - *address, - Account { - info: info.clone(), - storage: HashMap::new(), - status: AccountStatus::Created | AccountStatus::Touched, - }, - ) - }) - .collect::>() - .into(); - - let mut blockchain = LocalBlockchain::new( - genesis_diff, - 123, - SpecId::SHANGHAI, - GenesisBlockOptions { - gas_limit: Some(6_000_000), - mix_hash: Some(B256::random()), - ..GenesisBlockOptions::default() - }, - ) - .unwrap(); - - let irregular_state = IrregularState::default(); - let expected = blockchain.state_at_block_number(0, irregular_state.state_overrides())?; - - blockchain.reserve_blocks(1_000_000_000, 1)?; - - let actual = - blockchain.state_at_block_number(1_000_000_000, irregular_state.state_overrides())?; - - assert_eq!(actual.state_root().unwrap(), expected.state_root().unwrap()); - - for (address, expected) in accounts { - let actual_account = actual.basic(address)?.expect("account should exist"); - assert_eq!(actual_account, expected); - } - - Ok(()) - } -} diff --git a/crates/edr_evm/src/blockchain/remote.rs b/crates/edr_evm/src/blockchain/remote.rs deleted file mode 100644 index b186bf9150..0000000000 --- a/crates/edr_evm/src/blockchain/remote.rs +++ /dev/null @@ -1,275 +0,0 @@ -use std::sync::Arc; - -use async_rwlock::{RwLock, RwLockUpgradableReadGuard}; -use edr_eth::{ - log::FilterLog, - receipt::BlockReceipt, - remote::{self, filter::OneOrMore, BlockSpec, PreEip1898BlockSpec, RpcClient}, - Address, B256, U256, -}; -use revm::primitives::HashSet; -use tokio::runtime; - -use super::storage::SparseBlockchainStorage; -use crate::{blockchain::ForkedBlockchainError, Block, RemoteBlock}; - -#[derive(Debug)] -pub struct RemoteBlockchain { - client: Arc, - cache: RwLock>, - runtime: runtime::Handle, -} - -impl, const FORCE_CACHING: bool> - RemoteBlockchain -{ - /// Constructs a new instance with the provided RPC client. - pub fn new(client: Arc, runtime: runtime::Handle) -> Self { - Self { - client, - cache: RwLock::new(SparseBlockchainStorage::default()), - runtime, - } - } - - /// Retrieves the block with the provided hash, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub async fn block_by_hash( - &self, - hash: &B256, - ) -> Result, ForkedBlockchainError> { - let cache = self.cache.upgradable_read().await; - - if let Some(block) = cache.block_by_hash(hash).cloned() { - return Ok(Some(block)); - } - - if let Some(block) = self - .client - .get_block_by_hash_with_transaction_data(hash) - .await? - { - self.fetch_and_cache_block(cache, block) - .await - .map(Option::Some) - } else { - Ok(None) - } - } - - /// Retrieves the block with the provided number, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub async fn block_by_number(&self, number: u64) -> Result { - let cache = self.cache.upgradable_read().await; - - if let Some(block) = cache.block_by_number(number).cloned() { - Ok(block) - } else { - let block = self - .client - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::Number(number)) - .await?; - - self.fetch_and_cache_block(cache, block).await - } - } - - /// Retrieves the block that contains a transaction with the provided hash, - /// if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub async fn block_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result, ForkedBlockchainError> { - // This block ensure that the read lock is dropped - { - if let Some(block) = self - .cache - .read() - .await - .block_by_transaction_hash(transaction_hash) - .cloned() - { - return Ok(Some(block)); - } - } - - if let Some(transaction) = self - .client - .get_transaction_by_hash(transaction_hash) - .await? - { - self.block_by_hash(&transaction.block_hash.expect("Not a pending transaction")) - .await - } else { - Ok(None) - } - } - - /// Retrieves the instance's RPC client. - pub fn client(&self) -> &Arc { - &self.client - } - - pub async fn logs( - &self, - from_block: BlockSpec, - to_block: BlockSpec, - addresses: &HashSet
, - normalized_topics: &[Option>], - ) -> Result, ForkedBlockchainError> { - self.client - .get_logs_by_range( - from_block, - to_block, - if addresses.len() > 1 { - Some(OneOrMore::Many(addresses.iter().copied().collect())) - } else { - addresses - .iter() - .next() - .map(|address| OneOrMore::One(*address)) - }, - if normalized_topics.is_empty() { - None - } else { - Some( - normalized_topics - .iter() - .map(|topics| { - topics.as_ref().and_then(|topics| { - if topics.len() > 1 { - Some(OneOrMore::Many(topics.clone())) - } else { - topics.first().map(|topic| OneOrMore::One(*topic)) - } - }) - }) - .collect(), - ) - }, - ) - .await - .map_err(ForkedBlockchainError::RpcClient) - } - - /// Retrieves the receipt of the transaction with the provided hash, if it - /// exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub async fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>, ForkedBlockchainError> { - let cache = self.cache.upgradable_read().await; - - if let Some(receipt) = cache.receipt_by_transaction_hash(transaction_hash) { - Ok(Some(receipt.clone())) - } else if let Some(receipt) = self - .client - .get_transaction_receipt(transaction_hash) - .await? - { - Ok(Some({ - let mut cache = RwLockUpgradableReadGuard::upgrade(cache).await; - cache.insert_receipt(receipt)?.clone() - })) - } else { - Ok(None) - } - } - - /// Retrieves the blockchain's runtime. - pub fn runtime(&self) -> &runtime::Handle { - &self.runtime - } - - /// Retrieves the total difficulty at the block with the provided hash. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub async fn total_difficulty_by_hash( - &self, - hash: &B256, - ) -> Result, ForkedBlockchainError> { - let cache = self.cache.upgradable_read().await; - - if let Some(difficulty) = cache.total_difficulty_by_hash(hash).cloned() { - Ok(Some(difficulty)) - } else if let Some(block) = self - .client - .get_block_by_hash_with_transaction_data(hash) - .await? - { - let total_difficulty = block - .total_difficulty - .expect("Must be present as this is not a pending transaction"); - - self.fetch_and_cache_block(cache, block).await?; - - Ok(Some(total_difficulty)) - } else { - Ok(None) - } - } - - /// Fetches detailed block information and caches the block. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - async fn fetch_and_cache_block( - &self, - cache: RwLockUpgradableReadGuard<'_, SparseBlockchainStorage>, - block: remote::eth::Block, - ) -> Result { - let total_difficulty = block - .total_difficulty - .expect("Must be present as this is not a pending block"); - - let block = RemoteBlock::new(block, self.client.clone(), self.runtime.clone())?; - - let is_cacheable = FORCE_CACHING - || self - .client - .is_cacheable_block_number(block.header().number) - .await?; - - let block = BlockT::from(block); - - if is_cacheable { - let mut remote_cache = RwLockUpgradableReadGuard::upgrade(cache).await; - - Ok(remote_cache.insert_block(block, total_difficulty)?.clone()) - } else { - Ok(block) - } - } -} - -#[cfg(all(test, feature = "test-remote"))] -mod tests { - - use edr_eth::remote::RpcClient; - use edr_test_utils::env::get_alchemy_url; - - use super::*; - - #[tokio::test] - async fn no_cache_for_unsafe_block_number() { - let tempdir = tempfile::tempdir().expect("can create tempdir"); - - let rpc_client = - RpcClient::new(&get_alchemy_url(), tempdir.path().to_path_buf(), None).expect("url ok"); - - // Latest block number is always unsafe to cache - let block_number = rpc_client.block_number().await.unwrap(); - - let remote = RemoteBlockchain::::new( - Arc::new(rpc_client), - runtime::Handle::current(), - ); - - let _ = remote.block_by_number(block_number).await.unwrap(); - assert!(remote - .cache - .read() - .await - .block_by_number(block_number) - .is_none()); - } -} diff --git a/crates/edr_evm/src/blockchain/storage.rs b/crates/edr_evm/src/blockchain/storage.rs deleted file mode 100644 index 6a82492889..0000000000 --- a/crates/edr_evm/src/blockchain/storage.rs +++ /dev/null @@ -1,31 +0,0 @@ -mod reservable; -mod sparse; - -use edr_eth::B256; - -pub use self::{reservable::ReservableSparseBlockchainStorage, sparse::SparseBlockchainStorage}; - -/// An error that occurs when trying to insert a block into storage. -#[derive(Debug, thiserror::Error)] -pub enum InsertError { - /// Block already exists - #[error("A block, with hash {block_hash} and number {block_number}, already exists.")] - DuplicateBlock { - /// The block's hash - block_hash: B256, - /// The block's number - block_number: u64, - }, - /// Receipt already exists - #[error("A receipt with transaction hash {transaction_hash} already exists.")] - DuplicateReceipt { - /// Transaction hash of duplicated receipt - transaction_hash: B256, - }, - /// Transaction already exists - #[error("A transaction with hash {hash} already exists.")] - DuplicateTransaction { - /// Hash of duplicated transaction - hash: B256, - }, -} diff --git a/crates/edr_evm/src/blockchain/storage/contiguous.rs b/crates/edr_evm/src/blockchain/storage/contiguous.rs deleted file mode 100644 index c700307f78..0000000000 --- a/crates/edr_evm/src/blockchain/storage/contiguous.rs +++ /dev/null @@ -1,198 +0,0 @@ -use std::sync::Arc; - -use edr_eth::{receipt::BlockReceipt, B256, U256}; -use revm::primitives::HashMap; - -use crate::{Block, LocalBlock}; - -use super::InsertError; - -/// A storage solution for storing a Blockchain's blocks contiguously in-memory. -#[derive(Clone, Default, Debug)] -pub struct ContiguousBlockchainStorage { - blocks: Vec, - hash_to_block: HashMap, - total_difficulties: Vec, - transaction_hash_to_block: HashMap, - transaction_hash_to_receipt: HashMap>, -} - -impl ContiguousBlockchainStorage { - /// Retrieves the instance's blocks. - pub fn blocks(&self) -> &[BlockT] { - &self.blocks - } - - /// Retrieves a block by its hash. - pub fn block_by_hash(&self, hash: &B256) -> Option<&BlockT> { - self.hash_to_block.get(hash) - } - - /// Retrieves the block that contains the transaction with the provided hash, if it exists. - pub fn block_by_transaction_hash(&self, transaction_hash: &B256) -> Option<&BlockT> { - self.transaction_hash_to_block.get(transaction_hash) - } - - /// Retrieves the receipt of the transaction with the provided hash, if it exists. - pub fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Option<&Arc> { - self.transaction_hash_to_receipt.get(transaction_hash) - } - - /// Reverts to the block with the provided number, deleting all later blocks. - pub fn revert_to_block(&mut self, block_number: &U256) -> bool { - let block_number = usize::try_from(block_number) - .expect("No blocks with a number larger than usize::MAX are inserted"); - - let block_index = if let Some(first_block) = self.blocks.first() { - let first_block_number = usize::try_from(first_block.header().number) - .expect("No blocks with a number larger than usize::MAX are inserted"); - - if block_number < first_block_number { - return false; - } - - block_number - first_block_number - } else { - return false; - }; - - if block_index >= self.blocks.len() { - return false; - } - - self.total_difficulties.truncate(block_index + 1); - let removed_blocks = self.blocks.split_off(block_index + 1); - - for block in removed_blocks { - let block_hash = block.hash(); - - self.hash_to_block.remove(block_hash); - self.transaction_hash_to_block.remove(block_hash); - self.transaction_hash_to_receipt.remove(block_hash); - } - - true - } - - /// Retrieves the instance's total difficulties. - pub fn total_difficulties(&self) -> &[U256] { - &self.total_difficulties - } - - /// Retrieves the total difficulty of the block with the provided hash. - pub fn total_difficulty_by_hash(&self, hash: &B256) -> Option<&U256> { - self.hash_to_block.get(hash).map(|block| { - let first_block_number = self - .blocks - .first() - .expect("A block must exist since we found one") - .header() - .number; - - let local_block_number = usize::try_from(block.header().number - first_block_number) - .expect("No blocks with a number larger than usize::MAX are inserted"); - - // SAFETY: A total difficulty is inserted for each block - unsafe { self.total_difficulties.get_unchecked(local_block_number) } - }) - } -} - -impl> ContiguousBlockchainStorage { - /// Constructs a new instance with the provided block. - pub fn with_block(block: LocalBlock, total_difficulty: U256) -> Self { - let block_hash = block.hash(); - - let transaction_hash_to_receipt = block - .transaction_receipts() - .iter() - .map(|receipt| (receipt.transaction_hash, receipt.clone())) - .collect(); - - let block = BlockT::from(block); - - let transaction_hash_to_block = block - .transactions() - .iter() - .map(|transaction| (transaction.hash(), block.clone())) - .collect(); - - let mut hash_to_block = HashMap::new(); - hash_to_block.insert(*block_hash, block.clone()); - - Self { - total_difficulties: vec![total_difficulty], - blocks: vec![block], - hash_to_block, - transaction_hash_to_block, - transaction_hash_to_receipt, - } - } - - /// Inserts a block, failing if a block with the same hash already exists. - pub fn insert_block( - &mut self, - block: LocalBlock, - total_difficulty: U256, - ) -> Result<&BlockT, InsertError> { - let block_hash = block.hash(); - - // As blocks are contiguous, we are guaranteed that the block number won't exist if its - // hash is not present. - if self.hash_to_block.contains_key(block_hash) { - return Err(InsertError::DuplicateBlock { - block_hash: *block_hash, - block_number: block.header().number, - }); - } - - if let Some(transaction) = block.transactions().iter().find(|transaction| { - self.transaction_hash_to_block - .contains_key(&transaction.hash()) - }) { - return Err(InsertError::DuplicateTransaction { - hash: transaction.hash(), - }); - } - - // SAFETY: We checked that block hash doesn't exist yet - Ok(unsafe { self.insert_block_unchecked(block, total_difficulty) }) - } - - /// Inserts a block without checking its validity. - /// - /// # Safety - /// - /// Ensure that the instance does not contain a block with the same hash, nor - /// any transactions with the same hash. - pub unsafe fn insert_block_unchecked( - &mut self, - block: LocalBlock, - total_difficulty: U256, - ) -> &BlockT { - self.transaction_hash_to_receipt.extend( - block - .transaction_receipts() - .iter() - .map(|receipt| (receipt.transaction_hash, receipt.clone())), - ); - - let block = BlockT::from(block); - - self.transaction_hash_to_block.extend( - block - .transactions() - .iter() - .map(|transaction| (transaction.hash(), block.clone())), - ); - - self.blocks.push(block.clone()); - self.total_difficulties.push(total_difficulty); - self.hash_to_block - .insert_unique_unchecked(*block.hash(), block) - .1 - } -} diff --git a/crates/edr_evm/src/blockchain/storage/reservable.rs b/crates/edr_evm/src/blockchain/storage/reservable.rs deleted file mode 100644 index 4578fe1d9a..0000000000 --- a/crates/edr_evm/src/blockchain/storage/reservable.rs +++ /dev/null @@ -1,352 +0,0 @@ -use std::{num::NonZeroU64, sync::Arc}; - -use edr_eth::{block::PartialHeader, receipt::BlockReceipt, Address, SpecId, B256, U256}; -use parking_lot::{RwLock, RwLockUpgradableReadGuard, RwLockWriteGuard}; -use revm::primitives::{HashMap, HashSet}; - -use super::{sparse, InsertError, SparseBlockchainStorage}; -use crate::{state::StateDiff, Block, LocalBlock}; - -/// A reservation for a sequence of blocks that have not yet been inserted into -/// storage. -#[derive(Debug)] -struct Reservation { - first_number: u64, - last_number: u64, - interval: u64, - previous_base_fee_per_gas: Option, - previous_state_root: B256, - previous_total_difficulty: U256, - previous_diff_index: usize, - spec_id: SpecId, -} - -/// A storage solution for storing a subset of a Blockchain's blocks in-memory, -/// while lazily loading blocks that have been reserved. -#[derive(Debug)] -pub struct ReservableSparseBlockchainStorage { - reservations: RwLock>, - storage: RwLock>, - // We can store the state diffs contiguously, as reservations don't contain any diffs. - // Diffs are a mapping from one state to the next, so the genesis block contains the initial - // state. - state_diffs: Vec<(u64, StateDiff)>, - number_to_diff_index: HashMap, - last_block_number: u64, -} - -impl ReservableSparseBlockchainStorage { - /// Constructs a new instance with the provided block as genesis block. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn with_genesis_block(block: BlockT, diff: StateDiff, total_difficulty: U256) -> Self { - Self { - reservations: RwLock::new(Vec::new()), - storage: RwLock::new(SparseBlockchainStorage::with_block(block, total_difficulty)), - state_diffs: vec![(0, diff)], - number_to_diff_index: std::iter::once((0, 0)).collect(), - last_block_number: 0, - } - } - - /// Constructs a new instance with no blocks. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn empty(last_block_number: u64) -> Self { - Self { - reservations: RwLock::new(Vec::new()), - storage: RwLock::new(SparseBlockchainStorage::default()), - state_diffs: Vec::new(), - number_to_diff_index: HashMap::new(), - last_block_number, - } - } - - /// Retrieves the block by hash, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_hash(&self, hash: &B256) -> Option { - self.storage.read().block_by_hash(hash).cloned() - } - - /// Retrieves the block that contains the transaction with the provided - /// hash, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_transaction_hash(&self, transaction_hash: &B256) -> Option { - self.storage - .read() - .block_by_transaction_hash(transaction_hash) - .cloned() - } - - /// Retrieves whether a block with the provided number exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn contains_block_number(&self, number: u64) -> bool { - self.storage.read().contains_block_number(number) - } - - /// Retrieves the last block number. - pub fn last_block_number(&self) -> u64 { - self.last_block_number - } - - /// Retrieves the logs that match the provided filter. - pub fn logs( - &self, - from_block: u64, - to_block: u64, - addresses: &HashSet
, - normalized_topics: &[Option>], - ) -> Result, BlockT::Error> { - let storage = self.storage.read(); - sparse::logs(&storage, from_block, to_block, addresses, normalized_topics) - } - - /// Retrieves the sequence of diffs from the genesis state to the state of - /// the block with the provided number, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn state_diffs_until_block(&self, block_number: u64) -> Option<&[(u64, StateDiff)]> { - let diff_index = self - .number_to_diff_index - .get(&block_number) - .copied() - .or_else(|| { - let reservations = self.reservations.read(); - find_reservation(&reservations, block_number) - .map(|reservation| reservation.previous_diff_index) - })?; - - Some(&self.state_diffs[0..=diff_index]) - } - - /// Retrieves the receipt of the transaction with the provided hash, if it - /// exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Option> { - self.storage - .read() - .receipt_by_transaction_hash(transaction_hash) - .cloned() - } - - /// Reserves the provided number of blocks, starting from the next block - /// number. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn reserve_blocks( - &mut self, - additional: NonZeroU64, - interval: u64, - previous_base_fee: Option, - previous_state_root: B256, - previous_total_difficulty: U256, - spec_id: SpecId, - ) { - let reservation = Reservation { - first_number: self.last_block_number + 1, - last_number: self.last_block_number + additional.get(), - interval, - previous_base_fee_per_gas: previous_base_fee, - previous_state_root, - previous_total_difficulty, - previous_diff_index: self.state_diffs.len() - 1, - spec_id, - }; - - self.reservations.get_mut().push(reservation); - self.last_block_number += additional.get(); - } - - /// Reverts to the block with the provided number, deleting all later - /// blocks. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn revert_to_block(&mut self, block_number: u64) -> bool { - if block_number > self.last_block_number { - return false; - } - - self.last_block_number = block_number; - - self.storage.get_mut().revert_to_block(block_number); - - if block_number == 0 { - // Reservations and state diffs can only occur after the genesis block, - // so we can clear them all - self.reservations.get_mut().clear(); - - // Keep the genesis block's diff - self.state_diffs.truncate(1); - - // Keep the genesis block's mapping - self.number_to_diff_index.clear(); - self.number_to_diff_index.insert(0, 0); - } else { - // Only retain reservations that are not fully reverted - self.reservations.get_mut().retain_mut(|reservation| { - if reservation.last_number <= block_number { - true - } else if reservation.first_number <= block_number { - reservation.last_number = block_number; - true - } else { - false - } - }); - - // Remove all diffs that are newer than the reverted block - let diff_index = self - .number_to_diff_index - .get(&block_number) - .copied() - .unwrap_or_else(|| { - let reservations = self.reservations.get_mut(); - - find_reservation(reservations, block_number) - .expect("There must either be a block or a reservation matching the block number").previous_diff_index - }); - - self.state_diffs.truncate(diff_index + 1); - - self.number_to_diff_index - .retain(|number, _| *number <= block_number); - } - - true - } - - /// Retrieves the total difficulty of the block with the provided hash. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn total_difficulty_by_hash(&self, hash: &B256) -> Option { - self.storage.read().total_difficulty_by_hash(hash).cloned() - } -} - -impl> ReservableSparseBlockchainStorage { - /// Retrieves the block by number, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_number(&self, number: u64) -> Result, InsertError> { - Ok(self - .try_fulfilling_reservation(number)? - .or_else(|| self.storage.read().block_by_number(number).cloned())) - } - - /// Insert a block into the storage. Errors if a block with the same hash or - /// number already exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn insert_block( - &mut self, - block: LocalBlock, - state_diff: StateDiff, - total_difficulty: U256, - ) -> Result<&BlockT, InsertError> { - self.last_block_number = block.header().number; - self.number_to_diff_index - .insert(self.last_block_number, self.state_diffs.len()); - - self.state_diffs.push((self.last_block_number, state_diff)); - - let receipts: Vec<_> = block.transaction_receipts().to_vec(); - let block = BlockT::from(block); - - self.storage.get_mut().insert_receipts(receipts)?; - - self.storage.get_mut().insert_block(block, total_difficulty) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn try_fulfilling_reservation(&self, block_number: u64) -> Result, InsertError> { - let reservations = self.reservations.upgradable_read(); - - reservations - .iter() - .enumerate() - .find_map(|(idx, reservation)| { - if reservation.first_number <= block_number - && block_number <= reservation.last_number - { - Some(idx) - } else { - None - } - }) - .map(|idx| { - let mut reservations = RwLockUpgradableReadGuard::upgrade(reservations); - let reservation = reservations.remove(idx); - - if block_number != reservation.first_number { - reservations.push(Reservation { - last_number: block_number - 1, - ..reservation - }); - } - - if block_number != reservation.last_number { - reservations.push(Reservation { - first_number: block_number + 1, - ..reservation - }); - } - - let reservations = RwLockWriteGuard::downgrade(reservations); - let storage = self.storage.upgradable_read(); - - let timestamp = calculate_timestamp_for_reserved_block( - &storage, - &reservations, - &reservation, - block_number, - ); - - let block = LocalBlock::empty( - reservation.spec_id, - PartialHeader { - number: block_number, - state_root: reservation.previous_state_root, - base_fee: reservation.previous_base_fee_per_gas, - timestamp, - ..PartialHeader::default() - }, - ); - - { - let mut storage = RwLockUpgradableReadGuard::upgrade(storage); - Ok(storage - .insert_block(block.into(), reservation.previous_total_difficulty)? - .clone()) - } - }) - .transpose() - } -} - -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -fn calculate_timestamp_for_reserved_block( - storage: &SparseBlockchainStorage, - reservations: &Vec, - reservation: &Reservation, - block_number: u64, -) -> u64 { - let previous_block_number = reservation.first_number - 1; - let previous_timestamp = - if let Some(previous_reservation) = find_reservation(reservations, previous_block_number) { - calculate_timestamp_for_reserved_block( - storage, - reservations, - previous_reservation, - previous_block_number, - ) - } else { - let previous_block = storage - .block_by_number(previous_block_number) - .expect("Block must exist"); - - previous_block.header().timestamp - }; - - previous_timestamp + reservation.interval * (block_number - reservation.first_number + 1) -} - -fn find_reservation(reservations: &[Reservation], number: u64) -> Option<&Reservation> { - reservations - .iter() - .find(|reservation| reservation.first_number <= number && number <= reservation.last_number) -} diff --git a/crates/edr_evm/src/blockchain/storage/sparse.rs b/crates/edr_evm/src/blockchain/storage/sparse.rs deleted file mode 100644 index 00c98fc172..0000000000 --- a/crates/edr_evm/src/blockchain/storage/sparse.rs +++ /dev/null @@ -1,248 +0,0 @@ -use std::sync::Arc; - -use edr_eth::{ - receipt::BlockReceipt, - remote::filter::{matches_address_filter, matches_topics_filter}, - Address, B256, U256, -}; -use revm::primitives::{HashMap, HashSet}; - -use super::InsertError; -use crate::{hash_map::OccupiedError, Block}; - -/// A storage solution for storing a subset of a Blockchain's blocks in-memory. -#[derive(Debug)] -pub struct SparseBlockchainStorage { - hash_to_block: HashMap, - hash_to_total_difficulty: HashMap, - number_to_block: HashMap, - transaction_hash_to_block: HashMap, - transaction_hash_to_receipt: HashMap>, -} - -impl SparseBlockchainStorage { - /// Constructs a new instance with the provided block. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn with_block(block: BlockT, total_difficulty: U256) -> Self { - let block_hash = block.hash(); - - let transaction_hash_to_block = block - .transactions() - .iter() - .map(|transaction| (*transaction.hash(), block.clone())) - .collect(); - - let mut hash_to_block = HashMap::new(); - hash_to_block.insert(*block_hash, block.clone()); - - let mut hash_to_total_difficulty = HashMap::new(); - hash_to_total_difficulty.insert(*block_hash, total_difficulty); - - let mut number_to_block = HashMap::new(); - number_to_block.insert(block.header().number, block); - - Self { - hash_to_block, - hash_to_total_difficulty, - number_to_block, - transaction_hash_to_block, - transaction_hash_to_receipt: HashMap::new(), - } - } - - /// Retrieves the block by hash, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_hash(&self, hash: &B256) -> Option<&BlockT> { - self.hash_to_block.get(hash) - } - - /// Retrieves the block by number, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_number(&self, number: u64) -> Option<&BlockT> { - self.number_to_block.get(&number) - } - - /// Retrieves the block that contains the transaction with the provided - /// hash, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn block_by_transaction_hash(&self, transaction_hash: &B256) -> Option<&BlockT> { - self.transaction_hash_to_block.get(transaction_hash) - } - - /// Retrieves whether a block with the provided number exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn contains_block_number(&self, block_number: u64) -> bool { - self.number_to_block.contains_key(&block_number) - } - - /// Retrieves the receipt of the transaction with the provided hash, if it - /// exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Option<&Arc> { - self.transaction_hash_to_receipt.get(transaction_hash) - } - - /// Reverts to the block with the provided number, deleting all later - /// blocks. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn revert_to_block(&mut self, block_number: u64) { - let removed_blocks = self - .number_to_block - .extract_if(|number, _| *number > block_number); - - for (_, block) in removed_blocks { - let block_hash = block.hash(); - - self.hash_to_block.remove(block_hash); - self.hash_to_total_difficulty.remove(block_hash); - - for transaction in block.transactions() { - let transaction_hash = transaction.hash(); - - self.transaction_hash_to_block.remove(transaction_hash); - self.transaction_hash_to_receipt.remove(transaction_hash); - } - } - } - - /// Retrieves the total difficulty of the block with the provided hash. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn total_difficulty_by_hash(&self, hash: &B256) -> Option<&U256> { - self.hash_to_total_difficulty.get(hash) - } - - /// Inserts a block. Errors if a block with the same hash or number already - /// exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn insert_block( - &mut self, - block: BlockT, - total_difficulty: U256, - ) -> Result<&BlockT, InsertError> { - let block_hash = block.hash(); - let block_header = block.header(); - - if self.hash_to_block.contains_key(block_hash) - || self.hash_to_total_difficulty.contains_key(block_hash) - || self.number_to_block.contains_key(&block_header.number) - { - return Err(InsertError::DuplicateBlock { - block_hash: *block_hash, - block_number: block_header.number, - }); - } - - if let Some(transaction) = block.transactions().iter().find(|transaction| { - self.transaction_hash_to_block - .contains_key(transaction.hash()) - }) { - return Err(InsertError::DuplicateTransaction { - hash: *transaction.hash(), - }); - } - - self.transaction_hash_to_block.extend( - block - .transactions() - .iter() - .map(|transaction| (*transaction.hash(), block.clone())), - ); - - // We have checked that the block hash and number are not in the maps, so it's - // ok to use unchecked. - self.hash_to_block - .insert_unique_unchecked(*block_hash, block.clone()); - - self.hash_to_total_difficulty - .insert_unique_unchecked(*block_hash, total_difficulty); - - Ok(self - .number_to_block - .insert_unique_unchecked(block.header().number, block) - .1) - } - - /// Inserts a receipt. Errors if it already exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn insert_receipt( - &mut self, - receipt: BlockReceipt, - ) -> Result<&Arc, InsertError> { - let receipt = Arc::new(receipt); - - let receipt = self - .transaction_hash_to_receipt - .try_insert(receipt.transaction_hash, receipt) - .map_err(|err| { - let OccupiedError { value, .. } = err; - InsertError::DuplicateReceipt { - transaction_hash: value.transaction_hash, - } - })?; - Ok(receipt) - } - - /// Inserts receipts. Errors if they already exist. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn insert_receipts(&mut self, receipts: Vec>) -> Result<(), InsertError> { - if let Some(receipt) = receipts.iter().find(|receipt| { - self.transaction_hash_to_receipt - .contains_key(&receipt.transaction_hash) - }) { - return Err(InsertError::DuplicateReceipt { - transaction_hash: receipt.transaction_hash, - }); - } - - self.transaction_hash_to_receipt.extend( - receipts - .iter() - .map(|receipt| (receipt.transaction_hash, receipt.clone())), - ); - - Ok(()) - } -} - -impl Default for SparseBlockchainStorage { - fn default() -> Self { - Self { - hash_to_block: HashMap::default(), - hash_to_total_difficulty: HashMap::default(), - number_to_block: HashMap::default(), - transaction_hash_to_block: HashMap::default(), - transaction_hash_to_receipt: HashMap::default(), - } - } -} - -/// Retrieves the logs that match the provided filter. -pub fn logs( - storage: &SparseBlockchainStorage, - from_block: u64, - to_block: u64, - addresses: &HashSet
, - topics_filter: &[Option>], -) -> Result, BlockT::Error> { - let mut logs = Vec::new(); - let addresses: HashSet
= addresses.iter().copied().collect(); - - for block_number in from_block..=to_block { - if let Some(block) = storage.block_by_number(block_number) { - let receipts = block.transaction_receipts()?; - for receipt in receipts { - let filtered_logs = receipt.logs.iter().filter(|log| { - matches_address_filter(&log.address, &addresses) - && matches_topics_filter(log.topics(), topics_filter) - }); - - logs.extend(filtered_logs.cloned()); - } - } - } - - Ok(logs) -} diff --git a/crates/edr_evm/src/collections.rs b/crates/edr_evm/src/collections.rs deleted file mode 100644 index f41ab21648..0000000000 --- a/crates/edr_evm/src/collections.rs +++ /dev/null @@ -1,3 +0,0 @@ -mod shared_map; - -pub use shared_map::SharedMap; diff --git a/crates/edr_evm/src/collections/shared_map.rs b/crates/edr_evm/src/collections/shared_map.rs deleted file mode 100644 index 1249c93a8f..0000000000 --- a/crates/edr_evm/src/collections/shared_map.rs +++ /dev/null @@ -1,96 +0,0 @@ -use std::hash::Hash; - -use rpds::HashTrieMapSync; - -#[derive(Clone, Debug)] -pub struct SharedMapEntry { - value: T, - occurences: usize, -} - -impl SharedMapEntry { - /// Creates a new [`SharedMapEntry`] for the provided value. - pub fn new(value: T) -> Self { - Self { - value, - occurences: 1, - } - } - - /// Increments the number of occurences. - pub fn increment(&mut self) { - self.occurences += 1; - } - - /// Decrements the number of occurences. - pub fn decrement(&mut self) { - self.occurences -= 1; - } - - /// Returns the number of occurences - pub fn occurences(&self) -> usize { - self.occurences - } -} - -#[derive(Debug, Default)] -pub struct SharedMap { - entries: HashTrieMapSync>, -} - -impl SharedMap -where - K: Eq + Hash + Clone, - V: Clone, -{ - /// Inserts new value or, if it already exists, increments the number of - /// occurences of the corresponding entry. - pub fn insert(&mut self, key: K, value: V) { - if let Some(entry) = self.entries.get_mut(&key) { - entry.increment(); - } else { - self.entries.insert_mut(key, SharedMapEntry::new(value)); - } - } -} - -impl SharedMap -where - K: Clone + Eq + Hash, - V: Clone, -{ - /// Decremenents the number of occurences of the value corresponding to the - /// provided key, if it exists, and removes unused entry. - pub fn remove(&mut self, key: &K) { - if let Some(entry) = self.entries.get_mut(key) { - entry.decrement(); - if entry.occurences() == 0 { - self.entries.remove_mut(key); - } - } - } -} - -impl SharedMap -where - K: Eq + Hash, - V: Clone, -{ - /// Retrieves the entry corresponding to the provided key. - pub fn get(&self, key: &K) -> Option<&V> { - self.entries.get(key).map(|entry| &entry.value) - } -} - -impl Clone for SharedMap -where - K: Clone + Eq + Hash, - V: Clone, -{ - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn clone(&self) -> Self { - Self { - entries: self.entries.clone(), - } - } -} diff --git a/crates/edr_evm/src/config.rs b/crates/edr_evm/src/config.rs deleted file mode 100644 index 5295477d36..0000000000 --- a/crates/edr_evm/src/config.rs +++ /dev/null @@ -1,6 +0,0 @@ -use edr_eth::signature::Signature; - -#[derive(Clone, Debug)] -pub struct Config { - signature: Option, -} diff --git a/crates/edr_evm/src/debug.rs b/crates/edr_evm/src/debug.rs deleted file mode 100644 index 7105449e74..0000000000 --- a/crates/edr_evm/src/debug.rs +++ /dev/null @@ -1,37 +0,0 @@ -use auto_impl::auto_impl; -use revm::db::{DatabaseComponents, StateRef, WrapDatabaseRef}; - -use crate::blockchain::SyncBlockchain; - -/// Type for registering handles, specialised for EDR database component types. -pub type HandleRegister<'evm, BlockchainErrorT, DebugDataT, StateT> = - revm::handler::register::HandleRegister< - DebugDataT, - WrapDatabaseRef< - DatabaseComponents< - StateT, - &'evm dyn SyncBlockchain::Error>, - >, - >, - >; - -/// Type for encapsulating contextual data and handler registration in an -/// `EvmBuilder`. -pub struct DebugContext<'evm, BlockchainErrorT, DebugDataT, StateT: StateRef> { - /// The contextual data. - pub data: DebugDataT, - /// The function to register handles. - pub register_handles_fn: HandleRegister<'evm, BlockchainErrorT, DebugDataT, StateT>, -} - -pub struct EvmContext<'evm, BlockchainErrorT, DebugDataT, StateT: StateRef> { - pub debug: Option>, - pub state: StateT, -} - -/// Trait for getting contextual data. -#[auto_impl(&mut)] -pub trait GetContextData { - /// Retrieves the contextual data. - fn get_context_data(&mut self) -> &mut DataT; -} diff --git a/crates/edr_evm/src/debug_trace.rs b/crates/edr_evm/src/debug_trace.rs deleted file mode 100644 index 3de5d2d38c..0000000000 --- a/crates/edr_evm/src/debug_trace.rs +++ /dev/null @@ -1,436 +0,0 @@ -use std::{collections::HashMap, fmt::Debug, sync::Arc}; - -use edr_eth::{signature::SignatureError, utils::u256_to_padded_hex, B256}; -use revm::{ - db::DatabaseComponents, - handler::register::EvmHandler, - interpreter::{ - opcode::{self, BoxedInstruction, InstructionTables}, - InstructionResult, Interpreter, InterpreterResult, - }, - primitives::{ - hex, Address, BlockEnv, Bytes, CfgEnvWithHandlerCfg, ExecutionResult, ResultAndState, - SpecId, U256, - }, - Database, Evm, EvmContext, JournalEntry, -}; - -use crate::{ - blockchain::SyncBlockchain, debug::GetContextData, state::SyncState, ExecutableTransaction, - TransactionError, -}; - -/// Get trace output for `debug_traceTransaction` -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -pub fn debug_trace_transaction( - blockchain: &dyn SyncBlockchain, - // Take ownership of the state so that we can apply throw-away modifications on it - mut state: Box>, - evm_config: CfgEnvWithHandlerCfg, - trace_config: DebugTraceConfig, - block_env: BlockEnv, - transactions: Vec, - transaction_hash: &B256, -) -> Result> -where - BlockchainErrorT: Debug + Send, - StateErrorT: Debug + Send, -{ - if evm_config.handler_cfg.spec_id < SpecId::SPURIOUS_DRAGON { - // Matching Hardhat Network behaviour: https://github.com/NomicFoundation/hardhat/blob/af7e4ce6a18601ec9cd6d4aa335fa7e24450e638/packages/hardhat-core/src/internal/hardhat-network/provider/vm/ethereumjs.ts#L427 - return Err(DebugTraceError::InvalidSpecId { - spec_id: evm_config.handler_cfg.spec_id, - }); - } - - if evm_config.handler_cfg.spec_id > SpecId::MERGE && block_env.prevrandao.is_none() { - return Err(TransactionError::MissingPrevrandao.into()); - } - - for transaction in transactions { - if transaction.hash() == transaction_hash { - let mut tracer = TracerEip3155::new(trace_config); - - let ResultAndState { result, .. } = { - let mut evm = Evm::builder() - .with_ref_db(DatabaseComponents { - state: state.as_ref(), - block_hash: blockchain, - }) - .with_external_context(&mut tracer) - .with_cfg_env_with_handler_cfg(evm_config) - .append_handler_register(register_eip_3155_tracer_handles) - .with_block_env(block_env) - .with_tx_env(transaction.into()) - .build(); - - evm.transact().map_err(TransactionError::from)? - }; - - return Ok(execution_result_to_debug_result(result, tracer)); - } else { - let ResultAndState { state: changes, .. } = { - let mut evm = Evm::builder() - .with_ref_db(DatabaseComponents { - state: state.as_ref(), - block_hash: blockchain, - }) - .with_cfg_env_with_handler_cfg(evm_config.clone()) - .with_block_env(block_env.clone()) - .with_tx_env(transaction.into()) - .build(); - - evm.transact().map_err(TransactionError::from)? - }; - - state.commit(changes); - } - } - - Err(DebugTraceError::InvalidTransactionHash { - transaction_hash: *transaction_hash, - block_number: block_env.number, - }) -} - -/// Convert an `ExecutionResult` to a `DebugTraceResult`. -pub fn execution_result_to_debug_result( - execution_result: ExecutionResult, - tracer: TracerEip3155, -) -> DebugTraceResult { - match execution_result { - ExecutionResult::Success { - gas_used, output, .. - } => DebugTraceResult { - pass: true, - gas_used, - output: Some(output.into_data()), - logs: tracer.logs, - }, - ExecutionResult::Revert { gas_used, output } => DebugTraceResult { - pass: false, - gas_used, - output: Some(output), - logs: tracer.logs, - }, - ExecutionResult::Halt { gas_used, .. } => DebugTraceResult { - pass: false, - gas_used, - output: None, - logs: tracer.logs, - }, - } -} - -/// Config options for `debug_traceTransaction` -#[derive(Debug, Default, Clone)] -pub struct DebugTraceConfig { - /// Disable storage trace. - pub disable_storage: bool, - /// Disable memory trace. - pub disable_memory: bool, - /// Disable stack trace. - pub disable_stack: bool, -} - -/// Debug trace error. -#[derive(Debug, thiserror::Error)] -pub enum DebugTraceError { - /// Invalid hardfork spec argument. - #[error("Invalid spec id: {spec_id:?}. `debug_traceTransaction` is not supported prior to Spurious Dragon")] - InvalidSpecId { - /// The hardfork. - spec_id: SpecId, - }, - /// Invalid transaction hash argument. - #[error("Transaction hash {transaction_hash} not found in block {block_number}")] - InvalidTransactionHash { - /// The transaction hash. - transaction_hash: B256, - /// The block number. - block_number: U256, - }, - /// Signature error. - #[error(transparent)] - SignatureError(#[from] SignatureError), - /// Transaction error. - #[error(transparent)] - TransactionError(#[from] TransactionError), -} - -/// Result of a `debug_traceTransaction` call. -#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceResult { - /// Whether transaction was executed successfully. - pub pass: bool, - /// All gas used by the transaction. - pub gas_used: u64, - /// Return values of the function. - pub output: Option, - /// The EIP-3155 debug logs. - #[serde(rename = "structLogs")] - pub logs: Vec, -} - -/// The output of an EIP-3155 trace. -/// The required fields match except for -/// `returnData` and `refund` which are not used currently by Hardhat. -/// The `opName`, `error`, `memory` and `storage` optional fields are supported -/// as well. -#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceLogItem { - /// Program Counter - pub pc: u64, - /// Op code - pub op: u8, - /// Gas left before executing this operation as hex number. - pub gas: String, - /// Gas cost of this operation as hex number. - pub gas_cost: String, - /// Array of all values (hex numbers) on the stack - #[serde(skip_serializing_if = "Option::is_none")] - pub stack: Option>, - /// Depth of the call stack - pub depth: u64, - /// Size of memory array. - pub mem_size: u64, - /// Name of the operation. - pub op_name: String, - /// Description of an error. - #[serde(skip_serializing_if = "Option::is_none")] - pub error: Option, - /// Array of all allocated values as hex strings. - #[serde(skip_serializing_if = "Option::is_none")] - pub memory: Option>, - /// Map of all stored values with keys and values encoded as hex strings. - #[serde(skip_serializing_if = "Option::is_none")] - pub storage: Option>, -} - -/// Register EIP-3155 tracer handles. -pub fn register_eip_3155_tracer_handles< - DatabaseT: Database, - ContextT: GetContextData, ->( - handler: &mut EvmHandler<'_, ContextT, DatabaseT>, -) { - // Every instruction inside flat table that is going to be wrapped by tracer - // calls. - let table = handler - .instruction_table - .take() - .expect("Handler must have instruction table"); - - let table = match table { - InstructionTables::Plain(table) => table - .into_iter() - .map(|i| instruction_handler(i)) - .collect::>(), - InstructionTables::Boxed(table) => table - .into_iter() - .map(|i| instruction_handler(i)) - .collect::>(), - }; - - // cast vector to array. - handler.instruction_table = Some(InstructionTables::Boxed( - table.try_into().unwrap_or_else(|_| unreachable!()), - )); - - // call outcome - let old_handle = handler.execution.insert_call_outcome.clone(); - handler.execution.insert_call_outcome = Arc::new(move |ctx, frame, shared_memory, outcome| { - let tracer = ctx.external.get_context_data(); - tracer.on_inner_frame_result(&outcome.result); - - old_handle(ctx, frame, shared_memory, outcome) - }); - - // create outcome - let old_handle = handler.execution.insert_create_outcome.clone(); - handler.execution.insert_create_outcome = Arc::new(move |ctx, frame, outcome| { - let tracer = ctx.external.get_context_data(); - tracer.on_inner_frame_result(&outcome.result); - - old_handle(ctx, frame, outcome) - }); -} - -/// Outer closure that calls tracer for every instruction. -fn instruction_handler< - 'a, - ContextT: GetContextData, - DatabaseT: Database, - Instruction: Fn(&mut Interpreter, &mut Evm<'a, ContextT, DatabaseT>) + 'a, ->( - instruction: Instruction, -) -> BoxedInstruction<'a, Evm<'a, ContextT, DatabaseT>> { - Box::new( - move |interpreter: &mut Interpreter, host: &mut Evm<'a, ContextT, DatabaseT>| { - // SAFETY: as the PC was already incremented we need to subtract 1 to preserve - // the old Inspector behavior. - interpreter.instruction_pointer = unsafe { interpreter.instruction_pointer.sub(1) }; - - host.context.external.get_context_data().step(interpreter); - if interpreter.instruction_result != InstructionResult::Continue { - return; - } - - // return PC to old value - interpreter.instruction_pointer = unsafe { interpreter.instruction_pointer.add(1) }; - - // execute instruction. - instruction(interpreter, host); - - host.context - .external - .get_context_data() - .step_end(interpreter, &mut host.context.evm); - }, - ) -} - -/// An EIP-3155 compatible EVM tracer. -#[derive(Debug)] -pub struct TracerEip3155 { - config: DebugTraceConfig, - logs: Vec, - contract_address: Address, - gas_remaining: u64, - memory: Vec, - mem_size: usize, - opcode: u8, - pc: usize, - stack: Vec, - // Contract-specific storage - storage: HashMap>, -} - -impl TracerEip3155 { - /// Create a new tracer. - pub fn new(config: DebugTraceConfig) -> Self { - Self { - config, - logs: Vec::default(), - contract_address: Address::default(), - stack: Vec::new(), - pc: 0, - opcode: 0, - gas_remaining: 0, - memory: Vec::default(), - mem_size: 0, - storage: HashMap::default(), - } - } - - fn step(&mut self, interp: &mut Interpreter) { - self.contract_address = interp.contract.address; - self.gas_remaining = interp.gas().remaining(); - - if !self.config.disable_stack { - self.stack = interp.stack.data().clone(); - } - - if !self.config.disable_memory { - self.memory = interp.shared_memory.context_memory().to_vec(); - } - - self.mem_size = interp.shared_memory.context_memory().len(); - - self.opcode = interp.current_opcode(); - - self.pc = interp.program_counter(); - } - - fn step_end( - &mut self, - interp: &mut Interpreter, - context: &mut EvmContext, - ) { - let depth = context.journaled_state.depth(); - - let stack = if self.config.disable_stack { - None - } else { - Some( - self.stack - .iter() - .map(u256_to_padded_hex) - .collect::>(), - ) - }; - - let memory = if self.config.disable_memory { - None - } else { - Some(self.memory.chunks(32).map(hex::encode).collect()) - }; - - let storage = if self.config.disable_storage { - None - } else { - if matches!(self.opcode, opcode::SLOAD | opcode::SSTORE) { - let last_entry = context - .journaled_state - .journal - .last() - .and_then(|v| v.last()); - if let Some(JournalEntry::StorageChange { address, key, .. }) = last_entry { - let value = context.journaled_state.state[address].storage[key].present_value(); - let contract_storage = self.storage.entry(self.contract_address).or_default(); - contract_storage.insert(u256_to_padded_hex(key), u256_to_padded_hex(&value)); - } - } - Some( - self.storage - .get(&self.contract_address) - .cloned() - .unwrap_or_default(), - ) - }; - - let mut error = None; - let op_name = opcode::OPCODE_JUMPMAP[self.opcode as usize].map_or_else( - || { - // Matches message from Hardhat - // https://github.com/NomicFoundation/hardhat/blob/37c5c5845969b15995cc96cb6bd0596977f8b1f8/packages/hardhat-core/src/internal/hardhat-network/stack-traces/vm-debug-tracer.ts#L452 - let fallback = format!("opcode 0x${:x} not defined", self.opcode); - error = Some(fallback.clone()); - fallback - }, - String::from, - ); - - let gas_cost = self.gas_remaining.saturating_sub(interp.gas().remaining()); - let log_item = DebugTraceLogItem { - pc: self.pc as u64, - op: self.opcode, - gas: format!("0x{:x}", self.gas_remaining), - gas_cost: format!("0x{gas_cost:x}"), - stack, - depth, - mem_size: self.mem_size as u64, - op_name, - error, - memory, - storage, - }; - self.logs.push(log_item); - } - - fn on_inner_frame_result(&mut self, result: &InterpreterResult) { - self.gas_remaining = if result.result.is_error() { - 0 - } else { - result.gas.remaining() - }; - } -} - -impl GetContextData for TracerEip3155 { - fn get_context_data(&mut self) -> &mut TracerEip3155 { - self - } -} diff --git a/crates/edr_evm/src/lib.rs b/crates/edr_evm/src/lib.rs deleted file mode 100644 index e197bb46eb..0000000000 --- a/crates/edr_evm/src/lib.rs +++ /dev/null @@ -1,64 +0,0 @@ -#![warn(missing_docs)] - -//! The EDR EVM -//! -//! The EDR EVM exposes APIs for running and interacting with a multi-threaded -//! Ethereum Virtual Machine (or EVM). - -pub use revm::primitives::*; - -pub use crate::{ - block::*, - debug::{DebugContext, GetContextData}, - debug_trace::{ - debug_trace_transaction, execution_result_to_debug_result, - register_eip_3155_tracer_handles, DebugTraceConfig, DebugTraceError, DebugTraceLogItem, - DebugTraceResult, TracerEip3155, - }, - mempool::{MemPool, MemPoolAddTransactionError, OrderedTransaction}, - miner::*, - random::RandomHashGenerator, - runtime::{dry_run, guaranteed_dry_run, run, SyncDatabase}, - transaction::*, -}; - -/// Types for managing Ethereum blockchain -pub mod blockchain; - -/// Database types for managing Ethereum state -pub mod state; - -/// Types used for tracing EVM calls -pub mod trace; - -mod block; -pub(crate) mod collections; -mod debug; -mod debug_trace; -/// Types for managing Ethereum mem pool -pub mod mempool; -mod miner; -pub(crate) mod random; -mod runtime; -/// Utilities for testing -#[cfg(any(test, feature = "test-utils"))] -pub mod test_utils; -mod transaction; - -/// Types for interfacing with the evm -pub mod evm { - pub use revm::{ - handler::register::{EvmHandler, HandleRegister}, - FrameOrResult, FrameResult, - }; -} - -/// Types for interfacing with the interpreter -pub mod interpreter { - pub use revm::interpreter::*; -} - -/// Types for managing Ethereum precompiles -pub mod precompile { - pub use revm::precompile::{u64_to_address, PrecompileSpecId, Precompiles}; -} diff --git a/crates/edr_evm/src/mempool.rs b/crates/edr_evm/src/mempool.rs deleted file mode 100644 index 11f02be415..0000000000 --- a/crates/edr_evm/src/mempool.rs +++ /dev/null @@ -1,611 +0,0 @@ -use std::{cmp::Ordering, fmt::Debug, num::NonZeroU64}; - -use edr_eth::{Address, B256, U256}; -use indexmap::{map::Entry, IndexMap}; -use revm::{ - db::StateRef, - primitives::{AccountInfo, HashMap}, -}; - -use crate::ExecutableTransaction; - -/// An iterator over pending transactions. -pub struct PendingTransactions -where - ComparatorT: Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering, -{ - transactions: IndexMap>, - comparator: ComparatorT, -} - -impl PendingTransactions -where - ComparatorT: Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering, -{ - /// Removes all pending transactions of the account corresponding to the - /// provided address. - pub fn remove_caller(&mut self, caller: &Address) -> Option> { - self.transactions.shift_remove(caller) - } -} - -impl Debug for PendingTransactions -where - ComparatorT: Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering, -{ - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.debug_struct("PendingTransactions") - .field("transactions", &self.transactions) - .finish() - } -} - -impl Iterator for PendingTransactions -where - ComparatorT: Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering, -{ - type Item = ExecutableTransaction; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn next(&mut self) -> Option { - let (to_be_removed, next) = self - .transactions - .iter_mut() - .min_by(|lhs, rhs| { - (self.comparator)( - lhs.1.first().expect("Empty queues should be removed"), - rhs.1.first().expect("Empty queues should be removed"), - ) - }) - .map_or((None, None), |(caller, transactions)| { - let transaction = transactions.remove(0).transaction; - - let to_be_removed = if transactions.is_empty() { - Some(*caller) - } else { - None - }; - - (to_be_removed, Some(transaction)) - }); - - if let Some(caller) = &to_be_removed { - self.transactions.shift_remove(caller); - } - - next - } -} - -/// An error that can occur when adding a transaction to the mempool. -#[derive(Debug, thiserror::Error)] -pub enum MemPoolAddTransactionError { - /// Transaction gas limit exceeds block gas limit. - #[error("Transaction gas limit is {transaction_gas_limit} and exceeds block gas limit of {block_gas_limit}")] - ExceedsBlockGasLimit { - /// The block gas limit - block_gas_limit: NonZeroU64, - /// The transaction gas limit - transaction_gas_limit: u64, - }, - /// Sender does not have enough funds to send transaction. - #[error("Sender doesn't have enough funds to send tx. The max upfront cost is: {max_upfront_cost} and the sender's balance is: {sender_balance}.")] - InsufficientFunds { - /// The maximum upfront cost of the transaction - max_upfront_cost: U256, - /// The sender's balance - sender_balance: U256, - }, - /// Transaction nonce is too low. - #[error("Transaction nonce too low. Expected nonce to be at least {sender_nonce} but got {transaction_nonce}.")] - NonceTooLow { - /// Transaction's nonce. - transaction_nonce: u64, - /// Sender's nonce. - sender_nonce: u64, - }, - /// Transaction already exists in the mempool. - #[error("Known transaction: 0x{transaction_hash:x}")] - TransactionAlreadyExists { - /// The transaction hash - transaction_hash: B256, - }, - /// State error - #[error(transparent)] - State(#[from] SE), - /// Replacement transaction has underpriced max fee per gas. - #[error("Replacement transaction underpriced. A gasPrice/maxFeePerGas of at least {min_new_max_fee_per_gas} is necessary to replace the existing transaction with nonce {transaction_nonce}.")] - ReplacementMaxFeePerGasTooLow { - /// The minimum new max fee per gas - min_new_max_fee_per_gas: U256, - /// The transaction nonce - transaction_nonce: u64, - }, - /// Replacement transaction has underpriced max priority fee per gas. - #[error("Replacement transaction underpriced. A gasPrice/maxPriorityFeePerGas of at least {min_new_max_priority_fee_per_gas} is necessary to replace the existing transaction with nonce {transaction_nonce}.")] - ReplacementMaxPriorityFeePerGasTooLow { - /// The minimum new max priority fee per gas - min_new_max_priority_fee_per_gas: U256, - /// The transaction nonce - transaction_nonce: u64, - }, -} - -/// A pending transaction with an order ID. -#[derive(Clone, Debug)] -pub struct OrderedTransaction { - order_id: usize, - transaction: ExecutableTransaction, -} - -impl OrderedTransaction { - /// Retrieves the order ID of the pending transaction. - pub fn order_id(&self) -> usize { - self.order_id - } - - /// Retrieves the pending transaction. - pub fn pending(&self) -> &ExecutableTransaction { - &self.transaction - } - - fn caller(&self) -> &Address { - self.transaction.caller() - } - - fn hash(&self) -> &B256 { - self.transaction.hash() - } - - fn nonce(&self) -> u64 { - self.transaction.nonce() - } -} - -/// The mempool contains transactions pending inclusion in the blockchain. -#[derive(Clone, Debug)] -pub struct MemPool { - /// The block's gas limit - block_gas_limit: NonZeroU64, - /// Transactions that can be executed now - pending_transactions: IndexMap>, - /// Mapping of transaction hashes to transaction - hash_to_transaction: HashMap, - /// Transactions that can be executed in the future, once the nonce is high - /// enough - future_transactions: IndexMap>, - next_order_id: usize, -} - -impl MemPool { - /// Constructs a new [`MemPool`] with the specified block gas limit. - pub fn new(block_gas_limit: NonZeroU64) -> Self { - Self { - block_gas_limit, - pending_transactions: IndexMap::new(), - hash_to_transaction: HashMap::new(), - future_transactions: IndexMap::new(), - next_order_id: 0, - } - } - - /// Retrieves the instance's block gas limit. - pub fn block_gas_limit(&self) -> NonZeroU64 { - self.block_gas_limit - } - - /// Sets the instance's block gas limit. - pub fn set_block_gas_limit(&mut self, state: &S, limit: NonZeroU64) -> Result<(), S::Error> - where - S: StateRef + ?Sized, - S::Error: Debug, - { - self.block_gas_limit = limit; - - self.update(state) - } - - /// Creates an iterator for all pending transactions; i.e. for which the - /// nonces are guaranteed to be high enough. - pub fn iter(&self, comparator: ComparatorT) -> PendingTransactions - where - ComparatorT: Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering, - { - PendingTransactions { - transactions: self.pending_transactions.clone(), - comparator, - } - } - - /// Retrieves the nonce of the last pending transaction of the account - /// corresponding to the specified address, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn last_pending_nonce(&self, address: &Address) -> Option { - self.pending_transactions.get(address).map(|transactions| { - transactions - .last() - .expect("Empty maps should be deleted") - .nonce() - }) - } - - /// Retrieves an iterator for all future transactions. - pub fn future_transactions(&self) -> impl Iterator { - self.future_transactions.values().flatten() - } - - /// Retrieves an iterator for all pending transactions. - pub fn pending_transactions(&self) -> impl Iterator { - self.pending_transactions.values().flatten() - } - - /// Retrieves an iterator for all transactions in the instance. Pending - /// transactions are followed by future transactions, grouped by sender - /// in order of insertion. - pub fn transactions(&self) -> impl Iterator { - self.pending_transactions - .values() - .chain(self.future_transactions.values()) - .flatten() - .map(OrderedTransaction::pending) - } - - /// Whether the instance has any future transactions; i.e. for which the - /// nonces are not high enough. - pub fn has_future_transactions(&self) -> bool { - !self.future_transactions.is_empty() - } - - /// Whether the instance has any pending transactions; i.e. for which the - /// nonces are guaranteed to be high enough. - pub fn has_pending_transactions(&self) -> bool { - !self.pending_transactions.is_empty() - } - - /// Tries to add the provided transaction to the [`MemPool`]. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn add_transaction( - &mut self, - state: &S, - transaction: ExecutableTransaction, - ) -> Result<(), MemPoolAddTransactionError> { - let transaction_gas_limit = transaction.gas_limit(); - if transaction_gas_limit > self.block_gas_limit.get() { - return Err(MemPoolAddTransactionError::ExceedsBlockGasLimit { - block_gas_limit: self.block_gas_limit, - transaction_gas_limit, - }); - } - - if self.hash_to_transaction.contains_key(transaction.hash()) { - return Err(MemPoolAddTransactionError::TransactionAlreadyExists { - transaction_hash: *transaction.hash(), - }); - } - - let sender = state.basic(*transaction.caller())?.unwrap_or_default(); - if transaction.nonce() < sender.nonce { - return Err(MemPoolAddTransactionError::NonceTooLow { - transaction_nonce: transaction.nonce(), - sender_nonce: sender.nonce, - }); - } - - // We need to validate funds at this stage to avoid DOS - let max_upfront_cost = transaction.as_inner().upfront_cost(); - if max_upfront_cost > sender.balance { - return Err(MemPoolAddTransactionError::InsufficientFunds { - max_upfront_cost, - sender_balance: sender.balance, - }); - } - - let next_nonce = account_next_nonce(self, state, transaction.caller())?; - let transaction = OrderedTransaction { - order_id: self.next_order_id, - transaction, - }; - - if transaction.nonce() > next_nonce { - self.insert_future_transaction(transaction.clone())?; - } else { - self.insert_pending_transaction(transaction.clone())?; - } - - self.next_order_id += 1; - - self.hash_to_transaction - .insert(*transaction.hash(), transaction); - - Ok(()) - } - - /// Removes the transaction corresponding to the provided transaction hash, - /// if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn remove_transaction(&mut self, hash: &B256) -> Option { - if let Some(old_transaction) = self.hash_to_transaction.remove(hash) { - let caller = old_transaction.caller(); - if let Some(pending_transactions) = self.pending_transactions.get_mut(caller) { - if let Some((idx, _)) = pending_transactions - .iter() - .enumerate() - .find(|(_, transaction)| *transaction.hash() == *hash) - { - let mut invalidated_transactions = pending_transactions.split_off(idx + 1); - let removed = pending_transactions.remove(idx); - - if pending_transactions.is_empty() { - self.pending_transactions.shift_remove(caller); - } - - self.future_transactions - .entry(*caller) - .and_modify(|transactions| { - transactions.append(&mut invalidated_transactions); - }) - .or_insert(invalidated_transactions); - - return Some(removed); - } - } - - if let Some(future_transactions) = self.future_transactions.get_mut(caller) { - if let Some((idx, _)) = future_transactions - .iter() - .enumerate() - .find(|(_, transaction)| *transaction.hash() == *hash) - { - let removed = future_transactions.remove(idx); - - if future_transactions.is_empty() { - self.future_transactions.shift_remove(caller); - } - - return Some(removed); - } - } - } - - None - } - - /// Updates the [`MemPool`], moving any future transactions to the pending - /// status, if their nonces are high enough. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn update(&mut self, state: &S) -> Result<(), S::Error> - where - S: StateRef + ?Sized, - S::Error: Debug, - { - fn is_valid_tx( - transaction: &ExecutableTransaction, - block_gas_limit: NonZeroU64, - sender: &AccountInfo, - ) -> bool { - transaction.gas_limit() <= block_gas_limit.get() - && transaction.upfront_cost() <= sender.balance - // Remove all mined transactions - && transaction.nonce() >= sender.nonce - } - - for entry in self.pending_transactions.iter_mut() { - let (caller, transactions) = entry; - let sender = state.basic(*caller)?.unwrap_or_default(); - - // Remove invalidated transactions - transactions.retain(|transaction| { - let should_retain = - is_valid_tx(transaction.pending(), self.block_gas_limit, &sender); - - if !should_retain { - self.hash_to_transaction.remove(transaction.hash()); - } - - should_retain - }); - - // Check that the pending transactions still have consecutive nonces, starting - // from the sender's nonce - if let Some((idx, _)) = transactions - .iter() - .enumerate() - .find(|(idx, transaction)| transaction.nonce() != sender.nonce + *idx as u64) - { - // Move all consequent transactions to the future queue - let mut invalidated_transactions = transactions.split_off(idx); - - self.future_transactions - .entry(*caller) - .and_modify(|transactions| transactions.append(&mut invalidated_transactions)) - .or_insert(invalidated_transactions); - } - } - - // Remove empty pending entries - self.pending_transactions - .retain(|_, transactions| !transactions.is_empty()); - - for entry in self.future_transactions.iter_mut() { - let (caller, transactions) = entry; - let sender = state.basic(*caller)?.unwrap_or_default(); - - transactions.retain(|transaction| { - let should_retain = - is_valid_tx(&transaction.transaction, self.block_gas_limit, &sender); - - if !should_retain { - self.hash_to_transaction.remove(transaction.hash()); - } - - should_retain - }); - } - - // Remove empty future entries - self.future_transactions - .retain(|_, transactions| !transactions.is_empty()); - - Ok(()) - } - - /// Returns the transaction corresponding to the provided hash, if it - /// exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn transaction_by_hash(&self, hash: &B256) -> Option<&OrderedTransaction> { - self.hash_to_transaction.get(hash) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn insert_pending_transaction( - &mut self, - transaction: OrderedTransaction, - ) -> Result<(), MemPoolAddTransactionError> { - let mut pending_transactions = self.pending_transactions.entry(*transaction.caller()); - - // Check whether an existing transaction can be replaced - if let Entry::Occupied(ref mut pending_transactions) = pending_transactions { - let replaced_transaction = pending_transactions - .get_mut() - .iter_mut() - .find(|pending_transaction| transaction.nonce() == pending_transaction.nonce()); - - if let Some(replaced_transaction) = replaced_transaction { - validate_replacement_transaction( - &replaced_transaction.transaction, - &transaction.transaction, - )?; - - self.hash_to_transaction.remove(replaced_transaction.hash()); - - *replaced_transaction = transaction.clone(); - - return Ok(()); - } - } - - let caller = *transaction.caller(); - let mut next_pending_nonce = transaction.nonce() + 1; - - let pending_transactions = pending_transactions.or_default(); - pending_transactions.push(transaction); - - // Move as many future transactions as possible to the pending status - if let Some(future_transactions) = self.future_transactions.get_mut(&caller) { - while let Some((idx, _)) = future_transactions - .iter() - .enumerate() - .find(|(_, transaction)| transaction.nonce() == next_pending_nonce) - { - pending_transactions.push(future_transactions.remove(idx)); - - next_pending_nonce += 1; - } - - if future_transactions.is_empty() { - self.future_transactions.shift_remove(&caller); - } - } - - Ok(()) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn insert_future_transaction( - &mut self, - transaction: OrderedTransaction, - ) -> Result<(), MemPoolAddTransactionError> { - let mut future_transactions = self.future_transactions.entry(*transaction.caller()); - - // Check whether an existing transaction can be replaced - if let Entry::Occupied(ref mut future_transactions) = future_transactions { - let replaced_transaction = future_transactions - .get_mut() - .iter_mut() - .find(|pending_transaction| transaction.nonce() == pending_transaction.nonce()); - - if let Some(replaced_transaction) = replaced_transaction { - validate_replacement_transaction( - &replaced_transaction.transaction, - &transaction.transaction, - )?; - - self.hash_to_transaction.remove(replaced_transaction.hash()); - - *replaced_transaction = transaction.clone(); - - return Ok(()); - } - } - - future_transactions.or_default().push(transaction); - Ok(()) - } -} - -/// Calculates the next nonce of the account corresponding to the provided -/// address. -pub fn account_next_nonce( - mem_pool: &MemPool, - state: &StateT, - address: &Address, -) -> Result { - mem_pool.last_pending_nonce(address).map_or_else( - || { - state - .basic(*address) - .map(|account| account.map_or(0, |account| account.nonce)) - }, - |nonce| Ok(nonce + 1), - ) -} - -/// Whether the mempool has any transactions. -pub fn has_transactions(mem_pool: &MemPool) -> bool { - mem_pool.has_future_transactions() || mem_pool.has_pending_transactions() -} - -fn validate_replacement_transaction( - old_transaction: &ExecutableTransaction, - new_transaction: &ExecutableTransaction, -) -> Result<(), MemPoolAddTransactionError> { - let min_new_max_fee_per_gas = min_new_fee(old_transaction.gas_price()); - if new_transaction.gas_price() < min_new_max_fee_per_gas { - return Err(MemPoolAddTransactionError::ReplacementMaxFeePerGasTooLow { - min_new_max_fee_per_gas, - transaction_nonce: old_transaction.nonce(), - }); - } - - let min_new_max_priority_fee_per_gas = min_new_fee( - old_transaction - .max_priority_fee_per_gas() - .unwrap_or_else(|| old_transaction.gas_price()), - ); - - if new_transaction - .max_priority_fee_per_gas() - .unwrap_or_else(|| new_transaction.gas_price()) - < min_new_max_priority_fee_per_gas - { - return Err( - MemPoolAddTransactionError::ReplacementMaxPriorityFeePerGasTooLow { - min_new_max_priority_fee_per_gas, - transaction_nonce: old_transaction.nonce(), - }, - ); - } - - Ok(()) -} - -fn min_new_fee(fee: U256) -> U256 { - let min_new_priority_fee = fee * U256::from(110); - - let one_hundred = U256::from(100); - if min_new_priority_fee % one_hundred == U256::ZERO { - min_new_priority_fee / one_hundred - } else { - min_new_priority_fee / one_hundred + U256::from(1) - } -} diff --git a/crates/edr_evm/src/miner.rs b/crates/edr_evm/src/miner.rs deleted file mode 100644 index 6d4c3bfc40..0000000000 --- a/crates/edr_evm/src/miner.rs +++ /dev/null @@ -1,453 +0,0 @@ -use std::{cmp::Ordering, fmt::Debug, sync::Arc}; - -use edr_eth::{block::BlockOptions, U256}; -use revm::primitives::{CfgEnvWithHandlerCfg, ExecutionResult, InvalidTransaction}; -use serde::{Deserialize, Serialize}; - -use crate::{ - block::BlockBuilderCreationError, - blockchain::SyncBlockchain, - debug::DebugContext, - mempool::OrderedTransaction, - state::{StateDiff, SyncState}, - trace::Trace, - BlockBuilder, BlockTransactionError, BuildBlockResult, ExecutableTransaction, - ExecutionResultWithContext, LocalBlock, MemPool, SyncBlock, -}; - -/// The result of mining a block, after having been committed to the blockchain. -#[derive(Debug)] -pub struct MineBlockResult { - /// Mined block - pub block: Arc>, - /// Transaction results - pub transaction_results: Vec, - /// Transaction traces - pub transaction_traces: Vec, -} - -impl Clone for MineBlockResult { - fn clone(&self) -> Self { - Self { - block: self.block.clone(), - transaction_results: self.transaction_results.clone(), - transaction_traces: self.transaction_traces.clone(), - } - } -} - -/// The result of mining a block, including the state. This result needs to be -/// inserted into the blockchain to be persistent. -pub struct MineBlockResultAndState { - /// Mined block - pub block: LocalBlock, - /// State after mining the block - pub state: Box>, - /// State diff applied by block - pub state_diff: StateDiff, - /// Transaction results - pub transaction_results: Vec, -} - -/// The type of ordering to use when selecting blocks to mine. -#[derive(Clone, Copy, Debug, Serialize, Deserialize)] -pub enum MineOrdering { - /// Insertion order - Fifo, - /// Effective miner fee - Priority, -} - -/// An error that occurred while mining a block. -#[derive(Debug, thiserror::Error)] -pub enum MineBlockError { - /// An error that occurred while constructing a block builder. - #[error(transparent)] - BlockBuilderCreation(#[from] BlockBuilderCreationError), - /// An error that occurred while executing a transaction. - #[error(transparent)] - BlockTransaction(#[from] BlockTransactionError), - /// An error that occurred while finalizing a block. - #[error(transparent)] - BlockFinalize(SE), - /// A blockchain error - #[error(transparent)] - Blockchain(BE), - /// The block is expected to have a prevrandao, as the executor's config is - /// on a post-merge hardfork. - #[error("Post-merge transaction is missing prevrandao")] - MissingPrevrandao, -} - -/// Mines a block using as many transactions as can fit in it. -#[allow(clippy::too_many_arguments)] -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -pub fn mine_block<'blockchain, 'evm, BlockchainErrorT, DebugDataT, StateErrorT>( - blockchain: &'blockchain dyn SyncBlockchain, - mut state: Box>, - mem_pool: &MemPool, - cfg: &CfgEnvWithHandlerCfg, - options: BlockOptions, - min_gas_price: U256, - mine_ordering: MineOrdering, - reward: U256, - dao_hardfork_activation_block: Option, - mut debug_context: Option< - DebugContext<'evm, BlockchainErrorT, DebugDataT, Box>>, - >, -) -> Result, MineBlockError> -where - 'blockchain: 'evm, - BlockchainErrorT: Debug + Send, - StateErrorT: Debug + Send, -{ - let parent_block = blockchain - .last_block() - .map_err(MineBlockError::Blockchain)?; - - let mut block_builder = BlockBuilder::new( - cfg.clone(), - &parent_block, - options, - dao_hardfork_activation_block, - )?; - - let mut pending_transactions = { - type MineOrderComparator = - dyn Fn(&OrderedTransaction, &OrderedTransaction) -> Ordering + Send; - - let base_fee = block_builder.header().base_fee; - let comparator: Box = match mine_ordering { - MineOrdering::Fifo => Box::new(first_in_first_out_comparator), - MineOrdering::Priority => { - Box::new(move |lhs, rhs| priority_comparator(lhs, rhs, base_fee)) - } - }; - - mem_pool.iter(comparator) - }; - - let mut results = Vec::new(); - - while let Some(transaction) = pending_transactions.next() { - if transaction.gas_price() < min_gas_price { - pending_transactions.remove_caller(transaction.caller()); - continue; - } - - let caller = *transaction.caller(); - let ExecutionResultWithContext { - result, - evm_context, - } = block_builder.add_transaction(blockchain, state, transaction, debug_context); - - match result { - Err( - BlockTransactionError::ExceedsBlockGasLimit - | BlockTransactionError::InvalidTransaction( - InvalidTransaction::GasPriceLessThanBasefee, - ), - ) => { - pending_transactions.remove_caller(&caller); - state = evm_context.state; - debug_context = evm_context.debug; - continue; - } - Err(error) => { - return Err(MineBlockError::BlockTransaction(error)); - } - Ok(result) => { - results.push(result); - state = evm_context.state; - debug_context = evm_context.debug; - } - } - } - - let beneficiary = block_builder.header().beneficiary; - let rewards = vec![(beneficiary, reward)]; - let BuildBlockResult { block, state_diff } = block_builder - .finalize(&mut state, rewards) - .map_err(MineBlockError::BlockFinalize)?; - - Ok(MineBlockResultAndState { - block, - state, - state_diff, - transaction_results: results, - }) -} - -fn effective_miner_fee(transaction: &ExecutableTransaction, base_fee: Option) -> U256 { - let max_fee_per_gas = transaction.gas_price(); - let max_priority_fee_per_gas = transaction - .max_priority_fee_per_gas() - .unwrap_or(max_fee_per_gas); - - base_fee.map_or(max_fee_per_gas, |base_fee| { - max_priority_fee_per_gas.min(max_fee_per_gas - base_fee) - }) -} - -fn first_in_first_out_comparator(lhs: &OrderedTransaction, rhs: &OrderedTransaction) -> Ordering { - lhs.order_id().cmp(&rhs.order_id()) -} - -fn priority_comparator( - lhs: &OrderedTransaction, - rhs: &OrderedTransaction, - base_fee: Option, -) -> Ordering { - let effective_miner_fee = - move |transaction: &ExecutableTransaction| effective_miner_fee(transaction, base_fee); - - // Invert lhs and rhs to get decreasing order by effective miner fee - let ordering = effective_miner_fee(rhs.pending()).cmp(&effective_miner_fee(lhs.pending())); - - // If two txs have the same effective miner fee we want to sort them - // in increasing order by orderId - if ordering == Ordering::Equal { - lhs.order_id().cmp(&rhs.order_id()) - } else { - ordering - } -} - -#[cfg(test)] -mod tests { - use edr_eth::{AccountInfo, Address}; - - use super::*; - use crate::test_utils::{ - dummy_eip1559_transaction, dummy_eip155_transaction_with_price, MemPoolTestFixture, - }; - - #[test] - fn fifo_ordering() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - let sender3 = Address::random(); - - let account_with_balance = AccountInfo { - balance: U256::from(100_000_000u64), - ..AccountInfo::default() - }; - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, account_with_balance.clone()), - (sender2, account_with_balance.clone()), - (sender3, account_with_balance), - ]); - - let base_fee = Some(U256::from(15)); - - let transaction1 = dummy_eip155_transaction_with_price(sender1, 0, U256::from(111))?; - assert_eq!(effective_miner_fee(&transaction1, base_fee), U256::from(96)); - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip1559_transaction(sender2, 0, U256::from(120), U256::from(100))?; - assert_eq!( - effective_miner_fee(&transaction2, base_fee), - U256::from(100) - ); - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip1559_transaction(sender3, 0, U256::from(140), U256::from(110))?; - assert_eq!( - effective_miner_fee(&transaction3, base_fee), - U256::from(110) - ); - fixture.add_transaction(transaction3.clone())?; - - let mut ordered_transactions = fixture.mem_pool.iter(first_in_first_out_comparator); - - assert_eq!(ordered_transactions.next(), Some(transaction1)); - assert_eq!(ordered_transactions.next(), Some(transaction2)); - assert_eq!(ordered_transactions.next(), Some(transaction3)); - - Ok(()) - } - - #[test] - fn priority_ordering_gas_price_without_base_fee() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - let sender3 = Address::random(); - let sender4 = Address::random(); - - let account_with_balance = AccountInfo { - balance: U256::from(100_000_000u64), - ..AccountInfo::default() - }; - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, account_with_balance.clone()), - (sender2, account_with_balance.clone()), - (sender3, account_with_balance.clone()), - (sender4, account_with_balance), - ]); - - let transaction1 = dummy_eip155_transaction_with_price(sender1, 0, U256::from(123))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender2, 0, U256::from(1_000))?; - fixture.add_transaction(transaction2.clone())?; - - // This has the same gasPrice than tx2, but arrived later, so it's placed later - // in the queue - let transaction3 = dummy_eip155_transaction_with_price(sender3, 0, U256::from(1_000))?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction_with_price(sender4, 0, U256::from(2_000))?; - fixture.add_transaction(transaction4.clone())?; - - let mut ordered_transactions = fixture - .mem_pool - .iter(|lhs, rhs| priority_comparator(lhs, rhs, None)); - - assert_eq!(ordered_transactions.next(), Some(transaction4)); - assert_eq!(ordered_transactions.next(), Some(transaction2)); - assert_eq!(ordered_transactions.next(), Some(transaction3)); - assert_eq!(ordered_transactions.next(), Some(transaction1)); - - Ok(()) - } - - #[test] - fn priority_ordering_gas_price_with_base_fee() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - let sender3 = Address::random(); - let sender4 = Address::random(); - let sender5 = Address::random(); - - let account_with_balance = AccountInfo { - balance: U256::from(100_000_000u64), - ..AccountInfo::default() - }; - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, account_with_balance.clone()), - (sender2, account_with_balance.clone()), - (sender3, account_with_balance.clone()), - (sender4, account_with_balance.clone()), - (sender5, account_with_balance), - ]); - - let base_fee = Some(U256::from(15)); - - let transaction1 = dummy_eip155_transaction_with_price(sender1, 0, U256::from(111))?; - assert_eq!(effective_miner_fee(&transaction1, base_fee), U256::from(96)); - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip1559_transaction(sender2, 0, U256::from(120), U256::from(100))?; - assert_eq!( - effective_miner_fee(&transaction2, base_fee), - U256::from(100) - ); - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip1559_transaction(sender3, 0, U256::from(140), U256::from(110))?; - assert_eq!( - effective_miner_fee(&transaction3, base_fee), - U256::from(110) - ); - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip1559_transaction(sender4, 0, U256::from(140), U256::from(130))?; - assert_eq!( - effective_miner_fee(&transaction4, base_fee), - U256::from(125) - ); - fixture.add_transaction(transaction4.clone())?; - - let transaction5 = dummy_eip155_transaction_with_price(sender5, 0, U256::from(170))?; - assert_eq!( - effective_miner_fee(&transaction5, base_fee), - U256::from(155) - ); - fixture.add_transaction(transaction5.clone())?; - - let mut ordered_transactions = fixture - .mem_pool - .iter(|lhs, rhs| priority_comparator(lhs, rhs, base_fee)); - - assert_eq!(ordered_transactions.next(), Some(transaction5)); - assert_eq!(ordered_transactions.next(), Some(transaction4)); - assert_eq!(ordered_transactions.next(), Some(transaction3)); - assert_eq!(ordered_transactions.next(), Some(transaction2)); - assert_eq!(ordered_transactions.next(), Some(transaction1)); - - Ok(()) - } - - #[test] - fn ordering_remove_caller() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - let sender3 = Address::random(); - let sender4 = Address::random(); - - let account_with_balance = AccountInfo { - balance: U256::from(100_000_000u64), - ..AccountInfo::default() - }; - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, account_with_balance.clone()), - (sender2, account_with_balance.clone()), - (sender3, account_with_balance.clone()), - (sender4, account_with_balance), - ]); - - // Insert 9 transactions sequentially (no for loop) - let transaction1 = dummy_eip155_transaction_with_price(sender1, 0, U256::from(100))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender1, 1, U256::from(99))?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction_with_price(sender2, 0, U256::from(98))?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction_with_price(sender2, 1, U256::from(97))?; - fixture.add_transaction(transaction4.clone())?; - - let transaction5 = dummy_eip155_transaction_with_price(sender3, 0, U256::from(96))?; - fixture.add_transaction(transaction5.clone())?; - - let transaction6 = dummy_eip155_transaction_with_price(sender3, 1, U256::from(95))?; - fixture.add_transaction(transaction6.clone())?; - - let transaction7 = dummy_eip155_transaction_with_price(sender3, 2, U256::from(94))?; - fixture.add_transaction(transaction7.clone())?; - - let transaction8 = dummy_eip155_transaction_with_price(sender3, 3, U256::from(93))?; - fixture.add_transaction(transaction8.clone())?; - - let transaction9 = dummy_eip155_transaction_with_price(sender4, 0, U256::from(92))?; - fixture.add_transaction(transaction9.clone())?; - - let transaction10 = dummy_eip155_transaction_with_price(sender4, 1, U256::from(91))?; - fixture.add_transaction(transaction10.clone())?; - - let mut ordered_transactions = fixture - .mem_pool - .iter(|lhs, rhs| priority_comparator(lhs, rhs, None)); - - assert_eq!(ordered_transactions.next(), Some(transaction1)); - assert_eq!(ordered_transactions.next(), Some(transaction2)); - assert_eq!(ordered_transactions.next(), Some(transaction3)); - - // Remove all transactions for sender 2 - ordered_transactions.remove_caller(&sender2); - - assert_eq!(ordered_transactions.next(), Some(transaction5)); - assert_eq!(ordered_transactions.next(), Some(transaction6)); - assert_eq!(ordered_transactions.next(), Some(transaction7)); - - // Remove all transactions for sender 3 - ordered_transactions.remove_caller(&sender3); - - assert_eq!(ordered_transactions.next(), Some(transaction9)); - assert_eq!(ordered_transactions.next(), Some(transaction10)); - - Ok(()) - } -} diff --git a/crates/edr_evm/src/random.rs b/crates/edr_evm/src/random.rs deleted file mode 100644 index cee909a3a1..0000000000 --- a/crates/edr_evm/src/random.rs +++ /dev/null @@ -1,50 +0,0 @@ -#![allow(dead_code)] - -use edr_eth::B256; -use revm::primitives::keccak256; - -/// A pseudorandom hash generator which allows overriding of the next generated -/// hash. -#[derive(Clone, Debug)] -pub struct RandomHashGenerator { - /// The next hash that will be returned - next_value: B256, -} - -impl RandomHashGenerator { - /// Constructs an instance with the specified seed. - pub fn with_seed(seed: &str) -> Self { - let next_value = keccak256(seed.as_bytes()); - - Self { next_value } - } - - /// Construct an instance with the specified next value. - pub fn with_value(next_value: B256) -> Self { - Self { next_value } - } - - /// Returns the next hash, generates the future next hash, and caches it. - pub fn generate_next(&mut self) -> B256 { - let mut next_value = keccak256(self.next_value); - - std::mem::swap(&mut self.next_value, &mut next_value); - - next_value - } - - /// Returns the next hash - pub fn next_value(&self) -> B256 { - self.next_value - } - - /// Returns the current seed. - pub fn seed(&self) -> B256 { - self.next_value - } - - /// Overwrites the next hash output by the generator. - pub fn set_next(&mut self, next_value: B256) { - self.next_value = next_value; - } -} diff --git a/crates/edr_evm/src/runtime.rs b/crates/edr_evm/src/runtime.rs deleted file mode 100644 index 9a6de06d64..0000000000 --- a/crates/edr_evm/src/runtime.rs +++ /dev/null @@ -1,179 +0,0 @@ -use std::fmt::Debug; - -use revm::{ - db::{DatabaseComponents, StateRef}, - primitives::{ - BlockEnv, CfgEnvWithHandlerCfg, EnvWithHandlerCfg, ExecutionResult, ResultAndState, SpecId, - TxEnv, - }, - DatabaseCommit, Evm, -}; - -use crate::{ - blockchain::SyncBlockchain, - debug::DebugContext, - state::{StateOverrides, StateRefOverrider, SyncState}, - transaction::TransactionError, -}; - -/// Asynchronous implementation of the Database super-trait -pub type SyncDatabase<'blockchain, 'state, BlockchainErrorT, StateErrorT> = DatabaseComponents< - &'state dyn StateRef, - &'blockchain dyn SyncBlockchain, ->; - -/// Runs a transaction without committing the state. -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -pub fn dry_run<'blockchain, 'evm, 'overrides, 'state, DebugDataT, BlockchainErrorT, StateErrorT>( - blockchain: &'blockchain dyn SyncBlockchain, - state: &'state dyn SyncState, - state_overrides: &'overrides StateOverrides, - cfg: CfgEnvWithHandlerCfg, - transaction: TxEnv, - block: BlockEnv, - debug_context: Option< - DebugContext< - 'evm, - BlockchainErrorT, - DebugDataT, - StateRefOverrider<'overrides, &'evm dyn SyncState>, - >, - >, -) -> Result> -where - 'blockchain: 'evm, - 'state: 'evm, - BlockchainErrorT: Debug + Send, - StateErrorT: Debug + Send, -{ - validate_configuration(&cfg, &block, &transaction)?; - - let state_overrider = StateRefOverrider::new(state_overrides, state); - - let env = EnvWithHandlerCfg::new_with_cfg_env(cfg, block, transaction); - let result = { - let evm_builder = Evm::builder().with_ref_db(DatabaseComponents { - state: state_overrider, - block_hash: blockchain, - }); - - if let Some(debug_context) = debug_context { - let mut evm = evm_builder - .with_external_context(debug_context.data) - .with_env_with_handler_cfg(env) - .append_handler_register(debug_context.register_handles_fn) - .build(); - - evm.transact() - } else { - let mut evm = evm_builder.with_env_with_handler_cfg(env).build(); - evm.transact() - } - }; - - result.map_err(TransactionError::from) -} - -/// Runs a transaction without committing the state, while disabling balance -/// checks and creating accounts for new addresses. -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -pub fn guaranteed_dry_run< - 'blockchain, - 'evm, - 'overrides, - 'state, - DebugDataT, - BlockchainErrorT, - StateErrorT, ->( - blockchain: &'blockchain dyn SyncBlockchain, - state: &'state dyn SyncState, - state_overrides: &'overrides StateOverrides, - mut cfg: CfgEnvWithHandlerCfg, - mut transaction: TxEnv, - block: BlockEnv, - debug_context: Option< - DebugContext< - 'evm, - BlockchainErrorT, - DebugDataT, - StateRefOverrider<'overrides, &'evm dyn SyncState>, - >, - >, -) -> Result> -where - 'blockchain: 'evm, - 'state: 'evm, - BlockchainErrorT: Debug + Send, - StateErrorT: Debug + Send, -{ - cfg.disable_balance_check = true; - cfg.disable_block_gas_limit = true; - transaction.nonce = None; - dry_run( - blockchain, - state, - state_overrides, - cfg, - transaction, - block, - debug_context, - ) -} - -/// Runs a transaction, committing the state in the process. -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -pub fn run<'blockchain, 'evm, BlockchainErrorT, DebugDataT, StateT>( - blockchain: &'blockchain dyn SyncBlockchain, - state: StateT, - cfg: CfgEnvWithHandlerCfg, - transaction: TxEnv, - block: BlockEnv, - debug_context: Option>, -) -> Result> -where - 'blockchain: 'evm, - BlockchainErrorT: Debug + Send, - StateT: StateRef + DatabaseCommit, - StateT::Error: Debug + Send, -{ - validate_configuration(&cfg, &block, &transaction)?; - - let env = EnvWithHandlerCfg::new_with_cfg_env(cfg, block, transaction); - let evm_builder = Evm::builder().with_ref_db(DatabaseComponents { - state, - block_hash: blockchain, - }); - - let result = if let Some(debug_context) = debug_context { - let mut evm = evm_builder - .with_external_context(debug_context.data) - .with_env_with_handler_cfg(env) - .append_handler_register(debug_context.register_handles_fn) - .build(); - - evm.transact_commit() - } else { - let mut evm = evm_builder.with_env_with_handler_cfg(env).build(); - - evm.transact_commit() - }?; - - Ok(result) -} - -fn validate_configuration( - cfg: &CfgEnvWithHandlerCfg, - block: &BlockEnv, - transaction: &TxEnv, -) -> Result<(), TransactionError> { - if cfg.handler_cfg.spec_id > SpecId::MERGE && block.prevrandao.is_none() { - return Err(TransactionError::MissingPrevrandao); - } - - if transaction.gas_priority_fee.is_some() && cfg.handler_cfg.spec_id < SpecId::LONDON { - return Err(TransactionError::Eip1559Unsupported); - } - - Ok(()) -} diff --git a/crates/edr_evm/src/state.rs b/crates/edr_evm/src/state.rs deleted file mode 100644 index 1a14f0c8a7..0000000000 --- a/crates/edr_evm/src/state.rs +++ /dev/null @@ -1,78 +0,0 @@ -mod account; -mod debug; -mod diff; -mod fork; -mod irregular; -mod r#override; -mod overrides; -mod remote; -mod trie; - -use std::fmt::Debug; - -use dyn_clone::DynClone; -use edr_eth::{remote::RpcClientError, B256}; -use revm::{db::StateRef, DatabaseCommit}; - -pub use self::{ - debug::{AccountModifierFn, StateDebug}, - diff::StateDiff, - fork::ForkState, - irregular::IrregularState, - overrides::*, - r#override::StateOverride, - remote::RemoteState, - trie::{AccountTrie, TrieState}, -}; - -/// Combinatorial error for the state API -#[derive(Debug, thiserror::Error)] -pub enum StateError { - /// No checkpoints to revert - #[error("No checkpoints to revert.")] - CannotRevert, - /// Contract with specified code hash does not exist - #[error("Contract with code hash `{0}` does not exist.")] - InvalidCodeHash(B256), - /// Specified state root does not exist - #[error("State root `{state_root:?}` does not exist (fork: {is_fork}).")] - InvalidStateRoot { - /// Requested state root - state_root: B256, - /// Whether the state root was intended for a fork - is_fork: bool, - }, - /// Error from the underlying RPC client - #[error(transparent)] - Remote(#[from] RpcClientError), -} - -/// Trait that meets all requirements for a synchronous database -pub trait SyncState: - StateRef + DatabaseCommit + StateDebug + Debug + DynClone + Send + Sync -where - E: Debug + Send, -{ -} - -impl Clone for Box> -where - E: Debug + Send, -{ - fn clone(&self) -> Self { - dyn_clone::clone_box(&**self) - } -} - -impl SyncState for S -where - S: StateRef - + DatabaseCommit - + StateDebug - + Debug - + DynClone - + Send - + Sync, - E: Debug + Send, -{ -} diff --git a/crates/edr_evm/src/state/account.rs b/crates/edr_evm/src/state/account.rs deleted file mode 100644 index 8e508c7523..0000000000 --- a/crates/edr_evm/src/state/account.rs +++ /dev/null @@ -1,17 +0,0 @@ -use edr_eth::state::Storage; -use revm::primitives::AccountInfo; - -#[derive(Clone, Debug, Default)] -pub struct EdrAccount { - pub info: AccountInfo, - pub storage: Storage, -} - -impl From for EdrAccount { - fn from(info: AccountInfo) -> Self { - Self { - info, - storage: Storage::default(), - } - } -} diff --git a/crates/edr_evm/src/state/debug.rs b/crates/edr_evm/src/state/debug.rs deleted file mode 100644 index d4c7f03fa2..0000000000 --- a/crates/edr_evm/src/state/debug.rs +++ /dev/null @@ -1,84 +0,0 @@ -use std::{fmt::Debug, ops::Deref}; - -use auto_impl::auto_impl; -use edr_eth::{Address, B256, U256}; -use revm::primitives::{AccountInfo, Bytecode}; - -type BoxedAccountModifierFn = Box) + Send>; - -/// Debuggable function type for modifying account information. -pub struct AccountModifierFn { - inner: BoxedAccountModifierFn, -} - -impl AccountModifierFn { - /// Constructs an [`AccountModifierFn`] from the provided function. - pub fn new(func: BoxedAccountModifierFn) -> Self { - Self { inner: func } - } -} - -impl Debug for AccountModifierFn { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!( - f, - "{}", - std::any::type_name::)>() - ) - } -} - -impl Deref for AccountModifierFn { - type Target = dyn Fn(&mut U256, &mut u64, &mut Option); - - fn deref(&self) -> &Self::Target { - self.inner.as_ref() - } -} - -/// A trait for debug operation on a database. -#[auto_impl(&mut, Box)] -pub trait StateDebug { - /// The state's error type. - type Error; - - /// Retrieves the storage root of the account at the specified address. - fn account_storage_root(&self, address: &Address) -> Result, Self::Error>; - - /// Inserts the provided account at the specified address. - fn insert_account( - &mut self, - address: Address, - account_info: AccountInfo, - ) -> Result<(), Self::Error>; - - /// Modifies the account at the specified address using the provided - /// function. - /// - /// Returns the modified (or created) account. - fn modify_account( - &mut self, - address: Address, - modifier: AccountModifierFn, - ) -> Result; - - /// Removes and returns the account at the specified address, if it exists. - fn remove_account(&mut self, address: Address) -> Result, Self::Error>; - - /// Serializes the state using ordering of addresses and storage indices. - fn serialize(&self) -> String; - - /// Sets the storage slot at the specified address and index to the provided - /// value. - /// - /// Returns the old value. - fn set_account_storage_slot( - &mut self, - address: Address, - index: U256, - value: U256, - ) -> Result; - - /// Retrieves the storage root of the database. - fn state_root(&self) -> Result; -} diff --git a/crates/edr_evm/src/state/diff.rs b/crates/edr_evm/src/state/diff.rs deleted file mode 100644 index 2238f63b8f..0000000000 --- a/crates/edr_evm/src/state/diff.rs +++ /dev/null @@ -1,87 +0,0 @@ -use edr_eth::{Address, U256}; -use revm::primitives::{Account, AccountInfo, AccountStatus, HashMap, StorageSlot}; - -/// The difference between two states, which can be applied to a state to get -/// the new state using [`revm::db::DatabaseCommit::commit`]. -#[derive(Clone, Debug, Default)] -pub struct StateDiff { - inner: HashMap, -} - -impl StateDiff { - /// Applies a single change to this instance, combining it with any existing - /// change. - pub fn apply_account_change(&mut self, address: Address, account_info: AccountInfo) { - self.inner - .entry(address) - .and_modify(|account| { - account.info = account_info.clone(); - }) - .or_insert(Account { - info: account_info, - storage: HashMap::new(), - status: AccountStatus::Touched, - }); - } - - /// Applies a single storage change to this instance, combining it with any - /// existing change. - /// - /// If the account corresponding to the specified address hasn't been - /// modified before, either the value provided in `account_info` will be - /// used, or alternatively a default account will be created. - pub fn apply_storage_change( - &mut self, - address: Address, - index: U256, - slot: StorageSlot, - account_info: Option, - ) { - self.inner - .entry(address) - .and_modify(|account| { - account.storage.insert(index, slot.clone()); - }) - .or_insert_with(|| { - let storage: HashMap<_, _> = std::iter::once((index, slot.clone())).collect(); - - Account { - info: account_info.unwrap_or_default(), - storage, - status: AccountStatus::Created | AccountStatus::Touched, - } - }); - } - - /// Applies a state diff to this instance, combining with any and all - /// existing changes. - pub fn apply_diff(&mut self, diff: HashMap) { - for (address, account_diff) in diff { - self.inner - .entry(address) - .and_modify(|account| { - account.info = account_diff.info.clone(); - account.status.insert(account_diff.status); - account.storage.extend(account_diff.storage.clone()); - }) - .or_insert(account_diff); - } - } - - /// Retrieves the inner hash map. - pub fn as_inner(&self) -> &HashMap { - &self.inner - } -} - -impl From> for StateDiff { - fn from(value: HashMap) -> Self { - Self { inner: value } - } -} - -impl From for HashMap { - fn from(value: StateDiff) -> Self { - value.inner - } -} diff --git a/crates/edr_evm/src/state/fork.rs b/crates/edr_evm/src/state/fork.rs deleted file mode 100644 index c12612993b..0000000000 --- a/crates/edr_evm/src/state/fork.rs +++ /dev/null @@ -1,325 +0,0 @@ -use std::sync::Arc; - -use edr_eth::{remote::RpcClient, trie::KECCAK_NULL_RLP, Address, B256, U256}; -use parking_lot::{Mutex, RwLock, RwLockUpgradableReadGuard}; -use revm::{ - db::components::{State, StateRef}, - primitives::{Account, AccountInfo, Bytecode, HashMap, HashSet}, - DatabaseCommit, -}; -use tokio::runtime; - -use super::{remote::CachedRemoteState, RemoteState, StateDebug, StateError, TrieState}; -use crate::random::RandomHashGenerator; - -/// A database integrating the state from a remote node and the state from a -/// local layered database. -#[derive(Debug)] -pub struct ForkState { - local_state: TrieState, - remote_state: Arc>, - removed_storage_slots: HashSet<(Address, U256)>, - /// A pair of the latest state root and local state root - current_state: RwLock<(B256, B256)>, - hash_generator: Arc>, - removed_remote_accounts: HashSet
, -} - -impl ForkState { - /// Constructs a new instance - pub fn new( - runtime: runtime::Handle, - rpc_client: Arc, - hash_generator: Arc>, - fork_block_number: u64, - state_root: B256, - ) -> Self { - let remote_state = RemoteState::new(runtime, rpc_client, fork_block_number); - let local_state = TrieState::default(); - - let mut state_root_to_state = HashMap::new(); - let local_root = local_state.state_root().unwrap(); - state_root_to_state.insert(state_root, local_root); - - Self { - local_state, - remote_state: Arc::new(Mutex::new(CachedRemoteState::new(remote_state))), - removed_storage_slots: HashSet::new(), - current_state: RwLock::new((state_root, local_root)), - hash_generator, - removed_remote_accounts: HashSet::new(), - } - } - - /// Overrides the state root of the fork state. - pub fn set_state_root(&mut self, state_root: B256) { - let local_root = self.local_state.state_root().unwrap(); - - *self.current_state.get_mut() = (state_root, local_root); - } -} - -impl Clone for ForkState { - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn clone(&self) -> Self { - Self { - local_state: self.local_state.clone(), - remote_state: self.remote_state.clone(), - removed_storage_slots: self.removed_storage_slots.clone(), - current_state: RwLock::new(*self.current_state.read()), - hash_generator: self.hash_generator.clone(), - removed_remote_accounts: self.removed_remote_accounts.clone(), - } - } -} - -impl StateRef for ForkState { - type Error = StateError; - - fn basic(&self, address: Address) -> Result, Self::Error> { - if let Some(local) = self.local_state.basic(address)? { - Ok(Some(local)) - } else if self.removed_remote_accounts.contains(&address) { - Ok(None) - } else { - self.remote_state.lock().basic(address) - } - } - - fn code_by_hash(&self, code_hash: B256) -> Result { - if let Ok(layered) = self.local_state.code_by_hash(code_hash) { - Ok(layered) - } else { - self.remote_state.lock().code_by_hash(code_hash) - } - } - - fn storage(&self, address: Address, index: U256) -> Result { - let local = self.local_state.storage(address, index)?; - if local != U256::ZERO || self.removed_storage_slots.contains(&(address, index)) { - Ok(local) - } else { - self.remote_state.lock().storage(address, index) - } - } -} - -impl DatabaseCommit for ForkState { - fn commit(&mut self, changes: HashMap) { - changes.iter().for_each(|(address, account)| { - account.storage.iter().for_each(|(index, value)| { - // We never need to remove zero entries as a "removed" entry means that the - // lookup for a value in the local state succeeded. - if value.present_value() == U256::ZERO { - self.removed_storage_slots.insert((*address, *index)); - } - }); - }); - - self.local_state.commit(changes); - } -} - -impl StateDebug for ForkState { - type Error = StateError; - - fn account_storage_root(&self, _address: &Address) -> Result, Self::Error> { - // HACK: Hardhat ignores the storage root, so we set it to the default value - Ok(Some(KECCAK_NULL_RLP)) - } - - fn insert_account( - &mut self, - address: Address, - account_info: AccountInfo, - ) -> Result<(), Self::Error> { - self.local_state.insert_account(address, account_info) - } - - fn modify_account( - &mut self, - address: Address, - modifier: crate::state::AccountModifierFn, - ) -> Result { - self.local_state.modify_account_impl( - address, - modifier, - &|| { - self.remote_state.lock().basic(address)?.map_or_else( - || { - Ok(AccountInfo { - code: None, - ..AccountInfo::default() - }) - }, - Result::Ok, - ) - }, - &|code_hash| self.remote_state.lock().code_by_hash(code_hash), - ) - } - - fn remove_account(&mut self, address: Address) -> Result, Self::Error> { - if let Some(account_info) = self.local_state.remove_account(address)? { - Ok(Some(account_info)) - } else if self.removed_remote_accounts.contains(&address) { - Ok(None) - } else if let Some(account_info) = self.remote_state.lock().basic(address)? { - self.removed_remote_accounts.insert(address); - Ok(Some(account_info)) - } else { - Ok(None) - } - } - - fn serialize(&self) -> String { - self.local_state.serialize() - } - - fn set_account_storage_slot( - &mut self, - address: Address, - index: U256, - value: U256, - ) -> Result { - // We never need to remove zero entries as a "removed" entry means that the - // lookup for a value in the local state succeeded. - if value == U256::ZERO { - self.removed_storage_slots.insert((address, index)); - } - - self.local_state - .set_account_storage_slot_impl(address, index, value, &|| { - self.remote_state.lock().basic(address)?.map_or_else( - || { - Ok(AccountInfo { - code: None, - ..AccountInfo::default() - }) - }, - Ok, - ) - }) - } - - fn state_root(&self) -> Result { - let local_root = self.local_state.state_root().unwrap(); - - let current_state = self.current_state.upgradable_read(); - - Ok(if local_root == current_state.1 { - current_state.0 - } else { - let next_state_root = self.hash_generator.lock().next_value(); - - *RwLockUpgradableReadGuard::upgrade(current_state) = (next_state_root, local_root); - - next_state_root - }) - } -} - -#[cfg(all(test, feature = "test-remote"))] -mod tests { - use std::{ - ops::{Deref, DerefMut}, - str::FromStr, - }; - - use edr_eth::remote::PreEip1898BlockSpec; - use edr_test_utils::env::get_alchemy_url; - - use super::*; - - const FORK_BLOCK: u64 = 16220843; - - struct TestForkState { - fork_state: ForkState, - // We need to keep it around as long as the fork state is alive - _tempdir: tempfile::TempDir, - } - - impl TestForkState { - /// Constructs a fork state for testing purposes. - /// - /// # Panics - /// - /// If the function is called without a `tokio::Runtime` existing. - async fn new() -> Self { - let hash_generator = Arc::new(Mutex::new(RandomHashGenerator::with_seed("seed"))); - - let tempdir = tempfile::tempdir().expect("can create tempdir"); - - let runtime = runtime::Handle::current(); - let rpc_client = RpcClient::new(&get_alchemy_url(), tempdir.path().to_path_buf(), None) - .expect("url ok"); - - let block = rpc_client - .get_block_by_number(PreEip1898BlockSpec::Number(FORK_BLOCK)) - .await - .expect("failed to retrieve block by number") - .expect("block should exist"); - - let fork_state = ForkState::new( - runtime, - Arc::new(rpc_client), - hash_generator, - FORK_BLOCK, - block.state_root, - ); - - Self { - fork_state, - _tempdir: tempdir, - } - } - } - - impl Deref for TestForkState { - type Target = ForkState; - - fn deref(&self) -> &Self::Target { - &self.fork_state - } - } - - impl DerefMut for TestForkState { - fn deref_mut(&mut self) -> &mut Self::Target { - &mut self.fork_state - } - } - - #[tokio::test(flavor = "multi_thread")] - async fn basic_success() { - let fork_state = TestForkState::new().await; - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let account_info = fork_state - .basic(dai_address) - .expect("should have succeeded"); - assert!(account_info.is_some()); - - let account_info = account_info.unwrap(); - assert_eq!(account_info.balance, U256::from(0)); - assert_eq!(account_info.nonce, 1); - assert_eq!( - account_info.code_hash, - B256::from_str("0x4e36f96ee1667a663dfaac57c4d185a0e369a3a217e0079d49620f34f85d1ac7") - .expect("failed to parse") - ); - } - - #[tokio::test(flavor = "multi_thread")] - async fn remove_remote_account_success() { - let mut fork_state = TestForkState::new().await; - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - fork_state.remove_account(dai_address).unwrap(); - - assert_eq!(fork_state.basic(dai_address).unwrap(), None); - } -} diff --git a/crates/edr_evm/src/state/irregular.rs b/crates/edr_evm/src/state/irregular.rs deleted file mode 100644 index 92c680de29..0000000000 --- a/crates/edr_evm/src/state/irregular.rs +++ /dev/null @@ -1,27 +0,0 @@ -use std::{ - collections::{btree_map, BTreeMap}, - fmt::Debug, -}; - -use super::StateOverride; - -/// Container for state that was modified outside of mining a block. -#[derive(Clone, Debug, Default)] -pub struct IrregularState { - block_number_to_override: BTreeMap, -} - -impl IrregularState { - /// Retrieves the state override at the specified block number. - pub fn state_override_at_block_number( - &mut self, - block_number: u64, - ) -> btree_map::Entry<'_, u64, StateOverride> { - self.block_number_to_override.entry(block_number) - } - - /// Retrieves the irregular state overrides. - pub fn state_overrides(&self) -> &BTreeMap { - &self.block_number_to_override - } -} diff --git a/crates/edr_evm/src/state/override.rs b/crates/edr_evm/src/state/override.rs deleted file mode 100644 index b36a071fa2..0000000000 --- a/crates/edr_evm/src/state/override.rs +++ /dev/null @@ -1,23 +0,0 @@ -use edr_eth::B256; - -use super::StateDiff; - -/// Data for overriding a state with a diff and the state's resulting state -/// root. -#[derive(Clone, Debug)] -pub struct StateOverride { - /// The diff to be applied. - pub diff: StateDiff, - /// The resulting state root. - pub state_root: B256, -} - -impl StateOverride { - /// Constructs a new instance with the provided state root. - pub fn with_state_root(state_root: B256) -> Self { - Self { - diff: StateDiff::default(), - state_root, - } - } -} diff --git a/crates/edr_evm/src/state/overrides.rs b/crates/edr_evm/src/state/overrides.rs deleted file mode 100644 index a4798ddfea..0000000000 --- a/crates/edr_evm/src/state/overrides.rs +++ /dev/null @@ -1,282 +0,0 @@ -use std::fmt::Debug; - -use edr_eth::{ - account::KECCAK_EMPTY, - remote::{AccountOverrideOptions, StateOverrideOptions}, - Address, B256, U256, -}; -use revm::{ - db::StateRef, - primitives::{AccountInfo, Bytecode, HashMap}, -}; - -/// Type representing either a diff or full set of overrides for storage -/// information. -#[derive(Clone, Debug)] -pub enum StorageOverride { - /// A diff of storage overrides. - Diff(HashMap), - /// A full set of storage overrides. - Full(HashMap), -} - -impl StorageOverride { - /// Constructs a new storage override from the provided diff. - pub fn from_diff(diff: HashMap) -> Self { - let diff = diff - .into_iter() - .map(|(key, value)| (U256::from_be_bytes(key.0), value)) - .collect(); - - Self::Diff(diff) - } - - /// Constructs a new storage override from the provided full set. - pub fn from_full(full: HashMap) -> Self { - let full = full - .into_iter() - .map(|(key, value)| (U256::from_be_bytes(key.0), value)) - .collect(); - - Self::Full(full) - } -} - -/// Values for overriding account information. -#[derive(Clone, Debug)] -pub struct AccountOverride { - /// Account balance override. - pub balance: Option, - /// Account nonce override. - pub nonce: Option, - /// Account code override. - pub code: Option, - /// Account storage override. - pub storage: Option, -} - -impl AccountOverride { - /// Overrides the provided original account information. - pub fn override_info(&self, original: Option) -> Option { - let has_override = self.balance.is_some() | self.nonce.is_some() | self.code.is_some(); - - if !has_override { - return original; - } - - let AccountInfo { - mut balance, - mut nonce, - mut code_hash, - mut code, - } = original.unwrap_or_default(); - - if let Some(new_balance) = &self.balance { - balance = *new_balance; - } - - if let Some(new_nonce) = &self.nonce { - nonce = *new_nonce; - } - - if let Some(new_code) = &self.code { - let new_code_hash = new_code.hash_slow(); - if new_code_hash == KECCAK_EMPTY { - code = None; - code_hash = KECCAK_EMPTY; - } else { - code = Some(new_code.clone()); - code_hash = new_code_hash; - } - } - - Some(AccountInfo { - balance, - nonce, - code_hash, - code, - }) - } -} - -/// Error that occurs when converting account override options into an account -/// override. -#[derive(Debug, thiserror::Error)] -pub enum AccountOverrideConversionError { - /// Storage override options are mutually exclusive. - #[error("The properties 'state' and 'stateDiff' cannot be used simultaneously when configuring the state override set passed to the eth_call method.")] - StorageOverrideConflict, -} - -impl TryFrom for AccountOverride { - type Error = AccountOverrideConversionError; - - fn try_from(value: AccountOverrideOptions) -> Result { - let AccountOverrideOptions { - balance, - nonce, - code, - storage, - storage_diff, - } = value; - - let storage = if let Some(storage) = storage { - if storage_diff.is_some() { - return Err(AccountOverrideConversionError::StorageOverrideConflict); - } else { - Some(StorageOverride::from_full(storage)) - } - } else { - storage_diff.map(StorageOverride::from_diff) - }; - - Ok(Self { - balance, - nonce, - code: code.map(Bytecode::new_raw), - storage, - }) - } -} - -/// A set of overrides for state information. -#[derive(Clone, Debug, Default)] -pub struct StateOverrides { - account_overrides: HashMap, - code_by_hash_overrides: HashMap, -} - -impl StateOverrides { - /// Constructs a new set of state overrides. - pub fn new(mut account_overrides: HashMap) -> Self { - let code_by_hash_overrides = account_overrides - .values_mut() - .filter_map(|account_override| { - if let Some(code) = &mut account_override.code { - let code_hash = code.hash_slow(); - - Some((code_hash, code.clone())) - } else { - None - } - }) - .collect(); - - Self { - account_overrides, - code_by_hash_overrides, - } - } - - /// Retrieves the account information for the provided address, applying any - /// overrides. - pub fn account_info( - &self, - state: &dyn StateRef, - address: &Address, - ) -> Result, StateError> { - let original = state.basic(*address)?; - - Ok( - if let Some(account_override) = self.account_overrides.get(address) { - account_override.override_info(original) - } else { - original - }, - ) - } - - /// Retrieves the account override for the provided address, if any exists. - pub fn account_override(&self, address: &Address) -> Option<&AccountOverride> { - self.account_overrides.get(address) - } - - /// Retrieves the storage information for the provided address and index, - /// applying any overrides. - pub fn account_storage_at( - &self, - state: &dyn StateRef, - address: &Address, - index: &U256, - ) -> Result { - match self.account_overrides.get(address) { - Some(account_override) => match &account_override.storage { - Some(StorageOverride::Diff(diff)) => { - if let Some(storage_override) = diff.get(index) { - Ok(*storage_override) - } else { - state.storage(*address, *index) - } - } - Some(StorageOverride::Full(full)) => { - Ok(full.get(index).copied().unwrap_or_default()) - } - None => state.storage(*address, *index), - }, - None => state.storage(*address, *index), - } - } - - /// Retrieves the code for the provided hash, applying any overrides. - pub fn code_by_hash( - &self, - state: &dyn StateRef, - hash: B256, - ) -> Result { - if let Some(code) = self.code_by_hash_overrides.get(&hash) { - Ok(code.clone()) - } else { - state.code_by_hash(hash) - } - } -} - -impl TryFrom for StateOverrides { - type Error = AccountOverrideConversionError; - - fn try_from(value: StateOverrideOptions) -> Result { - let account_overrides = value - .into_iter() - .map(|(address, options)| { - let account_override = AccountOverride::try_from(options)?; - - Ok((address, account_override)) - }) - .collect::>()?; - - Ok(Self::new(account_overrides)) - } -} - -/// A wrapper around a state ref object that applies overrides. -pub struct StateRefOverrider<'overrides, StateT> { - overrides: &'overrides StateOverrides, - state: StateT, -} - -impl<'overrides, StateT> StateRefOverrider<'overrides, StateT> { - /// Creates a new state ref overrider. - pub fn new( - overrides: &'overrides StateOverrides, - state: StateT, - ) -> StateRefOverrider<'overrides, StateT> { - StateRefOverrider { overrides, state } - } -} - -impl<'state, StateT: StateRef> StateRef for StateRefOverrider<'state, StateT> { - type Error = StateT::Error; - - fn basic(&self, address: Address) -> Result, Self::Error> { - self.overrides.account_info(&self.state, &address) - } - - fn code_by_hash(&self, code_hash: B256) -> Result { - self.overrides.code_by_hash(&self.state, code_hash) - } - - fn storage(&self, address: Address, index: U256) -> Result { - self.overrides - .account_storage_at(&self.state, &address, &index) - } -} diff --git a/crates/edr_evm/src/state/remote.rs b/crates/edr_evm/src/state/remote.rs deleted file mode 100644 index c24dfb8d45..0000000000 --- a/crates/edr_evm/src/state/remote.rs +++ /dev/null @@ -1,135 +0,0 @@ -mod cached; - -use std::sync::Arc; - -pub use cached::CachedRemoteState; -use edr_eth::{ - remote::{BlockSpec, PreEip1898BlockSpec, RpcClient, RpcClientError}, - Address, B256, U256, -}; -use revm::{ - db::StateRef, - primitives::{AccountInfo, Bytecode}, -}; -use tokio::runtime; - -use super::StateError; - -/// A state backed by a remote Ethereum node -#[derive(Debug)] -pub struct RemoteState { - client: Arc, - runtime: runtime::Handle, - block_number: u64, -} - -impl RemoteState { - /// Construct a new instance using an RPC client for a remote Ethereum node - /// and a block number from which data will be pulled. - pub fn new(runtime: runtime::Handle, client: Arc, block_number: u64) -> Self { - Self { - client, - runtime, - block_number, - } - } - - /// Retrieves the current block number - pub fn block_number(&self) -> u64 { - self.block_number - } - - /// Whether the current state is cacheable based on the block number. - pub fn is_cacheable(&self) -> Result { - Ok(tokio::task::block_in_place(move || { - self.runtime - .block_on(self.client.is_cacheable_block_number(self.block_number)) - })?) - } - - /// Sets the block number used for calls to the remote Ethereum node. - pub fn set_block_number(&mut self, block_number: u64) { - self.block_number = block_number; - } - - /// Retrieve the state root of the given block, if it exists. - pub fn state_root(&self, block_number: u64) -> Result, RpcClientError> { - Ok(tokio::task::block_in_place(move || { - self.runtime.block_on( - self.client - .get_block_by_number(PreEip1898BlockSpec::Number(block_number)), - ) - })? - .map(|block| block.state_root)) - } -} - -impl StateRef for RemoteState { - type Error = StateError; - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - fn basic(&self, address: Address) -> Result, Self::Error> { - Ok(Some(tokio::task::block_in_place(move || { - self.runtime - .block_on( - self.client - .get_account_info(&address, Some(BlockSpec::Number(self.block_number))), - ) - .map_err(StateError::Remote) - })?)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - fn code_by_hash(&self, code_hash: B256) -> Result { - Err(StateError::InvalidCodeHash(code_hash)) - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - fn storage(&self, address: Address, index: U256) -> Result { - Ok(tokio::task::block_in_place(move || { - self.runtime - .block_on(self.client.get_storage_at( - &address, - index, - Some(BlockSpec::Number(self.block_number)), - )) - .map_err(StateError::Remote) - })? - .unwrap_or(U256::ZERO)) - } -} - -#[cfg(all(test, feature = "test-remote"))] -mod tests { - use std::str::FromStr; - - use tokio::runtime; - - use super::*; - - #[tokio::test(flavor = "multi_thread")] - async fn basic_success() { - let tempdir = tempfile::tempdir().expect("can create tempdir"); - - let alchemy_url = std::env::var_os("ALCHEMY_URL") - .expect("ALCHEMY_URL environment variable not defined") - .into_string() - .expect("couldn't convert OsString into a String"); - - let rpc_client = - RpcClient::new(&alchemy_url, tempdir.path().to_path_buf(), None).expect("url ok"); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - let runtime = runtime::Handle::current(); - - let account_info: AccountInfo = RemoteState::new(runtime, Arc::new(rpc_client), 16643427) - .basic(dai_address) - .expect("should succeed") - .unwrap(); - - assert_eq!(account_info.balance, U256::from(0)); - assert_eq!(account_info.nonce, 1); - } -} diff --git a/crates/edr_evm/src/state/remote/cached.rs b/crates/edr_evm/src/state/remote/cached.rs deleted file mode 100644 index a391ee7ec7..0000000000 --- a/crates/edr_evm/src/state/remote/cached.rs +++ /dev/null @@ -1,163 +0,0 @@ -use edr_eth::{Address, B256, U256}; -use revm::{ - db::components::{State, StateRef}, - primitives::{hash_map::Entry, AccountInfo, Bytecode, HashMap}, -}; - -use super::RemoteState; -use crate::state::{account::EdrAccount, StateError}; - -/// A cached version of [`RemoteState`]. -#[derive(Debug)] -pub struct CachedRemoteState { - remote: RemoteState, - /// Mapping of block numbers to cached accounts - account_cache: HashMap>, - /// Mapping of block numbers to cached code - code_cache: HashMap>, -} - -impl CachedRemoteState { - /// Constructs a new [`CachedRemoteState`]. - pub fn new(remote: RemoteState) -> Self { - Self { - remote, - account_cache: HashMap::new(), - code_cache: HashMap::new(), - } - } -} - -impl State for CachedRemoteState { - type Error = StateError; - - fn basic(&mut self, address: Address) -> Result, Self::Error> { - let block_accounts = self - .account_cache - .entry(self.remote.block_number()) - .or_default(); - - if let Some(account) = block_accounts.get(&address) { - return Ok(Some(account.info.clone())); - } - - if let Some(mut account_info) = self.remote.basic(address)? { - // Split code and store separately - // Always cache code regardless of the block number for two reasons: - // 1. It's an invariant of this trait getting an `AccountInfo` by calling - // `basic`, - // one can call `code_by_hash` with `AccountInfo.code_hash` and get the code. - // 2. Since the code is identified by its hash, it never goes stale. - if let Some(code) = account_info.code.take() { - let block_code = self - .code_cache - .entry(self.remote.block_number()) - .or_default(); - - block_code.entry(account_info.code_hash).or_insert(code); - } - - if self.remote.is_cacheable()? { - block_accounts.insert(address, account_info.clone().into()); - } - return Ok(Some(account_info)); - } - - Ok(None) - } - - fn code_by_hash(&mut self, code_hash: B256) -> Result { - let block_code = self - .code_cache - .entry(self.remote.block_number()) - .or_default(); - - block_code - .get(&code_hash) - .cloned() - .ok_or(StateError::InvalidCodeHash(code_hash)) - } - - fn storage(&mut self, address: Address, index: U256) -> Result { - let block_accounts = self - .account_cache - .entry(self.remote.block_number()) - .or_default(); - - Ok(match block_accounts.entry(address) { - Entry::Occupied(mut account_entry) => { - match account_entry.get_mut().storage.entry(index) { - Entry::Occupied(entry) => *entry.get(), - Entry::Vacant(entry) => { - let value = self.remote.storage(address, index)?; - if self.remote.is_cacheable()? { - *entry.insert(value) - } else { - value - } - } - } - } - Entry::Vacant(account_entry) => { - // account needs to be loaded for us to access slots. - let mut account = self - .remote - .basic(address)? - .map_or_else(EdrAccount::default, EdrAccount::from); - - let value = self.remote.storage(address, index)?; - - if self.remote.is_cacheable()? { - account.storage.insert(index, value); - account_entry.insert(account); - } - - value - } - }) - } -} - -#[cfg(all(test, feature = "test-remote"))] -mod tests { - use std::{str::FromStr, sync::Arc}; - - use edr_eth::remote::RpcClient; - use edr_test_utils::env::get_alchemy_url; - use tokio::runtime; - - use super::*; - - #[tokio::test(flavor = "multi_thread")] - async fn no_cache_for_unsafe_block_number() { - let tempdir = tempfile::tempdir().expect("can create tempdir"); - - let rpc_client = - RpcClient::new(&get_alchemy_url(), tempdir.path().to_path_buf(), None).expect("url ok"); - - let dai_address = Address::from_str("0x6b175474e89094c44da98b954eedeac495271d0f") - .expect("failed to parse address"); - - // Latest block number is always unsafe - let block_number = rpc_client.block_number().await.unwrap(); - - let runtime = runtime::Handle::current(); - - let remote = RemoteState::new(runtime, Arc::new(rpc_client), block_number); - let mut cached = CachedRemoteState::new(remote); - - let account_info = cached.basic(dai_address).expect("should succeed").unwrap(); - - cached - .storage(dai_address, U256::from(0)) - .expect("should succeed"); - - for entry in cached.account_cache.values() { - assert!(entry.is_empty()); - } - - cached - .code_by_hash(account_info.code_hash) - .expect("should succeed"); - } -} diff --git a/crates/edr_evm/src/state/trie.rs b/crates/edr_evm/src/state/trie.rs deleted file mode 100644 index 5224bae2c0..0000000000 --- a/crates/edr_evm/src/state/trie.rs +++ /dev/null @@ -1,308 +0,0 @@ -mod account; -mod persistent_memory_db; -mod state_trie; -mod storage_trie; -mod trie_query; - -use edr_eth::{account::KECCAK_EMPTY, Address, B256, U256}; -use revm::{ - db::StateRef, - primitives::{Account, AccountInfo, Bytecode, HashMap}, - DatabaseCommit, -}; - -pub use self::account::AccountTrie; -use super::{StateDebug, StateError}; -use crate::collections::SharedMap; - -/// An implementation of revm's state that uses a trie. -#[derive(Clone, Debug)] -pub struct TrieState { - accounts: AccountTrie, - contracts: SharedMap, -} - -impl TrieState { - /// Constructs a [`TrieState`] from the provided [`AccountTrie`]. - #[cfg_attr(feature = "tracing", tracing::instrument)] - pub fn with_accounts(accounts: AccountTrie) -> Self { - Self { - accounts, - ..TrieState::default() - } - } - - /// Inserts the provided bytecode using its hash, potentially overwriting an - /// existing value. - pub fn insert_code(&mut self, code_hash: B256, code: Bytecode) { - debug_assert_eq!(code_hash, code.hash_slow()); - - self.contracts.insert(code_hash, code); - } - - /// Removes the code corresponding to the provided hash, if it exists. - pub fn remove_code(&mut self, code_hash: &B256) { - if *code_hash != KECCAK_EMPTY { - self.contracts.remove(code_hash); - } - } - - pub(super) fn modify_account_impl( - &mut self, - address: Address, - modifier: super::AccountModifierFn, - default_account_fn: &dyn Fn() -> Result, - external_code_by_hash_fn: &dyn Fn(B256) -> Result, - ) -> Result { - let mut account_info = match self.accounts.account(&address) { - Some(account) => AccountInfo::from(account), - None => default_account_fn()?, - }; - - // Fill the bytecode - if account_info.code_hash != KECCAK_EMPTY { - let code = match self.code_by_hash(account_info.code_hash) { - Ok(code) => code, - Err(StateError::InvalidCodeHash(code_hash)) => external_code_by_hash_fn(code_hash)?, - Err(err) => return Err(err), - }; - - account_info.code = Some(code); - } - - let old_code_hash = account_info.code_hash; - - modifier( - &mut account_info.balance, - &mut account_info.nonce, - &mut account_info.code, - ); - - let new_code = account_info.code.clone(); - let new_code_hash = new_code.as_ref().map_or(KECCAK_EMPTY, Bytecode::hash_slow); - account_info.code_hash = new_code_hash; - - let code_changed = new_code_hash != old_code_hash; - if code_changed { - if let Some(new_code) = new_code { - self.insert_code(new_code_hash, new_code); - } - - self.remove_code(&old_code_hash); - } - - self.accounts.set_account(&address, &account_info); - - Ok(account_info) - } - - pub(super) fn set_account_storage_slot_impl( - &mut self, - address: Address, - index: U256, - value: U256, - default_account_fn: &dyn Fn() -> Result, - ) -> Result { - let old_value = - self.accounts - .set_account_storage_slot(&address, &index, &value, default_account_fn)?; - - // If there is no old value, return zero to signal that the slot was empty - Ok(old_value.unwrap_or(U256::ZERO)) - } -} - -impl Default for TrieState { - fn default() -> Self { - let mut contracts = SharedMap::default(); - contracts.insert(KECCAK_EMPTY, Bytecode::new()); - - Self { - accounts: AccountTrie::default(), - contracts, - } - } -} - -impl StateRef for TrieState { - type Error = StateError; - - fn basic(&self, address: Address) -> Result, Self::Error> { - Ok(self.accounts.account(&address).map(AccountInfo::from)) - } - - fn code_by_hash(&self, code_hash: B256) -> Result { - self.contracts - .get(&code_hash) - .cloned() - .ok_or(StateError::InvalidCodeHash(code_hash)) - } - - fn storage(&self, address: Address, index: U256) -> Result { - Ok(self - .accounts - .account_storage_slot(&address, &index) - .unwrap_or(U256::ZERO)) - } -} - -impl DatabaseCommit for TrieState { - fn commit(&mut self, mut changes: HashMap) { - changes.iter_mut().for_each(|(address, account)| { - if account.is_selfdestructed() { - self.remove_code(&account.info.code_hash); - } else if account.is_empty() && !account.is_created() { - // Don't do anything. Account was merely touched - } else { - let old_code_hash = self - .accounts - .account(address) - .map_or(KECCAK_EMPTY, |old_account| old_account.code_hash); - - let code_changed = old_code_hash != account.info.code_hash; - if code_changed { - if let Some(new_code) = account.info.code.take() { - self.insert_code(account.info.code_hash, new_code); - } - - self.remove_code(&old_code_hash); - } - } - }); - - self.accounts.commit(&changes); - } -} - -impl StateDebug for TrieState { - type Error = StateError; - - fn account_storage_root(&self, address: &Address) -> Result, Self::Error> { - Ok(self.accounts.storage_root(address)) - } - - fn insert_account( - &mut self, - address: Address, - mut account_info: AccountInfo, - ) -> Result<(), Self::Error> { - if let Some(code) = account_info.code.take() { - self.insert_code(account_info.code_hash, code); - } - - self.accounts.set_account(&address, &account_info); - - Ok(()) - } - - fn modify_account( - &mut self, - address: Address, - modifier: super::AccountModifierFn, - ) -> Result { - self.modify_account_impl( - address, - modifier, - &|| { - Ok(AccountInfo { - code: None, - ..AccountInfo::default() - }) - }, - &|code_hash| Err(StateError::InvalidCodeHash(code_hash)), - ) - } - - fn remove_account(&mut self, address: Address) -> Result, Self::Error> { - Ok(self.accounts.remove_account(&address).map(|account| { - self.remove_code(&account.code_hash); - - AccountInfo { - balance: account.balance, - nonce: account.nonce, - code_hash: account.code_hash, - code: None, - } - })) - } - - fn serialize(&self) -> String { - self.accounts.serialize() - } - - fn set_account_storage_slot( - &mut self, - address: Address, - index: U256, - value: U256, - ) -> Result { - self.set_account_storage_slot_impl(address, index, value, &|| { - Ok(AccountInfo { - code: None, - ..AccountInfo::default() - }) - }) - } - - fn state_root(&self) -> Result { - Ok(self.accounts.state_root()) - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::{state::AccountModifierFn, Bytes}; - - #[test] - fn test_trie_state_clone() -> anyhow::Result<()> { - let mut state1 = TrieState::default(); - - let code_1 = Bytecode::new_raw(Bytes::from_static(&[0x01])); - let code_1_hash = code_1.hash_slow(); - let code_2 = Bytecode::new_raw(Bytes::from_static(&[0x02])); - let code_2_hash = code_2.hash_slow(); - - let address1 = Address::random(); - let mut account1 = AccountInfo::default(); - account1.code_hash = code_1_hash; - account1.code = Some(code_1); - state1.insert_account(address1, account1)?; - state1.set_account_storage_slot(address1, U256::from(100), U256::from(100))?; - - let address2 = Address::random(); - let mut account2 = AccountInfo::default(); - account2.code_hash = code_2_hash; - account2.code = Some(code_2); - let mut state2 = state1.clone(); - state2.insert_account(address2, account2)?; - state2.set_account_storage_slot(address2, U256::from(200), U256::from(200))?; - - state2.set_account_storage_slot(address1, U256::from(100), U256::from(102))?; - - assert!(state1.basic(address1)?.is_some()); - assert!(state2.basic(address1)?.is_some()); - assert!(state1.basic(address2)?.is_none()); - assert!(state2.basic(address1)?.is_some()); - - assert!(state1.code_by_hash(code_1_hash).is_ok()); - assert!(state2.code_by_hash(code_1_hash).is_ok()); - assert!(state2.code_by_hash(code_2_hash).is_ok()); - - assert_eq!(state1.storage(address1, U256::from(100))?, U256::from(100)); - assert_eq!(state2.storage(address1, U256::from(100))?, U256::from(102)); - assert_eq!(state2.storage(address2, U256::from(200))?, U256::from(200)); - - state2.modify_account( - address1, - AccountModifierFn::new(Box::new(|_balance, nonce, _code| { - *nonce = 200; - })), - )?; - - assert_eq!(state1.basic(address1)?.unwrap().nonce, 0); - assert_eq!(state2.basic(address1)?.unwrap().nonce, 200); - - Ok(()) - } -} diff --git a/crates/edr_evm/src/state/trie/account.rs b/crates/edr_evm/src/state/trie/account.rs deleted file mode 100644 index df5e3a70a5..0000000000 --- a/crates/edr_evm/src/state/trie/account.rs +++ /dev/null @@ -1,388 +0,0 @@ -use std::{collections::BTreeMap, fmt::Debug}; - -use edr_eth::{account::BasicAccount, Address, B256, U256}; -use hasher::{Hasher, HasherKeccak}; -use revm::primitives::{Account, AccountInfo, HashMap}; -use rpds::HashTrieMapSync; - -use crate::state::trie::{ - state_trie::{StateTrie, StateTrieMutation}, - storage_trie::StorageTrie, -}; - -type StorageTries = HashTrieMapSync; - -/// A trie for maintaining the state of accounts and their storage. -#[derive(Clone, Debug, Default)] -pub struct AccountTrie { - state_trie: StateTrie, - storage_tries: StorageTries, -} - -impl AccountTrie { - /// Constructs a `TrieState` from an (address -> account) mapping. - #[cfg_attr(feature = "tracing", tracing::instrument)] - pub fn with_accounts(accounts: &HashMap) -> Self { - let mut account_trie = Self::default(); - - { - let mut account_trie_mutation = account_trie.mutate(); - - accounts.iter().for_each(|(address, account_info)| { - account_trie_mutation.init_account(address, account_info); - }); - } - - account_trie - } - - /// Retrieves an account corresponding to the specified address from the - /// state. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn account(&self, address: &Address) -> Option { - self.state_trie.account(address) - } - - /// Retrieves the storage corresponding to the account at the - /// specified address and the specified index, if they exist. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn account_storage_slot(&self, address: &Address, index: &U256) -> Option { - self.storage_tries - .get(address) - .and_then(|storage_trie| storage_trie.storage_slot(index)) - } - - /// Commits changes to the state. - /// Inspired by - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn commit(&mut self, changes: &HashMap) { - let mut account_trie_mutation = self.mutate(); - - changes.iter().for_each(|(address, account)| { - if account.is_touched() { - if (account.is_empty() && !account.is_created()) || account.is_selfdestructed() { - // Removes account only if it exists, so safe to use for empty, touched accounts - account_trie_mutation.remove_account(address); - } else { - if account.is_created() { - // We can simply remove the storage trie db, as it will get reinitialized in - // the next operation - account_trie_mutation.remove_account_storage(address); - } - - account_trie_mutation.insert_account_storage(address, account); - } - } - }); - } - - /// Sets the provided account at the specified address. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn set_account(&mut self, address: &Address, account_info: &AccountInfo) { - self.mutate().insert_account_info(address, account_info); - } - - /// Removes the account at the specified address, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn remove_account(&mut self, address: &Address) -> Option { - self.mutate().remove_account(address) - } - - /// Serializes the state using ordering of addresses and storage indices. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn serialize(&self) -> String { - #[derive(serde::Serialize)] - struct StateAccount { - /// Balance of the account. - pub balance: U256, - /// Code hash of the account. - pub code_hash: B256, - /// Nonce of the account. - pub nonce: u64, - /// Storage - pub storage: BTreeMap, - /// Storage root of the account. - pub storage_root: B256, - } - - let state: BTreeMap = self - .storage_tries - .iter() - .filter_map(|(address, storage_trie)| { - let account = self.state_trie.account(address) - .unwrap_or_else(|| { - let hashed_address = HasherKeccak::new().digest(address.as_slice()); - panic!("Account with address '{address}' and hashed address '{hashed_address:?}' must exist in state, if a storage trie is stored for it") - }); - - if account == BasicAccount::default() { - None - } else { - let account = StateAccount { - balance: account.balance, - code_hash: account.code_hash, - nonce: account.nonce, - storage: storage_trie.storage(), - storage_root: storage_trie.root(), - }; - - Some((*address, account)) - }}) - .collect(); - - serde_json::to_string_pretty(&state).unwrap() - } - - /// Sets the storage slot at the specified address and index to the provided - /// value. - /// - /// Returns the old storage slot value. - #[cfg_attr( - feature = "tracing", - tracing::instrument(skip(self, default_account_fn)) - )] - pub fn set_account_storage_slot( - &mut self, - address: &Address, - index: &U256, - value: &U256, - default_account_fn: &dyn Fn() -> Result, - ) -> Result, ErrorT> { - self.mutate() - .insert_storage_slot(address, index, value, default_account_fn) - } - - /// Retrieves the trie's state root. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn state_root(&self) -> B256 { - self.state_trie.root() - } - - /// Retrieves the storage root of the account at the specified address. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn storage_root(&self, address: &Address) -> Option { - self.storage_tries.get(address).map(StorageTrie::root) - } - - fn mutate(&mut self) -> AccountTrieMutation<'_> { - AccountTrieMutation { - state_trie_mut: self.state_trie.mutate(), - storage_tries: &mut self.storage_tries, - } - } -} - -/// Helper struct that allows setting and removing multiple accounts and then -/// updates the state root. -struct AccountTrieMutation<'a> { - state_trie_mut: StateTrieMutation<'a>, - storage_tries: &'a mut StorageTries, -} - -impl<'a> AccountTrieMutation<'a> { - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn init_account(&mut self, address: &Address, account_info: &AccountInfo) { - let storage_trie = StorageTrie::default(); - let storage_root = storage_trie.root(); - - self.storage_tries.insert_mut(*address, storage_trie); - - self.state_trie_mut.insert_account_info_with_storage_root( - address, - account_info, - storage_root, - ); - } - - /// Create or update the account info. Ensures that a storage trie exists. - pub fn insert_account_info(&mut self, address: &Address, account_info: &AccountInfo) { - let storage_root = if let Some(storage_trie) = self.storage_tries.get_mut(address) { - storage_trie.root() - } else { - let storage_trie = StorageTrie::default(); - - let root = storage_trie.root(); - self.storage_tries.insert_mut(*address, storage_trie); - root - }; - - self.state_trie_mut.insert_account_info_with_storage_root( - address, - account_info, - storage_root, - ); - } - - /// Create or update the account storage. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn insert_account_storage(&mut self, address: &Address, account: &Account) { - let storage_root = if let Some(storage_trie) = self.storage_tries.get_mut(address) { - // Dropping the mutation will update the storage trie root - if !account.storage.is_empty() { - let mut storage_trie_mutation = storage_trie.mutate(); - storage_trie_mutation.set_storage_slots(&account.storage); - } - - storage_trie.root() - } else { - let mut storage_trie = StorageTrie::default(); - - if !account.storage.is_empty() { - let mut storage_trie_mutation = storage_trie.mutate(); - storage_trie_mutation.set_storage_slots(&account.storage); - } - - let root = storage_trie.root(); - self.storage_tries.insert_mut(*address, storage_trie); - root - }; - - self.state_trie_mut.insert_account_info_with_storage_root( - address, - &account.info, - storage_root, - ); - } - - /// Sets the storage slot at the specified address and index to the provided - /// value. Create storage trie and account in state trie if necessary. - pub fn insert_storage_slot( - &mut self, - address: &Address, - index: &U256, - value: &U256, - default_account_fn: &dyn Fn() -> Result, - ) -> Result, ErrorT> { - let (storage_root, old_value) = - if let Some(storage_trie) = self.storage_tries.get_mut(address) { - let old_value = { storage_trie.mutate().set_storage_slot(index, value) }; - (storage_trie.root(), old_value) - } else { - let mut storage_trie = StorageTrie::default(); - - let old_value = { storage_trie.mutate().set_storage_slot(index, value) }; - - let storage_root = storage_trie.root(); - self.storage_tries.insert_mut(*address, storage_trie); - (storage_root, old_value) - }; - - let account = if let Some(mut account) = self.state_trie_mut.account(address) { - account.storage_root = storage_root; - account - } else { - let default_account = default_account_fn()?; - BasicAccount { - nonce: default_account.nonce, - balance: default_account.balance, - storage_root, - code_hash: default_account.code_hash, - } - }; - - self.state_trie_mut.insert_basic_account(address, account); - - Ok(old_value) - } - - /// Helper function for removing the account at the specified address from - /// the provided state trie and storage tries, if it exists. - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn remove_account(&mut self, address: &Address) -> Option { - let account = self.state_trie_mut.account(address); - - if account.is_some() { - self.state_trie_mut.remove_account(address); - - self.remove_account_storage(address); - } - - account - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn remove_account_storage(&mut self, address: &Address) { - self.storage_tries.remove_mut(address); - } -} - -#[cfg(test)] -mod tests { - use edr_eth::{state::state_root, trie::KECCAK_NULL_RLP}; - - use super::*; - - fn precompiled_contracts() -> HashMap { - let mut accounts = HashMap::new(); - - // Mimic precompiles activation - for idx in 1..=8 { - let mut address = Address::ZERO; - address.0[19] = idx; - accounts.insert(address, AccountInfo::default()); - } - - accounts - } - - #[test] - #[allow(clippy::redundant_clone)] - fn clone_empty() { - let state = AccountTrie::default(); - let cloned_state = state.clone(); - - assert_eq!(state.state_root(), cloned_state.state_root()); - } - - #[test] - #[allow(clippy::redundant_clone)] - fn clone_precompiles() { - let accounts = precompiled_contracts(); - - let state = AccountTrie::with_accounts(&accounts); - let cloned_state = state.clone(); - - assert_eq!(state.state_root(), cloned_state.state_root()); - } - - #[test] - fn default_empty() { - let state = AccountTrie::default(); - - assert_eq!(state.state_root(), KECCAK_NULL_RLP); - } - - #[test] - fn with_accounts_empty() { - let accounts = HashMap::new(); - let state = AccountTrie::with_accounts(&accounts); - - assert_eq!(state.state_root(), KECCAK_NULL_RLP); - } - - #[test] - fn with_accounts_precompiles() { - let accounts = precompiled_contracts(); - - let old: HashMap<_, _> = accounts - .iter() - .map(|(address, account_info)| { - ( - *address, - BasicAccount { - nonce: account_info.nonce, - balance: account_info.balance, - storage_root: KECCAK_NULL_RLP, - code_hash: account_info.code_hash, - }, - ) - }) - .collect(); - - let old = state_root(old.iter()); - - let state = AccountTrie::with_accounts(&accounts); - - assert_eq!(state.state_root(), old); - } -} diff --git a/crates/edr_evm/src/state/trie/persistent_memory_db.rs b/crates/edr_evm/src/state/trie/persistent_memory_db.rs deleted file mode 100644 index 0e6beed9b3..0000000000 --- a/crates/edr_evm/src/state/trie/persistent_memory_db.rs +++ /dev/null @@ -1,73 +0,0 @@ -use parking_lot::RwLock; -use rpds::HashTrieMapSync; - -/// An in-memory database for a Merkle-Patricia trie based on a persistent data -/// structure that allows efficient checkpointing. -/// Based on the `cita-trie` crate's `MemoryDB`. -#[derive(Debug, Default)] -pub(super) struct PersistentMemoryDB { - storage: RwLock, Vec>>, -} - -impl Clone for PersistentMemoryDB { - fn clone(&self) -> Self { - Self { - storage: RwLock::new(self.storage.read().clone()), - } - } -} - -impl cita_trie::DB for PersistentMemoryDB { - type Error = std::convert::Infallible; - - fn get(&self, key: &[u8]) -> Result>, Self::Error> { - Ok(self.storage.read().get(key).cloned()) - } - - fn contains(&self, key: &[u8]) -> Result { - Ok(self.storage.read().contains_key(key)) - } - - fn insert(&self, key: Vec, value: Vec) -> Result<(), Self::Error> { - self.storage.write().insert_mut(key, value); - Ok(()) - } - - fn remove(&self, key: &[u8]) -> Result<(), Self::Error> { - self.storage.write().remove_mut(key); - Ok(()) - } - - fn flush(&self) -> Result<(), Self::Error> { - Ok(()) - } -} - -#[cfg(test)] -mod tests { - use cita_trie::DB; - - use super::*; - - // From https://github.com/Wodann/cita-trie/commit/60efef58be0b76c528b6d7fa45a8eccdfd8f615c - #[test] - fn test_persistent_memory_db_clone() { - const KEY: &[u8] = b"test-key"; - const VALUE: &[u8] = b"test-value"; - - let memdb1 = PersistentMemoryDB::default(); - memdb1.insert(KEY.to_vec(), VALUE.to_vec()).unwrap(); - - let memdb2 = memdb1.clone(); - - let v1 = memdb1.get(KEY).unwrap().unwrap(); - let v2 = memdb2.get(KEY).unwrap().unwrap(); - - assert_eq!(v1, v2); - - memdb2.remove(KEY).unwrap(); - - assert_eq!(memdb1.get(KEY).unwrap().unwrap(), VALUE); - assert!(memdb2.get(KEY).unwrap().is_none()); - } -} diff --git a/crates/edr_evm/src/state/trie/state_trie.rs b/crates/edr_evm/src/state/trie/state_trie.rs deleted file mode 100644 index e0210e5ebf..0000000000 --- a/crates/edr_evm/src/state/trie/state_trie.rs +++ /dev/null @@ -1,97 +0,0 @@ -use std::sync::Arc; - -use alloy_rlp::Decodable; -use edr_eth::account::BasicAccount; - -use crate::{ - state::trie::{persistent_memory_db::PersistentMemoryDB, trie_query::TrieQuery}, - AccountInfo, Address, B256, -}; - -#[derive(Debug)] -pub(super) struct StateTrie { - db: Arc, - root: B256, -} - -impl<'a> StateTrie { - pub fn account(&self, address: &Address) -> Option { - self.trie_query().get(address).map(|encoded_account| { - BasicAccount::decode(&mut encoded_account.as_slice()).expect("Valid RLP") - }) - } - - /// Create a helper struct that allows setting and removing multiple - /// accounts and then updates the state root when dropped. - pub fn mutate(&'a mut self) -> StateTrieMutation<'a> { - let trie_query = self.trie_query(); - StateTrieMutation { - state_trie: self, - trie_query, - } - } - - pub fn root(&self) -> B256 { - self.root - } - - pub fn trie_query(&self) -> TrieQuery { - TrieQuery::new(Arc::clone(&self.db), &self.root) - } -} - -impl Clone for StateTrie { - fn clone(&self) -> Self { - Self { - db: Arc::new((*self.db).clone()), - root: self.root, - } - } -} - -impl Default for StateTrie { - fn default() -> Self { - let db = Arc::new(PersistentMemoryDB::default()); - let mut trie = TrieQuery::empty(Arc::clone(&db)); - let root = trie.root(); - - Self { db, root } - } -} - -/// A helper struct lets us update multiple accounts and -/// updates the state root when dropped. -pub(super) struct StateTrieMutation<'a> { - state_trie: &'a mut StateTrie, - trie_query: TrieQuery, -} - -impl<'a> StateTrieMutation<'a> { - pub fn account(&self, address: &Address) -> Option { - self.state_trie.account(address) - } - - pub fn remove_account(&mut self, address: &Address) { - self.trie_query.remove(address); - } - - pub fn insert_account_info_with_storage_root( - &mut self, - address: &Address, - account_info: &AccountInfo, - storage_root: B256, - ) { - let account = BasicAccount::from((account_info, storage_root)); - self.insert_basic_account(address, account); - } - - pub fn insert_basic_account(&mut self, address: &Address, account: BasicAccount) { - self.trie_query.insert(address, account); - } -} - -impl<'a> Drop for StateTrieMutation<'a> { - fn drop(&mut self) { - self.state_trie.root = self.trie_query.root(); - } -} diff --git a/crates/edr_evm/src/state/trie/storage_trie.rs b/crates/edr_evm/src/state/trie/storage_trie.rs deleted file mode 100644 index 189b6827b6..0000000000 --- a/crates/edr_evm/src/state/trie/storage_trie.rs +++ /dev/null @@ -1,114 +0,0 @@ -use std::{collections::BTreeMap, sync::Arc}; - -use alloy_rlp::Decodable; -use hasher::{Hasher, HasherKeccak}; - -use crate::{ - state::trie::{persistent_memory_db::PersistentMemoryDB, trie_query::TrieQuery}, - B256, U256, -}; - -#[derive(Debug)] -pub(super) struct StorageTrie { - db: Arc, - root: B256, -} - -impl<'a> StorageTrie { - pub fn mutate(&'a mut self) -> StorageTrieMutation<'a> { - let trie_query = self.trie_query(); - StorageTrieMutation { - storage_trie: self, - trie_query, - } - } - - #[cfg_attr(feature = "tracing", tracing::instrument)] - pub fn storage_slot(&self, index: &U256) -> Option { - self.trie_query() - .get(index.to_be_bytes::<32>()) - .map(decode_u256) - } - - #[cfg_attr(feature = "tracing", tracing::instrument)] - pub fn storage(&self) -> BTreeMap { - self.trie_query() - .iter() - .map(|(hashed_index, encoded_value)| { - (B256::from_slice(&hashed_index), decode_u256(encoded_value)) - }) - .collect() - } - - pub fn root(&self) -> B256 { - self.root - } - - fn trie_query(&'a self) -> TrieQuery { - TrieQuery::new(Arc::clone(&self.db), &self.root) - } -} - -impl Clone for StorageTrie { - fn clone(&self) -> Self { - Self { - db: Arc::new((*self.db).clone()), - root: self.root, - } - } -} - -impl Default for StorageTrie { - #[cfg_attr(feature = "tracing", tracing::instrument)] - fn default() -> Self { - let db = Arc::new(PersistentMemoryDB::default()); - let mut trie = TrieQuery::empty(Arc::clone(&db)); - let root = trie.root(); - - Self { db, root } - } -} - -pub(super) struct StorageTrieMutation<'a> { - storage_trie: &'a mut StorageTrie, - trie_query: TrieQuery, -} - -impl<'a> StorageTrieMutation<'a> { - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn set_storage_slots(&mut self, storage: &revm::primitives::Storage) { - storage.iter().for_each(|(index, value)| { - self.set_storage_slot(index, &value.present_value); - }); - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip(self)))] - pub fn set_storage_slot(&mut self, index: &U256, value: &U256) -> Option { - let hashed_index = HasherKeccak::new().digest(&index.to_be_bytes::<32>()); - - let old_value = self - .trie_query - .get_hashed_key(&hashed_index) - .map(decode_u256); - - if value.is_zero() { - if old_value.is_some() { - self.trie_query.remove_hashed_key(&hashed_index); - } - } else { - self.trie_query.insert_hashed_key(hashed_index, value); - } - - old_value - } -} - -impl<'a> Drop for StorageTrieMutation<'a> { - fn drop(&mut self) { - self.storage_trie.root = self.trie_query.root(); - } -} - -fn decode_u256(encoded_value: Vec) -> U256 { - U256::decode(&mut encoded_value.as_slice()).expect("Valid RLP") -} diff --git a/crates/edr_evm/src/state/trie/trie_query.rs b/crates/edr_evm/src/state/trie/trie_query.rs deleted file mode 100644 index 2e2870d128..0000000000 --- a/crates/edr_evm/src/state/trie/trie_query.rs +++ /dev/null @@ -1,80 +0,0 @@ -use std::sync::Arc; - -use cita_trie::{PatriciaTrie, Trie}; -use hasher::{Hasher, HasherKeccak}; - -use crate::{state::trie::persistent_memory_db::PersistentMemoryDB, B256}; - -/// A light wrapper over the DB of the Merkle-Patricia trie that allows us to -/// read, add and remove elements. -#[repr(transparent)] -pub(super) struct TrieQuery(PatriciaTrie); - -const DB_IS_INFALLIBLE: &str = "DB is infallible"; - -impl TrieQuery { - /// Create a new trie query from the provided state root. Panics if the - /// state root is invalid. - pub fn new(db: Arc, root: &B256) -> Self { - let trie = PatriciaTrie::from(db, Arc::new(HasherKeccak::new()), root.as_slice()) - .expect("Valid state root"); - Self(trie) - } - - /// Create an empty trie query. - pub fn empty(db: Arc) -> Self { - let trie = PatriciaTrie::new(db, Arc::new(HasherKeccak::new())); - Self(trie) - } - - /// Get the value at the specified (unhashed) key. - pub fn get(&self, key: impl AsRef<[u8]>) -> Option> { - self.0.get(&hash_key(key)).expect(DB_IS_INFALLIBLE) - } - - /// Get the value at the specified hashed key. - pub fn get_hashed_key(&self, key: &[u8]) -> Option> { - self.0.get(key).expect(DB_IS_INFALLIBLE) - } - - /// Insert a value at the specified (unhashed) key or modify it if it - /// exists. The value will be RLP-encoded. - pub fn insert(&mut self, key: impl AsRef<[u8]>, value: impl alloy_rlp::Encodable) { - self.0 - .insert(hash_key(key), alloy_rlp::encode(value)) - .expect(DB_IS_INFALLIBLE); - } - - /// Insert a value at the specified hashed key or modify it if it exists. - /// The value will be RLP-encoded. - pub fn insert_hashed_key(&mut self, key: Vec, value: impl alloy_rlp::Encodable) { - self.0 - .insert(key, alloy_rlp::encode(value)) - .expect(DB_IS_INFALLIBLE); - } - - /// Iterate over hashed key and RLP-encoded value pairs. - pub fn iter(&self) -> impl Iterator, Vec)> + '_ { - self.0.iter() - } - - /// Remove the value at the specified (unhashed) key. - pub fn remove(&mut self, key: impl AsRef<[u8]>) -> bool { - self.remove_hashed_key(&hash_key(key)) - } - - /// Remove the value at the specified hashed key. - pub fn remove_hashed_key(&mut self, key: &[u8]) -> bool { - self.0.remove(key).expect(DB_IS_INFALLIBLE) - } - - /// Get the state root - pub fn root(&mut self) -> B256 { - let root = self.0.root().expect(DB_IS_INFALLIBLE); - B256::from_slice(&root) - } -} - -fn hash_key(key: impl AsRef<[u8]>) -> Vec { - HasherKeccak::new().digest(key.as_ref()) -} diff --git a/crates/edr_evm/src/test_utils.rs b/crates/edr_evm/src/test_utils.rs deleted file mode 100644 index e8e9469d18..0000000000 --- a/crates/edr_evm/src/test_utils.rs +++ /dev/null @@ -1,142 +0,0 @@ -use std::num::NonZeroU64; - -use edr_eth::{ - transaction::{Eip1559TransactionRequest, Eip155TransactionRequest, TransactionKind}, - AccountInfo, Address, Bytes, HashMap, SpecId, U256, -}; - -use crate::{ - state::{AccountTrie, StateError, TrieState}, - ExecutableTransaction, MemPool, MemPoolAddTransactionError, TransactionCreationError, -}; - -/// A test fixture for `MemPool`. -pub struct MemPoolTestFixture { - /// The mem pool. - pub mem_pool: MemPool, - /// The state. - pub state: TrieState, -} - -impl MemPoolTestFixture { - /// Constructs an instance with the provided accounts. - pub fn with_accounts(accounts: &[(Address, AccountInfo)]) -> Self { - let accounts = accounts.iter().cloned().collect::>(); - let trie = AccountTrie::with_accounts(&accounts); - - MemPoolTestFixture { - // SAFETY: literal is non-zero - mem_pool: MemPool::new(unsafe { NonZeroU64::new_unchecked(10_000_000u64) }), - state: TrieState::with_accounts(trie), - } - } - - /// Tries to add the provided transaction to the mem pool. - pub fn add_transaction( - &mut self, - transaction: ExecutableTransaction, - ) -> Result<(), MemPoolAddTransactionError> { - self.mem_pool.add_transaction(&self.state, transaction) - } - - /// Sets the block gas limit. - pub fn set_block_gas_limit(&mut self, block_gas_limit: NonZeroU64) -> Result<(), StateError> { - self.mem_pool - .set_block_gas_limit(&self.state, block_gas_limit) - } - - /// Updates the mem pool. - pub fn update(&mut self) -> Result<(), StateError> { - self.mem_pool.update(&self.state) - } -} - -/// Creates a dummy EIP-155 transaction. -pub fn dummy_eip155_transaction( - caller: Address, - nonce: u64, -) -> Result { - dummy_eip155_transaction_with_price(caller, nonce, U256::ZERO) -} - -/// Creates a dummy EIP-155 transaction with the provided gas price. -pub fn dummy_eip155_transaction_with_price( - caller: Address, - nonce: u64, - gas_price: U256, -) -> Result { - dummy_eip155_transaction_with_price_and_limit(caller, nonce, gas_price, 30_000) -} - -/// Creates a dummy EIP-155 transaction with the provided gas limit. -pub fn dummy_eip155_transaction_with_limit( - caller: Address, - nonce: u64, - gas_limit: u64, -) -> Result { - dummy_eip155_transaction_with_price_and_limit(caller, nonce, U256::ZERO, gas_limit) -} - -fn dummy_eip155_transaction_with_price_and_limit( - caller: Address, - nonce: u64, - gas_price: U256, - gas_limit: u64, -) -> Result { - dummy_eip155_transaction_with_price_limit_and_value( - caller, - nonce, - gas_price, - gas_limit, - U256::ZERO, - ) -} - -/// Creates a dummy EIP-155 transaction with the provided gas price, gas limit, -/// and value. -pub fn dummy_eip155_transaction_with_price_limit_and_value( - caller: Address, - nonce: u64, - gas_price: U256, - gas_limit: u64, - value: U256, -) -> Result { - let from = Address::random(); - let request = Eip155TransactionRequest { - nonce, - gas_price, - gas_limit, - kind: TransactionKind::Call(from), - value, - input: Bytes::new(), - chain_id: 123, - }; - let transaction = request.fake_sign(&caller); - - ExecutableTransaction::with_caller(SpecId::LATEST, transaction.into(), caller) -} - -/// Creates a dummy EIP-1559 transaction with the provided max fee and max -/// priority fee per gas. -pub fn dummy_eip1559_transaction( - caller: Address, - nonce: u64, - max_fee_per_gas: U256, - max_priority_fee_per_gas: U256, -) -> Result { - let from = Address::random(); - let request = Eip1559TransactionRequest { - chain_id: 123, - nonce, - max_priority_fee_per_gas, - max_fee_per_gas, - gas_limit: 30_000, - kind: TransactionKind::Call(from), - value: U256::ZERO, - input: Bytes::new(), - access_list: Vec::new(), - }; - let transaction = request.fake_sign(&caller); - - ExecutableTransaction::with_caller(SpecId::LATEST, transaction.into(), caller) -} diff --git a/crates/edr_evm/src/trace.rs b/crates/edr_evm/src/trace.rs deleted file mode 100644 index 301a72d462..0000000000 --- a/crates/edr_evm/src/trace.rs +++ /dev/null @@ -1,485 +0,0 @@ -use std::{cell::RefCell, fmt::Debug, rc::Rc, sync::Arc}; - -use edr_eth::{Address, Bytes, U256}; -use revm::{ - handler::register::EvmHandler, - interpreter::{ - opcode::{self, BoxedInstruction, InstructionTables}, - return_revert, CallInputs, CallOutcome, CreateInputs, CreateOutcome, InstructionResult, - Interpreter, SuccessOrHalt, - }, - primitives::{Bytecode, EVMError, ExecutionResult, Output}, - Database, Evm, EvmContext, FrameOrResult, FrameResult, -}; - -use crate::debug::GetContextData; - -/// Registers trace collector handles to the EVM handler. -pub fn register_trace_collector_handles< - DatabaseT: Database, - ContextT: GetContextData, ->( - handler: &mut EvmHandler<'_, ContextT, DatabaseT>, -) where - DatabaseT::Error: Debug, -{ - // Every instruction inside flat table that is going to be wrapped by tracer - // calls. - let table = handler - .instruction_table - .take() - .expect("Handler must have instruction table"); - - let table = match table { - InstructionTables::Plain(table) => table - .into_iter() - .map(|i| instruction_handler(i)) - .collect::>(), - InstructionTables::Boxed(table) => table - .into_iter() - .map(|i| instruction_handler(i)) - .collect::>(), - }; - - // cast vector to array. - handler.instruction_table = Some(InstructionTables::Boxed( - table.try_into().unwrap_or_else(|_| unreachable!()), - )); - - // call and create input stack shared between handlers. They are used to share - // inputs in *_end Inspector calls. - let call_input_stack = Rc::>>::new(RefCell::new(Vec::new())); - let create_input_stack = Rc::>>::new(RefCell::new(Vec::new())); - - // Create handler - let create_input_stack_inner = create_input_stack.clone(); - let old_handle = handler.execution.create.clone(); - handler.execution.create = Arc::new( - move |ctx, inputs| -> Result> { - let tracer = ctx.external.get_context_data(); - tracer.create(&ctx.evm, &inputs); - - create_input_stack_inner.borrow_mut().push(inputs.clone()); - - old_handle(ctx, inputs) - }, - ); - - // Call handler - let call_input_stack_inner = call_input_stack.clone(); - let old_handle = handler.execution.call.clone(); - handler.execution.call = Arc::new( - move |ctx, inputs| -> Result> { - let tracer = ctx.external.get_context_data(); - tracer.call(&mut ctx.evm, &inputs); - - call_input_stack_inner.borrow_mut().push(inputs.clone()); - - old_handle(ctx, inputs) - }, - ); - - // call outcome - let call_input_stack_inner = call_input_stack.clone(); - let old_handle = handler.execution.insert_call_outcome.clone(); - handler.execution.insert_call_outcome = Arc::new( - move |ctx: &mut revm::Context, frame, shared_memory, outcome| { - let call_inputs = call_input_stack_inner.borrow_mut().pop().unwrap(); - - let tracer = ctx.external.get_context_data(); - tracer.call_end(&ctx.evm, &call_inputs, &outcome); - - old_handle(ctx, frame, shared_memory, outcome) - }, - ); - - // create outcome - let create_input_stack_inner = create_input_stack.clone(); - let old_handle = handler.execution.insert_create_outcome.clone(); - handler.execution.insert_create_outcome = Arc::new(move |ctx, frame, outcome| { - let create_inputs = create_input_stack_inner.borrow_mut().pop().unwrap(); - - let tracer = ctx.external.get_context_data(); - tracer.create_end(&ctx.evm, &create_inputs, &outcome); - - old_handle(ctx, frame, outcome) - }); - - // last frame outcome - let old_handle = handler.execution.last_frame_return.clone(); - handler.execution.last_frame_return = Arc::new(move |ctx, frame_result| { - let tracer = ctx.external.get_context_data(); - match frame_result { - FrameResult::Call(outcome) => { - let call_inputs = call_input_stack.borrow_mut().pop().unwrap(); - tracer.call_transaction_end(&ctx.evm, &call_inputs, outcome); - } - FrameResult::Create(outcome) => { - let create_inputs = create_input_stack.borrow_mut().pop().unwrap(); - tracer.create_transaction_end(&ctx.evm, &create_inputs, outcome); - } - } - old_handle(ctx, frame_result) - }); -} - -/// Outer closure that calls tracer for every instruction. -fn instruction_handler< - 'a, - ContextT: GetContextData, - DatabaseT: Database, - Instruction: Fn(&mut Interpreter, &mut Evm<'a, ContextT, DatabaseT>) + 'a, ->( - instruction: Instruction, -) -> BoxedInstruction<'a, Evm<'a, ContextT, DatabaseT>> { - Box::new( - move |interpreter: &mut Interpreter, host: &mut Evm<'a, ContextT, DatabaseT>| { - // SAFETY: as the PC was already incremented we need to subtract 1 to preserve - // the old Inspector behavior. - interpreter.instruction_pointer = unsafe { interpreter.instruction_pointer.sub(1) }; - - host.context - .external - .get_context_data() - .step(interpreter, &host.context.evm); - - // return PC to old value - interpreter.instruction_pointer = unsafe { interpreter.instruction_pointer.add(1) }; - - // execute instruction. - instruction(interpreter, host); - }, - ) -} - -/// Stack tracing message -#[derive(Clone, Debug)] -pub enum TraceMessage { - /// Event that occurs before a call or create message. - Before(BeforeMessage), - /// Event that occurs every step of a call or create message. - Step(Step), - /// Event that occurs after a call or create message. - After(ExecutionResult), -} - -/// Temporary before message type for handling traces -#[derive(Clone, Debug)] -pub struct BeforeMessage { - /// Call depth - pub depth: usize, - /// Caller - pub caller: Address, - /// Callee - pub to: Option
, - /// Transaction gas limit - pub gas_limit: u64, - /// Input data - pub data: Bytes, - /// Value - pub value: U256, - /// Code address - pub code_address: Option
, - /// Bytecode - pub code: Option, -} - -/// A trace for an EVM call. -#[derive(Clone, Debug, Default)] -pub struct Trace { - // /// The individual steps of the call - // pub steps: Vec, - /// Messages - pub messages: Vec, - /// The return value of the call - pub return_value: Bytes, -} - -/// A single EVM step. -#[derive(Clone, Debug)] -pub struct Step { - /// The program counter - pub pc: u64, - /// The call depth - pub depth: u64, - /// The executed op code - pub opcode: u8, - /// The top entry on the stack. None if the stack is empty. - pub stack_top: Option, - // /// The amount of gas that was used by the step - // pub gas_cost: u64, - // /// The amount of gas that was refunded by the step - // pub gas_refunded: i64, - // /// The contract being executed - // pub contract: AccountInfo, - // /// The address of the contract - // pub contract_address: Address, -} - -impl Trace { - /// Adds a before message - pub fn add_before(&mut self, message: BeforeMessage) { - self.messages.push(TraceMessage::Before(message)); - } - - /// Adds a result message - pub fn add_after(&mut self, result: ExecutionResult) { - self.messages.push(TraceMessage::After(result)); - } - - /// Adds a VM step to the trace. - pub fn add_step(&mut self, depth: u64, pc: usize, opcode: u8, stack_top: Option) { - self.messages.push(TraceMessage::Step(Step { - pc: pc as u64, - depth, - opcode, - stack_top, - })); - } -} - -/// Object that gathers trace information during EVM execution and can be turned -/// into a trace upon completion. -#[derive(Debug)] -pub struct TraceCollector { - traces: Vec, - pending_before: Option, - is_new_trace: bool, -} - -impl TraceCollector { - /// Converts the [`TraceCollector`] into its [`Trace`]. - pub fn into_traces(self) -> Vec { - self.traces - } - - /// Returns the traces collected so far. - pub fn traces(&self) -> &[Trace] { - &self.traces - } - - fn current_trace_mut(&mut self) -> &mut Trace { - self.traces.last_mut().expect("Trace must have been added") - } - - fn validate_before_message(&mut self) { - if let Some(message) = self.pending_before.take() { - self.current_trace_mut().add_before(message); - } - } - - fn call(&mut self, data: &mut EvmContext, inputs: &CallInputs) - where - DatabaseT::Error: Debug, - { - if self.is_new_trace { - self.is_new_trace = false; - self.traces.push(Trace::default()); - } - - self.validate_before_message(); - - // This needs to be split into two functions to avoid borrow checker issues - #[allow(clippy::map_unwrap_or)] - let code = data - .journaled_state - .state - .get(&inputs.contract) - .map(|account| account.info.clone()) - .map(|mut account_info| { - if let Some(code) = account_info.code.take() { - code - } else { - data.db.code_by_hash(account_info.code_hash).unwrap() - } - }) - .unwrap_or_else(|| { - data.db.basic(inputs.contract).unwrap().map_or( - // If an invalid contract address was provided, return empty code - Bytecode::new(), - |account_info| { - account_info.code.unwrap_or_else(|| { - data.db.code_by_hash(account_info.code_hash).unwrap() - }) - }, - ) - }); - - self.pending_before = Some(BeforeMessage { - depth: data.journaled_state.depth, - caller: inputs.context.caller, - to: Some(inputs.context.address), - gas_limit: inputs.gas_limit, - data: inputs.input.clone(), - value: inputs.context.apparent_value, - code_address: Some(inputs.context.code_address), - code: Some(code), - }); - } - - fn call_end( - &mut self, - data: &EvmContext, - _inputs: &CallInputs, - outcome: &CallOutcome, - ) { - match outcome.instruction_result() { - return_revert!() if self.pending_before.is_some() => { - self.pending_before = None; - return; - } - _ => (), - } - - self.validate_before_message(); - - let ret = *outcome.instruction_result(); - let safe_ret = if ret == InstructionResult::CallTooDeep - || ret == InstructionResult::OutOfFunds - || ret == InstructionResult::StateChangeDuringStaticCall - { - InstructionResult::Revert - } else { - ret - }; - - let result = match safe_ret.into() { - SuccessOrHalt::Success(reason) => ExecutionResult::Success { - reason, - gas_used: outcome.gas().spent(), - gas_refunded: outcome.gas().refunded() as u64, - logs: data.journaled_state.logs.clone(), - output: Output::Call(outcome.output().clone()), - }, - SuccessOrHalt::Revert => ExecutionResult::Revert { - gas_used: outcome.gas().spent(), - output: outcome.output().clone(), - }, - SuccessOrHalt::Halt(reason) => ExecutionResult::Halt { - reason, - gas_used: outcome.gas().limit(), - }, - SuccessOrHalt::InternalContinue | SuccessOrHalt::InternalCallOrCreate => { - panic!("Internal error: {safe_ret:?}") - } - SuccessOrHalt::FatalExternalError => panic!("Fatal external error"), - }; - - self.current_trace_mut().add_after(result); - } - - fn create(&mut self, data: &EvmContext, inputs: &CreateInputs) { - if self.is_new_trace { - self.is_new_trace = false; - self.traces.push(Trace::default()); - } - - self.validate_before_message(); - - self.pending_before = Some(BeforeMessage { - depth: data.journaled_state.depth, - caller: inputs.caller, - to: None, - gas_limit: inputs.gas_limit, - data: inputs.init_code.clone(), - value: inputs.value, - code_address: None, - code: None, - }); - } - - fn create_end( - &mut self, - data: &EvmContext, - _inputs: &CreateInputs, - outcome: &CreateOutcome, - ) { - self.validate_before_message(); - - let ret = *outcome.instruction_result(); - let safe_ret = - if ret == InstructionResult::CallTooDeep || ret == InstructionResult::OutOfFunds { - InstructionResult::Revert - } else { - ret - }; - - let result = match safe_ret.into() { - SuccessOrHalt::Success(reason) => ExecutionResult::Success { - reason, - gas_used: outcome.gas().spent(), - gas_refunded: outcome.gas().refunded() as u64, - logs: data.journaled_state.logs.clone(), - output: Output::Create(outcome.output().clone(), outcome.address), - }, - SuccessOrHalt::Revert => ExecutionResult::Revert { - gas_used: outcome.gas().spent(), - output: outcome.output().clone(), - }, - SuccessOrHalt::Halt(reason) => ExecutionResult::Halt { - reason, - gas_used: outcome.gas().limit(), - }, - SuccessOrHalt::InternalContinue | SuccessOrHalt::InternalCallOrCreate => { - panic!("Internal error: {safe_ret:?}") - } - SuccessOrHalt::FatalExternalError => panic!("Fatal external error"), - }; - - self.current_trace_mut().add_after(result); - } - - fn step(&mut self, interp: &Interpreter, data: &EvmContext) { - // Skip the step - let skip_step = self.pending_before.as_ref().map_or(false, |message| { - message.code.is_some() && interp.current_opcode() == opcode::STOP - }); - - self.validate_before_message(); - - if !skip_step { - self.current_trace_mut().add_step( - data.journaled_state.depth(), - interp.program_counter(), - interp.current_opcode(), - interp.stack.data().last().cloned(), - ); - } - } - - fn call_transaction_end( - &mut self, - data: &EvmContext, - inputs: &CallInputs, - outcome: &CallOutcome, - ) { - self.is_new_trace = true; - self.call_end(data, inputs, outcome); - } - - fn create_transaction_end( - &mut self, - data: &EvmContext, - inputs: &CreateInputs, - outcome: &CreateOutcome, - ) { - self.is_new_trace = true; - self.create_end(data, inputs, outcome); - } -} - -impl Default for TraceCollector { - fn default() -> Self { - Self { - traces: Vec::new(), - pending_before: None, - is_new_trace: true, - } - } -} - -impl GetContextData for TraceCollector { - fn get_context_data(&mut self) -> &mut TraceCollector { - self - } -} diff --git a/crates/edr_evm/src/transaction.rs b/crates/edr_evm/src/transaction.rs deleted file mode 100644 index 709a8e0887..0000000000 --- a/crates/edr_evm/src/transaction.rs +++ /dev/null @@ -1,74 +0,0 @@ -mod detailed; -mod executable; - -use std::fmt::Debug; - -use edr_eth::{signature::SignatureError, U256}; -use revm::{ - db::DatabaseComponentError, - primitives::{EVMError, InvalidHeader, InvalidTransaction}, -}; - -pub use self::{detailed::*, executable::*}; - -/// Invalid transaction error -#[derive(Debug, thiserror::Error)] -pub enum TransactionError { - /// Blockchain errors - #[error(transparent)] - Blockchain(#[from] BE), - #[error("{0}")] - /// Custom errors - Custom(String), - /// EIP-1559 is not supported - #[error("Cannot run transaction: EIP 1559 is not activated.")] - Eip1559Unsupported, - /// Corrupt transaction data - #[error("Invalid transaction: {0:?}")] - InvalidTransaction(InvalidTransaction), - /// The transaction is expected to have a prevrandao, as the executor's - /// config is on a post-merge hardfork. - #[error("Post-merge transaction is missing prevrandao")] - MissingPrevrandao, - /// State errors - #[error(transparent)] - State(SE), -} - -impl From>> for TransactionError -where - BE: Debug + Send, - SE: Debug + Send, -{ - fn from(error: EVMError>) -> Self { - match error { - EVMError::Transaction(e) => Self::InvalidTransaction(e), - EVMError::Header( - InvalidHeader::ExcessBlobGasNotSet | InvalidHeader::PrevrandaoNotSet, - ) => unreachable!("error: {error:?}"), - EVMError::Database(DatabaseComponentError::State(e)) => Self::State(e), - EVMError::Database(DatabaseComponentError::BlockHash(e)) => Self::Blockchain(e), - EVMError::Custom(error) => Self::Custom(error), - } - } -} - -/// An error that occurred while trying to construct an -/// [`ExecutableTransaction`]. -#[derive(Debug, thiserror::Error)] -pub enum TransactionCreationError { - /// Creating contract without any data. - #[error("Contract creation without any data provided")] - ContractMissingData, - /// Transaction gas limit is insufficient to afford initial gas cost. - #[error("Transaction requires at least {initial_gas_cost} gas but got {gas_limit}")] - InsufficientGas { - /// The initial gas cost of a transaction - initial_gas_cost: U256, - /// The gas limit of the transaction - gas_limit: u64, - }, - /// An error involving the transaction's signature. - #[error(transparent)] - Signature(SignatureError), -} diff --git a/crates/edr_evm/src/transaction/detailed.rs b/crates/edr_evm/src/transaction/detailed.rs deleted file mode 100644 index b06f8ed587..0000000000 --- a/crates/edr_evm/src/transaction/detailed.rs +++ /dev/null @@ -1,13 +0,0 @@ -use std::sync::Arc; - -use edr_eth::receipt::BlockReceipt; - -use crate::ExecutableTransaction; - -/// Wrapper struct for a transaction and its receipt. -pub struct DetailedTransaction<'t> { - /// The transaction - pub transaction: &'t ExecutableTransaction, - /// The transaction's receipt - pub receipt: &'t Arc, -} diff --git a/crates/edr_evm/src/transaction/executable.rs b/crates/edr_evm/src/transaction/executable.rs deleted file mode 100644 index a5c6691280..0000000000 --- a/crates/edr_evm/src/transaction/executable.rs +++ /dev/null @@ -1,493 +0,0 @@ -use std::{ops::Deref, sync::OnceLock}; - -use alloy_rlp::BufMut; -use edr_eth::{ - remote::eth::Transaction, - signature::Signature, - transaction::{ - Eip1559SignedTransaction, Eip155SignedTransaction, Eip2930SignedTransaction, - Eip4844SignedTransaction, LegacySignedTransaction, SignedTransaction, TransactionKind, - }, - Address, U256, -}; -use revm::{ - interpreter::gas::validate_initial_tx_gas, - primitives::{CreateScheme, SpecId, TransactTo, TxEnv}, -}; - -use super::TransactionCreationError; - -/// A transaction that can be executed by the EVM. It allows manual -/// specification of the caller, e.g. to override the caller of a transaction -/// that can be recovered from a signature. -#[derive(Clone, Debug, PartialEq, Eq)] -pub struct ExecutableTransaction { - transaction: SignedTransaction, - caller: Address, -} - -impl ExecutableTransaction { - /// Create an [`ExecutableTransaction`] by attempting to validate and - /// recover the caller address of the provided transaction. - pub fn new( - spec_id: SpecId, - transaction: SignedTransaction, - ) -> Result { - let caller = transaction - .recover() - .map_err(TransactionCreationError::Signature)?; - - Self::with_caller(spec_id, transaction, caller) - } - - /// Creates an [`ExecutableTransaction`] with the provided transaction and - /// caller address. - pub fn with_caller( - spec_id: SpecId, - transaction: SignedTransaction, - caller: Address, - ) -> Result { - if transaction.kind() == TransactionKind::Create && transaction.data().is_empty() { - return Err(TransactionCreationError::ContractMissingData); - } - - let initial_cost = initial_cost(spec_id, &transaction); - if transaction.gas_limit() < initial_cost { - return Err(TransactionCreationError::InsufficientGas { - initial_gas_cost: U256::from(initial_cost), - gas_limit: transaction.gas_limit(), - }); - } - - Ok(Self { - transaction, - caller, - }) - } - - /// Returns the [`ExecutableTransaction`]'s caller. - pub fn caller(&self) -> &Address { - &self.caller - } - - /// The minimum gas required to include the transaction in a block. - pub fn initial_cost(&self, spec_id: SpecId) -> u64 { - initial_cost(spec_id, &self.transaction) - } - - /// Returns the inner [`SignedTransaction`] - pub fn as_inner(&self) -> &SignedTransaction { - &self.transaction - } - - /// Returns the inner transaction and caller - pub fn into_inner(self) -> (SignedTransaction, Address) { - (self.transaction, self.caller) - } -} - -impl Deref for ExecutableTransaction { - type Target = SignedTransaction; - - fn deref(&self) -> &Self::Target { - &self.transaction - } -} - -impl alloy_rlp::Encodable for ExecutableTransaction { - fn encode(&self, out: &mut dyn BufMut) { - self.transaction.encode(out); - } - - fn length(&self) -> usize { - self.transaction.length() - } -} - -impl From for TxEnv { - fn from(transaction: ExecutableTransaction) -> Self { - fn transact_to(kind: TransactionKind) -> TransactTo { - match kind { - TransactionKind::Call(address) => TransactTo::Call(address), - TransactionKind::Create => TransactTo::Create(CreateScheme::Create), - } - } - - let chain_id = transaction.transaction.chain_id(); - match transaction.transaction { - SignedTransaction::PreEip155Legacy(LegacySignedTransaction { - nonce, - gas_price, - gas_limit, - kind, - value, - input, - .. - }) - | SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce, - gas_price, - gas_limit, - kind, - value, - input, - .. - }) => Self { - caller: transaction.caller, - gas_limit, - gas_price, - gas_priority_fee: None, - transact_to: transact_to(kind), - value, - data: input, - chain_id, - nonce: Some(nonce), - access_list: Vec::new(), - blob_hashes: Vec::new(), - max_fee_per_blob_gas: None, - }, - SignedTransaction::Eip2930(Eip2930SignedTransaction { - nonce, - gas_price, - gas_limit, - kind, - value, - input, - access_list, - .. - }) => Self { - caller: transaction.caller, - gas_limit, - gas_price, - gas_priority_fee: None, - transact_to: transact_to(kind), - value, - data: input, - chain_id, - nonce: Some(nonce), - access_list: access_list.into(), - blob_hashes: Vec::new(), - max_fee_per_blob_gas: None, - }, - SignedTransaction::Eip1559(Eip1559SignedTransaction { - nonce, - max_priority_fee_per_gas, - max_fee_per_gas, - gas_limit, - kind, - value, - input, - access_list, - .. - }) => Self { - caller: transaction.caller, - gas_limit, - gas_price: max_fee_per_gas, - gas_priority_fee: Some(max_priority_fee_per_gas), - transact_to: transact_to(kind), - value, - data: input, - chain_id, - nonce: Some(nonce), - access_list: access_list.into(), - blob_hashes: Vec::new(), - max_fee_per_blob_gas: None, - }, - SignedTransaction::Eip4844(Eip4844SignedTransaction { - nonce, - max_priority_fee_per_gas, - max_fee_per_gas, - max_fee_per_blob_gas, - gas_limit, - to, - value, - input, - access_list, - blob_hashes, - .. - }) => Self { - caller: transaction.caller, - gas_limit, - gas_price: max_fee_per_gas, - transact_to: TransactTo::Call(to), - value, - data: input, - nonce: Some(nonce), - chain_id, - access_list: access_list.into(), - gas_priority_fee: Some(max_priority_fee_per_gas), - blob_hashes, - max_fee_per_blob_gas: Some(max_fee_per_blob_gas), - }, - } - } -} - -/// Error that occurs when trying to convert the JSON-RPC `Transaction` type. -#[derive(Debug, thiserror::Error)] -pub enum TransactionConversionError { - /// Missing access list - #[error("Missing access list")] - MissingAccessList, - /// EIP-4844 transaction is missing blob (versioned) hashes - #[error("Missing blob hashes")] - MissingBlobHashes, - /// Missing chain ID - #[error("Missing chain ID")] - MissingChainId, - /// Missing max fee per gas - #[error("Missing max fee per gas")] - MissingMaxFeePerGas, - /// Missing max priority fee per gas - #[error("Missing max priority fee per gas")] - MissingMaxPriorityFeePerGas, - /// EIP-4844 transaction is missing the max fee per blob gas - #[error("Missing max fee per blob gas")] - MissingMaxFeePerBlobGas, - /// EIP-4844 transaction is missing the receiver (to) address - #[error("Missing receiver (to) address")] - MissingReceiverAddress, -} - -impl TryFrom for ExecutableTransaction { - type Error = TransactionConversionError; - - fn try_from(value: Transaction) -> Result { - let kind = if let Some(to) = &value.to { - TransactionKind::Call(*to) - } else { - TransactionKind::Create - }; - - let caller = value.from; - - let transaction = match value.transaction_type { - Some(0) | None => { - if value.is_legacy() { - SignedTransaction::PreEip155Legacy(LegacySignedTransaction { - nonce: value.nonce, - gas_price: value.gas_price, - gas_limit: value.gas.to(), - kind, - value: value.value, - input: value.input, - signature: Signature { - r: value.r, - s: value.s, - v: value.v, - }, - hash: OnceLock::from(value.hash), - is_fake: false, - }) - } else { - SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: value.nonce, - gas_price: value.gas_price, - gas_limit: value.gas.to(), - kind, - value: value.value, - input: value.input, - signature: Signature { - r: value.r, - s: value.s, - v: value.v, - }, - hash: OnceLock::from(value.hash), - is_fake: false, - }) - } - } - Some(1) => SignedTransaction::Eip2930(Eip2930SignedTransaction { - odd_y_parity: value.odd_y_parity(), - chain_id: value - .chain_id - .ok_or(TransactionConversionError::MissingChainId)?, - nonce: value.nonce, - gas_price: value.gas_price, - gas_limit: value.gas.to(), - kind, - value: value.value, - input: value.input, - access_list: value - .access_list - .ok_or(TransactionConversionError::MissingAccessList)? - .into(), - r: value.r, - s: value.s, - hash: OnceLock::from(value.hash), - is_fake: false, - }), - Some(2) => SignedTransaction::Eip1559(Eip1559SignedTransaction { - odd_y_parity: value.odd_y_parity(), - chain_id: value - .chain_id - .ok_or(TransactionConversionError::MissingChainId)?, - nonce: value.nonce, - max_priority_fee_per_gas: value - .max_priority_fee_per_gas - .ok_or(TransactionConversionError::MissingMaxPriorityFeePerGas)?, - max_fee_per_gas: value - .max_fee_per_gas - .ok_or(TransactionConversionError::MissingMaxFeePerGas)?, - gas_limit: value.gas.to(), - kind, - value: value.value, - input: value.input, - access_list: value - .access_list - .ok_or(TransactionConversionError::MissingAccessList)? - .into(), - r: value.r, - s: value.s, - hash: OnceLock::from(value.hash), - is_fake: false, - }), - Some(3) => SignedTransaction::Eip4844(Eip4844SignedTransaction { - odd_y_parity: value.odd_y_parity(), - chain_id: value - .chain_id - .ok_or(TransactionConversionError::MissingChainId)?, - nonce: value.nonce, - max_priority_fee_per_gas: value - .max_priority_fee_per_gas - .ok_or(TransactionConversionError::MissingMaxPriorityFeePerGas)?, - max_fee_per_gas: value - .max_fee_per_gas - .ok_or(TransactionConversionError::MissingMaxFeePerGas)?, - max_fee_per_blob_gas: value - .max_fee_per_blob_gas - .ok_or(TransactionConversionError::MissingMaxFeePerBlobGas)?, - gas_limit: value.gas.to(), - to: value - .to - .ok_or(TransactionConversionError::MissingReceiverAddress)?, - value: value.value, - input: value.input, - access_list: value - .access_list - .ok_or(TransactionConversionError::MissingAccessList)? - .into(), - blob_hashes: value - .blob_versioned_hashes - .ok_or(TransactionConversionError::MissingBlobHashes)?, - r: value.r, - s: value.s, - hash: OnceLock::from(value.hash), - is_fake: false, - }), - Some(r#type) => { - log::warn!("Unsupported transaction type: {type}. Reverting to post-EIP 155 legacy transaction", ); - - SignedTransaction::PostEip155Legacy(Eip155SignedTransaction { - nonce: value.nonce, - gas_price: value.gas_price, - gas_limit: value.gas.to(), - kind, - value: value.value, - input: value.input, - signature: Signature { - r: value.r, - s: value.s, - v: value.v, - }, - hash: OnceLock::from(value.hash), - is_fake: false, - }) - } - }; - - Ok(ExecutableTransaction { - transaction, - caller, - }) - } -} - -fn initial_cost(spec_id: SpecId, transaction: &SignedTransaction) -> u64 { - let access_list = transaction - .access_list() - .cloned() - .map(Vec::<(Address, Vec)>::from); - - validate_initial_tx_gas( - spec_id, - transaction.data().as_ref(), - transaction.kind() == TransactionKind::Create, - access_list - .as_ref() - .map_or(&[], |access_list| access_list.as_slice()), - ) -} - -#[cfg(test)] -mod tests { - use edr_eth::{transaction::Eip155TransactionRequest, Bytes}; - - use super::*; - - #[test] - fn gas_limit_less_than_base_fee() -> anyhow::Result<()> { - const TOO_LOW_GAS_LIMIT: u64 = 100; - - let caller = Address::random(); - - let request = Eip155TransactionRequest { - nonce: 0, - gas_price: U256::ZERO, - gas_limit: TOO_LOW_GAS_LIMIT, - kind: TransactionKind::Call(caller), - value: U256::ZERO, - input: Bytes::new(), - chain_id: 123, - }; - - let transaction = request.fake_sign(&caller); - let result = ExecutableTransaction::with_caller(SpecId::BERLIN, transaction.into(), caller); - - let expected_gas_cost = U256::from(21_000); - assert!(matches!( - result, - Err(TransactionCreationError::InsufficientGas { - initial_gas_cost, - gas_limit: TOO_LOW_GAS_LIMIT, - }) if initial_gas_cost == expected_gas_cost - )); - - assert_eq!( - result.unwrap_err().to_string(), - format!("Transaction requires at least 21000 gas but got {TOO_LOW_GAS_LIMIT}") - ); - - Ok(()) - } - - #[test] - fn create_missing_data() -> anyhow::Result<()> { - let caller = Address::random(); - - let request = Eip155TransactionRequest { - nonce: 0, - gas_price: U256::ZERO, - gas_limit: 30_000, - kind: TransactionKind::Create, - value: U256::ZERO, - input: Bytes::new(), - chain_id: 123, - }; - - let transaction = request.fake_sign(&caller); - let result = ExecutableTransaction::with_caller(SpecId::BERLIN, transaction.into(), caller); - - assert!(matches!( - result, - Err(TransactionCreationError::ContractMissingData) - )); - - assert_eq!( - result.unwrap_err().to_string(), - "Contract creation without any data provided" - ); - - Ok(()) - } -} diff --git a/crates/edr_evm/tests/blockchain.rs b/crates/edr_evm/tests/blockchain.rs deleted file mode 100644 index 6e89385a88..0000000000 --- a/crates/edr_evm/tests/blockchain.rs +++ /dev/null @@ -1,934 +0,0 @@ -#![cfg(feature = "test-utils")] - -use std::sync::Arc; - -use edr_eth::{ - block::PartialHeader, - log::FilterLog, - receipt::{TransactionReceipt, TypedReceipt, TypedReceiptData}, - Address, Bloom, Bytes, B256, U256, -}; -use edr_evm::{ - blockchain::{BlockchainError, GenesisBlockOptions, LocalBlockchain, SyncBlockchain}, - state::{StateDiff, StateError}, - test_utils::dummy_eip155_transaction, - HashSet, LocalBlock, Log, SpecId, SyncBlock, -}; -use serial_test::serial; - -#[cfg(feature = "test-remote")] -const REMOTE_BLOCK_NUMBER: u64 = 10_496_585; - -#[cfg(feature = "test-remote")] -const REMOTE_BLOCK_HASH: &str = - "0x71d5e7c8ff9ea737034c16e333a75575a4a94d29482e0c2b88f0a6a8369c1812"; - -#[cfg(feature = "test-remote")] -const REMOTE_BLOCK_FIRST_TRANSACTION_HASH: &str = - "0xed0b0b132bd693ef34a72084f090df07c5c3a2ec019d76316da040d4222cdfb8"; - -#[cfg(feature = "test-remote")] -const REMOTE_BLOCK_LAST_TRANSACTION_HASH: &str = - "0xd809fb6f7060abc8de068c7a38e9b2b04530baf0cc4ce9a2420d59388be10ee7"; - -#[cfg(feature = "test-remote")] -async fn create_forked_dummy_blockchain( - fork_block_number: Option, -) -> Box> { - use edr_eth::remote::RpcClient; - use edr_evm::{ - blockchain::ForkedBlockchain, state::IrregularState, HashMap, RandomHashGenerator, - }; - use edr_test_utils::env::get_alchemy_url; - use parking_lot::Mutex; - - let rpc_client = - RpcClient::new(&get_alchemy_url(), edr_defaults::CACHE_DIR.into(), None).expect("url ok"); - - let mut irregular_state = IrregularState::default(); - Box::new( - ForkedBlockchain::new( - tokio::runtime::Handle::current().clone(), - None, - SpecId::LATEST, - Arc::new(rpc_client), - fork_block_number, - &mut irregular_state, - Arc::new(Mutex::new(RandomHashGenerator::with_seed( - edr_defaults::STATE_ROOT_HASH_SEED, - ))), - &HashMap::new(), - ) - .await - .expect("Failed to construct forked blockchain"), - ) -} - -// The cache directory is only used when the `test-remote` feature is enabled -#[allow(unused_variables)] -async fn create_dummy_blockchains() -> Vec>> { - const DEFAULT_GAS_LIMIT: u64 = 0xffffffffffffff; - const DEFAULT_INITIAL_BASE_FEE: u64 = 1000000000; - - let local_blockchain = LocalBlockchain::new( - StateDiff::default(), - 1, - SpecId::LATEST, - GenesisBlockOptions { - gas_limit: Some(DEFAULT_GAS_LIMIT), - mix_hash: Some(B256::ZERO), - base_fee: Some(U256::from(DEFAULT_INITIAL_BASE_FEE)), - ..GenesisBlockOptions::default() - }, - ) - .expect("Should construct without issues"); - - vec![ - Box::new(local_blockchain), - #[cfg(feature = "test-remote")] - create_forked_dummy_blockchain(None).await, - ] -} - -fn create_dummy_block(blockchain: &dyn SyncBlockchain) -> LocalBlock { - let block_number = blockchain.last_block_number() + 1; - - create_dummy_block_with_number(blockchain, block_number) -} - -fn create_dummy_block_with_number( - blockchain: &dyn SyncBlockchain, - number: u64, -) -> LocalBlock { - let parent_hash = *blockchain - .last_block() - .expect("Failed to retrieve last block") - .hash(); - - create_dummy_block_with_hash(blockchain.spec_id(), number, parent_hash) -} - -fn create_dummy_block_with_difficulty( - blockchain: &dyn SyncBlockchain, - number: u64, - difficulty: u64, -) -> LocalBlock { - let parent_hash = *blockchain - .last_block() - .expect("Failed to retrieve last block") - .hash(); - - create_dummy_block_with_header( - blockchain.spec_id(), - PartialHeader { - number, - parent_hash, - difficulty: U256::from(difficulty), - ..PartialHeader::default() - }, - ) -} - -fn create_dummy_block_with_hash(spec_id: SpecId, number: u64, parent_hash: B256) -> LocalBlock { - create_dummy_block_with_header( - spec_id, - PartialHeader { - parent_hash, - number, - ..PartialHeader::default() - }, - ) -} - -fn create_dummy_block_with_header(spec_id: SpecId, partial_header: PartialHeader) -> LocalBlock { - LocalBlock::empty(spec_id, partial_header) -} - -struct DummyBlockAndTransaction { - block: Arc>, - transaction_hash: B256, - transaction_receipt: TransactionReceipt, -} - -/// Returns the transaction's hash. -fn insert_dummy_block_with_transaction( - blockchain: &mut dyn SyncBlockchain, -) -> anyhow::Result { - const GAS_USED: u64 = 100; - - let caller = Address::random(); - let transaction = dummy_eip155_transaction(caller, 0)?; - let transaction_hash = *transaction.hash(); - - let header = PartialHeader { - number: blockchain.last_block_number() + 1, - parent_hash: *blockchain.last_block()?.hash(), - gas_used: GAS_USED, - ..PartialHeader::default() - }; - - let transaction_receipt = TransactionReceipt { - inner: TypedReceipt { - cumulative_gas_used: GAS_USED, - logs_bloom: Bloom::default(), - logs: vec![ - Log::new_unchecked(Address::random(), Vec::new(), Bytes::new()), - Log::new_unchecked(Address::random(), Vec::new(), Bytes::new()), - ], - data: TypedReceiptData::PostEip658Legacy { status: 1 }, - spec_id: blockchain.spec_id(), - }, - transaction_hash: *transaction.hash(), - transaction_index: 0, - from: *transaction.caller(), - to: transaction.to(), - contract_address: None, - gas_used: GAS_USED, - effective_gas_price: None, - }; - - let block = LocalBlock::new( - header, - vec![transaction], - vec![transaction_receipt.clone()], - Vec::new(), - Some(Vec::new()), - ); - let block = blockchain.insert_block(block, StateDiff::default())?; - assert_eq!(block.block.transactions().len(), 1); - - Ok(DummyBlockAndTransaction { - block: block.block, - transaction_hash, - transaction_receipt, - }) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn get_last_block() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let last_block_number = blockchain.last_block_number(); - - let last_block = blockchain.last_block()?; - assert_eq!(last_block.header().number, last_block_number); - - let next_block = create_dummy_block(blockchain.as_ref()); - let expected = blockchain.insert_block(next_block, StateDiff::default())?; - - assert_eq!(blockchain.last_block()?.hash(), expected.block.hash()); - } - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_hash_some() { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let next_block = create_dummy_block(blockchain.as_ref()); - let expected = blockchain - .insert_block(next_block, StateDiff::default()) - .expect("Failed to insert block"); - - assert_eq!( - blockchain - .block_by_hash(expected.block.hash()) - .unwrap() - .unwrap() - .hash(), - expected.block.hash() - ); - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_hash_none() { - let blockchains = create_dummy_blockchains().await; - - for blockchain in blockchains { - assert!(blockchain.block_by_hash(&B256::ZERO).unwrap().is_none()); - } -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_hash_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let block = blockchain - .block_by_hash(&B256::from_str(REMOTE_BLOCK_HASH)?)? - .unwrap(); - - assert_eq!(block.header().number, REMOTE_BLOCK_NUMBER); - - let transactions = block.transactions(); - assert_eq!(transactions.len(), 192); - assert_eq!( - *transactions[0].hash(), - B256::from_str(REMOTE_BLOCK_FIRST_TRANSACTION_HASH)? - ); - assert_eq!( - *transactions[transactions.len() - 1].hash(), - B256::from_str(REMOTE_BLOCK_LAST_TRANSACTION_HASH)? - ); - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_number_some() { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let next_block = create_dummy_block(blockchain.as_ref()); - let expected = blockchain - .insert_block(next_block, StateDiff::default()) - .expect("Failed to insert block"); - - assert_eq!( - blockchain - .block_by_number(expected.block.header().number) - .unwrap() - .unwrap() - .hash(), - expected.block.hash(), - ); - } -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_number_with_create() -> anyhow::Result<()> { - use std::str::FromStr; - - use edr_eth::transaction::TransactionKind; - - const DAI_CREATION_BLOCK_NUMBER: u64 = 4_719_568; - const DAI_CREATION_TRANSACTION_INDEX: usize = 85; - const DAI_CREATION_TRANSACTION_HASH: &str = - "0xb95343413e459a0f97461812111254163ae53467855c0d73e0f1e7c5b8442fa3"; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let block = blockchain - .block_by_number(DAI_CREATION_BLOCK_NUMBER)? - .unwrap(); - let transactions = block.transactions(); - - assert_eq!( - *transactions[DAI_CREATION_TRANSACTION_INDEX].hash(), - B256::from_str(DAI_CREATION_TRANSACTION_HASH)? - ); - assert!(matches!( - transactions[DAI_CREATION_TRANSACTION_INDEX].kind(), - TransactionKind::Create - )); - - Ok(()) -} - -#[tokio::test] -#[serial] -async fn block_by_number_none() { - let blockchains = create_dummy_blockchains().await; - - for blockchain in blockchains { - let next_block_number = blockchain.last_block_number() + 1; - assert!(blockchain - .block_by_number(next_block_number) - .unwrap() - .is_none()); - } -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_number_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let block = blockchain.block_by_number(REMOTE_BLOCK_NUMBER)?.unwrap(); - - let expected_hash = B256::from_str(REMOTE_BLOCK_HASH)?; - assert_eq!(*block.hash(), expected_hash); - - let transactions = block.transactions(); - assert_eq!(transactions.len(), 192); - assert_eq!( - *transactions[0].hash(), - B256::from_str(REMOTE_BLOCK_FIRST_TRANSACTION_HASH)? - ); - assert_eq!( - *transactions[transactions.len() - 1].hash(), - B256::from_str(REMOTE_BLOCK_LAST_TRANSACTION_HASH)? - ); - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_caches_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let block1 = blockchain.block_by_number(REMOTE_BLOCK_NUMBER)?.unwrap(); - let block2 = blockchain - .block_by_hash(&B256::from_str(REMOTE_BLOCK_HASH)?)? - .unwrap(); - let block3 = blockchain.block_by_number(REMOTE_BLOCK_NUMBER)?.unwrap(); - let block4 = blockchain - .block_by_hash(&B256::from_str(REMOTE_BLOCK_HASH)?)? - .unwrap(); - - assert!(Arc::ptr_eq(&block1, &block2)); - assert!(Arc::ptr_eq(&block2, &block3)); - assert!(Arc::ptr_eq(&block3, &block4)); - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn insert_block_multiple() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let one = create_dummy_block(blockchain.as_ref()); - let one = blockchain.insert_block(one, StateDiff::default())?; - - let two = create_dummy_block(blockchain.as_ref()); - let two = blockchain.insert_block(two, StateDiff::default())?; - - assert_eq!( - blockchain - .block_by_number(one.block.header().number)? - .unwrap() - .hash(), - one.block.hash() - ); - assert_eq!( - blockchain.block_by_hash(two.block.hash())?.unwrap().hash(), - two.block.hash() - ); - } - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn insert_block_invalid_block_number() { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let next_block_number = blockchain.last_block_number() + 1; - let invalid_block_number = next_block_number + 1; - - let invalid_block = - create_dummy_block_with_number(blockchain.as_ref(), invalid_block_number); - let error = blockchain - .insert_block(invalid_block, StateDiff::default()) - .expect_err("Should fail to insert block"); - - if let BlockchainError::InvalidBlockNumber { actual, expected } = error { - assert_eq!(actual, invalid_block_number); - assert_eq!(expected, next_block_number); - } else { - panic!("Unexpected error: {error:?}"); - } - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn insert_block_invalid_parent_hash() { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - const INVALID_BLOCK_HASH: B256 = B256::ZERO; - let next_block_number = blockchain.last_block_number() + 1; - - let one = create_dummy_block_with_hash( - blockchain.spec_id(), - next_block_number, - INVALID_BLOCK_HASH, - ); - let error = blockchain - .insert_block(one, StateDiff::default()) - .expect_err("Should fail to insert block"); - - if let BlockchainError::InvalidParentHash { actual, expected } = error { - assert_eq!(actual, INVALID_BLOCK_HASH); - assert_eq!(expected, *blockchain.last_block().unwrap().hash()); - } else { - panic!("Unexpected error: {error:?}"); - } - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn logs_local() -> anyhow::Result<()> { - fn assert_eq_logs(actual: &[FilterLog], expected: &[Log]) { - assert_eq!(expected.len(), actual.len()); - - for (log, filter_log) in expected.iter().zip(actual.iter()) { - assert_eq!(log.address, filter_log.address); - assert_eq!(log.topics(), filter_log.topics()); - assert_eq!(log.data, filter_log.data); - } - } - - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let last_block_number = blockchain.last_block_number(); - - let DummyBlockAndTransaction { - block: one, - transaction_receipt, - .. - } = insert_dummy_block_with_transaction(blockchain.as_mut())?; - - let filtered_logs = blockchain.logs( - one.header().number, - one.header().number, - &HashSet::default(), - &[], - )?; - - assert_eq_logs(&filtered_logs, &transaction_receipt.logs); - - let logs = transaction_receipt.logs.iter(); - let DummyBlockAndTransaction { - block: two, - transaction_receipt, - .. - } = insert_dummy_block_with_transaction(blockchain.as_mut())?; - - let logs: Vec = logs - .chain(transaction_receipt.logs.iter()) - .cloned() - .collect(); - - let filtered_logs = blockchain.logs( - one.header().number, - two.header().number, - &HashSet::default(), - &[], - )?; - - assert_eq_logs(&filtered_logs, &logs); - - // Removed blocks should not have logs - blockchain.revert_to_block(last_block_number)?; - - let filtered_logs = blockchain.logs( - one.header().number, - two.header().number, - &HashSet::default(), - &[], - )?; - - assert!(filtered_logs.is_empty()); - } - - Ok(()) -} - -/// See results at https://api.etherscan.io/api?module=logs&action=getLogs&fromBlock=10496585&toBlock=10496585&address=0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn logs_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let address = Address::from_str("0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2")?; - let addresses = [address].into_iter().collect(); - - let logs = blockchain.logs(REMOTE_BLOCK_NUMBER, REMOTE_BLOCK_NUMBER, &addresses, &[])?; - - assert_eq!(logs.len(), 12); - - let expected = [1, 4, 13, 14, 17, 20, 27, 30, 41, 42, 139, 140]; - logs.iter().zip(expected).for_each(|(log, expected_index)| { - assert_eq!(log.log_index, expected_index); - }); - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn logs_remote_and_local() -> anyhow::Result<()> { - let mut blockchain = create_forked_dummy_blockchain(Some(REMOTE_BLOCK_NUMBER)).await; - - insert_dummy_block_with_transaction(blockchain.as_mut())?; - insert_dummy_block_with_transaction(blockchain.as_mut())?; - - let logs = blockchain.logs( - REMOTE_BLOCK_NUMBER, - REMOTE_BLOCK_NUMBER + 1, - &HashSet::default(), - &[], - )?; - - assert_eq!(logs.len(), 207); - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn revert_to_block_local() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let last_block = blockchain.last_block()?; - - let one = create_dummy_block(blockchain.as_ref()); - let one = blockchain.insert_block(one, StateDiff::default())?; - - let two = create_dummy_block(blockchain.as_ref()); - let two = blockchain.insert_block(two, StateDiff::default())?; - - blockchain.revert_to_block(last_block.header().number)?; - - // Last block still exists - assert_eq!(blockchain.last_block()?.hash(), last_block.hash()); - assert_eq!(last_block.header().number, blockchain.last_block_number()); - - assert_eq!( - blockchain.block_by_hash(last_block.hash())?.unwrap().hash(), - last_block.hash() - ); - - // Blocks 1 and 2 are gone - assert!(blockchain - .block_by_number(one.block.header().number)? - .is_none()); - - assert!(blockchain - .block_by_number(two.block.header().number)? - .is_none()); - - assert!(blockchain.block_by_hash(one.block.hash())?.is_none()); - assert!(blockchain.block_by_hash(two.block.hash())?.is_none()); - - // Can insert a new block after reverting - let new = create_dummy_block(blockchain.as_ref()); - let new = blockchain.insert_block(new.clone(), StateDiff::default())?; - - assert_eq!(blockchain.last_block()?.hash(), new.block.hash()); - } - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn revert_to_block_remote() -> anyhow::Result<()> { - use edr_evm::blockchain::ForkedBlockchainError; - - let mut blockchain = create_forked_dummy_blockchain(None).await; - - let last_block_number = blockchain.last_block_number(); - let error = blockchain - .revert_to_block(last_block_number - 1) - .unwrap_err(); - - assert!(matches!( - error, - BlockchainError::Forked(ForkedBlockchainError::CannotDeleteRemote) - )); - - Ok(()) -} - -#[tokio::test] -#[serial] -async fn revert_to_block_invalid_number() { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let next_block_number = blockchain.last_block_number() + 1; - let error = blockchain - .revert_to_block(next_block_number) - .expect_err("Should fail to insert block"); - - assert!(matches!(error, BlockchainError::UnknownBlockNumber)); - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_total_difficulty_by_hash() { - let blockchains: Vec>> = - create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let last_block = blockchain.last_block().unwrap(); - let last_block_header = last_block.header(); - - let one = create_dummy_block_with_difficulty( - blockchain.as_ref(), - last_block_header.number + 1, - 1000, - ); - let one = blockchain.insert_block(one, StateDiff::default()).unwrap(); - - let two = create_dummy_block_with_difficulty( - blockchain.as_ref(), - last_block_header.number + 2, - 2000, - ); - let two = blockchain.insert_block(two, StateDiff::default()).unwrap(); - - let last_block_difficulty = blockchain - .total_difficulty_by_hash(last_block.hash()) - .unwrap() - .expect("total difficulty must exist"); - - assert_eq!( - blockchain - .total_difficulty_by_hash(one.block.hash()) - .unwrap(), - Some(last_block_difficulty + one.block.header().difficulty) - ); - - assert_eq!( - blockchain - .total_difficulty_by_hash(two.block.hash()) - .unwrap(), - Some( - last_block_difficulty - + one.block.header().difficulty - + two.block.header().difficulty - ) - ); - - blockchain - .revert_to_block(one.block.header().number) - .unwrap(); - - // Block 1 has a total difficulty - assert_eq!( - blockchain - .total_difficulty_by_hash(one.block.hash()) - .unwrap(), - Some(last_block_difficulty + one.block.header().difficulty) - ); - - // Block 2 no longer stores a total difficulty - assert!(blockchain - .total_difficulty_by_hash(two.block.hash()) - .unwrap() - .is_none()); - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_total_difficulty_by_hash_invalid_hash() { - let blockchains = create_dummy_blockchains().await; - - for blockchain in blockchains { - let difficulty = blockchain.total_difficulty_by_hash(&B256::ZERO).unwrap(); - - assert!(difficulty.is_none()); - } -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_transaction_hash_local() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let previous_block_number = blockchain.last_block_number(); - - let DummyBlockAndTransaction { - block: mined_block, - transaction_hash, - .. - } = insert_dummy_block_with_transaction(blockchain.as_mut())?; - let block = blockchain.block_by_transaction_hash(&transaction_hash)?; - - assert!(block.is_some()); - - let block = block.unwrap(); - assert!(Arc::ptr_eq(&block, &mined_block)); - - let transactions = block.transactions(); - assert_eq!(transactions.len(), 1); - assert_eq!(*transactions[0].hash(), transaction_hash); - - blockchain.revert_to_block(previous_block_number)?; - - // Once reverted, the block is no longer available - let block = blockchain.block_by_transaction_hash(&transaction_hash)?; - assert!(block.is_none()); - } - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_transaction_hash_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let block = blockchain - .block_by_transaction_hash(&B256::from_str(REMOTE_BLOCK_FIRST_TRANSACTION_HASH)?)?; - - assert!(block.is_some()); - let block = block.unwrap(); - - assert_eq!(block.hash(), &B256::from_str(REMOTE_BLOCK_HASH)?); - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn block_by_transaction_hash_unknown() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for blockchain in blockchains { - let transaction = dummy_eip155_transaction(Address::random(), 0)?; - - let block = blockchain.block_by_transaction_hash(transaction.hash())?; - assert!(block.is_none()); - } - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn receipt_by_transaction_hash_local() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for mut blockchain in blockchains { - let previous_block_number = blockchain.last_block_number(); - - let DummyBlockAndTransaction { - transaction_hash, - transaction_receipt, - .. - } = insert_dummy_block_with_transaction(blockchain.as_mut())?; - let receipt = blockchain.receipt_by_transaction_hash(&transaction_hash)?; - - assert!(receipt.is_some()); - - let receipt = receipt.unwrap(); - assert_eq!( - receipt.transaction_hash, - transaction_receipt.transaction_hash - ); - assert_eq!( - receipt.transaction_index, - transaction_receipt.transaction_index - ); - assert_eq!(receipt.from, transaction_receipt.from); - assert_eq!(receipt.to, transaction_receipt.to); - assert_eq!( - receipt.contract_address, - transaction_receipt.contract_address - ); - assert_eq!(receipt.gas_used, transaction_receipt.gas_used); - assert_eq!( - receipt.effective_gas_price, - transaction_receipt.effective_gas_price - ); - - blockchain.revert_to_block(previous_block_number)?; - - // Once reverted, the receipt is no longer available - let receipt = blockchain.receipt_by_transaction_hash(&transaction_hash)?; - assert!(receipt.is_none()); - } - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn receipt_by_transaction_hash_remote() -> anyhow::Result<()> { - use std::str::FromStr; - - let blockchain = create_forked_dummy_blockchain(None).await; - - let transaction_hash = B256::from_str(REMOTE_BLOCK_FIRST_TRANSACTION_HASH)?; - let receipt = blockchain.receipt_by_transaction_hash(&transaction_hash)?; - - assert!(receipt.is_some()); - - let receipt = receipt.unwrap(); - assert_eq!(receipt.transaction_hash, transaction_hash); - assert_eq!(receipt.block_hash, B256::from_str(REMOTE_BLOCK_HASH)?); - - Ok(()) -} - -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn receipt_by_transaction_hash_unknown() -> anyhow::Result<()> { - let blockchains = create_dummy_blockchains().await; - - for blockchain in blockchains { - let transaction = dummy_eip155_transaction(Address::random(), 0)?; - - let receipt = blockchain.receipt_by_transaction_hash(transaction.hash())?; - assert!(receipt.is_none()); - } - - Ok(()) -} - -#[cfg(feature = "test-remote")] -#[tokio::test(flavor = "multi_thread")] -#[serial] -async fn state_at_block_number_historic() { - use edr_evm::state::IrregularState; - - let blockchain = create_forked_dummy_blockchain(None).await; - let irregular_state = IrregularState::default(); - - let genesis_block = blockchain - .block_by_number(0) - .expect("Failed to retrieve block") - .expect("Block should exist"); - - let state = blockchain - .state_at_block_number(0, irregular_state.state_overrides()) - .unwrap(); - assert_eq!( - state.state_root().expect("State root should be returned"), - genesis_block.header().state_root - ); -} diff --git a/crates/edr_evm/tests/issue_364.rs b/crates/edr_evm/tests/issue_364.rs deleted file mode 100644 index 2842208748..0000000000 --- a/crates/edr_evm/tests/issue_364.rs +++ /dev/null @@ -1,10 +0,0 @@ -use edr_eth::Address; -use edr_evm::precompile::{self, Precompiles}; - -#[test] -fn kzg_point_evaluation_present_in_cancun() { - const KZG_POINT_EVALUATION_ADDRESS: Address = precompile::u64_to_address(0x0A); - - let precompiles = Precompiles::cancun(); - assert!(precompiles.contains(&KZG_POINT_EVALUATION_ADDRESS)); -} diff --git a/crates/edr_evm/tests/issue_4974.rs b/crates/edr_evm/tests/issue_4974.rs deleted file mode 100644 index 5d14dd6ea9..0000000000 --- a/crates/edr_evm/tests/issue_4974.rs +++ /dev/null @@ -1,34 +0,0 @@ -#![cfg(feature = "test-remote")] - -use std::sync::Arc; - -use edr_defaults::CACHE_DIR; -use edr_eth::{remote::RpcClient, HashMap, SpecId}; -use edr_evm::{blockchain::ForkedBlockchain, state::IrregularState, RandomHashGenerator}; -use parking_lot::Mutex; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_4974() -> anyhow::Result<()> { - const FORK_BLOCK_NUMBER: u64 = 12_508_443; - - let url = "https://coston-api.flare.network/ext/bc/C/rpc"; - let rpc_client = RpcClient::new(url, CACHE_DIR.into(), None)?; - let mut irregular_state = IrregularState::default(); - let state_root_generator = Arc::new(Mutex::new(RandomHashGenerator::with_seed("test"))); - let hardfork_activation_overrides = HashMap::new(); - - let _blockchain = ForkedBlockchain::new( - runtime::Handle::current(), - None, - SpecId::LATEST, - Arc::new(rpc_client), - Some(FORK_BLOCK_NUMBER), - &mut irregular_state, - state_root_generator, - &hardfork_activation_overrides, - ) - .await?; - - Ok(()) -} diff --git a/crates/edr_evm/tests/issues.rs b/crates/edr_evm/tests/issues.rs deleted file mode 100644 index 2b6b737cab..0000000000 --- a/crates/edr_evm/tests/issues.rs +++ /dev/null @@ -1,47 +0,0 @@ -#![cfg(feature = "test-remote")] - -use std::{str::FromStr, sync::Arc}; - -use edr_defaults::CACHE_DIR; -use edr_eth::{remote::RpcClient, Address, U256}; -use edr_evm::{ - state::{AccountModifierFn, ForkState, StateDebug}, - RandomHashGenerator, -}; -use edr_test_utils::env::get_alchemy_url; -use parking_lot::Mutex; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_4984() -> anyhow::Result<()> { - const TEST_CONTRACT_ADDRESS: &str = "0x530B7F66914c1E345DF1683eae4536fc7b80660f"; - const DEPLOYMENT_BLOCK_NUMBER: u64 = 5464258; - - let contract_address = Address::from_str(TEST_CONTRACT_ADDRESS).unwrap(); - - let rpc_client = RpcClient::new( - &get_alchemy_url().replace("mainnet", "sepolia"), - CACHE_DIR.into(), - None, - )?; - - let mut state_root_generator = RandomHashGenerator::with_seed("test"); - let state_root = state_root_generator.generate_next(); - - let mut state = ForkState::new( - runtime::Handle::current(), - Arc::new(rpc_client), - Arc::new(Mutex::new(state_root_generator)), - DEPLOYMENT_BLOCK_NUMBER, - state_root, - ); - - state.modify_account( - contract_address, - AccountModifierFn::new(Box::new(|balance, _nonce, _code| { - *balance += U256::from(1); - })), - )?; - - Ok(()) -} diff --git a/crates/edr_evm/tests/mem_pool.rs b/crates/edr_evm/tests/mem_pool.rs deleted file mode 100644 index 35d7b67c44..0000000000 --- a/crates/edr_evm/tests/mem_pool.rs +++ /dev/null @@ -1,808 +0,0 @@ -#![cfg(feature = "test-utils")] - -use std::num::NonZeroU64; - -use edr_eth::{AccountInfo, Address, U256}; -use edr_evm::{ - state::{AccountModifierFn, StateDebug}, - test_utils::{ - dummy_eip1559_transaction, dummy_eip155_transaction, dummy_eip155_transaction_with_limit, - dummy_eip155_transaction_with_price, dummy_eip155_transaction_with_price_limit_and_value, - MemPoolTestFixture, - }, - MemPoolAddTransactionError, OrderedTransaction, -}; - -#[test] -fn has_future_transactions() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - assert!(!fixture.mem_pool.has_future_transactions()); - - let transaction = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction)?; - assert!(fixture.mem_pool.has_future_transactions()); - assert!(!fixture.mem_pool.has_pending_transactions()); - - Ok(()) -} - -#[test] -fn has_pending_transactions() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - assert!(!fixture.mem_pool.has_pending_transactions()); - - let transaction = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction)?; - assert!(fixture.mem_pool.has_pending_transactions()); - assert!(!fixture.mem_pool.has_future_transactions()); - - Ok(()) -} - -#[test] -fn single_sender_adds_transaction_nonce_equal() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 1); - assert_eq!(*pending_transactions[0].pending(), transaction); - - Ok(()) -} - -#[test] -fn single_sender_adds_transaction_nonce_too_high() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 3)?; - fixture.add_transaction(transaction.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 0); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - assert_eq!(*future_transactions[0].pending(), transaction); - - Ok(()) -} - -#[test] -fn single_sender_adds_multiple_transactions_nonce_equal() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction2.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 2); - assert_eq!(*pending_transactions[0].pending(), transaction1); - assert_eq!(*pending_transactions[1].pending(), transaction2); - - Ok(()) -} - -#[test] -fn single_sender_adds_multiple_transactions_moves_future_to_pending() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 3)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction3.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 2); - assert_eq!(*pending_transactions[0].pending(), transaction3); - assert_eq!(*pending_transactions[1].pending(), transaction1); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - assert_eq!(*future_transactions[0].pending(), transaction2); - - Ok(()) -} - -#[test] -fn replace_pending_transaction() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - balance: U256::from(10_000_000u64), - ..AccountInfo::default() - }, - )]); - - let transaction1 = dummy_eip155_transaction_with_price(sender, 0, U256::from(5))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender, 0, U256::from(10))?; - fixture.add_transaction(transaction2.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 1); - assert_eq!(*pending_transactions[0].pending(), transaction2); - - Ok(()) -} - -#[test] -fn replace_future_transaction() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - balance: U256::from(10_000_000u64), - ..AccountInfo::default() - }, - )]); - - let transaction1 = dummy_eip155_transaction_with_price(sender, 1, U256::from(5))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender, 1, U256::from(10))?; - fixture.add_transaction(transaction2.clone())?; - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - assert_eq!(*future_transactions[0].pending(), transaction2); - - Ok(()) -} - -macro_rules! impl_test_replace_transaction_gas_price_too_low { - ($($name:ident => $nonce:expr,)+) => { - $( - paste::item! { - #[test] - fn []() -> anyhow::Result<()> { - let sender = Address::random(); - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - balance: U256::from(10_000_000u64), - ..AccountInfo::default() - }, - )]); - - let transaction1 = dummy_eip155_transaction_with_price(sender, $nonce, U256::from(20))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender, $nonce, U256::from(21))?; - let result = fixture.add_transaction(transaction2); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::ReplacementMaxFeePerGasTooLow { - min_new_max_fee_per_gas, - transaction_nonce: $nonce, - }) if min_new_max_fee_per_gas == U256::from(22) - )); - - assert_eq!( - result.unwrap_err().to_string(), - format!( - "Replacement transaction underpriced. A gasPrice/maxFeePerGas of at least 22 is necessary to replace the existing transaction with nonce {}.", - $nonce, - ) - ); - - let transaction3 = dummy_eip1559_transaction(sender, $nonce, U256::from(21), U256::from(21))?; - let result = fixture.add_transaction(transaction3); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::ReplacementMaxFeePerGasTooLow { - min_new_max_fee_per_gas, - transaction_nonce: $nonce, - }) if min_new_max_fee_per_gas == U256::from(22) - )); - - assert_eq!(result.unwrap_err().to_string(), format!("Replacement transaction underpriced. A gasPrice/maxFeePerGas of at least 22 is necessary to replace the existing transaction with nonce {}.", $nonce)); - - let transaction4 = dummy_eip1559_transaction(sender, $nonce, U256::from(22), U256::from(21))?; - let result = fixture.add_transaction(transaction4); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::ReplacementMaxPriorityFeePerGasTooLow { - min_new_max_priority_fee_per_gas, - transaction_nonce: $nonce, - }) if min_new_max_priority_fee_per_gas == U256::from(22) - )); - - assert_eq!(result.unwrap_err().to_string(), format!("Replacement transaction underpriced. A gasPrice/maxPriorityFeePerGas of at least 22 is necessary to replace the existing transaction with nonce {}.", $nonce)); - - let $name = fixture.mem_pool.$name().collect::>(); - assert_eq!($name.len(), 1); - assert_eq!(*$name[0].pending(), transaction1); - - - Ok(()) - } - } - )+ - }; -} - -impl_test_replace_transaction_gas_price_too_low! { - pending_transactions => 0u64, - future_transactions => 1u64, -} - -#[test] -fn multiple_senders_add_transactions() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, AccountInfo::default()), - (sender2, AccountInfo::default()), - ]); - - let transaction1 = dummy_eip155_transaction(sender1, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender2, 0)?; - fixture.add_transaction(transaction2.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 2); - assert_eq!(*pending_transactions[0].pending(), transaction1); - assert_eq!(*pending_transactions[1].pending(), transaction2); - - Ok(()) -} - -#[test] -fn multiple_senders_separate_future_queues() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[ - (sender1, AccountInfo::default()), - (sender2, AccountInfo::default()), - ]); - - let transaction1 = dummy_eip155_transaction(sender1, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender2, 0)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender1, 2)?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction(sender2, 1)?; - fixture.add_transaction(transaction4.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 3); - assert_eq!(*pending_transactions[0].pending(), transaction1); - assert_eq!(*pending_transactions[1].pending(), transaction2); - assert_eq!(*pending_transactions[2].pending(), transaction4); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - assert_eq!(*future_transactions[0].pending(), transaction3); - - Ok(()) -} - -#[test] -fn add_transaction_exceeds_block_limit() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let exceeds_block_limit = fixture.mem_pool.block_gas_limit().get() + 1; - let transaction = dummy_eip155_transaction_with_limit(sender, 5, exceeds_block_limit)?; - let result = fixture.add_transaction(transaction); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::ExceedsBlockGasLimit { block_gas_limit, transaction_gas_limit }) - if block_gas_limit == fixture.mem_pool.block_gas_limit() && transaction_gas_limit == exceeds_block_limit - )); - - Ok(()) -} - -#[test] -fn add_transaction_nonce_too_low() -> anyhow::Result<()> { - const SENDER_NONCE: u64 = 1; - const TRANSACTION_NONCE: u64 = 0; - - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - nonce: SENDER_NONCE, - ..AccountInfo::default() - }, - )]); - - let transaction = dummy_eip155_transaction(sender, TRANSACTION_NONCE)?; - let result = fixture.add_transaction(transaction.clone()); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::NonceTooLow { - transaction_nonce: TRANSACTION_NONCE, - sender_nonce: SENDER_NONCE - }) - )); - - Ok(()) -} - -#[test] -fn add_transaction_already_exists() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction.clone())?; - - let result = fixture.add_transaction(transaction.clone()); - assert!(matches!( - result, - Err(MemPoolAddTransactionError::TransactionAlreadyExists { - transaction_hash, - }) if transaction_hash == *transaction.hash() - )); - - Ok(()) -} - -#[test] -fn add_transaction_insufficient_funds() -> anyhow::Result<()> { - const GAS_LIMIT: u64 = 21_000; - const GAS_PRICE: u64 = 900; - const VALUE: u64 = 5; - - const INITIAL_COST: u64 = GAS_LIMIT * GAS_PRICE + VALUE; - const BALANCE: u64 = INITIAL_COST - 1; - - let sender = Address::random(); - - let balance = U256::from(BALANCE); - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - balance, - ..AccountInfo::default() - }, - )]); - - let transaction = dummy_eip155_transaction_with_price_limit_and_value( - sender, - 0, - U256::from(GAS_PRICE), - GAS_LIMIT, - U256::from(VALUE), - )?; - - let result = fixture.add_transaction(transaction); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::InsufficientFunds { max_upfront_cost, sender_balance }) if max_upfront_cost == U256::from(INITIAL_COST) && sender_balance == balance - )); - - assert!(result - .unwrap_err() - .to_string() - .contains("Sender doesn't have enough funds to send tx")); - - Ok(()) -} - -#[test] -fn add_transaction_ordering() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 4)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender, 2)?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction4.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 3); - assert_eq!(*pending_transactions[0].pending(), transaction4); - assert_eq!(pending_transactions[0].order_id(), 3); - assert_eq!(*pending_transactions[1].pending(), transaction1); - assert_eq!(pending_transactions[1].order_id(), 0); - assert_eq!(*pending_transactions[2].pending(), transaction3); - assert_eq!(pending_transactions[2].order_id(), 2); - - Ok(()) -} - -#[test] -fn transaction_by_hash_pending() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction.clone())?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert_eq!( - transaction_by_hash.map(OrderedTransaction::pending), - Some(&transaction) - ); - - Ok(()) -} - -#[test] -fn transaction_by_hash_future() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction.clone())?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert_eq!( - transaction_by_hash.map(OrderedTransaction::pending), - Some(&transaction) - ); - - Ok(()) -} - -#[test] -fn transaction_by_hash_remove_pending_after_update() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction.clone())?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert_eq!( - transaction_by_hash.map(OrderedTransaction::pending), - Some(&transaction) - ); - - fixture.state.modify_account( - sender, - AccountModifierFn::new(Box::new(|_balance, nonce, _code| *nonce += 1)), - )?; - - fixture.update()?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert!(transaction_by_hash.is_none()); - - Ok(()) -} - -#[test] -fn transaction_by_hash_remove_future_after_update() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction.clone())?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert_eq!( - transaction_by_hash.map(OrderedTransaction::pending), - Some(&transaction) - ); - - fixture.state.modify_account( - sender, - AccountModifierFn::new(Box::new(|_balance, nonce, _code| *nonce = 2)), - )?; - - fixture.update()?; - - let transaction_by_hash = fixture.mem_pool.transaction_by_hash(transaction.hash()); - assert!(transaction_by_hash.is_none()); - - Ok(()) -} - -#[test] -fn last_pending_nonce_with_pending() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let next_pending_nonce = fixture.mem_pool.last_pending_nonce(&sender); - assert_eq!(next_pending_nonce, Some(0)); - - Ok(()) -} - -#[test] -fn last_pending_nonce_with_future() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 2)?; - fixture.add_transaction(transaction2.clone())?; - - let next_pending_nonce = fixture.mem_pool.last_pending_nonce(&sender); - assert_eq!(next_pending_nonce, Some(0)); - - Ok(()) -} - -#[test] -fn last_pending_nonce_all_future_to_pending_queue() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 2)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction3.clone())?; - - let next_pending_nonce = fixture.mem_pool.last_pending_nonce(&sender); - assert_eq!(next_pending_nonce, Some(2)); - - Ok(()) -} - -#[test] -fn last_pending_nonce_some_future_to_pending_queue() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender, 2)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender, 5)?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction(sender, 1)?; - fixture.add_transaction(transaction4.clone())?; - - let next_pending_nonce = fixture.mem_pool.last_pending_nonce(&sender); - assert_eq!(next_pending_nonce, Some(2)); - - Ok(()) -} - -#[test] -fn set_block_gas_limit() -> anyhow::Result<()> { - // SAFETY: literal is non-zero - const NEW_GAS_LIMIT: NonZeroU64 = unsafe { NonZeroU64::new_unchecked(15_000_000) }; - - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - assert_eq!(fixture.mem_pool.block_gas_limit().get(), 10_000_000); - - fixture.set_block_gas_limit(NEW_GAS_LIMIT)?; - assert_eq!(fixture.mem_pool.block_gas_limit(), NEW_GAS_LIMIT); - - let transaction = dummy_eip155_transaction_with_limit(sender, 0, NEW_GAS_LIMIT.get() + 1)?; - let result = fixture.add_transaction(transaction); - - assert!(matches!( - result, - Err(MemPoolAddTransactionError::ExceedsBlockGasLimit { block_gas_limit, transaction_gas_limit }) - if block_gas_limit == NEW_GAS_LIMIT && transaction_gas_limit == NEW_GAS_LIMIT.get() + 1 - )); - - Ok(()) -} - -#[test] -fn set_block_gas_limit_removes_invalid_transactions() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction_with_limit(sender, 0, 9_500_000)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_limit(sender, 2, 9_500_000)?; - fixture.add_transaction(transaction2.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 1); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - - // SAFETY: literal is non-zero - fixture.set_block_gas_limit(unsafe { NonZeroU64::new_unchecked(5_000_000) })?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 0); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 0); - - Ok(()) -} - -#[test] -fn set_block_gas_limit_moves_future_to_pending_queue() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction_with_limit(sender, 0, 100_000)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_limit(sender, 1, 200_000)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction_with_limit(sender, 2, 100_000)?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction_with_limit(sender, 4, 100_000)?; - fixture.add_transaction(transaction4.clone())?; - - let transaction5 = dummy_eip155_transaction_with_limit(sender, 5, 100_000)?; - fixture.add_transaction(transaction5.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 3); - assert_eq!(*pending_transactions[0].pending(), transaction1); - assert_eq!(*pending_transactions[1].pending(), transaction2); - assert_eq!(*pending_transactions[2].pending(), transaction3); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 2); - assert_eq!(*future_transactions[0].pending(), transaction4); - assert_eq!(*future_transactions[1].pending(), transaction5); - - // SAFETY: literal is non-zero - fixture.set_block_gas_limit(unsafe { NonZeroU64::new_unchecked(150_000) })?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 1); - assert_eq!(*pending_transactions[0].pending(), transaction1); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 3); - assert_eq!(*future_transactions[0].pending(), transaction4); - assert_eq!(*future_transactions[1].pending(), transaction5); - assert_eq!(*future_transactions[2].pending(), transaction3); - - Ok(()) -} - -#[test] -fn update_removes_transactions_with_invalid_nonce() -> anyhow::Result<()> { - let sender1 = Address::random(); - let sender2 = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[(sender1, AccountInfo::default())]); - - let transaction1 = dummy_eip155_transaction(sender1, 0)?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction(sender1, 1)?; - fixture.add_transaction(transaction2.clone())?; - - let transaction3 = dummy_eip155_transaction(sender2, 0)?; - fixture.add_transaction(transaction3.clone())?; - - let transaction4 = dummy_eip155_transaction(sender2, 1)?; - fixture.add_transaction(transaction4.clone())?; - - fixture.state.modify_account( - sender1, - AccountModifierFn::new(Box::new(|_balance, nonce, _code| *nonce = 1)), - )?; - - fixture.state.modify_account( - sender2, - AccountModifierFn::new(Box::new(|_balance, nonce, _code| *nonce = 1)), - )?; - - fixture.update()?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 2); - assert_eq!(*pending_transactions[0].pending(), transaction2); - assert_eq!(*pending_transactions[1].pending(), transaction4); - - Ok(()) -} - -#[test] -fn update_removes_transactions_with_insufficient_balance() -> anyhow::Result<()> { - let sender = Address::random(); - - let mut fixture = MemPoolTestFixture::with_accounts(&[( - sender, - AccountInfo { - balance: U256::from(100_000_000u64), - ..AccountInfo::default() - }, - )]); - - let transaction1 = dummy_eip155_transaction_with_price(sender, 0, U256::from(900))?; - fixture.add_transaction(transaction1.clone())?; - - let transaction2 = dummy_eip155_transaction_with_price(sender, 2, U256::from(900))?; - fixture.add_transaction(transaction2.clone())?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 1); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 1); - - fixture.state.modify_account( - sender, - AccountModifierFn::new(Box::new(|balance, _nonce, _code| *balance = U256::ZERO)), - )?; - - fixture.update()?; - - let pending_transactions = fixture.mem_pool.pending_transactions().collect::>(); - assert_eq!(pending_transactions.len(), 0); - - let future_transactions = fixture.mem_pool.future_transactions().collect::>(); - assert_eq!(future_transactions.len(), 0); - - Ok(()) -} diff --git a/crates/edr_evm/tests/optimism.rs b/crates/edr_evm/tests/optimism.rs deleted file mode 100644 index e77a00f695..0000000000 --- a/crates/edr_evm/tests/optimism.rs +++ /dev/null @@ -1,45 +0,0 @@ -#![cfg(feature = "test-remote")] - -use std::sync::Arc; - -use edr_defaults::CACHE_DIR; -use edr_eth::{remote::RpcClient, HashMap, SpecId}; -use edr_evm::{ - blockchain::{Blockchain, ForkedBlockchain}, - state::IrregularState, - RandomHashGenerator, -}; -use edr_test_utils::env::get_alchemy_url; -use parking_lot::Mutex; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn unknown_transaction_types() -> anyhow::Result<()> { - const BLOCK_NUMBER_WITH_TRANSACTIONS: u64 = 117_156_000; - - let url = get_alchemy_url().replace("eth-", "opt-"); - let rpc_client = RpcClient::new(&url, CACHE_DIR.into(), None)?; - let mut irregular_state = IrregularState::default(); - let state_root_generator = Arc::new(Mutex::new(RandomHashGenerator::with_seed("test"))); - let hardfork_activation_overrides = HashMap::new(); - - let blockchain = ForkedBlockchain::new( - runtime::Handle::current(), - None, - SpecId::LATEST, - Arc::new(rpc_client), - None, - &mut irregular_state, - state_root_generator, - &hardfork_activation_overrides, - ) - .await?; - - let block_with_transactions = blockchain - .block_by_number(BLOCK_NUMBER_WITH_TRANSACTIONS)? - .expect("Block must exist"); - - let _receipts = block_with_transactions.transaction_receipts()?; - - Ok(()) -} diff --git a/crates/edr_evm/tests/transaction.rs b/crates/edr_evm/tests/transaction.rs deleted file mode 100644 index b6f2923441..0000000000 --- a/crates/edr_evm/tests/transaction.rs +++ /dev/null @@ -1,50 +0,0 @@ -#[cfg(feature = "test-remote")] -mod alchemy { - macro_rules! impl_test_transaction_remote_hash { - ($( - $name:ident => $block_number:literal, - )+) => { - $( - paste::item! { - #[tokio::test] - async fn []() { - use edr_eth::{ - remote::{RpcClient, PreEip1898BlockSpec}, - B256 - }; - use edr_evm::ExecutableTransaction; - use edr_test_utils::env::get_alchemy_url; - - let client = RpcClient::new(&get_alchemy_url(), edr_defaults::CACHE_DIR.into(), None).expect("url ok"); - - let block = client - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::Number($block_number)) - .await - .expect("Should succeed"); - - let transaction_hashes: Vec = block - .transactions - .iter() - .map(|transaction| transaction.hash) - .collect(); - - let transactions = - block.transactions.into_iter().map(ExecutableTransaction::try_from).collect::, _>>() - .expect("Conversion must succeed, as we're not retrieving a pending block"); - - for (index, transaction) in transactions.iter().enumerate() { - assert_eq!(transaction_hashes[index], *transaction.hash()); - } - } - } - )+ - }; - } - - impl_test_transaction_remote_hash! { - legacy => 1_500_000u64, - eip155 => 2_675_000u64, - eip2930 => 12_244_000u64, - eip1559 => 12_965_000u64, - } -} diff --git a/crates/edr_napi/.cargo/config.toml b/crates/edr_napi/.cargo/config.toml deleted file mode 100644 index 95629ecffd..0000000000 --- a/crates/edr_napi/.cargo/config.toml +++ /dev/null @@ -1,8 +0,0 @@ -# The monorepo Cargo workspace builds to `$REPO_ROOT/target` by default. -# However, it uses different settings than the one NAPI sets during the build for this crate. -# Let's use a separate target-dir "$THIS_CRATE/target" to avoid invalidating the workspace-level cache. -target-dir = "./target" - -[target.aarch64-unknown-linux-musl] -linker = "aarch64-linux-musl-gcc" -rustflags = ["-C", "target-feature=-crt-static"] diff --git a/crates/edr_napi/.gitignore b/crates/edr_napi/.gitignore deleted file mode 100644 index 033afc8986..0000000000 --- a/crates/edr_napi/.gitignore +++ /dev/null @@ -1,98 +0,0 @@ -# node modules -/node_modules - -# vuepress -/docs/.vuepress/dist/ - -# Tests compilation output -/build-test/ - -# Code coverage artifacts -/coverage -/.nyc_output - -# TSC prod output. This has to be in sync with the to directories in ./src, and with pnpm script clean - -/*.node -/builtin-tasks -/common -/internal -/types -/utils - -test/internal/hardhat-network/provider/.hardhat_node_test_cache/ -!.eslintrc.js - -# Below is Github's node gitignore template, -# ignoring the node_modules part, as it'd ignore every node_modules, and we have some for testing - -# Logs -logs -*.log - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -#node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'pnpm pack' -*.tgz - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# next.js build output -.next - -# nuxt.js build output -.nuxt - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ diff --git a/crates/edr_napi/.mocharc.json b/crates/edr_napi/.mocharc.json deleted file mode 100644 index 2a9d895c1b..0000000000 --- a/crates/edr_napi/.mocharc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "require": "ts-node/register/transpile-only", - "timeout": 25000 -} diff --git a/crates/edr_napi/CHANGELOG.md b/crates/edr_napi/CHANGELOG.md deleted file mode 100644 index 4f328c2f74..0000000000 --- a/crates/edr_napi/CHANGELOG.md +++ /dev/null @@ -1,54 +0,0 @@ -# @nomicfoundation/edr - -## 0.3.5 - -### Patch Changes - -- e5f048e: Removed i686 & ARM builds of EDR -- 3d7f13e: Fixed a bug in `hardhat_metadata` where the local chain id was being used in the fork metadata -- bbc3a6d: Fixed missing KZG point evaluation precompile for Cancun hardfork -- 219f457: Fixed incorrect derivation of hardfork when executing a call in fork mode for the block immediately preceding the fork - -## 0.3.4 - -### Patch Changes - -- 71287a8: Removed API keys from RPC error messages -- bdf3971: Fixed 429 HTTP error by using smaller batches when querying genesis account info -- 7c23825: Fixed 429 HTTP error by increasing rate limiting retries -- 92693fb: Fixed calculation of used blob gas for post-Cancun blocks -- 62e28ad: Fixed eth_getLogs RPC request for pre-Merge hardforks - -## 0.3.3 - -### Patch Changes - -- 60b2a62: Fixed missing support for hex string as salt in `eth_signTypedData_v4` -- 3ac838b: Fixed detection of Cancun blocks on mainnet -- 7d0f981: Fixed node.js runtime freezing on shutdown - -## 0.3.2 - -### Patch Changes - -- b13f58a: Fixed failure when retrieving remote code during state modifications (#5000) -- 19eeeb9: Simplified internal set_account_storage_slot API (#5001) - -## 0.3.1 - -### Patch Changes - -- 591b7c5: Fixed failing RPC requests for certain providers due to missing content-type header (#4992) - -## 0.3.0 - -### Minor Changes - -- ac155d6: Bump Rust to v1.76 - -### Patch Changes - -- 87da82b: Fixed a problem when forking networks with non-standard transaction types (#4963) -- 5fe1728: Fixed a bug in `hardhat_setStorageAt` that occured when the storage of a remote contract was modified during forking (#4970) -- 0ec305f: Fixed a bug in `hardhat_dropTransaction` where empty queues persisted and caused panics -- a5071e5: Fixed a bug in `eth_estimateGas` where a call would fail because the nonce was being checked diff --git a/crates/edr_napi/Cargo.toml b/crates/edr_napi/Cargo.toml deleted file mode 100644 index daee3155e6..0000000000 --- a/crates/edr_napi/Cargo.toml +++ /dev/null @@ -1,54 +0,0 @@ -[package] -name = "edr_napi" -version = "0.3.5" -edition = "2021" - -[lib] -crate-type = ["cdylib"] - -[dependencies] -ansi_term = { version = "0.12.1", default-features = false } -crossbeam-channel = { version = "0.5.6", default-features = false } -itertools = { version = "0.12.0", default-features = false } -k256 = { version = "0.13.1", default-features = false, features = ["arithmetic", "ecdsa", "pkcs8", "precomputed-tables", "std"] } -log = { version = "0.4.20", default-features = false } -# when napi is pinned, be sure to pin napi-derive to the same version -# The `async` feature ensures that a tokio runtime is available -napi = { version = "2.16.0", default-features = false, features = ["async", "error_anyhow", "napi8", "serde-json"] } -napi-derive = "2.16.0" -edr_defaults = { version = "0.3.5", path = "../edr_defaults" } -edr_evm = { version = "0.3.5", path = "../edr_evm", features = ["tracing"]} -edr_eth = { version = "0.3.5", path = "../edr_eth" } -edr_provider = { version = "0.3.5", path = "../edr_provider" } -serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] } -thiserror = { version = "1.0.37", default-features = false } -tracing = { version = "0.1.37", default-features = false, features = ["std"] } -tracing-flame = { version = "0.2.0", default-features = false, features = ["smallvec"] } -tracing-subscriber = { version = "0.3.18", default-features = false, features = ["ansi", "env-filter", "fmt", "parking_lot", "smallvec", "std"] } -parking_lot = { version = "0.12.1", default-features = false } -lazy_static = { version = "1.4.0", features = [] } -rand = { version = "0.8.4", optional = true } -serde = { version = "1.0.189", features = ["derive"] } -mimalloc = { version = "0.1.39", default-features = false, features = ["local_dynamic_tls"] } - -[target.x86_64-unknown-linux-gnu.dependencies] -openssl-sys = { version = "0.9.93", features = ["vendored"] } - -[target.x86_64-unknown-linux-musl.dependencies] -openssl-sys = { version = "0.9.93", features = ["vendored"] } - -[target.aarch64-unknown-linux-gnu.dependencies] -openssl-sys = { version = "0.9.93", features = ["vendored"] } - -[target.aarch64-unknown-linux-musl.dependencies] -openssl-sys = { version = "0.9.93", features = ["vendored"] } - -[build-dependencies] -napi-build = "2.0.1" - -[features] -tracing = ["edr_evm/tracing", "edr_provider/tracing"] -scenarios = ["rand"] - -[profile.release] -lto = true diff --git a/crates/edr_napi/README.md b/crates/edr_napi/README.md deleted file mode 100644 index 8700ba263b..0000000000 --- a/crates/edr_napi/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# EDR - Ethereum Development Runtime - -**EDR**, or **Ethereum Development Runtime** in full, is a library for creating developer tooling on top of the Ethereum Virtual Machine (EVM), such as an EVM debugger or state inspector. -EDR provides a performant API, written in Rust, with bindings for the Node API (TypeScript). - -At the moment, EDR is only meant to be consumed from [Hardhat](https://hardhat.org/), but we plan to have a stable API that can be used from any other tooling. If you are interested in this, please reach out. diff --git a/crates/edr_napi/build.rs b/crates/edr_napi/build.rs deleted file mode 100644 index 0f1b01002b..0000000000 --- a/crates/edr_napi/build.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - napi_build::setup(); -} diff --git a/crates/edr_napi/index.d.ts b/crates/edr_napi/index.d.ts deleted file mode 100644 index b3ac1df5c1..0000000000 --- a/crates/edr_napi/index.d.ts +++ /dev/null @@ -1,401 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ - -/* auto-generated by NAPI-RS */ - -/** An account that needs to be created during the genesis block. */ -export interface GenesisAccount { - /** Account secret key */ - secretKey: string - /** Account balance */ - balance: bigint -} -export interface BlockOptions { - /** The parent block's hash */ - parentHash?: Buffer - /** The block's beneficiary */ - beneficiary?: Buffer - /** The state's root hash */ - stateRoot?: Buffer - /** The block's difficulty */ - difficulty?: bigint - /** The block's number */ - number?: bigint - /** The block's gas limit */ - gasLimit?: bigint - /** The block's timestamp */ - timestamp?: bigint - /** The block's extra data */ - extraData?: Buffer - /** The block's mix hash (or prevrandao) */ - mixHash?: Buffer - /** The block's nonce */ - nonce?: Buffer - /** The block's base gas fee */ - baseFee?: bigint - /** The block's withdrawals */ - withdrawals?: Array - /** Blob gas was added by EIP-4844 and is ignored in older headers. */ - blobGas?: BlobGas - /** - * The hash tree root of the parent beacon block for the given execution - * block (EIP-4788). - */ - parentBeaconBlockRoot?: Buffer -} -/** Information about the blob gas used in a block. */ -export interface BlobGas { - /** - * The total amount of blob gas consumed by the transactions within the - * block. - */ - gasUsed: bigint - /** - * The running total of blob gas consumed in excess of the target, prior to - * the block. Blocks with above-target blob gas consumption increase this - * value, blocks with below-target blob gas consumption decrease it - * (bounded at 0). - */ - excessGas: bigint -} -/** The result of executing a call override. */ -export interface CallOverrideResult { - result: Buffer - shouldRevert: boolean -} -/** Identifier for the Ethereum spec. */ -export const enum SpecId { - /** Frontier */ - Frontier = 0, - /** Frontier Thawing */ - FrontierThawing = 1, - /** Homestead */ - Homestead = 2, - /** DAO Fork */ - DaoFork = 3, - /** Tangerine */ - Tangerine = 4, - /** Spurious Dragon */ - SpuriousDragon = 5, - /** Byzantium */ - Byzantium = 6, - /** Constantinople */ - Constantinople = 7, - /** Petersburg */ - Petersburg = 8, - /** Istanbul */ - Istanbul = 9, - /** Muir Glacier */ - MuirGlacier = 10, - /** Berlin */ - Berlin = 11, - /** London */ - London = 12, - /** Arrow Glacier */ - ArrowGlacier = 13, - /** Gray Glacier */ - GrayGlacier = 14, - /** Merge */ - Merge = 15, - /** Shanghai */ - Shanghai = 16, - /** Cancun */ - Cancun = 17, - /** Latest */ - Latest = 18 -} -export interface DebugTraceResult { - pass: boolean - gasUsed: bigint - output?: Buffer - structLogs: Array -} -export interface DebugTraceLogItem { - /** Program Counter */ - pc: bigint - op: number - /** Gas left before executing this operation as hex number. */ - gas: string - /** Gas cost of this operation as hex number. */ - gasCost: string - /** Array of all values (hex numbers) on the stack */ - stack?: Array - /** Depth of the call stack */ - depth: bigint - /** Size of memory array */ - memSize: bigint - /** Name of the operation */ - opName: string - /** Description of an error as a hex string. */ - error?: string - /** Array of all allocated values as hex strings. */ - memory?: Array - /** Map of all stored values with keys and values encoded as hex strings. */ - storage?: Record -} -/** Ethereum execution log. */ -export interface ExecutionLog { - address: Buffer - topics: Array - data: Buffer -} -export interface ContractAndFunctionName { - /** The contract name. */ - contractName: string - /** The function name. Only present for calls. */ - functionName?: string -} -export interface LoggerConfig { - /** Whether to enable the logger. */ - enable: boolean - decodeConsoleLogInputsCallback: (inputs: Buffer[]) => string[] - getContractAndFunctionNameCallback: (code: Buffer, calldata?: Buffer) => ContractAndFunctionName - printLineCallback: (message: string, replace: boolean) => void -} -/** Configuration for a chain */ -export interface ChainConfig { - /** The chain ID */ - chainId: bigint - /** The chain's supported hardforks */ - hardforks: Array -} -/** Configuration for forking a blockchain */ -export interface ForkConfig { - /** The URL of the JSON-RPC endpoint to fork from */ - jsonRpcUrl: string - /** - * The block number to fork from. If not provided, the latest safe block is - * used. - */ - blockNumber?: bigint - /** The HTTP headers to use when making requests to the JSON-RPC endpoint */ - httpHeaders?: Array -} -export interface HttpHeader { - name: string - value: string -} -/** Configuration for a hardfork activation */ -export interface HardforkActivation { - /** The block number at which the hardfork is activated */ - blockNumber: bigint - /** The activated hardfork */ - specId: SpecId -} -/**The type of ordering to use when selecting blocks to mine. */ -export const enum MineOrdering { - /**Insertion order */ - Fifo = 'Fifo', - /**Effective miner fee */ - Priority = 'Priority' -} -/** Configuration for the provider's mempool. */ -export interface MemPoolConfig { - order: MineOrdering -} -export interface IntervalRange { - min: bigint - max: bigint -} -/** Configuration for the provider's miner. */ -export interface MiningConfig { - autoMine: boolean - interval?: bigint | IntervalRange - memPool: MemPoolConfig -} -/** Configuration for a provider */ -export interface ProviderConfig { - /** Whether to allow blocks with the same timestamp */ - allowBlocksWithSameTimestamp: boolean - /** Whether to allow unlimited contract size */ - allowUnlimitedContractSize: boolean - /** Whether to return an `Err` when `eth_call` fails */ - bailOnCallFailure: boolean - /** Whether to return an `Err` when a `eth_sendTransaction` fails */ - bailOnTransactionFailure: boolean - /** The gas limit of each block */ - blockGasLimit: bigint - /** The directory to cache remote JSON-RPC responses */ - cacheDir?: string - /** The chain ID of the blockchain */ - chainId: bigint - /** The configuration for chains */ - chains: Array - /** The address of the coinbase */ - coinbase: Buffer - /** - * The configuration for forking a blockchain. If not provided, a local - * blockchain will be created - */ - fork?: ForkConfig - /** The genesis accounts of the blockchain */ - genesisAccounts: Array - /** The hardfork of the blockchain */ - hardfork: SpecId - /** - * The initial base fee per gas of the blockchain. Required for EIP-1559 - * transactions and later - */ - initialBaseFeePerGas?: bigint - /** The initial blob gas of the blockchain. Required for EIP-4844 */ - initialBlobGas?: BlobGas - /** The initial date of the blockchain, in seconds since the Unix epoch */ - initialDate?: bigint - /** - * The initial parent beacon block root of the blockchain. Required for - * EIP-4788 - */ - initialParentBeaconBlockRoot?: Buffer - /** The minimum gas price of the next block. */ - minGasPrice: bigint - /** The configuration for the miner */ - mining: MiningConfig - /** The network ID of the blockchain */ - networkId: bigint -} -/** The possible reasons for successful termination of the EVM. */ -export const enum SuccessReason { - /** The opcode `STOP` was called */ - Stop = 0, - /** The opcode `RETURN` was called */ - Return = 1, - /** The opcode `SELFDESTRUCT` was called */ - SelfDestruct = 2 -} -export interface CallOutput { - /** Return value */ - returnValue: Buffer -} -export interface CreateOutput { - /** Return value */ - returnValue: Buffer - /** Optionally, a 160-bit address */ - address?: Buffer -} -/** The result when the EVM terminates successfully. */ -export interface SuccessResult { - /** The reason for termination */ - reason: SuccessReason - /** The amount of gas used */ - gasUsed: bigint - /** The amount of gas refunded */ - gasRefunded: bigint - /** The logs */ - logs: Array - /** The transaction output */ - output: CallOutput | CreateOutput -} -/** The result when the EVM terminates due to a revert. */ -export interface RevertResult { - /** The amount of gas used */ - gasUsed: bigint - /** The transaction output */ - output: Buffer -} -/** - * Indicates that the EVM has experienced an exceptional halt. This causes - * execution to immediately end with all gas being consumed. - */ -export const enum ExceptionalHalt { - OutOfGas = 0, - OpcodeNotFound = 1, - InvalidFEOpcode = 2, - InvalidJump = 3, - NotActivated = 4, - StackUnderflow = 5, - StackOverflow = 6, - OutOfOffset = 7, - CreateCollision = 8, - PrecompileError = 9, - NonceOverflow = 10, - /** Create init code size exceeds limit (runtime). */ - CreateContractSizeLimit = 11, - /** Error on created contract that begins with EF */ - CreateContractStartingWithEF = 12, - /** EIP-3860: Limit and meter initcode. Initcode size limit exceeded. */ - CreateInitCodeSizeLimit = 13 -} -/** The result when the EVM terminates due to an exceptional halt. */ -export interface HaltResult { - /** The exceptional halt that occurred */ - reason: ExceptionalHalt - /** - * Halting will spend all the gas and will thus be equal to the specified - * gas limit - */ - gasUsed: bigint -} -/** The result of executing a transaction. */ -export interface ExecutionResult { - /** The transaction result */ - result: SuccessResult | RevertResult | HaltResult -} -export interface SubscriptionEvent { - filterId: bigint - result: any -} -export interface TracingMessage { - /** Sender address */ - readonly caller: Buffer - /** Recipient address. None if it is a Create message. */ - readonly to?: Buffer - /** Transaction gas limit */ - readonly gasLimit: bigint - /** Depth of the message */ - readonly depth: number - /** Input data of the message */ - readonly data: Buffer - /** Value sent in the message */ - readonly value: bigint - /** - * Address of the code that is being executed. Can be different from `to` - * if a delegate call is being done. - */ - readonly codeAddress?: Buffer - /** Code of the contract that is being executed. */ - readonly code?: Buffer -} -export interface TracingStep { - /** Call depth */ - readonly depth: number - /** The program counter */ - readonly pc: bigint - /** The executed op code */ - readonly opcode: string - /** The top entry on the stack. None if the stack is empty. */ - readonly stackTop?: bigint -} -export interface TracingMessageResult { - /** Execution result */ - readonly executionResult: ExecutionResult -} -export interface Withdrawal { - /** The index of withdrawal */ - index: bigint - /** The index of the validator that generated the withdrawal */ - validatorIndex: bigint - /** The recipient address for withdrawal value */ - address: Buffer - /** The value contained in withdrawal */ - amount: bigint -} -export class EdrContext { - /**Creates a new [`EdrContext`] instance. Should only be called once! */ - constructor() -} -/** A JSON-RPC provider for Ethereum. */ -export class Provider { - /**Constructs a new provider with the provided configuration. */ - static withConfig(context: EdrContext, config: ProviderConfig, loggerConfig: LoggerConfig, subscriberCallback: (event: SubscriptionEvent) => void): Promise - /**Handles a JSON-RPC request and returns a JSON-RPC response. */ - handleRequest(jsonRequest: string): Promise - setCallOverrideCallback(callOverrideCallback: (contract_address: Buffer, data: Buffer) => Promise): void -} -export class Response { - get json(): string - get solidityTrace(): RawTrace | null - get traces(): Array -} -export class RawTrace { - trace(): Array -} diff --git a/crates/edr_napi/index.js b/crates/edr_napi/index.js deleted file mode 100644 index 694d88b81b..0000000000 --- a/crates/edr_napi/index.js +++ /dev/null @@ -1,322 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/* prettier-ignore */ - -/* auto-generated by NAPI-RS */ - -const { existsSync, readFileSync } = require('fs') -const { join } = require('path') - -const { platform, arch } = process - -let nativeBinding = null -let localFileExisted = false -let loadError = null - -function isMusl() { - // For Node 10 - if (!process.report || typeof process.report.getReport !== 'function') { - try { - const lddPath = require('child_process').execSync('which ldd').toString().trim() - return readFileSync(lddPath, 'utf8').includes('musl') - } catch (e) { - return true - } - } else { - const { glibcVersionRuntime } = process.report.getReport().header - return !glibcVersionRuntime - } -} - -switch (platform) { - case 'android': - switch (arch) { - case 'arm64': - localFileExisted = existsSync(join(__dirname, 'edr.android-arm64.node')) - try { - if (localFileExisted) { - nativeBinding = require('./edr.android-arm64.node') - } else { - nativeBinding = require('@nomicfoundation/edr-android-arm64') - } - } catch (e) { - loadError = e - } - break - case 'arm': - localFileExisted = existsSync(join(__dirname, 'edr.android-arm-eabi.node')) - try { - if (localFileExisted) { - nativeBinding = require('./edr.android-arm-eabi.node') - } else { - nativeBinding = require('@nomicfoundation/edr-android-arm-eabi') - } - } catch (e) { - loadError = e - } - break - default: - throw new Error(`Unsupported architecture on Android ${arch}`) - } - break - case 'win32': - switch (arch) { - case 'x64': - localFileExisted = existsSync( - join(__dirname, 'edr.win32-x64-msvc.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.win32-x64-msvc.node') - } else { - nativeBinding = require('@nomicfoundation/edr-win32-x64-msvc') - } - } catch (e) { - loadError = e - } - break - case 'ia32': - localFileExisted = existsSync( - join(__dirname, 'edr.win32-ia32-msvc.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.win32-ia32-msvc.node') - } else { - nativeBinding = require('@nomicfoundation/edr-win32-ia32-msvc') - } - } catch (e) { - loadError = e - } - break - case 'arm64': - localFileExisted = existsSync( - join(__dirname, 'edr.win32-arm64-msvc.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.win32-arm64-msvc.node') - } else { - nativeBinding = require('@nomicfoundation/edr-win32-arm64-msvc') - } - } catch (e) { - loadError = e - } - break - default: - throw new Error(`Unsupported architecture on Windows: ${arch}`) - } - break - case 'darwin': - localFileExisted = existsSync(join(__dirname, 'edr.darwin-universal.node')) - try { - if (localFileExisted) { - nativeBinding = require('./edr.darwin-universal.node') - } else { - nativeBinding = require('@nomicfoundation/edr-darwin-universal') - } - break - } catch {} - switch (arch) { - case 'x64': - localFileExisted = existsSync(join(__dirname, 'edr.darwin-x64.node')) - try { - if (localFileExisted) { - nativeBinding = require('./edr.darwin-x64.node') - } else { - nativeBinding = require('@nomicfoundation/edr-darwin-x64') - } - } catch (e) { - loadError = e - } - break - case 'arm64': - localFileExisted = existsSync( - join(__dirname, 'edr.darwin-arm64.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.darwin-arm64.node') - } else { - nativeBinding = require('@nomicfoundation/edr-darwin-arm64') - } - } catch (e) { - loadError = e - } - break - default: - throw new Error(`Unsupported architecture on macOS: ${arch}`) - } - break - case 'freebsd': - if (arch !== 'x64') { - throw new Error(`Unsupported architecture on FreeBSD: ${arch}`) - } - localFileExisted = existsSync(join(__dirname, 'edr.freebsd-x64.node')) - try { - if (localFileExisted) { - nativeBinding = require('./edr.freebsd-x64.node') - } else { - nativeBinding = require('@nomicfoundation/edr-freebsd-x64') - } - } catch (e) { - loadError = e - } - break - case 'linux': - switch (arch) { - case 'x64': - if (isMusl()) { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-x64-musl.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-x64-musl.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-x64-musl') - } - } catch (e) { - loadError = e - } - } else { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-x64-gnu.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-x64-gnu.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-x64-gnu') - } - } catch (e) { - loadError = e - } - } - break - case 'arm64': - if (isMusl()) { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-arm64-musl.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-arm64-musl.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-arm64-musl') - } - } catch (e) { - loadError = e - } - } else { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-arm64-gnu.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-arm64-gnu.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-arm64-gnu') - } - } catch (e) { - loadError = e - } - } - break - case 'arm': - if (isMusl()) { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-arm-musleabihf.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-arm-musleabihf.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-arm-musleabihf') - } - } catch (e) { - loadError = e - } - } else { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-arm-gnueabihf.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-arm-gnueabihf.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-arm-gnueabihf') - } - } catch (e) { - loadError = e - } - } - break - case 'riscv64': - if (isMusl()) { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-riscv64-musl.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-riscv64-musl.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-riscv64-musl') - } - } catch (e) { - loadError = e - } - } else { - localFileExisted = existsSync( - join(__dirname, 'edr.linux-riscv64-gnu.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-riscv64-gnu.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-riscv64-gnu') - } - } catch (e) { - loadError = e - } - } - break - case 's390x': - localFileExisted = existsSync( - join(__dirname, 'edr.linux-s390x-gnu.node') - ) - try { - if (localFileExisted) { - nativeBinding = require('./edr.linux-s390x-gnu.node') - } else { - nativeBinding = require('@nomicfoundation/edr-linux-s390x-gnu') - } - } catch (e) { - loadError = e - } - break - default: - throw new Error(`Unsupported architecture on Linux: ${arch}`) - } - break - default: - throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`) -} - -if (!nativeBinding) { - if (loadError) { - throw loadError - } - throw new Error(`Failed to load native binding`) -} - -const { SpecId, EdrContext, MineOrdering, Provider, Response, SuccessReason, ExceptionalHalt, RawTrace } = nativeBinding - -module.exports.SpecId = SpecId -module.exports.EdrContext = EdrContext -module.exports.MineOrdering = MineOrdering -module.exports.Provider = Provider -module.exports.Response = Response -module.exports.SuccessReason = SuccessReason -module.exports.ExceptionalHalt = ExceptionalHalt -module.exports.RawTrace = RawTrace diff --git a/crates/edr_napi/npm/darwin-arm64/README.md b/crates/edr_napi/npm/darwin-arm64/README.md deleted file mode 100644 index 0164d73ea2..0000000000 --- a/crates/edr_napi/npm/darwin-arm64/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-darwin-arm64` - -This is the **aarch64-apple-darwin** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/darwin-arm64/package.json b/crates/edr_napi/npm/darwin-arm64/package.json deleted file mode 100644 index d8cb6b4ad0..0000000000 --- a/crates/edr_napi/npm/darwin-arm64/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@nomicfoundation/edr-darwin-arm64", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "darwin" - ], - "cpu": [ - "arm64" - ], - "main": "edr.darwin-arm64.node", - "files": [ - "edr.darwin-arm64.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - } -} diff --git a/crates/edr_napi/npm/darwin-x64/README.md b/crates/edr_napi/npm/darwin-x64/README.md deleted file mode 100644 index 5991c31560..0000000000 --- a/crates/edr_napi/npm/darwin-x64/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-darwin-x64` - -This is the **x86_64-apple-darwin** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/darwin-x64/package.json b/crates/edr_napi/npm/darwin-x64/package.json deleted file mode 100644 index f4136bf2b1..0000000000 --- a/crates/edr_napi/npm/darwin-x64/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@nomicfoundation/edr-darwin-x64", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "darwin" - ], - "cpu": [ - "x64" - ], - "main": "edr.darwin-x64.node", - "files": [ - "edr.darwin-x64.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - } -} diff --git a/crates/edr_napi/npm/linux-arm64-gnu/README.md b/crates/edr_napi/npm/linux-arm64-gnu/README.md deleted file mode 100644 index 6f4a0e10b8..0000000000 --- a/crates/edr_napi/npm/linux-arm64-gnu/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-linux-arm64-gnu` - -This is the **aarch64-unknown-linux-gnu** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/linux-arm64-gnu/package.json b/crates/edr_napi/npm/linux-arm64-gnu/package.json deleted file mode 100644 index 0731fb0b6b..0000000000 --- a/crates/edr_napi/npm/linux-arm64-gnu/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "@nomicfoundation/edr-linux-arm64-gnu", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "linux" - ], - "cpu": [ - "arm64" - ], - "main": "edr.linux-arm64-gnu.node", - "files": [ - "edr.linux-arm64-gnu.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - }, - "libc": [ - "glibc" - ] -} diff --git a/crates/edr_napi/npm/linux-arm64-musl/README.md b/crates/edr_napi/npm/linux-arm64-musl/README.md deleted file mode 100644 index b6cd357e0a..0000000000 --- a/crates/edr_napi/npm/linux-arm64-musl/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-linux-arm64-musl` - -This is the **aarch64-unknown-linux-musl** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/linux-arm64-musl/package.json b/crates/edr_napi/npm/linux-arm64-musl/package.json deleted file mode 100644 index e8cfb7bf83..0000000000 --- a/crates/edr_napi/npm/linux-arm64-musl/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "@nomicfoundation/edr-linux-arm64-musl", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "linux" - ], - "cpu": [ - "arm64" - ], - "main": "edr.linux-arm64-musl.node", - "files": [ - "edr.linux-arm64-musl.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - }, - "libc": [ - "musl" - ] -} diff --git a/crates/edr_napi/npm/linux-x64-gnu/README.md b/crates/edr_napi/npm/linux-x64-gnu/README.md deleted file mode 100644 index 54ef7bbe71..0000000000 --- a/crates/edr_napi/npm/linux-x64-gnu/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-linux-x64-gnu` - -This is the **x86_64-unknown-linux-gnu** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/linux-x64-gnu/package.json b/crates/edr_napi/npm/linux-x64-gnu/package.json deleted file mode 100644 index 5cb731ae33..0000000000 --- a/crates/edr_napi/npm/linux-x64-gnu/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "@nomicfoundation/edr-linux-x64-gnu", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "linux" - ], - "cpu": [ - "x64" - ], - "main": "edr.linux-x64-gnu.node", - "files": [ - "edr.linux-x64-gnu.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - }, - "libc": [ - "glibc" - ] -} diff --git a/crates/edr_napi/npm/linux-x64-musl/README.md b/crates/edr_napi/npm/linux-x64-musl/README.md deleted file mode 100644 index 5c2e8a018c..0000000000 --- a/crates/edr_napi/npm/linux-x64-musl/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-linux-x64-musl` - -This is the **x86_64-unknown-linux-musl** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/linux-x64-musl/package.json b/crates/edr_napi/npm/linux-x64-musl/package.json deleted file mode 100644 index d5300c908b..0000000000 --- a/crates/edr_napi/npm/linux-x64-musl/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "@nomicfoundation/edr-linux-x64-musl", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "linux" - ], - "cpu": [ - "x64" - ], - "main": "edr.linux-x64-musl.node", - "files": [ - "edr.linux-x64-musl.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - }, - "libc": [ - "musl" - ] -} diff --git a/crates/edr_napi/npm/win32-x64-msvc/README.md b/crates/edr_napi/npm/win32-x64-msvc/README.md deleted file mode 100644 index 8dac35390f..0000000000 --- a/crates/edr_napi/npm/win32-x64-msvc/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `@nomicfoundation/edr-win32-x64-msvc` - -This is the **x86_64-pc-windows-msvc** binary for `@nomicfoundation/edr` diff --git a/crates/edr_napi/npm/win32-x64-msvc/package.json b/crates/edr_napi/npm/win32-x64-msvc/package.json deleted file mode 100644 index 68adf03302..0000000000 --- a/crates/edr_napi/npm/win32-x64-msvc/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@nomicfoundation/edr-win32-x64-msvc", - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "version": "0.2.0-alpha.1", - "os": [ - "win32" - ], - "cpu": [ - "x64" - ], - "main": "edr.win32-x64-msvc.node", - "files": [ - "edr.win32-x64-msvc.node" - ], - "license": "MIT", - "engines": { - "node": ">= 18" - } -} diff --git a/crates/edr_napi/package.json b/crates/edr_napi/package.json deleted file mode 100644 index 823b184603..0000000000 --- a/crates/edr_napi/package.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "@nomicfoundation/edr", - "version": "0.3.5", - "main": "index.js", - "types": "index.d.ts", - "files": [ - "index.js", - "index.d.ts", - "Cargo.toml", - "build.rs", - "src/" - ], - "repository": { - "url": "https://github.com/NomicFoundation/hardhat.git", - "type": "git" - }, - "napi": { - "name": "edr", - "triples": { - "additional": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-linux-musl", - "x86_64-unknown-linux-musl" - ] - } - }, - "license": "MIT", - "devDependencies": { - "@napi-rs/cli": "^2.18.1", - "@types/chai": "^4.2.0", - "@types/chai-as-promised": "^7.1.8", - "@types/mocha": ">=9.1.0", - "@types/node": "^18.0.0", - "chai": "^4.3.6", - "chai-as-promised": "^7.1.1", - "mocha": "^10.0.0", - "typescript": "~4.5.2" - }, - "engines": { - "node": ">= 18" - }, - "scripts": { - "artifacts": "napi artifacts", - "build": "napi build --platform --release", - "build:debug": "napi build --platform", - "build:tracing": "napi build --platform --release --features tracing", - "build:scenarios": "napi build --platform --release --features scenarios", - "prepublishOnly": "napi prepublish -t npm --skip-gh-release", - "universal": "napi universal", - "version": "napi version", - "pretest": "pnpm build", - "test": "pnpm tsc && mocha --recursive \"test/**/*.ts\"", - "testNoBuild": "pnpm tsc && mocha --recursive \"test/**/*.ts\"", - "clean": "rm -rf @nomicfoundation/edr.node" - } -} diff --git a/crates/edr_napi/src/account.rs b/crates/edr_napi/src/account.rs deleted file mode 100644 index 452c9931cc..0000000000 --- a/crates/edr_napi/src/account.rs +++ /dev/null @@ -1,28 +0,0 @@ -use edr_eth::signature::secret_key_from_str; -use napi::{bindgen_prelude::BigInt, Status}; -use napi_derive::napi; - -use crate::cast::TryCast; - -/// An account that needs to be created during the genesis block. -#[napi(object)] -pub struct GenesisAccount { - /// Account secret key - pub secret_key: String, - /// Account balance - pub balance: BigInt, -} - -impl TryFrom for edr_provider::AccountConfig { - type Error = napi::Error; - - fn try_from(value: GenesisAccount) -> Result { - let secret_key = secret_key_from_str(&value.secret_key) - .map_err(|e| napi::Error::new(Status::InvalidArg, e.to_string()))?; - - Ok(Self { - secret_key, - balance: value.balance.try_cast()?, - }) - } -} diff --git a/crates/edr_napi/src/block.rs b/crates/edr_napi/src/block.rs deleted file mode 100644 index b9089de1ef..0000000000 --- a/crates/edr_napi/src/block.rs +++ /dev/null @@ -1,121 +0,0 @@ -use edr_eth::{Address, Bytes, B256, B64}; -use napi::bindgen_prelude::{BigInt, Buffer}; -use napi_derive::napi; - -use crate::{cast::TryCast, withdrawal::Withdrawal}; - -#[napi(object)] -pub struct BlockOptions { - /// The parent block's hash - pub parent_hash: Option, - /// The block's beneficiary - pub beneficiary: Option, - /// The state's root hash - pub state_root: Option, - /// The block's difficulty - pub difficulty: Option, - /// The block's number - pub number: Option, - /// The block's gas limit - pub gas_limit: Option, - /// The block's timestamp - pub timestamp: Option, - /// The block's extra data - pub extra_data: Option, - /// The block's mix hash (or prevrandao) - pub mix_hash: Option, - /// The block's nonce - pub nonce: Option, - /// The block's base gas fee - pub base_fee: Option, - /// The block's withdrawals - pub withdrawals: Option>, - /// Blob gas was added by EIP-4844 and is ignored in older headers. - pub blob_gas: Option, - /// The hash tree root of the parent beacon block for the given execution - /// block (EIP-4788). - pub parent_beacon_block_root: Option, -} - -impl TryFrom for edr_eth::block::BlockOptions { - type Error = napi::Error; - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn try_from(value: BlockOptions) -> Result { - Ok(Self { - parent_hash: value - .parent_hash - .map(TryCast::::try_cast) - .transpose()?, - beneficiary: value - .beneficiary - .map(TryCast::
::try_cast) - .transpose()?, - state_root: value - .state_root - .map(TryCast::::try_cast) - .transpose()?, - difficulty: value - .difficulty - .map_or(Ok(None), |difficulty| difficulty.try_cast().map(Some))?, - number: value - .number - .map_or(Ok(None), |number| number.try_cast().map(Some))?, - gas_limit: value - .gas_limit - .map_or(Ok(None), |gas_limit| gas_limit.try_cast().map(Some))?, - timestamp: value - .timestamp - .map_or(Ok(None), |timestamp| timestamp.try_cast().map(Some))?, - extra_data: value - .extra_data - .map(|extra_data| Bytes::copy_from_slice(&extra_data)), - mix_hash: value.mix_hash.map(TryCast::::try_cast).transpose()?, - nonce: value.nonce.map(TryCast::::try_cast).transpose()?, - base_fee: value - .base_fee - .map_or(Ok(None), |basefee| basefee.try_cast().map(Some))?, - withdrawals: value - .withdrawals - .map(|withdrawals| { - withdrawals - .into_iter() - .map(edr_eth::withdrawal::Withdrawal::try_from) - .collect() - }) - .transpose()?, - blob_gas: value - .blob_gas - .map(edr_eth::block::BlobGas::try_from) - .transpose()?, - parent_beacon_block_root: value - .parent_beacon_block_root - .map(TryCast::::try_cast) - .transpose()?, - }) - } -} - -/// Information about the blob gas used in a block. -#[napi(object)] -pub struct BlobGas { - /// The total amount of blob gas consumed by the transactions within the - /// block. - pub gas_used: BigInt, - /// The running total of blob gas consumed in excess of the target, prior to - /// the block. Blocks with above-target blob gas consumption increase this - /// value, blocks with below-target blob gas consumption decrease it - /// (bounded at 0). - pub excess_gas: BigInt, -} - -impl TryFrom for edr_eth::block::BlobGas { - type Error = napi::Error; - - fn try_from(value: BlobGas) -> Result { - Ok(Self { - gas_used: BigInt::try_cast(value.gas_used)?, - excess_gas: BigInt::try_cast(value.excess_gas)?, - }) - } -} diff --git a/crates/edr_napi/src/call_override.rs b/crates/edr_napi/src/call_override.rs deleted file mode 100644 index 0544b0bf4b..0000000000 --- a/crates/edr_napi/src/call_override.rs +++ /dev/null @@ -1,106 +0,0 @@ -use std::sync::mpsc::channel; - -use edr_eth::{Address, Bytes}; -use napi::{ - bindgen_prelude::Buffer, - threadsafe_function::{ - ErrorStrategy, ThreadSafeCallContext, ThreadsafeFunction, ThreadsafeFunctionCallMode, - }, - Env, JsFunction, Status, -}; -use napi_derive::napi; - -use crate::cast::TryCast; - -/// The result of executing a call override. -#[napi(object)] -pub struct CallOverrideResult { - pub result: Buffer, - pub should_revert: bool, -} - -impl TryCast> for Option { - type Error = napi::Error; - - fn try_cast(self) -> Result, Self::Error> { - match self { - None => Ok(None), - Some(result) => Ok(Some(edr_provider::CallOverrideResult { - output: result.result.try_cast()?, - should_revert: result.should_revert, - })), - } - } -} - -struct CallOverrideCall { - contract_address: Address, - data: Bytes, -} - -#[derive(Clone)] -pub struct CallOverrideCallback { - call_override_callback_fn: ThreadsafeFunction, -} - -impl CallOverrideCallback { - pub fn new(env: &Env, call_override_callback: JsFunction) -> napi::Result { - let mut call_override_callback_fn = call_override_callback.create_threadsafe_function( - 0, - |ctx: ThreadSafeCallContext| { - let address = ctx - .env - .create_buffer_with_data(ctx.value.contract_address.to_vec())? - .into_raw(); - - let data = ctx - .env - .create_buffer_with_data(ctx.value.data.to_vec())? - .into_raw(); - - Ok(vec![address, data]) - }, - )?; - - // Maintain a weak reference to the function to avoid the event loop from - // exiting. - call_override_callback_fn.unref(env)?; - - Ok(Self { - call_override_callback_fn, - }) - } - - pub fn call_override( - &self, - contract_address: Address, - data: Bytes, - ) -> Option { - let (sender, receiver) = channel(); - - let status = self.call_override_callback_fn.call_with_return_value( - CallOverrideCall { - contract_address, - data, - }, - ThreadsafeFunctionCallMode::Blocking, - move |result: Option| { - let result = result.try_cast(); - - sender.send(result).map_err(|_error| { - napi::Error::new( - Status::GenericFailure, - "Failed to send result from call_override_callback", - ) - }) - }, - ); - - assert_eq!(status, Status::Ok, "Call override callback failed"); - - receiver - .recv() - .unwrap() - .expect("Failed call to call_override_callback") - } -} diff --git a/crates/edr_napi/src/cast.rs b/crates/edr_napi/src/cast.rs deleted file mode 100644 index b9041fe5a6..0000000000 --- a/crates/edr_napi/src/cast.rs +++ /dev/null @@ -1,135 +0,0 @@ -use edr_eth::{Address, Bytes, B256, B64, U256}; -use napi::{ - bindgen_prelude::{BigInt, Buffer}, - Status, -}; - -/// An attempted conversion that consumes `self`, which may or may not be -/// expensive. It is identical to [`TryInto`], but it allows us to implement -/// the trait for external types. -pub trait TryCast: Sized { - /// The type returned in the event of a conversion error. - type Error; - - /// Performs the conversion. - fn try_cast(self) -> Result; -} - -impl TryCast
for Buffer { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - if self.len() != 20 { - return Err(napi::Error::new( - Status::InvalidArg, - "Buffer was expected to be 20 bytes.".to_string(), - )); - } - Ok(Address::from_slice(&self)) - } -} - -impl TryCast for Buffer { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - if self.len() != 8 { - return Err(napi::Error::new( - Status::InvalidArg, - "Buffer was expected to be 8 bytes.".to_string(), - )); - } - Ok(B64::from_slice(&self)) - } -} - -impl TryCast for Buffer { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - if self.len() != 32 { - return Err(napi::Error::new( - Status::InvalidArg, - "Buffer was expected to be 32 bytes.".to_string(), - )); - } - Ok(B256::from_slice(&self)) - } -} - -impl TryCast for BigInt { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - let (signed, value, lossless) = self.get_u64(); - - if signed { - return Err(napi::Error::new( - Status::InvalidArg, - "BigInt was expected to be unsigned.".to_string(), - )); - } - - if !lossless { - return Err(napi::Error::new( - Status::InvalidArg, - "BigInt was expected to fit within 64 bits.".to_string(), - )); - } - - Ok(value) - } -} - -impl TryCast for BigInt { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - let size: u64 = BigInt::try_cast(self)?; - usize::try_from(size).map_err(|e| napi::Error::new(Status::InvalidArg, e.to_string())) - } -} - -impl TryCast for BigInt { - type Error = napi::Error; - - fn try_cast(mut self) -> std::result::Result { - let num_words = self.words.len(); - match num_words.cmp(&4) { - std::cmp::Ordering::Less => self.words.append(&mut vec![0u64; 4 - num_words]), - std::cmp::Ordering::Equal => (), - std::cmp::Ordering::Greater => { - return Err(napi::Error::new( - Status::InvalidArg, - "BigInt cannot have more than 4 words.".to_owned(), - )); - } - } - - Ok(U256::from_limbs(self.words.try_into().unwrap())) - } -} - -impl TryCast for T { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result { - Ok(self) - } -} - -impl TryCast for Buffer { - type Error = napi::Error; - - fn try_cast(self) -> Result { - Ok(Bytes::copy_from_slice(&self)) - } -} - -impl TryCast> for Option { - type Error = napi::Error; - - fn try_cast(self) -> Result, Self::Error> { - Ok(self.map(|buffer| Bytes::copy_from_slice(&buffer))) - } -} diff --git a/crates/edr_napi/src/config.rs b/crates/edr_napi/src/config.rs deleted file mode 100644 index f9464ab616..0000000000 --- a/crates/edr_napi/src/config.rs +++ /dev/null @@ -1,70 +0,0 @@ -use napi_derive::napi; - -/// Identifier for the Ethereum spec. -#[napi] -pub enum SpecId { - /// Frontier - Frontier = 0, - /// Frontier Thawing - FrontierThawing = 1, - /// Homestead - Homestead = 2, - /// DAO Fork - DaoFork = 3, - /// Tangerine - Tangerine = 4, - /// Spurious Dragon - SpuriousDragon = 5, - /// Byzantium - Byzantium = 6, - /// Constantinople - Constantinople = 7, - /// Petersburg - Petersburg = 8, - /// Istanbul - Istanbul = 9, - /// Muir Glacier - MuirGlacier = 10, - /// Berlin - Berlin = 11, - /// London - London = 12, - /// Arrow Glacier - ArrowGlacier = 13, - /// Gray Glacier - GrayGlacier = 14, - /// Merge - Merge = 15, - /// Shanghai - Shanghai = 16, - /// Cancun - Cancun = 17, - /// Latest - Latest = 18, -} - -impl From for edr_evm::SpecId { - fn from(value: SpecId) -> Self { - match value { - SpecId::Frontier => edr_evm::SpecId::FRONTIER, - SpecId::FrontierThawing => edr_evm::SpecId::FRONTIER_THAWING, - SpecId::Homestead => edr_evm::SpecId::HOMESTEAD, - SpecId::DaoFork => edr_evm::SpecId::DAO_FORK, - SpecId::Tangerine => edr_evm::SpecId::TANGERINE, - SpecId::SpuriousDragon => edr_evm::SpecId::SPURIOUS_DRAGON, - SpecId::Byzantium => edr_evm::SpecId::BYZANTIUM, - SpecId::Constantinople => edr_evm::SpecId::CONSTANTINOPLE, - SpecId::Petersburg => edr_evm::SpecId::PETERSBURG, - SpecId::Istanbul => edr_evm::SpecId::ISTANBUL, - SpecId::MuirGlacier => edr_evm::SpecId::MUIR_GLACIER, - SpecId::Berlin => edr_evm::SpecId::BERLIN, - SpecId::London => edr_evm::SpecId::LONDON, - SpecId::ArrowGlacier => edr_evm::SpecId::ARROW_GLACIER, - SpecId::GrayGlacier => edr_evm::SpecId::GRAY_GLACIER, - SpecId::Merge => edr_evm::SpecId::MERGE, - SpecId::Shanghai => edr_evm::SpecId::SHANGHAI, - SpecId::Cancun => edr_evm::SpecId::CANCUN, - SpecId::Latest => edr_evm::SpecId::LATEST, - } - } -} diff --git a/crates/edr_napi/src/context.rs b/crates/edr_napi/src/context.rs deleted file mode 100644 index bfa4baf9a4..0000000000 --- a/crates/edr_napi/src/context.rs +++ /dev/null @@ -1,75 +0,0 @@ -use std::{io, ops::Deref, sync::Arc}; - -use napi::Status; -use napi_derive::napi; -use tracing_subscriber::{prelude::*, EnvFilter, Registry}; - -#[napi] -#[derive(Debug)] -pub struct EdrContext { - inner: Arc, -} - -impl Deref for EdrContext { - type Target = Arc; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -#[napi] -impl EdrContext { - #[doc = "Creates a new [`EdrContext`] instance. Should only be called once!"] - #[napi(constructor)] - pub fn new() -> napi::Result { - let context = - Context::new().map_err(|e| napi::Error::new(Status::GenericFailure, e.to_string()))?; - - Ok(Self { - inner: Arc::new(context), - }) - } -} - -#[derive(Debug)] -pub struct Context { - _subscriber_guard: tracing::subscriber::DefaultGuard, - #[cfg(feature = "tracing")] - _tracing_write_guard: tracing_flame::FlushGuard>, -} - -impl Context { - /// Creates a new [`Context`] instance. Should only be called once! - pub fn new() -> io::Result { - let fmt_layer = tracing_subscriber::fmt::layer() - .with_file(true) - .with_line_number(true) - .with_thread_ids(true) - .with_target(false) - .with_level(true) - .with_filter(EnvFilter::from_default_env()); - - let subscriber = Registry::default().with(fmt_layer); - - #[cfg(feature = "tracing")] - let (flame_layer, guard) = { - let (flame_layer, guard) = - tracing_flame::FlameLayer::with_file("tracing.folded").unwrap(); - - let flame_layer = flame_layer.with_empty_samples(false); - (flame_layer, guard) - }; - - #[cfg(feature = "tracing")] - let subscriber = subscriber.with(flame_layer); - - let subscriber_guard = tracing::subscriber::set_default(subscriber); - - Ok(Self { - _subscriber_guard: subscriber_guard, - #[cfg(feature = "tracing")] - _tracing_write_guard: guard, - }) - } -} diff --git a/crates/edr_napi/src/debug_trace.rs b/crates/edr_napi/src/debug_trace.rs deleted file mode 100644 index 48e8569a8b..0000000000 --- a/crates/edr_napi/src/debug_trace.rs +++ /dev/null @@ -1,38 +0,0 @@ -use std::collections::HashMap; - -use napi::bindgen_prelude::{BigInt, Buffer}; -use napi_derive::napi; - -#[napi(object)] -pub struct DebugTraceResult { - pub pass: bool, - pub gas_used: BigInt, - pub output: Option, - pub struct_logs: Vec, -} - -#[napi(object)] -pub struct DebugTraceLogItem { - /// Program Counter - pub pc: BigInt, - // Op code - pub op: u8, - /// Gas left before executing this operation as hex number. - pub gas: String, - /// Gas cost of this operation as hex number. - pub gas_cost: String, - /// Array of all values (hex numbers) on the stack - pub stack: Option>, - /// Depth of the call stack - pub depth: BigInt, - /// Size of memory array - pub mem_size: BigInt, - /// Name of the operation - pub op_name: String, - /// Description of an error as a hex string. - pub error: Option, - /// Array of all allocated values as hex strings. - pub memory: Option>, - /// Map of all stored values with keys and values encoded as hex strings. - pub storage: Option>, -} diff --git a/crates/edr_napi/src/lib.rs b/crates/edr_napi/src/lib.rs deleted file mode 100644 index 60dec5dab8..0000000000 --- a/crates/edr_napi/src/lib.rs +++ /dev/null @@ -1,23 +0,0 @@ -#![warn(missing_docs)] - -//! NAPI bindings for the EDR EVM - -#[global_allocator] -static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc; - -mod account; -mod block; -mod call_override; -mod cast; -mod config; -mod context; -mod debug_trace; -mod log; -mod logger; -mod provider; -mod result; -#[cfg(feature = "scenarios")] -mod scenarios; -mod subscribe; -mod trace; -mod withdrawal; diff --git a/crates/edr_napi/src/log.rs b/crates/edr_napi/src/log.rs deleted file mode 100644 index 2137667c47..0000000000 --- a/crates/edr_napi/src/log.rs +++ /dev/null @@ -1,30 +0,0 @@ -use napi::{bindgen_prelude::Buffer, Env, JsBuffer, JsBufferValue}; -use napi_derive::napi; - -/// Ethereum execution log. -#[napi(object)] -pub struct ExecutionLog { - pub address: Buffer, - pub topics: Vec, - pub data: JsBuffer, -} - -impl ExecutionLog { - pub fn new(env: &Env, log: &edr_evm::Log) -> napi::Result { - let topics = log - .topics() - .iter() - .map(|topic| Buffer::from(topic.as_slice())) - .collect(); - - let data = env - .create_buffer_with_data(log.data.data.to_vec()) - .map(JsBufferValue::into_raw)?; - - Ok(Self { - address: Buffer::from(log.address.as_slice()), - topics, - data, - }) - } -} diff --git a/crates/edr_napi/src/logger.rs b/crates/edr_napi/src/logger.rs deleted file mode 100644 index a8b46216aa..0000000000 --- a/crates/edr_napi/src/logger.rs +++ /dev/null @@ -1,1233 +0,0 @@ -use std::{fmt::Display, sync::mpsc::channel}; - -use ansi_term::{Color, Style}; -use edr_eth::{Bytes, B256, U256}; -use edr_evm::{ - blockchain::BlockchainError, - precompile::{self, Precompiles}, - trace::TraceMessage, - ExecutableTransaction, ExecutionResult, SyncBlock, -}; -use edr_provider::{ProviderError, TransactionFailure}; -use itertools::izip; -use napi::{ - threadsafe_function::{ - ErrorStrategy, ThreadSafeCallContext, ThreadsafeFunction, ThreadsafeFunctionCallMode, - }, - Env, JsFunction, Status, -}; -use napi_derive::napi; - -use crate::cast::TryCast; - -#[napi(object)] -pub struct ContractAndFunctionName { - /// The contract name. - pub contract_name: String, - /// The function name. Only present for calls. - pub function_name: Option, -} - -impl TryCast<(String, Option)> for ContractAndFunctionName { - type Error = napi::Error; - - fn try_cast(self) -> std::result::Result<(String, Option), Self::Error> { - Ok((self.contract_name, self.function_name)) - } -} - -struct ContractAndFunctionNameCall { - code: Bytes, - /// Only present for calls. - calldata: Option, -} - -#[napi(object)] -pub struct LoggerConfig { - /// Whether to enable the logger. - pub enable: bool, - #[napi(ts_type = "(inputs: Buffer[]) => string[]")] - pub decode_console_log_inputs_callback: JsFunction, - #[napi(ts_type = "(code: Buffer, calldata?: Buffer) => ContractAndFunctionName")] - pub get_contract_and_function_name_callback: JsFunction, - #[napi(ts_type = "(message: string, replace: boolean) => void")] - pub print_line_callback: JsFunction, -} - -#[derive(Clone)] -pub enum LoggingState { - CollapsingMethod(CollapsedMethod), - HardhatMinining { - empty_blocks_range_start: Option, - }, - IntervalMining { - empty_blocks_range_start: Option, - }, - Empty, -} - -impl LoggingState { - /// Converts the state into a hardhat mining state. - pub fn into_hardhat_mining(self) -> Option { - match self { - Self::HardhatMinining { - empty_blocks_range_start, - } => empty_blocks_range_start, - _ => None, - } - } - - /// Converts the state into an interval mining state. - pub fn into_interval_mining(self) -> Option { - match self { - Self::IntervalMining { - empty_blocks_range_start, - } => empty_blocks_range_start, - _ => None, - } - } -} - -impl Default for LoggingState { - fn default() -> Self { - Self::Empty - } -} - -#[derive(Clone)] -enum LogLine { - Single(String), - WithTitle(String, String), -} - -#[derive(Debug, thiserror::Error)] -pub enum LoggerError { - #[error("Failed to print line")] - PrintLine, -} - -#[derive(Clone)] -pub struct Logger { - collector: LogCollector, -} - -impl Logger { - pub fn new(env: &Env, config: LoggerConfig) -> napi::Result { - Ok(Self { - collector: LogCollector::new(env, config)?, - }) - } -} - -impl edr_provider::Logger for Logger { - type BlockchainError = BlockchainError; - - type LoggerError = LoggerError; - - fn is_enabled(&self) -> bool { - self.collector.is_enabled - } - - fn set_is_enabled(&mut self, is_enabled: bool) { - self.collector.is_enabled = is_enabled; - } - - fn log_call( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - result: &edr_provider::CallResult, - ) -> Result<(), Self::LoggerError> { - self.collector.log_call(spec_id, transaction, result); - - Ok(()) - } - - fn log_estimate_gas_failure( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - failure: &edr_provider::EstimateGasFailure, - ) -> Result<(), Self::LoggerError> { - self.collector - .log_estimate_gas(spec_id, transaction, failure); - - Ok(()) - } - - fn log_interval_mined( - &mut self, - spec_id: edr_eth::SpecId, - mining_result: &edr_provider::DebugMineBlockResult, - ) -> Result<(), Self::LoggerError> { - self.collector.log_interval_mined(spec_id, mining_result) - } - - fn log_mined_block( - &mut self, - spec_id: edr_eth::SpecId, - mining_results: &[edr_provider::DebugMineBlockResult], - ) -> Result<(), Self::LoggerError> { - self.collector.log_mined_blocks(spec_id, mining_results); - - Ok(()) - } - - fn log_send_transaction( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &edr_evm::ExecutableTransaction, - mining_results: &[edr_provider::DebugMineBlockResult], - ) -> Result<(), Self::LoggerError> { - self.collector - .log_send_transaction(spec_id, transaction, mining_results); - - Ok(()) - } - - fn print_method_logs( - &mut self, - method: &str, - error: Option<&ProviderError>, - ) -> Result<(), Self::LoggerError> { - if let Some(error) = error { - self.collector.state = LoggingState::Empty; - - if matches!(error, ProviderError::UnsupportedMethod { .. }) { - self.collector - .print::(Color::Red.paint(error.to_string()))?; - } else { - self.collector.print::(Color::Red.paint(method))?; - self.collector.print_logs()?; - - if !matches!(error, ProviderError::TransactionFailed(_)) { - self.collector.print_empty_line()?; - - let error_message = error.to_string(); - self.collector - .try_indented(|logger| logger.print::(&error_message))?; - - if matches!(error, ProviderError::InvalidEip155TransactionChainId) { - self.collector.try_indented(|logger| { - logger.print::(Color::Yellow.paint( - "If you are using MetaMask, you can learn how to fix this error here: https://hardhat.org/metamask-issue" - )) - })?; - } - } - - self.collector.print_empty_line()?; - } - } else { - self.collector.print_method(method)?; - - let printed = self.collector.print_logs()?; - if printed { - self.collector.print_empty_line()?; - } - } - - Ok(()) - } -} - -#[derive(Clone)] -pub struct CollapsedMethod { - count: usize, - method: String, -} - -#[derive(Clone)] -struct LogCollector { - decode_console_log_inputs_fn: ThreadsafeFunction, ErrorStrategy::Fatal>, - get_contract_and_function_name_fn: - ThreadsafeFunction, - indentation: usize, - is_enabled: bool, - logs: Vec, - print_line_fn: ThreadsafeFunction<(String, bool), ErrorStrategy::Fatal>, - state: LoggingState, - title_length: usize, -} - -impl LogCollector { - pub fn new(env: &Env, config: LoggerConfig) -> napi::Result { - let mut decode_console_log_inputs_fn = config - .decode_console_log_inputs_callback - .create_threadsafe_function(0, |ctx: ThreadSafeCallContext>| { - let inputs = - ctx.env - .create_array_with_length(ctx.value.len()) - .and_then(|mut inputs| { - for (idx, input) in ctx.value.into_iter().enumerate() { - ctx.env.create_buffer_with_data(input.to_vec()).and_then( - |input| inputs.set_element(idx as u32, input.into_raw()), - )?; - } - - Ok(inputs) - })?; - - Ok(vec![inputs]) - })?; - - // Maintain a weak reference to the function to avoid the event loop from - // exiting. - decode_console_log_inputs_fn.unref(env)?; - - let mut get_contract_and_function_name_fn = config - .get_contract_and_function_name_callback - .create_threadsafe_function( - 0, - |ctx: ThreadSafeCallContext| { - // Buffer - let code = ctx - .env - .create_buffer_with_data(ctx.value.code.to_vec())? - .into_unknown(); - - // Option - let calldata = if let Some(calldata) = ctx.value.calldata { - ctx.env - .create_buffer_with_data(calldata.to_vec())? - .into_unknown() - } else { - ctx.env.get_undefined()?.into_unknown() - }; - - Ok(vec![code, calldata]) - }, - )?; - - // Maintain a weak reference to the function to avoid the event loop from - // exiting. - get_contract_and_function_name_fn.unref(env)?; - - let mut print_line_fn = config.print_line_callback.create_threadsafe_function( - 0, - |ctx: ThreadSafeCallContext<(String, bool)>| { - // String - let message = ctx.env.create_string_from_std(ctx.value.0)?; - - // bool - let replace = ctx.env.get_boolean(ctx.value.1)?; - - Ok(vec![message.into_unknown(), replace.into_unknown()]) - }, - )?; - - // Maintain a weak reference to the function to avoid the event loop from - // exiting. - print_line_fn.unref(env)?; - - Ok(Self { - decode_console_log_inputs_fn, - get_contract_and_function_name_fn, - indentation: 0, - is_enabled: config.enable, - logs: Vec::new(), - print_line_fn, - state: LoggingState::default(), - title_length: 0, - }) - } - - pub fn log_call( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - result: &edr_provider::CallResult, - ) { - let edr_provider::CallResult { - console_log_inputs, - execution_result, - trace, - } = result; - - self.state = LoggingState::Empty; - - self.indented(|logger| { - logger.log_contract_and_function_name::(spec_id, trace); - - logger.log_with_title("From", format!("0x{:x}", transaction.caller())); - if let Some(to) = transaction.to() { - logger.log_with_title("To", format!("0x{to:x}")); - } - if transaction.value() > U256::ZERO { - logger.log_with_title("Value", wei_to_human_readable(transaction.value())); - } - - logger.log_console_log_messages(console_log_inputs); - - if let Some(transaction_failure) = - TransactionFailure::from_execution_result(execution_result, None, trace) - { - logger.log_transaction_failure(&transaction_failure); - } - }); - } - - pub fn log_estimate_gas( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - result: &edr_provider::EstimateGasFailure, - ) { - let edr_provider::EstimateGasFailure { - console_log_inputs, - transaction_failure, - } = result; - - self.state = LoggingState::Empty; - - self.indented(|logger| { - logger.log_contract_and_function_name::( - spec_id, - &transaction_failure.failure.solidity_trace, - ); - - logger.log_with_title("From", format!("0x{:x}", transaction.caller())); - if let Some(to) = transaction.to() { - logger.log_with_title("To", format!("0x{to:x}")); - } - logger.log_with_title("Value", wei_to_human_readable(transaction.value())); - - logger.log_console_log_messages(console_log_inputs); - - logger.log_transaction_failure(&transaction_failure.failure); - }); - } - - fn log_transaction_failure(&mut self, failure: &edr_provider::TransactionFailure) { - let is_revert_error = matches!( - failure.reason, - edr_provider::TransactionFailureReason::Revert(_) - ); - - let error_type = if is_revert_error { - "Error" - } else { - "TransactionExecutionError" - }; - - self.log_empty_line(); - self.log(format!("{error_type}: {failure}")); - } - - pub fn log_mined_blocks( - &mut self, - spec_id: edr_eth::SpecId, - mining_results: &[edr_provider::DebugMineBlockResult], - ) { - let num_results = mining_results.len(); - for (idx, mining_result) in mining_results.iter().enumerate() { - let state = std::mem::take(&mut self.state); - let empty_blocks_range_start = state.into_hardhat_mining(); - - if mining_result.block.transactions().is_empty() { - self.log_hardhat_mined_empty_block(&mining_result.block, empty_blocks_range_start); - - let block_number = mining_result.block.header().number; - self.state = LoggingState::HardhatMinining { - empty_blocks_range_start: Some( - empty_blocks_range_start.unwrap_or(block_number), - ), - }; - } else { - self.log_hardhat_mined_block(spec_id, mining_result); - - if idx < num_results - 1 { - self.log_empty_line(); - } - } - } - } - - pub fn log_interval_mined( - &mut self, - spec_id: edr_eth::SpecId, - mining_result: &edr_provider::DebugMineBlockResult, - ) -> Result<(), LoggerError> { - let block_header = mining_result.block.header(); - let block_number = block_header.number; - - if mining_result.block.transactions().is_empty() { - let state = std::mem::take(&mut self.state); - let empty_blocks_range_start = state.into_interval_mining(); - - if let Some(empty_blocks_range_start) = empty_blocks_range_start { - self.print::(format!( - "Mined empty block range #{empty_blocks_range_start} to #{block_number}" - ))?; - } else { - let base_fee = if let Some(base_fee) = block_header.base_fee_per_gas.as_ref() { - format!(" with base fee {base_fee}") - } else { - String::new() - }; - - self.print::(format!("Mined empty block #{block_number}{base_fee}"))?; - } - - self.state = LoggingState::IntervalMining { - empty_blocks_range_start: Some( - empty_blocks_range_start.unwrap_or(block_header.number), - ), - }; - } else { - self.log_interval_mined_block(spec_id, mining_result); - - self.print::(format!("Mined block #{block_number}"))?; - - let printed = self.print_logs()?; - if printed { - self.print_empty_line()?; - } - } - - Ok(()) - } - - pub fn log_send_transaction( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &edr_evm::ExecutableTransaction, - mining_results: &[edr_provider::DebugMineBlockResult], - ) { - if !mining_results.is_empty() { - self.state = LoggingState::Empty; - - let (sent_block_result, sent_transaction_result, sent_trace) = mining_results - .iter() - .find_map(|result| { - izip!( - result.block.transactions(), - result.transaction_results.iter(), - result.transaction_traces.iter() - ) - .find(|(block_transaction, _, _)| { - *block_transaction.hash() == *transaction.hash() - }) - .map(|(_, transaction_result, trace)| (result, transaction_result, trace)) - }) - .expect("Transaction result not found"); - - if mining_results.len() > 1 { - self.log_multiple_blocks_warning(); - self.log_auto_mined_block_results(spec_id, mining_results, transaction.hash()); - self.log_currently_sent_transaction( - spec_id, - sent_block_result, - transaction, - sent_transaction_result, - sent_trace, - ); - } else if let Some(result) = mining_results.first() { - let transactions = result.block.transactions(); - if transactions.len() > 1 { - self.log_multiple_transactions_warning(); - self.log_auto_mined_block_results(spec_id, mining_results, transaction.hash()); - self.log_currently_sent_transaction( - spec_id, - sent_block_result, - transaction, - sent_transaction_result, - sent_trace, - ); - } else if let Some(transaction) = transactions.first() { - self.log_single_transaction_mining_result(spec_id, result, transaction); - } - } - } - } - - fn contract_and_function_name( - &self, - code: Bytes, - calldata: Option, - ) -> (String, Option) { - let (sender, receiver) = channel(); - - let status = self - .get_contract_and_function_name_fn - .call_with_return_value( - ContractAndFunctionNameCall { code, calldata }, - ThreadsafeFunctionCallMode::Blocking, - move |result: ContractAndFunctionName| { - let contract_and_function_name = result.try_cast(); - sender.send(contract_and_function_name).map_err(|_error| { - napi::Error::new( - Status::GenericFailure, - "Failed to send result from get_contract_and_function_name", - ) - }) - }, - ); - assert_eq!(status, Status::Ok); - - receiver - .recv() - .unwrap() - .expect("Failed call to get_contract_and_function_name") - } - - fn format(&self, message: impl ToString) -> String { - let message = message.to_string(); - - if message.is_empty() { - message - } else { - message - .split('\n') - .map(|line| format!("{:indent$}{line}", "", indent = self.indentation)) - .collect::>() - .join("\n") - } - } - - fn indented(&mut self, display_fn: impl FnOnce(&mut Self)) { - self.indentation += 2; - display_fn(self); - self.indentation -= 2; - } - - fn try_indented( - &mut self, - display_fn: impl FnOnce(&mut Self) -> Result<(), LoggerError>, - ) -> Result<(), LoggerError> { - self.indentation += 2; - let result = display_fn(self); - self.indentation -= 2; - - result - } - - fn log(&mut self, message: impl ToString) { - let formatted = self.format(message); - - self.logs.push(LogLine::Single(formatted)); - } - - fn log_auto_mined_block_results( - &mut self, - spec_id: edr_eth::SpecId, - results: &[edr_provider::DebugMineBlockResult], - sent_transaction_hash: &B256, - ) { - for result in results { - self.log_block_from_auto_mine(spec_id, result, sent_transaction_hash); - } - } - - fn log_base_fee(&mut self, base_fee: Option<&U256>) { - if let Some(base_fee) = base_fee { - self.log(format!("Base fee: {base_fee}")); - } - } - - fn log_block_from_auto_mine( - &mut self, - spec_id: edr_eth::SpecId, - result: &edr_provider::DebugMineBlockResult, - transaction_hash_to_highlight: &edr_eth::B256, - ) { - let edr_provider::DebugMineBlockResult { - block, - transaction_results, - transaction_traces, - console_log_inputs, - } = result; - - let transactions = block.transactions(); - let num_transactions = transactions.len(); - - debug_assert_eq!(num_transactions, transaction_results.len()); - debug_assert_eq!(num_transactions, transaction_traces.len()); - - let block_header = block.header(); - - self.indented(|logger| { - logger.log_block_id(block); - - logger.indented(|logger| { - logger.log_base_fee(block_header.base_fee_per_gas.as_ref()); - - for (idx, transaction, result, trace) in izip!( - 0..num_transactions, - transactions, - transaction_results, - transaction_traces - ) { - let should_highlight_hash = - *transaction.hash() == *transaction_hash_to_highlight; - logger.log_block_transaction( - spec_id, - transaction, - result, - trace, - console_log_inputs, - should_highlight_hash, - ); - - logger.log_empty_line_between_transactions(idx, num_transactions); - } - }); - }); - - self.log_empty_line(); - } - - fn log_block_hash(&mut self, block: &dyn SyncBlock) { - let block_hash = block.hash(); - - self.log(format!("Block: {block_hash}")); - } - - fn log_block_id(&mut self, block: &dyn SyncBlock) { - let block_number = block.header().number; - let block_hash = block.hash(); - - self.log(format!("Block #{block_number}: {block_hash}")); - } - - fn log_block_number(&mut self, block: &dyn SyncBlock) { - let block_number = block.header().number; - - self.log(format!("Mined block #{block_number}")); - } - - /// Logs a transaction that's part of a block. - fn log_block_transaction( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &edr_evm::ExecutableTransaction, - result: &edr_evm::ExecutionResult, - trace: &edr_evm::trace::Trace, - console_log_inputs: &[Bytes], - should_highlight_hash: bool, - ) { - let transaction_hash = transaction.hash(); - if should_highlight_hash { - self.log_with_title( - "Transaction", - Style::new().bold().paint(transaction_hash.to_string()), - ); - } else { - self.log_with_title("Transaction", transaction_hash.to_string()); - } - - self.indented(|logger| { - logger.log_contract_and_function_name::(spec_id, trace); - logger.log_with_title("From", format!("0x{:x}", transaction.caller())); - if let Some(to) = transaction.to() { - logger.log_with_title("To", format!("0x{to:x}")); - } - logger.log_with_title("Value", wei_to_human_readable(transaction.value())); - logger.log_with_title( - "Gas used", - format!( - "{gas_used} of {gas_limit}", - gas_used = result.gas_used(), - gas_limit = transaction.gas_limit() - ), - ); - - logger.log_console_log_messages(console_log_inputs); - - let transaction_failure = edr_provider::TransactionFailure::from_execution_result( - result, - Some(transaction_hash), - trace, - ); - - if let Some(transaction_failure) = transaction_failure { - logger.log_transaction_failure(&transaction_failure); - } - }); - } - - fn log_console_log_messages(&mut self, console_log_inputs: &[Bytes]) { - let (sender, receiver) = channel(); - - let status = self.decode_console_log_inputs_fn.call_with_return_value( - console_log_inputs.to_vec(), - ThreadsafeFunctionCallMode::Blocking, - move |decoded_inputs: Vec| { - sender.send(decoded_inputs).map_err(|_error| { - napi::Error::new( - Status::GenericFailure, - "Failed to send result from decode_console_log_inputs", - ) - }) - }, - ); - assert_eq!(status, Status::Ok); - - let console_log_inputs = receiver.recv().unwrap(); - // This is a special case, as we always want to print the console.log messages. - // The difference is how. If we have a logger, we should use that, so that logs - // are printed in order. If we don't, we just print the messages here. - if self.is_enabled { - if !console_log_inputs.is_empty() { - self.log_empty_line(); - self.log("console.log:"); - - self.indented(|logger| { - for input in console_log_inputs { - logger.log(input); - } - }); - } - } else { - for input in console_log_inputs { - let status = self - .print_line_fn - .call((input, false), ThreadsafeFunctionCallMode::Blocking); - - assert_eq!(status, napi::Status::Ok); - } - } - } - - fn log_contract_and_function_name( - &mut self, - spec_id: edr_eth::SpecId, - trace: &edr_evm::trace::Trace, - ) { - if let Some(TraceMessage::Before(before_message)) = trace.messages.first() { - if let Some(to) = before_message.to { - // Call - let is_precompile = { - let precompiles = - Precompiles::new(precompile::PrecompileSpecId::from_spec_id(spec_id)); - precompiles.contains(&to) - }; - - if is_precompile { - let precompile = u16::from_be_bytes([to[18], to[19]]); - self.log_with_title( - "Precompile call", - format!(""), - ); - } else { - let is_code_empty = before_message - .code - .as_ref() - .map_or(true, edr_evm::Bytecode::is_empty); - - if is_code_empty { - if PRINT_INVALID_CONTRACT_WARNING { - self.log("WARNING: Calling an account which is not a contract"); - } - } else { - let (contract_name, function_name) = self.contract_and_function_name( - before_message - .code - .as_ref() - .map(edr_evm::Bytecode::original_bytes) - .expect("Call must be defined"), - Some(before_message.data.clone()), - ); - - let function_name = function_name.expect("Function name must be defined"); - self.log_with_title( - "Contract call", - if function_name.is_empty() { - contract_name - } else { - format!("{contract_name}#{function_name}") - }, - ); - } - } - } else { - let result = if let Some(TraceMessage::After(result)) = trace.messages.last() { - result - } else { - unreachable!("Before messages must have an after message") - }; - - // Create - let (contract_name, _) = - self.contract_and_function_name(before_message.data.clone(), None); - - self.log_with_title("Contract deployment", contract_name); - - if let ExecutionResult::Success { output, .. } = result { - if let edr_evm::Output::Create(_, address) = output { - if let Some(deployed_address) = address { - self.log_with_title( - "Contract address", - format!("0x{deployed_address:x}"), - ); - } - } else { - unreachable!("Create calls must return a Create output") - } - } - } - } - } - - fn log_empty_block(&mut self, block: &dyn SyncBlock) { - let block_header = block.header(); - let block_number = block_header.number; - - let base_fee = if let Some(base_fee) = block_header.base_fee_per_gas.as_ref() { - format!(" with base fee {base_fee}") - } else { - String::new() - }; - - self.log(format!("Mined empty block #{block_number}{base_fee}",)); - } - - fn log_empty_line(&mut self) { - self.log(""); - } - - fn log_empty_line_between_transactions(&mut self, idx: usize, num_transactions: usize) { - if num_transactions > 1 && idx < num_transactions - 1 { - self.log_empty_line(); - } - } - - fn log_hardhat_mined_empty_block( - &mut self, - block: &dyn SyncBlock, - empty_blocks_range_start: Option, - ) { - self.indented(|logger| { - if let Some(empty_blocks_range_start) = empty_blocks_range_start { - logger.replace_last_log_line(format!( - "Mined empty block range #{empty_blocks_range_start} to #{block_number}", - block_number = block.header().number - )); - } else { - logger.log_empty_block(block); - } - }); - } - - /// Logs the result of interval mining a block. - fn log_interval_mined_block( - &mut self, - spec_id: edr_eth::SpecId, - result: &edr_provider::DebugMineBlockResult, - ) { - let edr_provider::DebugMineBlockResult { - block, - transaction_results, - transaction_traces, - console_log_inputs, - } = result; - - let transactions = block.transactions(); - let num_transactions = transactions.len(); - - debug_assert_eq!(num_transactions, transaction_results.len()); - debug_assert_eq!(num_transactions, transaction_traces.len()); - - let block_header = block.header(); - - self.indented(|logger| { - logger.log_block_hash(block); - - logger.indented(|logger| { - logger.log_base_fee(block_header.base_fee_per_gas.as_ref()); - - for (idx, transaction, result, trace) in izip!( - 0..num_transactions, - transactions, - transaction_results, - transaction_traces - ) { - logger.log_block_transaction( - spec_id, - transaction, - result, - trace, - console_log_inputs, - false, - ); - - logger.log_empty_line_between_transactions(idx, num_transactions); - } - }); - }); - } - - fn log_hardhat_mined_block( - &mut self, - spec_id: edr_eth::SpecId, - result: &edr_provider::DebugMineBlockResult, - ) { - let edr_provider::DebugMineBlockResult { - block, - transaction_results, - transaction_traces, - console_log_inputs, - } = result; - - let transactions = block.transactions(); - let num_transactions = transactions.len(); - - debug_assert_eq!(num_transactions, transaction_results.len()); - debug_assert_eq!(num_transactions, transaction_traces.len()); - - self.indented(|logger| { - if transactions.is_empty() { - logger.log_empty_block(block); - } else { - logger.log_block_number(block); - - logger.indented(|logger| { - logger.log_block_hash(block); - - logger.indented(|logger| { - logger.log_base_fee(block.header().base_fee_per_gas.as_ref()); - - for (idx, transaction, result, trace) in izip!( - 0..num_transactions, - transactions, - transaction_results, - transaction_traces - ) { - logger.log_block_transaction( - spec_id, - transaction, - result, - trace, - console_log_inputs, - false, - ); - - logger.log_empty_line_between_transactions(idx, num_transactions); - } - }); - }); - } - }); - } - - /// Logs a warning about multiple blocks being mined. - fn log_multiple_blocks_warning(&mut self) { - self.indented(|logger| { - logger - .log("There were other pending transactions. More than one block had to be mined:"); - }); - self.log_empty_line(); - } - - /// Logs a warning about multiple transactions being mined. - fn log_multiple_transactions_warning(&mut self) { - self.indented(|logger| { - logger.log("There were other pending transactions mined in the same block:"); - }); - self.log_empty_line(); - } - - fn log_with_title(&mut self, title: impl Into, message: impl Display) { - // repeat whitespace self.indentation times and concatenate with title - let title = format!("{:indent$}{}", "", title.into(), indent = self.indentation); - if title.len() > self.title_length { - self.title_length = title.len(); - } - - let message = format!("{message}"); - self.logs.push(LogLine::WithTitle(title, message)); - } - - fn log_currently_sent_transaction( - &mut self, - spec_id: edr_eth::SpecId, - block_result: &edr_provider::DebugMineBlockResult, - transaction: &ExecutableTransaction, - transaction_result: &edr_evm::ExecutionResult, - trace: &edr_evm::trace::Trace, - ) { - self.indented(|logger| { - logger.log("Currently sent transaction:"); - logger.log(""); - }); - - self.log_transaction( - spec_id, - block_result, - transaction, - transaction_result, - trace, - ); - } - - fn log_single_transaction_mining_result( - &mut self, - spec_id: edr_eth::SpecId, - result: &edr_provider::DebugMineBlockResult, - transaction: &ExecutableTransaction, - ) { - let trace = result - .transaction_traces - .first() - .expect("A transaction exists, so the trace must exist as well."); - - let transaction_result = result - .transaction_results - .first() - .expect("A transaction exists, so the result must exist as well."); - - self.log_transaction(spec_id, result, transaction, transaction_result, trace); - } - - fn log_transaction( - &mut self, - spec_id: edr_eth::SpecId, - block_result: &edr_provider::DebugMineBlockResult, - transaction: &ExecutableTransaction, - transaction_result: &edr_evm::ExecutionResult, - trace: &edr_evm::trace::Trace, - ) { - self.indented(|logger| { - logger.log_contract_and_function_name::(spec_id, trace); - - let transaction_hash = transaction.hash(); - logger.log_with_title("Transaction", transaction_hash); - - logger.log_with_title("From", format!("0x{:x}", transaction.caller())); - if let Some(to) = transaction.to() { - logger.log_with_title("To", format!("0x{to:x}")); - } - logger.log_with_title("Value", wei_to_human_readable(transaction.value())); - logger.log_with_title( - "Gas used", - format!( - "{gas_used} of {gas_limit}", - gas_used = transaction_result.gas_used(), - gas_limit = transaction.gas_limit() - ), - ); - - let block_number = block_result.block.header().number; - logger.log_with_title(format!("Block #{block_number}"), block_result.block.hash()); - - logger.log_console_log_messages(&block_result.console_log_inputs); - - let transaction_failure = edr_provider::TransactionFailure::from_execution_result( - transaction_result, - Some(transaction_hash), - trace, - ); - - if let Some(transaction_failure) = transaction_failure { - logger.log_transaction_failure(&transaction_failure); - } - }); - } - - fn print(&mut self, message: impl ToString) -> Result<(), LoggerError> { - if !self.is_enabled { - return Ok(()); - } - - let formatted = self.format(message); - - let status = self - .print_line_fn - .call((formatted, REPLACE), ThreadsafeFunctionCallMode::Blocking); - - if status == napi::Status::Ok { - Ok(()) - } else { - Err(LoggerError::PrintLine) - } - } - - fn print_empty_line(&mut self) -> Result<(), LoggerError> { - self.print::("") - } - - fn print_logs(&mut self) -> Result { - let logs = std::mem::take(&mut self.logs); - if logs.is_empty() { - return Ok(false); - } - - for log in logs { - let line = match log { - LogLine::Single(message) => message, - LogLine::WithTitle(title, message) => { - let title = format!("{title}:"); - format!("{title:indent$} {message}", indent = self.title_length + 1) - } - }; - - self.print::(line)?; - } - - Ok(true) - } - - fn print_method(&mut self, method: &str) -> Result<(), LoggerError> { - if let Some(collapsed_method) = self.collapsed_method(method) { - collapsed_method.count += 1; - - let line = format!("{method} ({count})", count = collapsed_method.count); - self.print::(Color::Green.paint(line)) - } else { - self.state = LoggingState::CollapsingMethod(CollapsedMethod { - count: 1, - method: method.to_string(), - }); - - self.print::(Color::Green.paint(method)) - } - } - - /// Retrieves the collapsed method with the provided name, if it exists. - fn collapsed_method(&mut self, method: &str) -> Option<&mut CollapsedMethod> { - if let LoggingState::CollapsingMethod(collapsed_method) = &mut self.state { - if collapsed_method.method == method { - return Some(collapsed_method); - } - } - - None - } - - fn replace_last_log_line(&mut self, message: impl ToString) { - let formatted = self.format(message); - - *self.logs.last_mut().expect("There must be a log line") = LogLine::Single(formatted); - } -} - -fn wei_to_human_readable(wei: U256) -> String { - if wei == U256::ZERO { - "0 ETH".to_string() - } else if wei < U256::from(100_000u64) { - format!("{wei} wei") - } else if wei < U256::from(100_000_000_000_000u64) { - let mut decimal = to_decimal_string(wei, 9); - decimal.push_str(" gwei"); - decimal - } else { - let mut decimal = to_decimal_string(wei, 18); - decimal.push_str(" ETH"); - decimal - } -} - -/// Converts the provided `value` to a decimal string after dividing it by -/// `10^exponent`. The returned string will have at most `MAX_DECIMALS` -/// decimals. -fn to_decimal_string(value: U256, exponent: u8) -> String { - const MAX_DECIMALS: u8 = 4; - - let (integer, remainder) = value.div_rem(U256::from(10).pow(U256::from(exponent))); - let decimal = remainder / U256::from(10).pow(U256::from(exponent - MAX_DECIMALS)); - - // Remove trailing zeros - let decimal = decimal.to_string().trim_end_matches('0').to_string(); - - format!("{integer}.{decimal}") -} diff --git a/crates/edr_napi/src/provider.rs b/crates/edr_napi/src/provider.rs deleted file mode 100644 index a86f68ec9f..0000000000 --- a/crates/edr_napi/src/provider.rs +++ /dev/null @@ -1,223 +0,0 @@ -mod config; - -use std::sync::Arc; - -use edr_eth::remote::jsonrpc; -use edr_provider::InvalidRequestReason; -use napi::{tokio::runtime, Env, JsFunction, JsObject, Status}; -use napi_derive::napi; - -use self::config::ProviderConfig; -use crate::{ - call_override::CallOverrideCallback, - context::EdrContext, - logger::{Logger, LoggerConfig, LoggerError}, - subscribe::SubscriberCallback, - trace::RawTrace, -}; - -/// A JSON-RPC provider for Ethereum. -#[napi] -pub struct Provider { - provider: Arc>, - #[cfg(feature = "scenarios")] - scenario_file: Option>, -} - -#[napi] -impl Provider { - #[doc = "Constructs a new provider with the provided configuration."] - #[napi(ts_return_type = "Promise")] - pub fn with_config( - env: Env, - // We take the context as argument to ensure that tracing is initialized properly. - _context: &EdrContext, - config: ProviderConfig, - logger_config: LoggerConfig, - #[napi(ts_arg_type = "(event: SubscriptionEvent) => void")] subscriber_callback: JsFunction, - ) -> napi::Result { - let config = edr_provider::ProviderConfig::try_from(config)?; - let runtime = runtime::Handle::current(); - - let logger = Box::new(Logger::new(&env, logger_config)?); - let subscriber_callback = SubscriberCallback::new(&env, subscriber_callback)?; - let subscriber_callback = Box::new(move |event| subscriber_callback.call(event)); - - let (deferred, promise) = env.create_deferred()?; - runtime.clone().spawn_blocking(move || { - #[cfg(feature = "scenarios")] - let scenario_file = - runtime::Handle::current().block_on(crate::scenarios::scenario_file( - &config, - edr_provider::Logger::is_enabled(&*logger), - ))?; - - let result = edr_provider::Provider::new(runtime, logger, subscriber_callback, config) - .map_or_else( - |error| Err(napi::Error::new(Status::GenericFailure, error.to_string())), - |provider| { - Ok(Provider { - provider: Arc::new(provider), - #[cfg(feature = "scenarios")] - scenario_file, - }) - }, - ); - - deferred.resolve(|_env| result); - Ok::<_, napi::Error>(()) - }); - - Ok(promise) - } - - #[doc = "Handles a JSON-RPC request and returns a JSON-RPC response."] - #[napi] - pub async fn handle_request(&self, json_request: String) -> napi::Result { - let provider = self.provider.clone(); - let request = match serde_json::from_str(&json_request) { - Ok(request) => request, - Err(error) => { - let message = error.to_string(); - let reason = InvalidRequestReason::new(&json_request, &message); - - // HACK: We need to log failed deserialization attempts when they concern input - // validation. - if let Some((method_name, provider_error)) = reason.provider_error() { - // Ignore potential failure of logging, as returning the original error is more - // important - let _result = runtime::Handle::current() - .spawn_blocking(move || { - provider.log_failed_deserialization(&method_name, &provider_error) - }) - .await - .map_err(|error| { - napi::Error::new(Status::GenericFailure, error.to_string()) - })?; - } - - let data = serde_json::from_str(&json_request).ok(); - let response = jsonrpc::ResponseData::<()>::Error { - error: jsonrpc::Error { - code: reason.error_code(), - message: reason.error_message(), - data, - }, - }; - - return serde_json::to_string(&response) - .map_err(|error| { - napi::Error::new( - Status::InvalidArg, - format!("Invalid JSON `{json_request}` due to: {error}"), - ) - }) - .map(|json_response| Response { - solidity_trace: None, - json: json_response, - traces: Vec::new(), - }); - } - }; - - #[cfg(feature = "scenarios")] - if let Some(scenario_file) = &self.scenario_file { - crate::scenarios::write_request(scenario_file, &request).await?; - } - - let mut response = runtime::Handle::current() - .spawn_blocking(move || provider.handle_request(request)) - .await - .map_err(|e| napi::Error::new(Status::GenericFailure, e.to_string()))?; - - // We can take the solidity trace as it won't be used for anything else - let solidity_trace = response.as_mut().err().and_then(|error| { - if let edr_provider::ProviderError::TransactionFailed(failure) = error { - if matches!( - failure.failure.reason, - edr_provider::TransactionFailureReason::OutOfGas(_) - ) { - None - } else { - Some(Arc::new(std::mem::take( - &mut failure.failure.solidity_trace, - ))) - } - } else { - None - } - }); - - // We can take the traces as they won't be used for anything else - let traces = match &mut response { - Ok(response) => std::mem::take(&mut response.traces), - Err(edr_provider::ProviderError::TransactionFailed(failure)) => { - std::mem::take(&mut failure.traces) - } - Err(_) => Vec::new(), - }; - - let response = jsonrpc::ResponseData::from(response.map(|response| response.result)); - - serde_json::to_string(&response) - .map_err(|e| napi::Error::new(Status::GenericFailure, e.to_string())) - .map(|json_response| Response { - solidity_trace, - json: json_response, - traces: traces.into_iter().map(Arc::new).collect(), - }) - } - - #[napi(ts_return_type = "void")] - pub fn set_call_override_callback( - &self, - env: Env, - #[napi( - ts_arg_type = "(contract_address: Buffer, data: Buffer) => Promise" - )] - call_override_callback: JsFunction, - ) -> napi::Result<()> { - let provider = self.provider.clone(); - - let call_override_callback = CallOverrideCallback::new(&env, call_override_callback)?; - let call_override_callback = - Arc::new(move |address, data| call_override_callback.call_override(address, data)); - - provider.set_call_override_callback(Some(call_override_callback)); - - Ok(()) - } -} - -#[napi] -pub struct Response { - json: String, - /// When a transaction fails to execute, the provider returns a trace of the - /// transaction. - solidity_trace: Option>, - /// This may contain zero or more traces, depending on the (batch) request - traces: Vec>, -} - -#[napi] -impl Response { - #[napi(getter)] - pub fn json(&self) -> String { - self.json.clone() - } - - #[napi(getter)] - pub fn solidity_trace(&self) -> Option { - self.solidity_trace - .as_ref() - .map(|trace| RawTrace::new(trace.clone())) - } - - #[napi(getter)] - pub fn traces(&self) -> Vec { - self.traces - .iter() - .map(|trace| RawTrace::new(trace.clone())) - .collect() - } -} diff --git a/crates/edr_napi/src/provider/config.rs b/crates/edr_napi/src/provider/config.rs deleted file mode 100644 index f2a5aec2e5..0000000000 --- a/crates/edr_napi/src/provider/config.rs +++ /dev/null @@ -1,288 +0,0 @@ -use std::{ - num::NonZeroU64, - path::PathBuf, - time::{Duration, SystemTime}, -}; - -use edr_eth::HashMap; -use edr_provider::AccountConfig; -use napi::{ - bindgen_prelude::{BigInt, Buffer}, - Either, -}; -use napi_derive::napi; - -use crate::{account::GenesisAccount, block::BlobGas, cast::TryCast, config::SpecId}; - -/// Configuration for a chain -#[napi(object)] -pub struct ChainConfig { - /// The chain ID - pub chain_id: BigInt, - /// The chain's supported hardforks - pub hardforks: Vec, -} - -/// Configuration for forking a blockchain -#[napi(object)] -pub struct ForkConfig { - /// The URL of the JSON-RPC endpoint to fork from - pub json_rpc_url: String, - /// The block number to fork from. If not provided, the latest safe block is - /// used. - pub block_number: Option, - /// The HTTP headers to use when making requests to the JSON-RPC endpoint - pub http_headers: Option>, -} - -#[napi(object)] -pub struct HttpHeader { - pub name: String, - pub value: String, -} - -/// Configuration for a hardfork activation -#[napi(object)] -pub struct HardforkActivation { - /// The block number at which the hardfork is activated - pub block_number: BigInt, - /// The activated hardfork - pub spec_id: SpecId, -} - -#[napi(string_enum)] -#[doc = "The type of ordering to use when selecting blocks to mine."] -pub enum MineOrdering { - #[doc = "Insertion order"] - Fifo, - #[doc = "Effective miner fee"] - Priority, -} - -/// Configuration for the provider's mempool. -#[napi(object)] -pub struct MemPoolConfig { - pub order: MineOrdering, -} - -#[napi(object)] -pub struct IntervalRange { - pub min: BigInt, - pub max: BigInt, -} - -/// Configuration for the provider's miner. -#[napi(object)] -pub struct MiningConfig { - pub auto_mine: bool, - pub interval: Option>, - pub mem_pool: MemPoolConfig, -} - -/// Configuration for a provider -#[napi(object)] -pub struct ProviderConfig { - /// Whether to allow blocks with the same timestamp - pub allow_blocks_with_same_timestamp: bool, - /// Whether to allow unlimited contract size - pub allow_unlimited_contract_size: bool, - /// Whether to return an `Err` when `eth_call` fails - pub bail_on_call_failure: bool, - /// Whether to return an `Err` when a `eth_sendTransaction` fails - pub bail_on_transaction_failure: bool, - /// The gas limit of each block - pub block_gas_limit: BigInt, - /// The directory to cache remote JSON-RPC responses - pub cache_dir: Option, - /// The chain ID of the blockchain - pub chain_id: BigInt, - /// The configuration for chains - pub chains: Vec, - /// The address of the coinbase - pub coinbase: Buffer, - /// The configuration for forking a blockchain. If not provided, a local - /// blockchain will be created - pub fork: Option, - /// The genesis accounts of the blockchain - pub genesis_accounts: Vec, - /// The hardfork of the blockchain - pub hardfork: SpecId, - /// The initial base fee per gas of the blockchain. Required for EIP-1559 - /// transactions and later - pub initial_base_fee_per_gas: Option, - /// The initial blob gas of the blockchain. Required for EIP-4844 - pub initial_blob_gas: Option, - /// The initial date of the blockchain, in seconds since the Unix epoch - pub initial_date: Option, - /// The initial parent beacon block root of the blockchain. Required for - /// EIP-4788 - pub initial_parent_beacon_block_root: Option, - /// The minimum gas price of the next block. - pub min_gas_price: BigInt, - /// The configuration for the miner - pub mining: MiningConfig, - /// The network ID of the blockchain - pub network_id: BigInt, -} - -impl TryFrom for edr_provider::hardhat_rpc_types::ForkConfig { - type Error = napi::Error; - - fn try_from(value: ForkConfig) -> Result { - let block_number: Option = value.block_number.map(TryCast::try_cast).transpose()?; - let http_headers = value.http_headers.map(|http_headers| { - http_headers - .into_iter() - .map(|HttpHeader { name, value }| (name, value)) - .collect() - }); - - Ok(Self { - json_rpc_url: value.json_rpc_url, - block_number, - http_headers, - }) - } -} - -impl From for edr_provider::MemPoolConfig { - fn from(value: MemPoolConfig) -> Self { - Self { - order: value.order.into(), - } - } -} - -impl From for edr_evm::MineOrdering { - fn from(value: MineOrdering) -> Self { - match value { - MineOrdering::Fifo => Self::Fifo, - MineOrdering::Priority => Self::Priority, - } - } -} - -impl TryFrom for edr_provider::MiningConfig { - type Error = napi::Error; - - fn try_from(value: MiningConfig) -> Result { - let mem_pool = value.mem_pool.into(); - - let interval = value - .interval - .map(|interval| { - let interval = match interval { - Either::A(interval) => { - let interval = interval.try_cast()?; - let interval = NonZeroU64::new(interval).ok_or_else(|| { - napi::Error::new( - napi::Status::GenericFailure, - "Interval must be greater than 0", - ) - })?; - - edr_provider::IntervalConfig::Fixed(interval) - } - Either::B(IntervalRange { min, max }) => edr_provider::IntervalConfig::Range { - min: min.try_cast()?, - max: max.try_cast()?, - }, - }; - - napi::Result::Ok(interval) - }) - .transpose()?; - - Ok(Self { - auto_mine: value.auto_mine, - interval, - mem_pool, - }) - } -} - -impl TryFrom for edr_provider::ProviderConfig { - type Error = napi::Error; - - fn try_from(value: ProviderConfig) -> Result { - let chains = value - .chains - .into_iter() - .map( - |ChainConfig { - chain_id, - hardforks, - }| { - let hardforks = hardforks - .into_iter() - .map( - |HardforkActivation { - block_number, - spec_id, - }| { - let block_number = block_number.try_cast()?; - let spec_id = spec_id.into(); - - Ok((block_number, spec_id)) - }, - ) - .collect::>>()?; - - let chain_id = chain_id.try_cast()?; - Ok((chain_id, edr_eth::spec::HardforkActivations::new(hardforks))) - }, - ) - .collect::>()?; - - let block_gas_limit = - NonZeroU64::new(value.block_gas_limit.try_cast()?).ok_or_else(|| { - napi::Error::new( - napi::Status::GenericFailure, - "Block gas limit must be greater than 0", - ) - })?; - - Ok(Self { - accounts: value - .genesis_accounts - .into_iter() - .map(AccountConfig::try_from) - .collect::>>()?, - allow_blocks_with_same_timestamp: value.allow_blocks_with_same_timestamp, - allow_unlimited_contract_size: value.allow_unlimited_contract_size, - bail_on_call_failure: value.bail_on_call_failure, - bail_on_transaction_failure: value.bail_on_transaction_failure, - block_gas_limit, - cache_dir: PathBuf::from( - value - .cache_dir - .unwrap_or(String::from(edr_defaults::CACHE_DIR)), - ), - chain_id: value.chain_id.try_cast()?, - chains, - coinbase: value.coinbase.try_cast()?, - fork: value.fork.map(TryInto::try_into).transpose()?, - genesis_accounts: HashMap::new(), - hardfork: value.hardfork.into(), - initial_base_fee_per_gas: value - .initial_base_fee_per_gas - .map(TryCast::try_cast) - .transpose()?, - initial_blob_gas: value.initial_blob_gas.map(TryInto::try_into).transpose()?, - initial_date: value - .initial_date - .map(|date| { - let elapsed_since_epoch = Duration::from_secs(date.try_cast()?); - napi::Result::Ok(SystemTime::UNIX_EPOCH + elapsed_since_epoch) - }) - .transpose()?, - initial_parent_beacon_block_root: value - .initial_parent_beacon_block_root - .map(TryCast::try_cast) - .transpose()?, - mining: value.mining.try_into()?, - min_gas_price: value.min_gas_price.try_cast()?, - network_id: value.network_id.try_cast()?, - }) - } -} diff --git a/crates/edr_napi/src/result.rs b/crates/edr_napi/src/result.rs deleted file mode 100644 index 4811d51454..0000000000 --- a/crates/edr_napi/src/result.rs +++ /dev/null @@ -1,232 +0,0 @@ -use napi::{ - bindgen_prelude::{BigInt, Buffer, Either3}, - Either, Env, JsBuffer, JsBufferValue, -}; -use napi_derive::napi; - -use crate::log::ExecutionLog; - -/// The possible reasons for successful termination of the EVM. -#[napi] -pub enum SuccessReason { - /// The opcode `STOP` was called - Stop, - /// The opcode `RETURN` was called - Return, - /// The opcode `SELFDESTRUCT` was called - SelfDestruct, -} - -impl From for SuccessReason { - fn from(eval: edr_evm::SuccessReason) -> Self { - match eval { - edr_evm::SuccessReason::Stop => Self::Stop, - edr_evm::SuccessReason::Return => Self::Return, - edr_evm::SuccessReason::SelfDestruct => Self::SelfDestruct, - } - } -} - -impl From for edr_evm::SuccessReason { - fn from(value: SuccessReason) -> Self { - match value { - SuccessReason::Stop => Self::Stop, - SuccessReason::Return => Self::Return, - SuccessReason::SelfDestruct => Self::SelfDestruct, - } - } -} - -#[napi(object)] -pub struct CallOutput { - /// Return value - pub return_value: JsBuffer, -} - -#[napi(object)] -pub struct CreateOutput { - /// Return value - pub return_value: JsBuffer, - /// Optionally, a 160-bit address - pub address: Option, -} - -/// The result when the EVM terminates successfully. -#[napi(object)] -pub struct SuccessResult { - /// The reason for termination - pub reason: SuccessReason, - /// The amount of gas used - pub gas_used: BigInt, - /// The amount of gas refunded - pub gas_refunded: BigInt, - /// The logs - pub logs: Vec, - /// The transaction output - pub output: Either, -} - -/// The result when the EVM terminates due to a revert. -#[napi(object)] -pub struct RevertResult { - /// The amount of gas used - pub gas_used: BigInt, - /// The transaction output - pub output: JsBuffer, -} - -/// Indicates that the EVM has experienced an exceptional halt. This causes -/// execution to immediately end with all gas being consumed. -#[napi] -pub enum ExceptionalHalt { - OutOfGas, - OpcodeNotFound, - InvalidFEOpcode, - InvalidJump, - NotActivated, - StackUnderflow, - StackOverflow, - OutOfOffset, - CreateCollision, - PrecompileError, - NonceOverflow, - /// Create init code size exceeds limit (runtime). - CreateContractSizeLimit, - /// Error on created contract that begins with EF - CreateContractStartingWithEF, - /// EIP-3860: Limit and meter initcode. Initcode size limit exceeded. - CreateInitCodeSizeLimit, -} - -impl From for ExceptionalHalt { - fn from(halt: edr_evm::HaltReason) -> Self { - match halt { - edr_evm::HaltReason::OutOfGas(..) => ExceptionalHalt::OutOfGas, - edr_evm::HaltReason::OpcodeNotFound => ExceptionalHalt::OpcodeNotFound, - edr_evm::HaltReason::InvalidFEOpcode => ExceptionalHalt::InvalidFEOpcode, - edr_evm::HaltReason::InvalidJump => ExceptionalHalt::InvalidJump, - edr_evm::HaltReason::NotActivated => ExceptionalHalt::NotActivated, - edr_evm::HaltReason::StackUnderflow => ExceptionalHalt::StackUnderflow, - edr_evm::HaltReason::StackOverflow => ExceptionalHalt::StackOverflow, - edr_evm::HaltReason::OutOfOffset => ExceptionalHalt::OutOfOffset, - edr_evm::HaltReason::CreateCollision => ExceptionalHalt::CreateCollision, - edr_evm::HaltReason::PrecompileError => ExceptionalHalt::PrecompileError, - edr_evm::HaltReason::NonceOverflow => ExceptionalHalt::NonceOverflow, - edr_evm::HaltReason::CreateContractSizeLimit => { - ExceptionalHalt::CreateContractSizeLimit - } - edr_evm::HaltReason::CreateContractStartingWithEF => { - ExceptionalHalt::CreateContractStartingWithEF - } - edr_evm::HaltReason::CreateInitCodeSizeLimit => { - ExceptionalHalt::CreateInitCodeSizeLimit - } - edr_evm::HaltReason::OverflowPayment - | edr_evm::HaltReason::StateChangeDuringStaticCall - | edr_evm::HaltReason::CallNotAllowedInsideStatic - | edr_evm::HaltReason::OutOfFunds - | edr_evm::HaltReason::CallTooDeep => { - unreachable!("Internal halts that can be only found inside Inspector: {halt:?}") - } - } - } -} - -impl From for edr_evm::HaltReason { - fn from(value: ExceptionalHalt) -> Self { - match value { - ExceptionalHalt::OutOfGas => Self::OutOfGas(edr_evm::OutOfGasError::Basic), - ExceptionalHalt::OpcodeNotFound => Self::OpcodeNotFound, - ExceptionalHalt::InvalidFEOpcode => Self::InvalidFEOpcode, - ExceptionalHalt::InvalidJump => Self::InvalidJump, - ExceptionalHalt::NotActivated => Self::NotActivated, - ExceptionalHalt::StackUnderflow => Self::StackUnderflow, - ExceptionalHalt::StackOverflow => Self::StackOverflow, - ExceptionalHalt::OutOfOffset => Self::OutOfOffset, - ExceptionalHalt::CreateCollision => Self::CreateCollision, - ExceptionalHalt::PrecompileError => Self::PrecompileError, - ExceptionalHalt::NonceOverflow => Self::NonceOverflow, - ExceptionalHalt::CreateContractSizeLimit => Self::CreateContractSizeLimit, - ExceptionalHalt::CreateContractStartingWithEF => Self::CreateContractStartingWithEF, - ExceptionalHalt::CreateInitCodeSizeLimit => Self::CreateInitCodeSizeLimit, - } - } -} - -/// The result when the EVM terminates due to an exceptional halt. -#[napi(object)] -pub struct HaltResult { - /// The exceptional halt that occurred - pub reason: ExceptionalHalt, - /// Halting will spend all the gas and will thus be equal to the specified - /// gas limit - pub gas_used: BigInt, -} - -/// The result of executing a transaction. -#[napi(object)] -pub struct ExecutionResult { - /// The transaction result - pub result: Either3, -} - -impl ExecutionResult { - pub fn new(env: &Env, result: &edr_evm::ExecutionResult) -> napi::Result { - let result = match result { - edr_evm::ExecutionResult::Success { - reason, - gas_used, - gas_refunded, - logs, - output, - } => { - let logs = logs - .iter() - .map(|log| ExecutionLog::new(env, log)) - .collect::>()?; - - Either3::A(SuccessResult { - reason: SuccessReason::from(*reason), - gas_used: BigInt::from(*gas_used), - gas_refunded: BigInt::from(*gas_refunded), - logs, - output: match output { - edr_evm::Output::Call(return_value) => { - let return_value = env - .create_buffer_with_data(return_value.to_vec()) - .map(JsBufferValue::into_raw)?; - - Either::A(CallOutput { return_value }) - } - edr_evm::Output::Create(return_value, address) => { - let return_value = env - .create_buffer_with_data(return_value.to_vec()) - .map(JsBufferValue::into_raw)?; - - Either::B(CreateOutput { - return_value, - address: address.map(|address| Buffer::from(address.as_slice())), - }) - } - }, - }) - } - edr_evm::ExecutionResult::Revert { gas_used, output } => { - let output = env - .create_buffer_with_data(output.to_vec()) - .map(JsBufferValue::into_raw)?; - - Either3::B(RevertResult { - gas_used: BigInt::from(*gas_used), - output, - }) - } - edr_evm::ExecutionResult::Halt { reason, gas_used } => Either3::C(HaltResult { - reason: ExceptionalHalt::from(*reason), - gas_used: BigInt::from(*gas_used), - }), - }; - - Ok(Self { result }) - } -} diff --git a/crates/edr_napi/src/scenarios.rs b/crates/edr_napi/src/scenarios.rs deleted file mode 100644 index 25ce1b09a1..0000000000 --- a/crates/edr_napi/src/scenarios.rs +++ /dev/null @@ -1,59 +0,0 @@ -use std::time::{SystemTime, UNIX_EPOCH}; - -use edr_provider::ProviderRequest; -use napi::tokio::{fs::File, io::AsyncWriteExt, sync::Mutex}; -use rand::{distributions::Alphanumeric, Rng}; -use serde::Serialize; - -const SCENARIO_FILE_PREFIX: &str = "EDR_SCENARIO_PREFIX"; - -#[derive(Clone, Debug, Serialize)] -struct ScenarioConfig<'a> { - provider_config: &'a edr_provider::ProviderConfig, - logger_enabled: bool, -} - -pub(crate) async fn scenario_file( - provider_config: &edr_provider::ProviderConfig, - logger_enabled: bool, -) -> Result>, napi::Error> { - if let Ok(scenario_prefix) = std::env::var(SCENARIO_FILE_PREFIX) { - let timestamp = SystemTime::now() - .duration_since(UNIX_EPOCH) - .expect("Time went backwards") - .as_secs(); - let suffix = rand::thread_rng() - .sample_iter(&Alphanumeric) - .take(4) - .map(char::from) - .collect::(); - - let mut scenario_file = - File::create(format!("{scenario_prefix}_{timestamp}_{suffix}.json")).await?; - - let config = ScenarioConfig { - provider_config, - logger_enabled, - }; - let mut line = serde_json::to_string(&config)?; - line.push('\n'); - scenario_file.write_all(line.as_bytes()).await?; - - Ok(Some(Mutex::new(scenario_file))) - } else { - Ok(None) - } -} - -pub(crate) async fn write_request( - scenario_file: &Mutex, - request: &ProviderRequest, -) -> napi::Result<()> { - let mut line = serde_json::to_string(request)?; - line.push('\n'); - { - let mut scenario_file = scenario_file.lock().await; - scenario_file.write_all(line.as_bytes()).await?; - } - Ok(()) -} diff --git a/crates/edr_napi/src/subscribe.rs b/crates/edr_napi/src/subscribe.rs deleted file mode 100644 index 15963274fe..0000000000 --- a/crates/edr_napi/src/subscribe.rs +++ /dev/null @@ -1,63 +0,0 @@ -use edr_eth::{remote::eth, B256}; -use napi::{ - bindgen_prelude::BigInt, - threadsafe_function::{ - ErrorStrategy, ThreadSafeCallContext, ThreadsafeFunction, ThreadsafeFunctionCallMode, - }, - Env, JsFunction, -}; -use napi_derive::napi; - -#[derive(Clone)] -pub struct SubscriberCallback { - inner: ThreadsafeFunction, -} - -impl SubscriberCallback { - pub fn new(env: &Env, subscription_event_callback: JsFunction) -> napi::Result { - let mut callback = subscription_event_callback.create_threadsafe_function( - 0, - |ctx: ThreadSafeCallContext| { - // SubscriptionEvent - let mut event = ctx.env.create_object()?; - - ctx.env - .create_bigint_from_words(false, ctx.value.filter_id.as_limbs().to_vec()) - .and_then(|filter_id| event.set_named_property("filterId", filter_id))?; - - let result = match ctx.value.result { - edr_provider::SubscriptionEventData::Logs(logs) => ctx.env.to_js_value(&logs), - edr_provider::SubscriptionEventData::NewHeads(block) => { - let block = eth::Block::::from(block); - ctx.env.to_js_value(&block) - } - edr_provider::SubscriptionEventData::NewPendingTransactions(tx_hash) => { - ctx.env.to_js_value(&tx_hash) - } - }?; - - event.set_named_property("result", result)?; - - Ok(vec![event]) - }, - )?; - - // Maintain a weak reference to the function to avoid the event loop from - // exiting. - callback.unref(env)?; - - Ok(Self { inner: callback }) - } - - pub fn call(&self, event: edr_provider::SubscriptionEvent) { - // This is blocking because it's important that the subscription events are - // in-order - self.inner.call(event, ThreadsafeFunctionCallMode::Blocking); - } -} - -#[napi(object)] -pub struct SubscriptionEvent { - pub filter_id: BigInt, - pub result: serde_json::Value, -} diff --git a/crates/edr_napi/src/trace.rs b/crates/edr_napi/src/trace.rs deleted file mode 100644 index 4ec3ee7572..0000000000 --- a/crates/edr_napi/src/trace.rs +++ /dev/null @@ -1,148 +0,0 @@ -use std::sync::Arc; - -use edr_evm::{interpreter::OPCODE_JUMPMAP, trace::BeforeMessage}; -use napi::{ - bindgen_prelude::{BigInt, Buffer, Either3}, - Env, JsBuffer, JsBufferValue, -}; -use napi_derive::napi; - -use crate::result::ExecutionResult; - -#[napi(object)] -pub struct TracingMessage { - /// Sender address - #[napi(readonly)] - pub caller: Buffer, - - /// Recipient address. None if it is a Create message. - #[napi(readonly)] - pub to: Option, - - /// Transaction gas limit - #[napi(readonly)] - pub gas_limit: BigInt, - - /// Depth of the message - #[napi(readonly)] - pub depth: u8, - - /// Input data of the message - #[napi(readonly)] - pub data: JsBuffer, - - /// Value sent in the message - #[napi(readonly)] - pub value: BigInt, - - /// Address of the code that is being executed. Can be different from `to` - /// if a delegate call is being done. - #[napi(readonly)] - pub code_address: Option, - - /// Code of the contract that is being executed. - #[napi(readonly)] - pub code: Option, -} - -impl TracingMessage { - pub fn new(env: &Env, message: &BeforeMessage) -> napi::Result { - let data = env - .create_buffer_with_data(message.data.to_vec()) - .map(JsBufferValue::into_raw)?; - - let code = message.code.as_ref().map_or(Ok(None), |code| { - env.create_buffer_with_data(code.original_bytes().to_vec()) - .map(JsBufferValue::into_raw) - .map(Some) - })?; - - Ok(TracingMessage { - caller: Buffer::from(message.caller.as_slice()), - to: message.to.map(|to| Buffer::from(to.as_slice())), - gas_limit: BigInt::from(message.gas_limit), - depth: message.depth as u8, - data, - value: BigInt { - sign_bit: false, - words: message.value.into_limbs().to_vec(), - }, - code_address: message - .code_address - .map(|address| Buffer::from(address.to_vec())), - code, - }) - } -} - -#[napi(object)] -pub struct TracingStep { - /// Call depth - #[napi(readonly)] - pub depth: u8, - /// The program counter - #[napi(readonly)] - pub pc: BigInt, - /// The executed op code - #[napi(readonly)] - pub opcode: String, - /// The top entry on the stack. None if the stack is empty. - #[napi(readonly)] - pub stack_top: Option, -} - -impl TracingStep { - pub fn new(step: &edr_evm::trace::Step) -> Self { - Self { - depth: step.depth as u8, - pc: BigInt::from(step.pc), - opcode: OPCODE_JUMPMAP[usize::from(step.opcode)] - .unwrap_or("") - .to_string(), - stack_top: step.stack_top.map(|v| BigInt { - sign_bit: false, - words: v.into_limbs().to_vec(), - }), - } - } -} - -#[napi(object)] -pub struct TracingMessageResult { - /// Execution result - #[napi(readonly)] - pub execution_result: ExecutionResult, -} - -#[napi] -pub struct RawTrace { - inner: Arc, -} - -impl RawTrace { - pub fn new(inner: Arc) -> Self { - Self { inner } - } -} - -#[napi] -impl RawTrace { - #[napi] - pub fn trace( - &self, - env: Env, - ) -> napi::Result>> { - self.inner - .messages - .iter() - .map(|message| match message { - edr_evm::trace::TraceMessage::Before(message) => { - TracingMessage::new(&env, message).map(Either3::A) - } - edr_evm::trace::TraceMessage::Step(step) => Ok(Either3::B(TracingStep::new(step))), - edr_evm::trace::TraceMessage::After(result) => ExecutionResult::new(&env, result) - .map(|execution_result| Either3::C(TracingMessageResult { execution_result })), - }) - .collect::>() - } -} diff --git a/crates/edr_napi/src/withdrawal.rs b/crates/edr_napi/src/withdrawal.rs deleted file mode 100644 index 71695517e3..0000000000 --- a/crates/edr_napi/src/withdrawal.rs +++ /dev/null @@ -1,49 +0,0 @@ -use edr_eth::Address; -use napi::bindgen_prelude::{BigInt, Buffer}; -use napi_derive::napi; - -use crate::cast::TryCast; - -#[napi(object)] -pub struct Withdrawal { - /// The index of withdrawal - pub index: BigInt, - /// The index of the validator that generated the withdrawal - pub validator_index: BigInt, - /// The recipient address for withdrawal value - pub address: Buffer, - /// The value contained in withdrawal - pub amount: BigInt, -} - -impl From for Withdrawal { - fn from(withdrawal: edr_eth::withdrawal::Withdrawal) -> Self { - Self { - index: BigInt::from(withdrawal.index), - validator_index: BigInt::from(withdrawal.validator_index), - address: Buffer::from(withdrawal.address.as_slice()), - amount: BigInt { - sign_bit: false, - words: withdrawal.amount.as_limbs().to_vec(), - }, - } - } -} - -impl TryFrom for edr_eth::withdrawal::Withdrawal { - type Error = napi::Error; - - fn try_from(value: Withdrawal) -> Result { - let index: u64 = BigInt::try_cast(value.index)?; - let validator_index: u64 = BigInt::try_cast(value.validator_index)?; - let amount = BigInt::try_cast(value.amount)?; - let address = Address::from_slice(&value.address); - - Ok(Self { - index, - validator_index, - address, - amount, - }) - } -} diff --git a/crates/edr_napi/test/provider.ts b/crates/edr_napi/test/provider.ts deleted file mode 100644 index 6e347bd3f5..0000000000 --- a/crates/edr_napi/test/provider.ts +++ /dev/null @@ -1,104 +0,0 @@ -import chai, { assert } from "chai"; -import chaiAsPromised from "chai-as-promised"; -import { - ContractAndFunctionName, - EdrContext, - MineOrdering, - Provider, - SpecId, - SubscriptionEvent, -} from ".."; - -chai.use(chaiAsPromised); - -function getEnv(key: string): string | undefined { - const variable = process.env[key]; - if (variable === undefined || variable === "") { - return undefined; - } - - const trimmed = variable.trim(); - - return trimmed.length === 0 ? undefined : trimmed; -} - -const ALCHEMY_URL = getEnv("ALCHEMY_URL"); - -describe("Provider", () => { - const context = new EdrContext(); - const providerConfig = { - allowBlocksWithSameTimestamp: false, - allowUnlimitedContractSize: true, - bailOnCallFailure: false, - bailOnTransactionFailure: false, - blockGasLimit: 300_000_000n, - chainId: 123n, - chains: [], - coinbase: Buffer.from("0000000000000000000000000000000000000000", "hex"), - genesisAccounts: [], - hardfork: SpecId.Latest, - initialBlobGas: { - gasUsed: 0n, - excessGas: 0n, - }, - initialParentBeaconBlockRoot: Buffer.from( - "0000000000000000000000000000000000000000000000000000000000000000", - "hex" - ), - minGasPrice: 0n, - mining: { - autoMine: true, - memPool: { - order: MineOrdering.Priority, - }, - }, - networkId: 123n, - }; - - const loggerConfig = { - enable: false, - decodeConsoleLogInputsCallback: (inputs: Buffer[]): string[] => { - return []; - }, - getContractAndFunctionNameCallback: ( - _code: Buffer, - _calldata?: Buffer - ): ContractAndFunctionName => { - return { - contractName: "", - }; - }, - printLineCallback: (message: string, replace: boolean) => {}, - }; - - it("initialize local", async function () { - const provider = Provider.withConfig( - context, - providerConfig, - loggerConfig, - (_event: SubscriptionEvent) => {} - ); - - await assert.isFulfilled(provider); - }); - - it("initialize remote", async function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - } - - const provider = Provider.withConfig( - context, - { - fork: { - jsonRpcUrl: ALCHEMY_URL, - }, - ...providerConfig, - }, - loggerConfig, - (_event: SubscriptionEvent) => {} - ); - - await assert.isFulfilled(provider); - }); -}); diff --git a/crates/edr_napi/tsconfig.json b/crates/edr_napi/tsconfig.json deleted file mode 100644 index 470939b26f..0000000000 --- a/crates/edr_napi/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "../../config/typescript/tsconfig.json", - "compilerOptions": { - "outDir": "./build-test", - "rootDirs": [ - "./test" - ], - "composite": true - }, - "include": [ - "./*.ts", - "./test/**/*.ts" - ], - "exclude": [ - "./node_modules" - ] -} diff --git a/crates/edr_provider/Cargo.toml b/crates/edr_provider/Cargo.toml deleted file mode 100644 index e858e12fbd..0000000000 --- a/crates/edr_provider/Cargo.toml +++ /dev/null @@ -1,43 +0,0 @@ -[package] -name = "edr_provider" -version = "0.3.5" -edition = "2021" - -[dependencies] -alloy-sol-types = { version = "0.5.1", default-features = false, features = ["std"] } -anyhow = { version = "1.0.75", optional = true } -dyn-clone = { version = "1.0.13", default-features = false } -edr_defaults = { version = "0.3.5", path = "../edr_defaults" } -edr_eth = { version = "0.3.5", path = "../edr_eth", features = ["rand"] } -edr_evm = { version = "0.3.5", path = "../edr_evm", features = ["tracing"] } -ethers-core = { version = "2.0.12" , features = ["eip712"] } -indexmap = { version = "2.0.0", default-features = false, features = ["std"] } -itertools = { version = "0.12.0", default-features = false, features = ["use_alloc"] } -k256 = { version = "0.13.1", default-features = false, features = ["arithmetic", "ecdsa", "pem", "pkcs8", "precomputed-tables", "std"] } -lazy_static = { version = "1.4.0", default-features = false } -log = { version = "0.4.20", default-features = false } -parking_lot = { version = "0.12.1", default-features = false } -rand = { version = "0.8.5", default-features = false } -rpds = { version = "1.1.0", default-features = false, features = ["std"] } -serde = { version = "1.0.147", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.89" } -sha3 = { version = "0.10.6", default-features = false } -thiserror = { version = "1.0.37", default-features = false } -tokio = { version = "1.21.2", default-features = false, features = ["macros"] } -tracing = { version = "0.1.37", features = ["attributes", "std"], optional = true } -lru = "0.12.2" - -[dev-dependencies] -anyhow = "1.0.75" -edr_test_utils = { version = "0.3.5", path = "../edr_test_utils" } -paste = { version = "1.0.14", default-features = false } -serial_test = "2.0.0" -tempfile = "3.7.1" - -[build-dependencies] -cargo_toml = { version = "0.15.3", default-features = false } -toml = { version = "0.5.9", default-features = false } - -[features] -test-utils = ["anyhow"] -tracing = ["dep:tracing", "edr_eth/tracing", "edr_evm/tracing"] diff --git a/crates/edr_provider/build.rs b/crates/edr_provider/build.rs deleted file mode 100644 index d87ed1fc88..0000000000 --- a/crates/edr_provider/build.rs +++ /dev/null @@ -1,24 +0,0 @@ -use cargo_toml::{Dependency, DependencyDetail, Manifest}; - -fn main() { - let cargo_toml: Manifest = toml::from_str(include_str!("../edr_evm/Cargo.toml")) - .expect("should deserialize Cargo.toml"); - let revm_version = match cargo_toml.dependencies.get("revm") { - Some(Dependency::Simple(s)) => s.clone(), - Some(Dependency::Detailed(DependencyDetail { - version: Some(version), - git, - rev, - .. - })) => { - let rev = rev.clone().map_or(String::new(), |rev| format!("@{rev}")); - let git = git - .clone() - .map_or(String::new(), |git| format!("({git}{rev})")); - format!("{git}{version}") - } - None => panic!("revm dependency not found"), - _ => panic!("Unrecognized revm dependency format"), - }; - println!("cargo:rustc-env=REVM_VERSION={revm_version}"); -} diff --git a/crates/edr_provider/src/config.rs b/crates/edr_provider/src/config.rs deleted file mode 100644 index 0fa99c485f..0000000000 --- a/crates/edr_provider/src/config.rs +++ /dev/null @@ -1,150 +0,0 @@ -use std::{num::NonZeroU64, path::PathBuf, time::SystemTime}; - -use edr_eth::{ - block::BlobGas, spec::HardforkActivations, AccountInfo, Address, HashMap, SpecId, B256, U256, -}; -use edr_evm::{alloy_primitives::ChainId, MineOrdering}; -use rand::Rng; -use serde::{Deserialize, Serialize}; - -use crate::requests::{hardhat::rpc_types::ForkConfig, IntervalConfig as IntervalConfigRequest}; - -/// Configuration for interval mining. -#[derive(Clone, Debug, Deserialize, Serialize)] -pub enum IntervalConfig { - Fixed(NonZeroU64), - Range { min: u64, max: u64 }, -} - -impl IntervalConfig { - /// Generates a (random) interval based on the configuration. - pub fn generate_interval(&self) -> u64 { - match self { - IntervalConfig::Fixed(interval) => interval.get(), - IntervalConfig::Range { min, max } => rand::thread_rng().gen_range(*min..=*max), - } - } -} - -/// An error that occurs when trying to convert [`IntervalConfigRequest`] to an -/// `Option`. -#[derive(Debug, thiserror::Error)] -pub enum IntervalConfigConversionError { - /// The minimum value in the range is greater than the maximum value. - #[error("Minimum value in range is greater than maximum value")] - MinGreaterThanMax, -} - -impl TryInto> for IntervalConfigRequest { - type Error = IntervalConfigConversionError; - - fn try_into(self) -> Result, Self::Error> { - match self { - Self::FixedOrDisabled(0) => Ok(None), - Self::FixedOrDisabled(value) => { - // Zero implies disabled - Ok(NonZeroU64::new(value).map(IntervalConfig::Fixed)) - } - Self::Range([min, max]) => { - if max >= min { - Ok(Some(IntervalConfig::Range { min, max })) - } else { - Err(IntervalConfigConversionError::MinGreaterThanMax) - } - } - } - } -} - -/// Configuration for the provider's mempool. -#[derive(Clone, Debug, Deserialize, Serialize)] -pub struct MemPoolConfig { - pub order: MineOrdering, -} - -/// Configuration for the provider's miner. -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct MiningConfig { - pub auto_mine: bool, - pub interval: Option, - pub mem_pool: MemPoolConfig, -} - -/// Configuration for the provider -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct ProviderConfig { - pub allow_blocks_with_same_timestamp: bool, - pub allow_unlimited_contract_size: bool, - pub accounts: Vec, - /// Whether to return an `Err` when `eth_call` fails - pub bail_on_call_failure: bool, - /// Whether to return an `Err` when a `eth_sendTransaction` fails - pub bail_on_transaction_failure: bool, - pub block_gas_limit: NonZeroU64, - pub cache_dir: PathBuf, - pub chain_id: ChainId, - pub chains: HashMap, - pub coinbase: Address, - pub fork: Option, - // Genesis accounts in addition to accounts. Useful for adding impersonated accounts for tests. - pub genesis_accounts: HashMap, - pub hardfork: SpecId, - pub initial_base_fee_per_gas: Option, - pub initial_blob_gas: Option, - pub initial_date: Option, - pub initial_parent_beacon_block_root: Option, - pub min_gas_price: U256, - pub mining: MiningConfig, - pub network_id: u64, -} - -/// Configuration input for a single account -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct AccountConfig { - /// the secret key of the account - #[serde(with = "secret_key_serde")] - pub secret_key: k256::SecretKey, - /// the balance of the account - pub balance: U256, -} - -mod secret_key_serde { - use edr_eth::signature::{secret_key_from_str, secret_key_to_str}; - use serde::Deserialize; - - pub(super) fn serialize( - secret_key: &k256::SecretKey, - serializer: S, - ) -> Result - where - S: serde::Serializer, - { - serializer.serialize_str(&secret_key_to_str(secret_key)) - } - - pub(super) fn deserialize<'de, D>(deserializer: D) -> Result - where - D: serde::Deserializer<'de>, - { - let s = <&str as Deserialize>::deserialize(deserializer)?; - secret_key_from_str(s).map_err(serde::de::Error::custom) - } -} - -impl Default for MemPoolConfig { - fn default() -> Self { - Self { - order: MineOrdering::Priority, - } - } -} - -impl Default for MiningConfig { - fn default() -> Self { - Self { - auto_mine: true, - interval: None, - mem_pool: MemPoolConfig::default(), - } - } -} diff --git a/crates/edr_provider/src/console_log.rs b/crates/edr_provider/src/console_log.rs deleted file mode 100644 index e75bd4c7c4..0000000000 --- a/crates/edr_provider/src/console_log.rs +++ /dev/null @@ -1,148 +0,0 @@ -use std::sync::Arc; - -use edr_eth::{Address, Bytes}; -use edr_evm::{ - address, - db::Database, - evm::{EvmHandler, FrameOrResult}, - EVMError, GetContextData, -}; - -const CONSOLE_ADDRESS: Address = address!("000000000000000000636F6e736F6c652e6c6f67"); - -/// Registers the `ConsoleLogCollector`'s handles. -pub fn register_console_log_handles< - DatabaseT: Database, - ContextT: GetContextData, ->( - handler: &mut EvmHandler<'_, ContextT, DatabaseT>, -) { - let old_handle = handler.execution.call.clone(); - handler.execution.call = Arc::new( - move |ctx, inputs| -> Result> { - if inputs.contract == CONSOLE_ADDRESS { - let collector = ctx.external.get_context_data(); - collector.record_console_log(inputs.input.clone()); - } - - old_handle(ctx, inputs) - }, - ); -} - -#[derive(Default)] -pub struct ConsoleLogCollector { - encoded_messages: Vec, -} - -impl ConsoleLogCollector { - /// Returns the collected `console.log` messages. - pub fn into_encoded_messages(self) -> Vec { - self.encoded_messages - } - - fn record_console_log(&mut self, encoded_message: Bytes) { - self.encoded_messages.push(encoded_message); - } -} - -#[cfg(test)] -pub(crate) mod tests { - use core::fmt::Debug; - - use anyhow::Context; - use edr_eth::{ - transaction::{ - Eip1559TransactionRequest, TransactionKind, TransactionRequest, - TransactionRequestAndSender, - }, - Bytes, U256, - }; - use edr_evm::hex; - - use crate::data::ProviderData; - - pub struct ConsoleLogTransaction { - pub transaction: TransactionRequestAndSender, - pub expected_call_data: Bytes, - } - - pub fn deploy_console_log_contract( - provider_data: &mut ProviderData, - ) -> anyhow::Result { - // Compiled with solc 0.8.17, without optimizations - /* - // SPDX-License-Identifier: MIT - pragma solidity ^0.8.0; - - import "hardhat/console.sol"; - - contract Foo { - function f() public pure { - console.log("hello"); - } - } - */ - let byte_code = hex::decode("608060405234801561001057600080fd5b5061027a806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806326121ff014610030575b600080fd5b61003861003a565b005b6100786040518060400160405280600581526020017f68656c6c6f00000000000000000000000000000000000000000000000000000081525061007a565b565b6101108160405160240161008e91906101f3565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610113565b50565b61012a8161012261012d61014e565b63ffffffff16565b50565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b610159819050919050565b610161610215565b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561019d578082015181840152602081019050610182565b60008484015250505050565b6000601f19601f8301169050919050565b60006101c582610163565b6101cf818561016e565b93506101df81856020860161017f565b6101e8816101a9565b840191505092915050565b6000602082019050818103600083015261020d81846101ba565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea26469706673582212201e965281cb15cf946ada70867e2acb07debad82404e574500944a7b3e0b799ac64736f6c63430008110033")?; - - let deploy_tx = TransactionRequest::Eip1559(Eip1559TransactionRequest { - kind: TransactionKind::Create, - gas_limit: 10_000_000, - value: U256::ZERO, - input: byte_code.into(), - nonce: 0, - max_priority_fee_per_gas: U256::from(42_000_000_000_u64), - chain_id: provider_data.chain_id(), - max_fee_per_gas: U256::from(42_000_000_000_u64), - access_list: vec![], - }); - - let sender = *provider_data - .accounts() - .next() - .context("should have accounts")?; - - let signed_transaction = - provider_data.sign_transaction_request(TransactionRequestAndSender { - request: deploy_tx, - sender, - })?; - - let deploy_tx_hash = provider_data - .send_transaction(signed_transaction)? - .transaction_hash; - - let deploy_receipt = provider_data - .transaction_receipt(&deploy_tx_hash)? - .context("deploy receipt should exist")?; - let contract_address = deploy_receipt - .contract_address - .context("contract address should exist")?; - - // Call f() - let call_data = hex::decode("26121ff0")?; - - // Expected call data for `console.log("hello")` - let expected_call_data = hex::decode("41304fac0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000568656c6c6f000000000000000000000000000000000000000000000000000000")?.into(); - - let transaction_request = TransactionRequest::Eip1559(Eip1559TransactionRequest { - kind: TransactionKind::Call(contract_address), - gas_limit: 10_000_000, - value: U256::ZERO, - input: call_data.into(), - nonce: 1, - max_priority_fee_per_gas: U256::from(42_000_000_000_u64), - chain_id: provider_data.chain_id(), - max_fee_per_gas: U256::from(42_000_000_000_u64), - access_list: vec![], - }); - - Ok(ConsoleLogTransaction { - transaction: TransactionRequestAndSender { - request: transaction_request, - sender, - }, - expected_call_data, - }) - } -} diff --git a/crates/edr_provider/src/data.rs b/crates/edr_provider/src/data.rs deleted file mode 100644 index 7e206e9337..0000000000 --- a/crates/edr_provider/src/data.rs +++ /dev/null @@ -1,3792 +0,0 @@ -mod account; -mod call; -mod gas; - -use std::{ - cmp::{self, Ordering}, - collections::BTreeMap, - ffi::OsString, - fmt::Debug, - num::{NonZeroU64, NonZeroUsize}, - sync::Arc, - time::{Duration, Instant, SystemTime, UNIX_EPOCH}, -}; - -use edr_eth::{ - block::{calculate_next_base_fee, miner_reward, BlobGas, BlockOptions}, - log::FilterLog, - receipt::BlockReceipt, - remote::{ - client::{HeaderMap, HttpError}, - eth::FeeHistoryResult, - filter::{FilteredEvents, LogOutput, SubscriptionType}, - BlockSpec, BlockTag, Eip1898BlockSpec, RpcClient, RpcClientError, - }, - reward_percentile::RewardPercentile, - signature::{RecoveryMessage, Signature}, - transaction::TransactionRequestAndSender, - Address, Bytes, SpecId, B256, U256, -}; -use edr_evm::{ - blockchain::{ - Blockchain, BlockchainError, ForkedBlockchain, ForkedCreationError, GenesisBlockOptions, - LocalBlockchain, LocalCreationError, SyncBlockchain, - }, - db::StateRef, - debug_trace_transaction, execution_result_to_debug_result, mempool, mine_block, - register_eip_3155_tracer_handles, - state::{ - AccountModifierFn, IrregularState, StateDiff, StateError, StateOverride, StateOverrides, - SyncState, - }, - trace::Trace, - Account, AccountInfo, BlobExcessGasAndPrice, Block, BlockEnv, Bytecode, CfgEnv, - CfgEnvWithHandlerCfg, DebugContext, DebugTraceConfig, DebugTraceResult, ExecutableTransaction, - ExecutionResult, HashMap, HashSet, MemPool, OrderedTransaction, RandomHashGenerator, - StorageSlot, SyncBlock, TracerEip3155, TxEnv, KECCAK_EMPTY, -}; -use ethers_core::types::transaction::eip712::{Eip712, TypedData}; -use gas::gas_used_ratio; -use indexmap::IndexMap; -use itertools::izip; -use lru::LruCache; -use rpds::HashTrieMapSync; -use tokio::runtime; - -use self::account::{create_accounts, InitialAccounts}; -use crate::{ - data::{ - call::{run_call, RunCallArgs}, - gas::{compute_rewards, BinarySearchEstimationArgs, CheckGasLimitArgs}, - }, - debug_mine::{DebugMineBlockResult, DebugMineBlockResultAndState}, - debugger::{register_debugger_handles, Debugger}, - error::{EstimateGasFailure, TransactionFailure, TransactionFailureWithTraces}, - filter::{bloom_contains_log_filter, filter_logs, Filter, FilterData, LogFilter}, - logger::SyncLogger, - mock::{Mocker, SyncCallOverride}, - pending::BlockchainWithPending, - requests::hardhat::rpc_types::{ForkConfig, ForkMetadata}, - snapshot::Snapshot, - MiningConfig, ProviderConfig, ProviderError, SubscriptionEvent, SubscriptionEventData, - SyncSubscriberCallback, -}; - -const DEFAULT_INITIAL_BASE_FEE_PER_GAS: u64 = 1_000_000_000; -const EDR_MAX_CACHED_STATES_ENV_VAR: &str = "__EDR_MAX_CACHED_STATES"; -const DEFAULT_MAX_CACHED_STATES: usize = 100_000; - -/// The result of executing an `eth_call`. -#[derive(Clone, Debug)] -pub struct CallResult { - pub console_log_inputs: Vec, - pub execution_result: ExecutionResult, - pub trace: Trace, -} - -#[derive(Clone)] -pub struct EstimateGasResult { - pub estimation: u64, - pub traces: Vec, -} - -pub struct SendTransactionResult { - pub transaction_hash: B256, - pub mining_results: Vec>, -} - -impl SendTransactionResult { - /// Present if the transaction was auto-mined. - pub fn transaction_result_and_trace(&self) -> Option<(&ExecutionResult, &Trace)> { - self.mining_results.iter().find_map(|result| { - izip!( - result.block.transactions().iter(), - result.transaction_results.iter(), - result.transaction_traces.iter() - ) - .find_map(|(transaction, result, trace)| { - if *transaction.hash() == self.transaction_hash { - Some((result, trace)) - } else { - None - } - }) - }) - } -} - -impl From for (B256, Vec) { - fn from(value: SendTransactionResult) -> Self { - let SendTransactionResult { - transaction_hash, - mining_results, - } = value; - - let traces = mining_results - .into_iter() - .flat_map(|result| result.transaction_traces) - .collect(); - - (transaction_hash, traces) - } -} - -#[derive(Debug, thiserror::Error)] -pub enum CreationError { - /// A blockchain error - #[error(transparent)] - Blockchain(BlockchainError), - /// An error that occurred while constructing a forked blockchain. - #[error(transparent)] - ForkedBlockchainCreation(#[from] ForkedCreationError), - #[error("Invalid HTTP header name: {0}")] - InvalidHttpHeaders(HttpError), - /// Invalid initial date - #[error("The initial date configuration value {0:?} is before the UNIX epoch")] - InvalidInitialDate(SystemTime), - #[error("Invalid max cached states environment variable value: '{0:?}'. Please provide a non-zero integer!")] - InvalidMaxCachedStates(OsString), - /// An error that occurred while constructing a local blockchain. - #[error(transparent)] - LocalBlockchainCreation(#[from] LocalCreationError), - /// An error that occured while querying the remote state. - #[error(transparent)] - RpcClient(#[from] RpcClientError), -} - -pub struct ProviderData { - runtime_handle: runtime::Handle, - initial_config: ProviderConfig, - blockchain: Box>, - pub irregular_state: IrregularState, - mem_pool: MemPool, - beneficiary: Address, - dao_activation_block: Option, - min_gas_price: U256, - parent_beacon_block_root_generator: RandomHashGenerator, - prev_randao_generator: RandomHashGenerator, - block_time_offset_seconds: i64, - fork_metadata: Option, - // Must be set if the provider is created with a fork config. - // Hack to get around the type erasure with the dyn blockchain trait. - rpc_client: Option>, - instance_id: B256, - is_auto_mining: bool, - next_block_base_fee_per_gas: Option, - next_block_timestamp: Option, - next_snapshot_id: u64, - snapshots: BTreeMap, - allow_blocks_with_same_timestamp: bool, - allow_unlimited_contract_size: bool, - // IndexMap to preserve account order for logging. - local_accounts: IndexMap, - filters: HashMap, - last_filter_id: U256, - logger: Box>, - impersonated_accounts: HashSet
, - subscriber_callback: Box, - call_override: Option>, - // We need the Arc to let us avoid returning references to the cache entries which need &mut - // self to get. - block_state_cache: LruCache>>>, - current_state_id: StateId, - block_number_to_state_id: HashTrieMapSync, -} - -impl ProviderData { - pub fn new( - runtime_handle: runtime::Handle, - logger: Box>, - subscriber_callback: Box, - call_override: Option>, - config: ProviderConfig, - ) -> Result { - let InitialAccounts { - local_accounts, - genesis_accounts, - } = create_accounts(&config); - - let BlockchainAndState { - blockchain, - fork_metadata, - rpc_client, - state, - irregular_state, - prev_randao_generator, - block_time_offset_seconds, - next_block_base_fee_per_gas, - } = create_blockchain_and_state(runtime_handle.clone(), &config, genesis_accounts)?; - - let max_cached_states = std::env::var(EDR_MAX_CACHED_STATES_ENV_VAR).map_or_else( - |err| match err { - std::env::VarError::NotPresent => { - Ok(NonZeroUsize::new(DEFAULT_MAX_CACHED_STATES).expect("constant is non-zero")) - } - std::env::VarError::NotUnicode(s) => Err(CreationError::InvalidMaxCachedStates(s)), - }, - |s| { - s.parse() - .map_err(|_err| CreationError::InvalidMaxCachedStates(s.into())) - }, - )?; - let mut block_state_cache = LruCache::new(max_cached_states); - let mut block_number_to_state_id = HashTrieMapSync::default(); - - let current_state_id = StateId::default(); - block_state_cache.push(current_state_id, Arc::new(state)); - block_number_to_state_id.insert_mut(blockchain.last_block_number(), current_state_id); - - let allow_blocks_with_same_timestamp = config.allow_blocks_with_same_timestamp; - let allow_unlimited_contract_size = config.allow_unlimited_contract_size; - let beneficiary = config.coinbase; - let block_gas_limit = config.block_gas_limit; - let is_auto_mining = config.mining.auto_mine; - let min_gas_price = config.min_gas_price; - - let dao_activation_block = config - .chains - .get(&config.chain_id) - .and_then(|config| config.hardfork_activation(SpecId::DAO_FORK)); - - let parent_beacon_block_root_generator = if let Some(initial_parent_beacon_block_root) = - &config.initial_parent_beacon_block_root - { - RandomHashGenerator::with_value(*initial_parent_beacon_block_root) - } else { - RandomHashGenerator::with_seed("randomParentBeaconBlockRootSeed") - }; - - Ok(Self { - runtime_handle, - initial_config: config, - blockchain, - irregular_state, - mem_pool: MemPool::new(block_gas_limit), - beneficiary, - dao_activation_block, - min_gas_price, - parent_beacon_block_root_generator, - prev_randao_generator, - block_time_offset_seconds, - fork_metadata, - rpc_client, - instance_id: B256::random(), - is_auto_mining, - next_block_base_fee_per_gas, - next_block_timestamp: None, - // Start with 1 to mimic Ganache - next_snapshot_id: 1, - snapshots: BTreeMap::new(), - allow_blocks_with_same_timestamp, - allow_unlimited_contract_size, - local_accounts, - filters: HashMap::default(), - last_filter_id: U256::ZERO, - logger, - impersonated_accounts: HashSet::new(), - subscriber_callback, - call_override, - block_state_cache, - current_state_id, - block_number_to_state_id, - }) - } - - pub fn set_call_override_callback(&mut self, call_override: Option>) { - self.call_override = call_override; - } - - pub fn reset(&mut self, fork_config: Option) -> Result<(), CreationError> { - let mut config = self.initial_config.clone(); - config.fork = fork_config; - - let mut reset_instance = Self::new( - self.runtime_handle.clone(), - self.logger.clone(), - self.subscriber_callback.clone(), - self.call_override.clone(), - config, - )?; - - std::mem::swap(self, &mut reset_instance); - - Ok(()) - } - - /// Retrieves the last pending nonce of the account corresponding to the - /// provided address, if it exists. - pub fn account_next_nonce( - &mut self, - address: &Address, - ) -> Result> { - let state = self.current_state()?; - mempool::account_next_nonce(&self.mem_pool, &*state, address).map_err(Into::into) - } - - pub fn accounts(&self) -> impl Iterator { - self.local_accounts.keys() - } - - pub fn allow_unlimited_initcode_size(&self) -> bool { - self.allow_unlimited_contract_size - } - - /// Returns whether the miner is mining automatically. - pub fn is_auto_mining(&self) -> bool { - self.is_auto_mining - } - - pub fn balance( - &mut self, - address: Address, - block_spec: Option<&BlockSpec>, - ) -> Result> { - self.execute_in_block_context::>>( - block_spec, - move |_blockchain, _block, state| { - Ok(state - .basic(address)? - .map_or(U256::ZERO, |account| account.balance)) - }, - )? - } - - /// Retrieves the gas limit of the next block. - pub fn block_gas_limit(&self) -> u64 { - self.mem_pool.block_gas_limit().get() - } - - /// Returns the default caller. - pub fn default_caller(&self) -> Address { - self.local_accounts - .keys() - .next() - .copied() - .unwrap_or(Address::ZERO) - } - - /// Returns the metadata of the forked blockchain, if it exists. - pub fn fork_metadata(&self) -> Option<&ForkMetadata> { - self.fork_metadata.as_ref() - } - - /// Returns the last block in the blockchain. - pub fn last_block( - &self, - ) -> Result>, BlockchainError> { - self.blockchain.last_block() - } - - /// Returns the number of the last block in the blockchain. - pub fn last_block_number(&self) -> u64 { - self.blockchain.last_block_number() - } - - /// Adds a filter for new blocks to the provider. - pub fn add_block_filter( - &mut self, - ) -> Result> { - let block_hash = *self.last_block()?.hash(); - - let filter_id = self.next_filter_id(); - self.filters.insert( - filter_id, - Filter::new_block_filter(block_hash, IS_SUBSCRIPTION), - ); - - Ok(filter_id) - } - - /// Adds a filter for new logs to the provider. - pub fn add_log_filter( - &mut self, - criteria: LogFilter, - ) -> Result> { - let logs = self - .blockchain - .logs( - criteria.from_block, - criteria - .to_block - .unwrap_or(self.blockchain.last_block_number()), - &criteria.addresses, - &criteria.normalized_topics, - )? - .iter() - .map(LogOutput::from) - .collect(); - - let filter_id = self.next_filter_id(); - self.filters.insert( - filter_id, - Filter::new_log_filter(criteria, logs, IS_SUBSCRIPTION), - ); - Ok(filter_id) - } - - /// Adds a filter for new pending transactions to the provider. - pub fn add_pending_transaction_filter(&mut self) -> U256 { - let filter_id = self.next_filter_id(); - self.filters.insert( - filter_id, - Filter::new_pending_transaction_filter(IS_SUBSCRIPTION), - ); - filter_id - } - - /// Whether the provider is configured to bail on call failures. - pub fn bail_on_call_failure(&self) -> bool { - self.initial_config.bail_on_call_failure - } - - /// Whether the provider is configured to bail on transaction failures. - pub fn bail_on_transaction_failure(&self) -> bool { - self.initial_config.bail_on_transaction_failure - } - - /// Fetch a block by block spec. - /// Returns `None` if the block spec is `pending`. - /// Returns `ProviderError::InvalidBlockSpec` error if the block spec is a - /// number or a hash and the block isn't found. - /// Returns `ProviderError::InvalidBlockTag` error if the block tag is safe - /// or finalized and block spec is pre-merge. - pub fn block_by_block_spec( - &self, - block_spec: &BlockSpec, - ) -> Result>>, ProviderError> - { - let result = match block_spec { - BlockSpec::Number(block_number) => Some( - self.blockchain - .block_by_number(*block_number)? - .ok_or_else(|| ProviderError::InvalidBlockNumberOrHash { - block_spec: block_spec.clone(), - latest_block_number: self.blockchain.last_block_number(), - })?, - ), - BlockSpec::Tag(BlockTag::Earliest) => Some( - self.blockchain - .block_by_number(0)? - .expect("genesis block should always exist"), - ), - // Matching Hardhat behaviour by returning the last block for finalized and safe. - // https://github.com/NomicFoundation/hardhat/blob/b84baf2d9f5d3ea897c06e0ecd5e7084780d8b6c/packages/hardhat-core/src/internal/hardhat-network/provider/modules/eth.ts#L1395 - BlockSpec::Tag(tag @ (BlockTag::Finalized | BlockTag::Safe)) => { - if self.spec_id() >= SpecId::MERGE { - Some(self.blockchain.last_block()?) - } else { - return Err(ProviderError::InvalidBlockTag { - block_tag: *tag, - spec: self.spec_id(), - }); - } - } - BlockSpec::Tag(BlockTag::Latest) => Some(self.blockchain.last_block()?), - BlockSpec::Tag(BlockTag::Pending) => None, - BlockSpec::Eip1898(Eip1898BlockSpec::Hash { - block_hash, - require_canonical: _, - }) => Some(self.blockchain.block_by_hash(block_hash)?.ok_or_else(|| { - ProviderError::InvalidBlockNumberOrHash { - block_spec: block_spec.clone(), - latest_block_number: self.blockchain.last_block_number(), - } - })?), - BlockSpec::Eip1898(Eip1898BlockSpec::Number { block_number }) => Some( - self.blockchain - .block_by_number(*block_number)? - .ok_or_else(|| ProviderError::InvalidBlockNumberOrHash { - block_spec: block_spec.clone(), - latest_block_number: self.blockchain.last_block_number(), - })?, - ), - }; - - Ok(result) - } - - /// Retrieves the block number for the provided block spec, if it exists. - fn block_number_by_block_spec( - &self, - block_spec: &BlockSpec, - ) -> Result, ProviderError> { - let block_number = match block_spec { - BlockSpec::Number(number) => Some(*number), - BlockSpec::Tag(BlockTag::Earliest) => Some(0), - BlockSpec::Tag(tag @ (BlockTag::Finalized | BlockTag::Safe)) => { - if self.spec_id() >= SpecId::MERGE { - Some(self.blockchain.last_block_number()) - } else { - return Err(ProviderError::InvalidBlockTag { - block_tag: *tag, - spec: self.spec_id(), - }); - } - } - BlockSpec::Tag(BlockTag::Latest) => Some(self.blockchain.last_block_number()), - BlockSpec::Tag(BlockTag::Pending) => None, - BlockSpec::Eip1898(Eip1898BlockSpec::Hash { block_hash, .. }) => { - self.blockchain.block_by_hash(block_hash)?.map_or_else( - || { - Err(ProviderError::InvalidBlockNumberOrHash { - block_spec: block_spec.clone(), - latest_block_number: self.blockchain.last_block_number(), - }) - }, - |block| Ok(Some(block.header().number)), - )? - } - BlockSpec::Eip1898(Eip1898BlockSpec::Number { block_number }) => Some(*block_number), - }; - - Ok(block_number) - } - - pub fn block_by_hash( - &self, - block_hash: &B256, - ) -> Result>>, ProviderError> - { - self.blockchain - .block_by_hash(block_hash) - .map_err(ProviderError::Blockchain) - } - - pub fn chain_id(&self) -> u64 { - self.blockchain.chain_id() - } - - pub fn coinbase(&self) -> Address { - self.beneficiary - } - - #[cfg_attr(feature = "tracing", tracing::instrument(level = "trace", skip(self)))] - pub fn debug_trace_transaction( - &mut self, - transaction_hash: &B256, - trace_config: DebugTraceConfig, - ) -> Result> { - let block = self - .blockchain - .block_by_transaction_hash(transaction_hash)? - .ok_or_else(|| ProviderError::InvalidTransactionHash(*transaction_hash))?; - - let header = block.header(); - let block_spec = Some(BlockSpec::Number(header.number)); - - let cfg_env = self.create_evm_config(block_spec.as_ref())?; - - let transactions = block.transactions().to_vec(); - - let prev_block_number = block.header().number - 1; - let prev_block_spec = Some(BlockSpec::Number(prev_block_number)); - - self.execute_in_block_context( - prev_block_spec.as_ref(), - |blockchain, _prev_block, state| { - let block_env = BlockEnv { - number: U256::from(header.number), - coinbase: header.beneficiary, - timestamp: U256::from(header.timestamp), - gas_limit: U256::from(header.gas_limit), - basefee: header.base_fee_per_gas.unwrap_or_default(), - difficulty: U256::from(header.difficulty), - prevrandao: if cfg_env.handler_cfg.spec_id >= SpecId::MERGE { - Some(header.mix_hash) - } else { - None - }, - blob_excess_gas_and_price: header - .blob_gas - .as_ref() - .map(|BlobGas { excess_gas, .. }| BlobExcessGasAndPrice::new(*excess_gas)), - }; - - debug_trace_transaction( - blockchain, - state.clone(), - cfg_env, - trace_config, - block_env, - transactions, - transaction_hash, - ) - .map_err(ProviderError::DebugTrace) - }, - )? - } - - pub fn debug_trace_call( - &mut self, - transaction: ExecutableTransaction, - block_spec: &BlockSpec, - trace_config: DebugTraceConfig, - ) -> Result> { - let cfg_env = self.create_evm_config(Some(block_spec))?; - - let tx_env: TxEnv = transaction.into(); - - let mut tracer = TracerEip3155::new(trace_config); - - self.execute_in_block_context(Some(block_spec), |blockchain, block, state| { - let result = run_call(RunCallArgs { - blockchain, - header: block.header(), - state, - state_overrides: &StateOverrides::default(), - cfg_env: cfg_env.clone(), - tx_env: tx_env.clone(), - debug_context: Some(DebugContext { - data: &mut tracer, - register_handles_fn: register_eip_3155_tracer_handles, - }), - })?; - - Ok(execution_result_to_debug_result(result, tracer)) - })? - } - - /// Estimate the gas cost of a transaction. Matches Hardhat behavior. - pub fn estimate_gas( - &mut self, - transaction: ExecutableTransaction, - block_spec: &BlockSpec, - ) -> Result> { - let cfg_env = self.create_evm_config(Some(block_spec))?; - // Minimum gas cost that is required for transaction to be included in - // a block - let minimum_cost = transaction.initial_cost(self.spec_id()); - let tx_env: TxEnv = transaction.into(); - - let state_overrides = StateOverrides::default(); - - let mut debugger = Debugger::with_mocker(Mocker::new(self.call_override.clone())); - - self.execute_in_block_context(Some(block_spec), |blockchain, block, state| { - let header = block.header(); - - // Measure the gas used by the transaction with optional limit from call request - // defaulting to block limit. Report errors from initial call as if from - // `eth_call`. - let result = call::run_call(RunCallArgs { - blockchain, - header, - state, - state_overrides: &state_overrides, - cfg_env: cfg_env.clone(), - tx_env: tx_env.clone(), - debug_context: Some(DebugContext { - data: &mut debugger, - register_handles_fn: register_debugger_handles, - }), - })?; - - let Debugger { - console_logger, - mut trace_collector, - .. - } = debugger; - - let mut initial_estimation = match result { - ExecutionResult::Success { gas_used, .. } => Ok(gas_used), - ExecutionResult::Revert { output, .. } => Err(TransactionFailure::revert( - output, - None, - trace_collector - .traces() - .first() - .expect("Must have a trace") - .clone(), - )), - ExecutionResult::Halt { reason, .. } => Err(TransactionFailure::halt( - reason, - None, - trace_collector - .traces() - .first() - .expect("Must have a trace") - .clone(), - )), - } - .map_err(|failure| EstimateGasFailure { - console_log_inputs: console_logger.into_encoded_messages(), - transaction_failure: TransactionFailureWithTraces { - traces: vec![failure.solidity_trace.clone()], - failure, - }, - })?; - - // Ensure that the initial estimation is at least the minimum cost + 1. - if initial_estimation <= minimum_cost { - initial_estimation = minimum_cost + 1; - } - - // Test if the transaction would be successful with the initial estimation - let success = gas::check_gas_limit(CheckGasLimitArgs { - blockchain, - header, - state, - state_overrides: &state_overrides, - cfg_env: cfg_env.clone(), - tx_env: tx_env.clone(), - gas_limit: initial_estimation, - trace_collector: &mut trace_collector, - })?; - - // Return the initial estimation if it was successful - if success { - return Ok(EstimateGasResult { - estimation: initial_estimation, - traces: trace_collector.into_traces(), - }); - } - - // Correct the initial estimation if the transaction failed with the actually - // used gas limit. This can happen if the execution logic is based - // on the available gas. - let estimation = gas::binary_search_estimation(BinarySearchEstimationArgs { - blockchain, - header, - state, - state_overrides: &state_overrides, - cfg_env: cfg_env.clone(), - tx_env: tx_env.clone(), - lower_bound: initial_estimation, - upper_bound: header.gas_limit, - trace_collector: &mut trace_collector, - })?; - - let traces = trace_collector.into_traces(); - Ok(EstimateGasResult { estimation, traces }) - })? - } - - // Matches Hardhat implementation - pub fn fee_history( - &mut self, - block_count: u64, - newest_block_spec: &BlockSpec, - percentiles: Option>, - ) -> Result> { - if self.spec_id() < SpecId::LONDON { - return Err(ProviderError::UnmetHardfork { - actual: self.spec_id(), - minimum: SpecId::LONDON, - }); - } - - let latest_block_number = self.last_block_number(); - let pending_block_number = latest_block_number + 1; - let newest_block_number = self - .block_by_block_spec(newest_block_spec)? - // None if pending block - .map_or(pending_block_number, |block| block.header().number); - let oldest_block_number = if newest_block_number < block_count { - 0 - } else { - newest_block_number - block_count + 1 - }; - let last_block_number = newest_block_number + 1; - - let pending_block = if last_block_number >= pending_block_number { - let DebugMineBlockResultAndState { block, .. } = self.mine_pending_block()?; - Some(block) - } else { - None - }; - - let mut result = FeeHistoryResult::new(oldest_block_number); - - let mut reward_and_percentile = percentiles.and_then(|percentiles| { - if percentiles.is_empty() { - None - } else { - Some((Vec::default(), percentiles)) - } - }); - - let range_includes_remote_blocks = self.fork_metadata.as_ref().map_or(false, |metadata| { - oldest_block_number <= metadata.fork_block_number - }); - - if range_includes_remote_blocks { - let last_remote_block = cmp::min( - self.fork_metadata - .as_ref() - .expect("we checked that there is a fork") - .fork_block_number, - last_block_number, - ); - let remote_block_count = last_remote_block - oldest_block_number + 1; - - let rpc_client = self - .rpc_client - .as_ref() - .expect("we checked that there is a fork"); - let FeeHistoryResult { - oldest_block: _, - base_fee_per_gas, - gas_used_ratio, - reward: remote_reward, - } = tokio::task::block_in_place(|| { - self.runtime_handle.block_on( - rpc_client.fee_history( - remote_block_count, - newest_block_spec.clone(), - reward_and_percentile - .as_ref() - .map(|(_, percentiles)| percentiles.clone()), - ), - ) - })?; - - result.base_fee_per_gas = base_fee_per_gas; - result.gas_used_ratio = gas_used_ratio; - if let Some((ref mut reward, _)) = reward_and_percentile.as_mut() { - if let Some(remote_reward) = remote_reward { - *reward = remote_reward; - } - } - } - - let first_local_block = if range_includes_remote_blocks { - cmp::min( - self.fork_metadata - .as_ref() - .expect("we checked that there is a fork") - .fork_block_number, - last_block_number, - ) + 1 - } else { - oldest_block_number - }; - - for block_number in first_local_block..=last_block_number { - if block_number < pending_block_number { - let block = self - .blockchain - .block_by_number(block_number)? - .expect("Block must exist as i is at most the last block number"); - - let header = block.header(); - result - .base_fee_per_gas - .push(header.base_fee_per_gas.unwrap_or(U256::ZERO)); - - if block_number < last_block_number { - result - .gas_used_ratio - .push(gas_used_ratio(header.gas_used, header.gas_limit)); - - if let Some((ref mut reward, percentiles)) = reward_and_percentile.as_mut() { - reward.push(compute_rewards(&block, percentiles)?); - } - } - } else if block_number == pending_block_number { - let next_block_base_fee_per_gas = self - .next_block_base_fee_per_gas()? - .expect("We checked that EIP-1559 is active"); - result.base_fee_per_gas.push(next_block_base_fee_per_gas); - - if block_number < last_block_number { - let block = pending_block.as_ref().expect("We mined the pending block"); - let header = block.header(); - result - .gas_used_ratio - .push(gas_used_ratio(header.gas_used, header.gas_limit)); - - if let Some((ref mut reward, percentiles)) = reward_and_percentile.as_mut() { - // We don't compute this for the pending block, as there's no - // effective miner fee yet. - reward.push(percentiles.iter().map(|_| U256::ZERO).collect()); - } - } - } else if block_number == pending_block_number + 1 { - let block = pending_block.as_ref().expect("We mined the pending block"); - result - .base_fee_per_gas - .push(calculate_next_base_fee(block.header())); - } - } - - if let Some((reward, _)) = reward_and_percentile { - result.reward = Some(reward); - } - - Ok(result) - } - - pub fn gas_price(&self) -> Result> { - const PRE_EIP_1559_GAS_PRICE: u64 = 8_000_000_000; - const SUGGESTED_PRIORITY_FEE_PER_GAS: u64 = 1_000_000_000; - - if let Some(next_block_gas_fee_per_gas) = self.next_block_base_fee_per_gas()? { - Ok(next_block_gas_fee_per_gas + U256::from(SUGGESTED_PRIORITY_FEE_PER_GAS)) - } else { - // We return a hardcoded value for networks without EIP-1559 - Ok(U256::from(PRE_EIP_1559_GAS_PRICE)) - } - } - - pub fn get_code( - &mut self, - address: Address, - block_spec: Option<&BlockSpec>, - ) -> Result> { - self.execute_in_block_context(block_spec, move |_blockchain, _block, state| { - let code = state - .basic(address)? - .map_or(Ok(Bytes::new()), |account_info| { - state.code_by_hash(account_info.code_hash).map(|bytecode| { - // The `Bytecode` REVM struct pad the bytecode with 33 bytes of 0s for the - // `Checked` and `Analysed` variants. `Bytecode::original_bytes` returns - // unpadded version. - bytecode.original_bytes() - }) - })?; - - Ok(code) - })? - } - - pub fn get_filter_changes(&mut self, filter_id: &U256) -> Option { - self.filters.get_mut(filter_id).map(Filter::take_events) - } - - pub fn get_filter_logs( - &mut self, - filter_id: &U256, - ) -> Result>, ProviderError> { - self.filters - .get_mut(filter_id) - .map(|filter| { - if let Some(events) = filter.take_log_events() { - Ok(events) - } else { - Err(ProviderError::InvalidFilterSubscriptionType { - filter_id: *filter_id, - expected: SubscriptionType::Logs, - actual: filter.data.subscription_type(), - }) - } - }) - .transpose() - } - - pub fn get_storage_at( - &mut self, - address: Address, - index: U256, - block_spec: Option<&BlockSpec>, - ) -> Result> { - self.execute_in_block_context::>>( - block_spec, - move |_blockchain, _block, state| Ok(state.storage(address, index)?), - )? - } - - pub fn get_transaction_count( - &mut self, - address: Address, - block_spec: Option<&BlockSpec>, - ) -> Result> { - self.execute_in_block_context::>>( - block_spec, - move |_blockchain, _block, state| { - let nonce = state - .basic(address)? - .map_or(0, |account_info| account_info.nonce); - - Ok(nonce) - }, - )? - } - - pub fn impersonate_account(&mut self, address: Address) { - self.impersonated_accounts.insert(address); - } - - pub fn increase_block_time(&mut self, increment: u64) -> i64 { - self.block_time_offset_seconds += i64::try_from(increment).expect("increment too large"); - self.block_time_offset_seconds - } - - pub fn instance_id(&self) -> &B256 { - &self.instance_id - } - - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - pub fn interval_mine(&mut self) -> Result> { - let result = self.mine_and_commit_block(BlockOptions::default())?; - - self.logger - .log_interval_mined(self.spec_id(), &result) - .map_err(ProviderError::Logger)?; - - Ok(true) - } - - pub fn logger_mut( - &mut self, - ) -> &mut dyn SyncLogger { - &mut *self.logger - } - - pub fn logs(&self, filter: LogFilter) -> Result, ProviderError> { - self.blockchain - .logs( - filter.from_block, - filter - .to_block - .unwrap_or(self.blockchain.last_block_number()), - &filter.addresses, - &filter.normalized_topics, - ) - .map_err(ProviderError::Blockchain) - } - - pub fn make_snapshot(&mut self) -> u64 { - let id = self.next_snapshot_id; - self.next_snapshot_id += 1; - - let snapshot = Snapshot { - block_number: self.blockchain.last_block_number(), - block_number_to_state_id: self.block_number_to_state_id.clone(), - block_time_offset_seconds: self.block_time_offset_seconds, - coinbase: self.beneficiary, - irregular_state: self.irregular_state.clone(), - mem_pool: self.mem_pool.clone(), - next_block_base_fee_per_gas: self.next_block_base_fee_per_gas, - next_block_timestamp: self.next_block_timestamp, - parent_beacon_block_root_generator: self.parent_beacon_block_root_generator.clone(), - prev_randao_generator: self.prev_randao_generator.clone(), - time: Instant::now(), - }; - self.snapshots.insert(id, snapshot); - - id - } - - pub fn mine_and_commit_block( - &mut self, - mut options: BlockOptions, - ) -> Result, ProviderError> { - let (block_timestamp, new_offset) = self.next_block_timestamp(options.timestamp)?; - options.timestamp = Some(block_timestamp); - - if options.mix_hash.is_none() && self.blockchain.spec_id() >= SpecId::MERGE { - options.mix_hash = Some(self.prev_randao_generator.next_value()); - } - - let result = self.mine_block(options)?; - - let block_and_total_difficulty = self - .blockchain - .insert_block(result.block, result.state_diff) - .map_err(ProviderError::Blockchain)?; - - self.mem_pool - .update(&result.state) - .map_err(ProviderError::MemPoolUpdate)?; - - if let Some(new_offset) = new_offset { - self.block_time_offset_seconds = new_offset; - } - - // Reset the next block base fee per gas upon successful execution - self.next_block_base_fee_per_gas.take(); - - // Reset next block time stamp - self.next_block_timestamp.take(); - - self.parent_beacon_block_root_generator.generate_next(); - self.prev_randao_generator.generate_next(); - - let block = &block_and_total_difficulty.block; - for (filter_id, filter) in self.filters.iter_mut() { - match &mut filter.data { - FilterData::Logs { criteria, logs } => { - let bloom = &block.header().logs_bloom; - if bloom_contains_log_filter(bloom, criteria) { - let receipts = block.transaction_receipts()?; - let new_logs = receipts.iter().flat_map(|receipt| receipt.logs()); - - let mut filtered_logs = filter_logs(new_logs, criteria); - if filter.is_subscription { - (self.subscriber_callback)(SubscriptionEvent { - filter_id: *filter_id, - result: SubscriptionEventData::Logs(filtered_logs.clone()), - }); - } else { - logs.append(&mut filtered_logs); - } - } - } - FilterData::NewHeads(block_hashes) => { - if filter.is_subscription { - (self.subscriber_callback)(SubscriptionEvent { - filter_id: *filter_id, - result: SubscriptionEventData::NewHeads( - block_and_total_difficulty.clone(), - ), - }); - } else { - block_hashes.push(*block.hash()); - } - } - FilterData::NewPendingTransactions(_) => (), - } - } - - // Remove outdated filters - self.filters.retain(|_, filter| !filter.has_expired()); - - self.add_state_to_cache(result.state, block.header().number); - - Ok(DebugMineBlockResult { - block: block_and_total_difficulty.block, - transaction_results: result.transaction_results, - transaction_traces: result.transaction_traces, - console_log_inputs: result.console_log_inputs, - }) - } - - /// Mines `number_of_blocks` blocks with the provided `interval` between - /// them. - pub fn mine_and_commit_blocks( - &mut self, - number_of_blocks: u64, - interval: u64, - ) -> Result>, ProviderError> { - // There should be at least 2 blocks left for the reservation to work, - // because we always mine a block after it. But here we use a bigger - // number to err on the side of safety. - const MINIMUM_RESERVABLE_BLOCKS: u64 = 6; - - if number_of_blocks == 0 { - return Ok(Vec::new()); - } - - let mine_block_with_interval = - |data: &mut ProviderData, - mined_blocks: &mut Vec>| - -> Result<(), ProviderError> { - let previous_timestamp = mined_blocks - .last() - .expect("at least one block was mined") - .block - .header() - .timestamp; - - let options = BlockOptions { - timestamp: Some(previous_timestamp + interval), - ..BlockOptions::default() - }; - - let mined_block = data.mine_and_commit_block(options)?; - mined_blocks.push(mined_block); - - Ok(()) - }; - - // Limit the pre-allocated capacity based on the minimum reservable number of - // blocks to avoid too large allocations. - let mut mined_blocks = Vec::with_capacity( - usize::try_from(number_of_blocks.min(2 * MINIMUM_RESERVABLE_BLOCKS)) - .expect("number of blocks exceeds {u64::MAX}"), - ); - - // we always mine the first block, and we don't apply the interval for it - mined_blocks.push(self.mine_and_commit_block(BlockOptions::default())?); - - while u64::try_from(mined_blocks.len()).expect("usize cannot be larger than u128") - < number_of_blocks - && self.mem_pool.has_pending_transactions() - { - mine_block_with_interval(self, &mut mined_blocks)?; - } - - // If there is at least one remaining block, we mine one. This way, we - // guarantee that there's an empty block immediately before and after the - // reservation. This makes the logging easier to get right. - if u64::try_from(mined_blocks.len()).expect("usize cannot be larger than u128") - < number_of_blocks - { - mine_block_with_interval(self, &mut mined_blocks)?; - } - - let remaining_blocks = number_of_blocks - - u64::try_from(mined_blocks.len()).expect("usize cannot be larger than u128"); - - if remaining_blocks < MINIMUM_RESERVABLE_BLOCKS { - for _ in 0..remaining_blocks { - mine_block_with_interval(self, &mut mined_blocks)?; - } - } else { - let current_state = (*self.current_state()?).clone(); - - self.blockchain - .reserve_blocks(remaining_blocks - 1, interval)?; - - // Ensure there is a cache entry for the last reserved block, to avoid - // recomputation - self.add_state_to_cache(current_state, self.last_block_number()); - - let previous_timestamp = self.blockchain.last_block()?.header().timestamp; - let options = BlockOptions { - timestamp: Some(previous_timestamp + interval), - ..BlockOptions::default() - }; - - let mined_block = self.mine_and_commit_block(options)?; - mined_blocks.push(mined_block); - } - - mined_blocks.shrink_to_fit(); - - Ok(mined_blocks) - } - - pub fn network_id(&self) -> String { - self.initial_config.network_id.to_string() - } - - /// Calculates the next block's base fee per gas. - pub fn next_block_base_fee_per_gas(&self) -> Result, BlockchainError> { - if self.spec_id() < SpecId::LONDON { - return Ok(None); - } - - self.next_block_base_fee_per_gas - .map_or_else( - || { - let last_block = self.last_block()?; - - let base_fee = calculate_next_base_fee(last_block.header()); - - Ok(base_fee) - }, - Ok, - ) - .map(Some) - } - - /// Calculates the gas price for the next block. - pub fn next_gas_price(&self) -> Result { - if let Some(next_block_base_fee_per_gas) = self.next_block_base_fee_per_gas()? { - let suggested_priority_fee_per_gas = U256::from(1_000_000_000u64); - Ok(next_block_base_fee_per_gas + suggested_priority_fee_per_gas) - } else { - // We return a hardcoded value for networks without EIP-1559 - Ok(U256::from(8_000_000_000u64)) - } - } - - pub fn nonce( - &mut self, - address: &Address, - block_spec: Option<&BlockSpec>, - state_overrides: &StateOverrides, - ) -> Result> { - state_overrides - .account_override(address) - .and_then(|account_override| account_override.nonce) - .map_or_else( - || { - if matches!(block_spec, Some(BlockSpec::Tag(BlockTag::Pending))) { - self.account_next_nonce(address) - } else { - self.execute_in_block_context( - block_spec, - move |_blockchain, _block, state| { - let nonce = - state.basic(*address)?.map_or(0, |account| account.nonce); - - Ok(nonce) - }, - )? - } - }, - Ok, - ) - } - - pub fn pending_transactions(&self) -> impl Iterator { - self.mem_pool.transactions() - } - - pub fn remove_filter(&mut self, filter_id: &U256) -> bool { - self.remove_filter_impl::(filter_id) - } - - pub fn remove_subscription(&mut self, filter_id: &U256) -> bool { - self.remove_filter_impl::(filter_id) - } - - /// Removes the transaction with the provided hash from the mem pool, if it - /// exists. - pub fn remove_pending_transaction( - &mut self, - transaction_hash: &B256, - ) -> Option { - self.mem_pool.remove_transaction(transaction_hash) - } - - pub fn revert_to_snapshot(&mut self, snapshot_id: u64) -> bool { - // Ensure that, if the snapshot exists, we also remove all subsequent snapshots, - // as they can only be used once in Ganache. - let mut removed_snapshots = self.snapshots.split_off(&snapshot_id); - - if let Some(snapshot) = removed_snapshots.remove(&snapshot_id) { - let Snapshot { - block_number, - block_number_to_state_id, - block_time_offset_seconds, - coinbase, - irregular_state, - mem_pool, - next_block_base_fee_per_gas, - next_block_timestamp, - parent_beacon_block_root_generator, - prev_randao_generator, - time, - } = snapshot; - - self.block_number_to_state_id = block_number_to_state_id; - - // We compute a new offset such that: - // now + new_offset == snapshot_date + old_offset - let duration_since_snapshot = Instant::now().duration_since(time); - self.block_time_offset_seconds = block_time_offset_seconds - + i64::try_from(duration_since_snapshot.as_secs()).expect("duration too large"); - - self.beneficiary = coinbase; - self.blockchain - .revert_to_block(block_number) - .expect("Snapshotted block should exist"); - - self.irregular_state = irregular_state; - self.mem_pool = mem_pool; - self.next_block_base_fee_per_gas = next_block_base_fee_per_gas; - self.next_block_timestamp = next_block_timestamp; - self.parent_beacon_block_root_generator = parent_beacon_block_root_generator; - self.prev_randao_generator = prev_randao_generator; - - true - } else { - false - } - } - - pub fn run_call( - &mut self, - transaction: ExecutableTransaction, - block_spec: &BlockSpec, - state_overrides: &StateOverrides, - ) -> Result> { - let cfg_env = self.create_evm_config(Some(block_spec))?; - let tx_env = transaction.into(); - - let mut debugger = Debugger::with_mocker(Mocker::new(self.call_override.clone())); - - self.execute_in_block_context(Some(block_spec), |blockchain, block, state| { - let execution_result = call::run_call(RunCallArgs { - blockchain, - header: block.header(), - state, - state_overrides, - cfg_env, - tx_env, - debug_context: Some(DebugContext { - data: &mut debugger, - register_handles_fn: register_debugger_handles, - }), - })?; - - let Debugger { - console_logger, - trace_collector, - .. - } = debugger; - - let mut traces = trace_collector.into_traces(); - // Should only have a single raw trace - assert_eq!(traces.len(), 1); - - Ok(CallResult { - console_log_inputs: console_logger.into_encoded_messages(), - execution_result, - trace: traces.pop().expect("Must have a trace"), - }) - })? - } - - pub fn transaction_receipt( - &self, - transaction_hash: &B256, - ) -> Result>, ProviderError> { - self.blockchain - .receipt_by_transaction_hash(transaction_hash) - .map_err(ProviderError::Blockchain) - } - - pub fn set_min_gas_price( - &mut self, - min_gas_price: U256, - ) -> Result<(), ProviderError> { - if self.spec_id() >= SpecId::LONDON { - return Err(ProviderError::SetMinGasPriceUnsupported); - } - - self.min_gas_price = min_gas_price; - - Ok(()) - } - - pub fn send_transaction( - &mut self, - signed_transaction: ExecutableTransaction, - ) -> Result> { - let snapshot_id = if self.is_auto_mining { - self.validate_auto_mine_transaction(&signed_transaction)?; - - Some(self.make_snapshot()) - } else { - None - }; - - let transaction_hash = - self.add_pending_transaction(signed_transaction) - .map_err(|error| { - if let Some(snapshot_id) = snapshot_id { - self.revert_to_snapshot(snapshot_id); - } - - error - })?; - - let mut mining_results = Vec::new(); - snapshot_id - .map(|snapshot_id| -> Result<(), ProviderError> { - loop { - let result = self - .mine_and_commit_block(BlockOptions::default()) - .map_err(|error| { - self.revert_to_snapshot(snapshot_id); - - error - })?; - - let mined_transaction = result.has_transaction(&transaction_hash); - - mining_results.push(result); - - if mined_transaction { - break; - } - } - - while self.mem_pool.has_pending_transactions() { - let result = self - .mine_and_commit_block(BlockOptions::default()) - .map_err(|error| { - self.revert_to_snapshot(snapshot_id); - - error - })?; - - mining_results.push(result); - } - - self.snapshots.remove(&snapshot_id); - - Ok(()) - }) - .transpose()?; - - Ok(SendTransactionResult { - transaction_hash, - mining_results, - }) - } - - /// Sets whether the miner should mine automatically. - pub fn set_auto_mining(&mut self, enabled: bool) { - self.is_auto_mining = enabled; - } - - pub fn set_balance( - &mut self, - address: Address, - balance: U256, - ) -> Result<(), ProviderError> { - let mut modified_state = (*self.current_state()?).clone(); - let account_info = modified_state.modify_account( - address, - AccountModifierFn::new(Box::new(move |account_balance, _, _| { - *account_balance = balance; - })), - )?; - - let state_root = modified_state.state_root()?; - - self.mem_pool.update(&modified_state)?; - - let block_number = self.blockchain.last_block_number(); - self.irregular_state - .state_override_at_block_number(block_number) - .or_insert_with(|| StateOverride::with_state_root(state_root)) - .diff - .apply_account_change(address, account_info.clone()); - - self.add_state_to_cache(modified_state, block_number); - - Ok(()) - } - - /// Sets the gas limit used for mining new blocks. - pub fn set_block_gas_limit( - &mut self, - gas_limit: NonZeroU64, - ) -> Result<(), ProviderError> { - let state = self.current_state()?; - self.mem_pool - .set_block_gas_limit(&*state, gas_limit) - .map_err(ProviderError::State) - } - - pub fn set_code( - &mut self, - address: Address, - code: Bytes, - ) -> Result<(), ProviderError> { - let code = Bytecode::new_raw(code.clone()); - let irregular_code = code.clone(); - - // We clone to automatically revert in case of subsequent errors. - let mut modified_state = (*self.current_state()?).clone(); - let mut account_info = modified_state.modify_account( - address, - AccountModifierFn::new(Box::new(move |_, _, account_code| { - *account_code = Some(code.clone()); - })), - )?; - - // The code was stripped from the account, so we need to re-add it for the - // irregular state. - account_info.code = Some(irregular_code.clone()); - - let state_root = modified_state.state_root()?; - - let block_number = self.blockchain.last_block_number(); - self.irregular_state - .state_override_at_block_number(block_number) - .or_insert_with(|| StateOverride::with_state_root(state_root)) - .diff - .apply_account_change(address, account_info.clone()); - - self.add_state_to_cache(modified_state, block_number); - - Ok(()) - } - - /// Sets the coinbase. - pub fn set_coinbase(&mut self, coinbase: Address) { - self.beneficiary = coinbase; - } - - /// Sets the next block's base fee per gas. - pub fn set_next_block_base_fee_per_gas( - &mut self, - base_fee_per_gas: U256, - ) -> Result<(), ProviderError> { - let spec_id = self.spec_id(); - if spec_id < SpecId::LONDON { - return Err(ProviderError::SetNextBlockBaseFeePerGasUnsupported { spec_id }); - } - - self.next_block_base_fee_per_gas = Some(base_fee_per_gas); - - Ok(()) - } - - /// Set the next block timestamp. - pub fn set_next_block_timestamp( - &mut self, - timestamp: u64, - ) -> Result> { - let latest_block = self.blockchain.last_block()?; - let latest_block_header = latest_block.header(); - - match timestamp.cmp(&latest_block_header.timestamp) { - Ordering::Less => Err(ProviderError::TimestampLowerThanPrevious { - proposed: timestamp, - previous: latest_block_header.timestamp, - }), - Ordering::Equal if !self.allow_blocks_with_same_timestamp => { - Err(ProviderError::TimestampEqualsPrevious { - proposed: timestamp, - }) - } - Ordering::Equal | Ordering::Greater => { - self.next_block_timestamp = Some(timestamp); - Ok(timestamp) - } - } - } - - /// Sets the next block's prevrandao. - pub fn set_next_prev_randao( - &mut self, - prev_randao: B256, - ) -> Result<(), ProviderError> { - let spec_id = self.spec_id(); - if spec_id < SpecId::MERGE { - return Err(ProviderError::SetNextPrevRandaoUnsupported { spec_id }); - } - - self.prev_randao_generator.set_next(prev_randao); - - Ok(()) - } - - pub fn set_nonce( - &mut self, - address: Address, - nonce: u64, - ) -> Result<(), ProviderError> { - if mempool::has_transactions(&self.mem_pool) { - return Err(ProviderError::SetAccountNonceWithPendingTransactions); - } - - let previous_nonce = self - .current_state()? - .basic(address)? - .map_or(0, |account| account.nonce); - - if nonce < previous_nonce { - return Err(ProviderError::SetAccountNonceLowerThanCurrent { - previous: previous_nonce, - proposed: nonce, - }); - } - - // We clone to automatically revert in case of subsequent errors. - let mut modified_state = (*self.current_state()?).clone(); - let account_info = modified_state.modify_account( - address, - AccountModifierFn::new(Box::new(move |_, account_nonce, _| *account_nonce = nonce)), - )?; - - let state_root = modified_state.state_root()?; - - self.mem_pool.update(&modified_state)?; - - let block_number = self.last_block_number(); - self.irregular_state - .state_override_at_block_number(block_number) - .or_insert_with(|| StateOverride::with_state_root(state_root)) - .diff - .apply_account_change(address, account_info.clone()); - - self.add_state_to_cache(modified_state, block_number); - - Ok(()) - } - - pub fn set_account_storage_slot( - &mut self, - address: Address, - index: U256, - value: U256, - ) -> Result<(), ProviderError> { - // We clone to automatically revert in case of subsequent errors. - let mut modified_state = (*self.current_state()?).clone(); - let old_value = modified_state.set_account_storage_slot(address, index, value)?; - - let slot = StorageSlot::new_changed(old_value, value); - let account_info = modified_state.basic(address).and_then(|mut account_info| { - // Retrieve the code if it's not empty. This is needed for the irregular state. - if let Some(account_info) = &mut account_info { - if account_info.code_hash != KECCAK_EMPTY { - account_info.code = Some(modified_state.code_by_hash(account_info.code_hash)?); - } - } - - Ok(account_info) - })?; - - let state_root = modified_state.state_root()?; - - let block_number = self.blockchain.last_block_number(); - self.irregular_state - .state_override_at_block_number(block_number) - .or_insert_with(|| StateOverride::with_state_root(state_root)) - .diff - .apply_storage_change(address, index, slot, account_info); - - self.add_state_to_cache(modified_state, block_number); - - Ok(()) - } - - pub fn sign( - &self, - address: &Address, - message: Bytes, - ) -> Result> { - match self.local_accounts.get(address) { - Some(secret_key) => Ok(Signature::new(&message[..], secret_key)?), - None => Err(ProviderError::UnknownAddress { address: *address }), - } - } - - pub fn sign_typed_data_v4( - &self, - address: &Address, - message: &TypedData, - ) -> Result> { - match self.local_accounts.get(address) { - Some(secret_key) => { - let hash: B256 = message.encode_eip712()?.into(); - Ok(Signature::new(RecoveryMessage::Hash(hash), secret_key)?) - } - None => Err(ProviderError::UnknownAddress { address: *address }), - } - } - - pub fn spec_id(&self) -> SpecId { - self.blockchain.spec_id() - } - - pub fn stop_impersonating_account(&mut self, address: Address) -> bool { - self.impersonated_accounts.remove(&address) - } - - pub fn total_difficulty_by_hash( - &self, - hash: &B256, - ) -> Result, ProviderError> { - self.blockchain - .total_difficulty_by_hash(hash) - .map_err(ProviderError::Blockchain) - } - - /// Get a transaction by hash from the blockchain or from the mempool if - /// it's not mined yet. - pub fn transaction_by_hash( - &self, - hash: &B256, - ) -> Result, ProviderError> { - let transaction = if let Some(tx) = self.mem_pool.transaction_by_hash(hash) { - Some(TransactionAndBlock { - transaction: tx.pending().clone(), - block_data: None, - is_pending: true, - }) - } else if let Some(block) = self.blockchain.block_by_transaction_hash(hash)? { - let tx_index_u64 = self - .blockchain - .receipt_by_transaction_hash(hash)? - .expect("If the transaction was inserted in a block, it must have a receipt") - .transaction_index; - let tx_index = - usize::try_from(tx_index_u64).expect("Indices cannot be larger than usize::MAX"); - - let transaction = block - .transactions() - .get(tx_index) - .expect("Transaction index must be valid, since it's from the receipt.") - .clone(); - - Some(TransactionAndBlock { - transaction, - block_data: Some(BlockDataForTransaction { - block, - transaction_index: tx_index_u64, - }), - is_pending: false, - }) - } else { - None - }; - - Ok(transaction) - } - - fn add_pending_transaction( - &mut self, - transaction: ExecutableTransaction, - ) -> Result> { - let transaction_hash = *transaction.hash(); - - let state = self.current_state()?; - // Handles validation - self.mem_pool.add_transaction(&*state, transaction)?; - - for (filter_id, filter) in self.filters.iter_mut() { - if let FilterData::NewPendingTransactions(events) = &mut filter.data { - if filter.is_subscription { - (self.subscriber_callback)(SubscriptionEvent { - filter_id: *filter_id, - result: SubscriptionEventData::NewPendingTransactions(transaction_hash), - }); - } else { - events.push(transaction_hash); - } - } - } - - Ok(transaction_hash) - } - - /// Creates a configuration, taking into the hardfork at the provided - /// `BlockSpec`. If none is provided, assumes the hardfork for newly - /// mined blocks. - fn create_evm_config( - &self, - block_spec: Option<&BlockSpec>, - ) -> Result> { - let block_number = block_spec - .map(|block_spec| self.block_number_by_block_spec(block_spec)) - .transpose()? - .flatten(); - - let spec_id = if let Some(block_number) = block_number { - self.blockchain.spec_at_block_number(block_number)? - } else { - self.blockchain.spec_id() - }; - - let mut cfg_env = CfgEnv::default(); - cfg_env.chain_id = self.blockchain.chain_id(); - cfg_env.limit_contract_code_size = if self.allow_unlimited_contract_size { - Some(usize::MAX) - } else { - None - }; - cfg_env.disable_eip3607 = true; - - Ok(CfgEnvWithHandlerCfg::new_with_spec_id(cfg_env, spec_id)) - } - - fn execute_in_block_context( - &mut self, - block_spec: Option<&BlockSpec>, - function: impl FnOnce( - &dyn SyncBlockchain, - &Arc>, - &Box>, - ) -> T, - ) -> Result> { - let block = if let Some(block_spec) = block_spec { - self.block_by_block_spec(block_spec)? - } else { - Some(self.blockchain.last_block()?) - }; - - if let Some(block) = block { - let block_header = block.header(); - let block_number = block_header.number; - - let contextual_state = self.get_or_compute_state(block_number)?; - - Ok(function(&*self.blockchain, &block, &contextual_state)) - } else { - // Block spec is pending - let result = self.mine_pending_block()?; - - let blockchain = - BlockchainWithPending::new(&*self.blockchain, result.block, result.state_diff); - - let block = blockchain - .last_block() - .expect("The pending block is the last block"); - - Ok(function(&blockchain, &block, &result.state)) - } - } - - /// Mine a block using the provided options. If an option has not been - /// specified, it will be set using the provider's configuration values. - fn mine_block( - &mut self, - mut options: BlockOptions, - ) -> Result, ProviderError> { - options.base_fee = options.base_fee.or(self.next_block_base_fee_per_gas); - options.beneficiary = Some(options.beneficiary.unwrap_or(self.beneficiary)); - options.gas_limit = Some(options.gas_limit.unwrap_or_else(|| self.block_gas_limit())); - - let evm_config = self.create_evm_config(None)?; - - if evm_config.handler_cfg.spec_id >= SpecId::CANCUN { - options.parent_beacon_block_root = options - .parent_beacon_block_root - .or_else(|| Some(self.parent_beacon_block_root_generator.next_value())); - } - - let mut debugger = Debugger::with_mocker(Mocker::new(self.call_override.clone())); - - let state_to_be_modified = (*self.current_state()?).clone(); - - let result = mine_block( - self.blockchain.as_ref(), - state_to_be_modified, - &self.mem_pool, - &evm_config, - options, - self.min_gas_price, - self.initial_config.mining.mem_pool.order, - miner_reward(evm_config.handler_cfg.spec_id).unwrap_or(U256::ZERO), - self.dao_activation_block, - Some(DebugContext { - data: &mut debugger, - register_handles_fn: register_debugger_handles, - }), - )?; - - let Debugger { - console_logger, - trace_collector, - .. - } = debugger; - - let traces = trace_collector.into_traces(); - - Ok(DebugMineBlockResultAndState::new( - result, - traces, - console_logger.into_encoded_messages(), - )) - } - - /// Mines a pending block, without modifying any values. - pub fn mine_pending_block( - &mut self, - ) -> Result, ProviderError> { - let (block_timestamp, _new_offset) = self.next_block_timestamp(None)?; - - // Mining a pending block shouldn't affect the mix hash. - self.mine_block(BlockOptions { - timestamp: Some(block_timestamp), - ..BlockOptions::default() - }) - } - - pub fn mining_config(&self) -> &MiningConfig { - &self.initial_config.mining - } - - /// Get the timestamp for the next block. - /// Ported from - fn next_block_timestamp( - &self, - timestamp: Option, - ) -> Result<(u64, Option), ProviderError> { - let latest_block = self.blockchain.last_block()?; - let latest_block_header = latest_block.header(); - - let current_timestamp = - i64::try_from(SystemTime::now().duration_since(UNIX_EPOCH)?.as_secs()) - .expect("timestamp too large"); - - let (mut block_timestamp, mut new_offset) = if let Some(timestamp) = timestamp { - timestamp.checked_sub(latest_block_header.timestamp).ok_or( - ProviderError::TimestampLowerThanPrevious { - proposed: timestamp, - previous: latest_block_header.timestamp, - }, - )?; - - let offset = i64::try_from(timestamp).expect("timestamp too large") - current_timestamp; - (timestamp, Some(offset)) - } else if let Some(next_block_timestamp) = self.next_block_timestamp { - let offset = i64::try_from(next_block_timestamp).expect("timestamp too large") - - current_timestamp; - - (next_block_timestamp, Some(offset)) - } else { - let next_timestamp = u64::try_from(current_timestamp + self.block_time_offset_seconds) - .expect("timestamp must be positive"); - - (next_timestamp, None) - }; - - let timestamp_needs_increase = block_timestamp == latest_block_header.timestamp - && !self.allow_blocks_with_same_timestamp; - if timestamp_needs_increase { - block_timestamp += 1; - if new_offset.is_none() { - new_offset = Some(self.block_time_offset_seconds + 1); - } - } - - Ok((block_timestamp, new_offset)) - } - - fn next_filter_id(&mut self) -> U256 { - self.last_filter_id = self - .last_filter_id - .checked_add(U256::from(1)) - .expect("filter id starts at zero, so it'll never overflow for U256"); - self.last_filter_id - } - - fn remove_filter_impl(&mut self, filter_id: &U256) -> bool { - if let Some(filter) = self.filters.get(filter_id) { - filter.is_subscription == IS_SUBSCRIPTION && self.filters.remove(filter_id).is_some() - } else { - false - } - } - - pub fn sign_transaction_request( - &self, - transaction_request: TransactionRequestAndSender, - ) -> Result> { - let TransactionRequestAndSender { request, sender } = transaction_request; - - if self.impersonated_accounts.contains(&sender) { - let signed_transaction = request.fake_sign(&sender); - - Ok(ExecutableTransaction::with_caller( - self.blockchain.spec_id(), - signed_transaction, - sender, - )?) - } else { - let secret_key = self - .local_accounts - .get(&sender) - .ok_or(ProviderError::UnknownAddress { address: sender })?; - - let signed_transaction = request.sign(secret_key)?; - Ok(ExecutableTransaction::with_caller( - self.blockchain.spec_id(), - signed_transaction, - sender, - )?) - } - } - - fn validate_auto_mine_transaction( - &mut self, - transaction: &ExecutableTransaction, - ) -> Result<(), ProviderError> { - let next_nonce = { self.account_next_nonce(transaction.caller())? }; - - match transaction.nonce().cmp(&next_nonce) { - Ordering::Less => { - return Err(ProviderError::AutoMineNonceTooLow { - expected: next_nonce, - actual: transaction.nonce(), - }) - } - Ordering::Equal => (), - Ordering::Greater => { - return Err(ProviderError::AutoMineNonceTooHigh { - expected: next_nonce, - actual: transaction.nonce(), - }) - } - } - - // Question: Why do we use the max priority fee per gas as gas price? - let max_priority_fee_per_gas = transaction - .max_priority_fee_per_gas() - .unwrap_or_else(|| transaction.gas_price()); - - if max_priority_fee_per_gas < self.min_gas_price { - return Err(ProviderError::AutoMinePriorityFeeTooLow { - expected: self.min_gas_price, - actual: max_priority_fee_per_gas, - }); - } - - if let Some(next_block_base_fee) = self.next_block_base_fee_per_gas()? { - if let Some(max_fee_per_gas) = transaction.max_fee_per_gas() { - if max_fee_per_gas < next_block_base_fee { - return Err(ProviderError::AutoMineMaxFeeTooLow { - expected: next_block_base_fee, - actual: max_fee_per_gas, - }); - } - } else { - let gas_price = transaction.gas_price(); - if gas_price < next_block_base_fee { - return Err(ProviderError::AutoMineGasPriceTooLow { - expected: next_block_base_fee, - actual: gas_price, - }); - } - } - } - - Ok(()) - } - - fn current_state( - &mut self, - ) -> Result>>, ProviderError> { - self.get_or_compute_state(self.last_block_number()) - } - - fn get_or_compute_state( - &mut self, - block_number: u64, - ) -> Result>>, ProviderError> { - if let Some(state_id) = self.block_number_to_state_id.get(&block_number) { - // We cannot use `LruCache::try_get_or_insert`, because it needs &mut self, but - // we would need &self in the callback to reference the blockchain. - if let Some(state) = self.block_state_cache.get(state_id) { - return Ok(state.clone()); - } - }; - - let state = self - .blockchain - .state_at_block_number(block_number, self.irregular_state.state_overrides())?; - let state_id = self.add_state_to_cache(state, block_number); - Ok(self - .block_state_cache - .get(&state_id) - // State must exist, since we just inserted it, and we have exclusive access to - // the cache due to &mut self. - .expect("State must exist") - .clone()) - } - - fn add_state_to_cache( - &mut self, - state: Box>, - block_number: u64, - ) -> StateId { - let state_id = self.current_state_id.increment(); - self.block_state_cache.push(state_id, Arc::new(state)); - self.block_number_to_state_id - .insert_mut(block_number, state_id); - state_id - } -} - -#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)] -#[repr(transparent)] -pub(crate) struct StateId(u64); - -impl StateId { - /// Increment the current state id and return the incremented id. - fn increment(&mut self) -> Self { - self.0 += 1; - *self - } -} - -fn block_time_offset_seconds(config: &ProviderConfig) -> Result { - config.initial_date.map_or(Ok(0), |initial_date| { - let initial_timestamp = i64::try_from( - initial_date - .duration_since(UNIX_EPOCH) - .map_err(|_e| CreationError::InvalidInitialDate(initial_date))? - .as_secs(), - ) - .expect("initial date must be representable as i64"); - - let current_timestamp = i64::try_from( - SystemTime::now() - .duration_since(UNIX_EPOCH) - .expect("current time must be after UNIX epoch") - .as_secs(), - ) - .expect("Current timestamp must be representable as i64"); - - Ok(initial_timestamp - current_timestamp) - }) -} - -struct BlockchainAndState { - blockchain: Box>, - fork_metadata: Option, - rpc_client: Option>, - state: Box>, - irregular_state: IrregularState, - prev_randao_generator: RandomHashGenerator, - block_time_offset_seconds: i64, - next_block_base_fee_per_gas: Option, -} - -fn create_blockchain_and_state( - runtime: runtime::Handle, - config: &ProviderConfig, - mut genesis_accounts: HashMap, -) -> Result { - let mut prev_randao_generator = RandomHashGenerator::with_seed(edr_defaults::MIX_HASH_SEED); - - if let Some(fork_config) = &config.fork { - let state_root_generator = Arc::new(parking_lot::Mutex::new( - RandomHashGenerator::with_seed(edr_defaults::STATE_ROOT_HASH_SEED), - )); - - let http_headers = fork_config - .http_headers - .as_ref() - .map(|headers| HeaderMap::try_from(headers).map_err(CreationError::InvalidHttpHeaders)) - .transpose()?; - - let rpc_client = Arc::new(RpcClient::new( - &fork_config.json_rpc_url, - config.cache_dir.clone(), - http_headers.clone(), - )?); - - let (blockchain, mut irregular_state) = - tokio::task::block_in_place(|| -> Result<_, ForkedCreationError> { - let mut irregular_state = IrregularState::default(); - let blockchain = runtime.block_on(ForkedBlockchain::new( - runtime.clone(), - Some(config.chain_id), - config.hardfork, - rpc_client.clone(), - fork_config.block_number, - &mut irregular_state, - state_root_generator.clone(), - &config.chains, - ))?; - - Ok((blockchain, irregular_state)) - })?; - - let fork_block_number = blockchain.last_block_number(); - - if !genesis_accounts.is_empty() { - let genesis_addresses = genesis_accounts.keys().cloned().collect::>(); - let genesis_account_infos = tokio::task::block_in_place(|| { - runtime.block_on(rpc_client.get_account_infos( - &genesis_addresses, - Some(BlockSpec::Number(fork_block_number)), - )) - })?; - - // Make sure that the nonce and the code of genesis accounts matches the fork - // state as we only want to overwrite the balance. - for (address, account_info) in genesis_addresses.into_iter().zip(genesis_account_infos) - { - genesis_accounts.entry(address).and_modify(|account| { - let AccountInfo { - balance: _, - nonce, - code, - code_hash, - } = &mut account.info; - - *nonce = account_info.nonce; - *code = account_info.code; - *code_hash = account_info.code_hash; - }); - } - - irregular_state - .state_override_at_block_number(fork_block_number) - .and_modify(|state_override| { - // No need to update the state_root, as it could only have been created by the - // `ForkedBlockchain` constructor. - state_override.diff.apply_diff(genesis_accounts.clone()); - }) - .or_insert_with(|| { - let state_root = state_root_generator.lock().next_value(); - - StateOverride { - diff: StateDiff::from(genesis_accounts), - state_root, - } - }); - } - - let state = blockchain - .state_at_block_number(fork_block_number, irregular_state.state_overrides()) - .expect("Fork state must exist"); - - let block_time_offset_seconds = { - let fork_block_timestamp = UNIX_EPOCH - + Duration::from_secs( - blockchain - .last_block() - .map_err(CreationError::Blockchain)? - .header() - .timestamp, - ); - - let elapsed_time = SystemTime::now() - .duration_since(fork_block_timestamp) - .expect("current time must be after fork block") - .as_secs(); - - -i64::try_from(elapsed_time) - .expect("Elapsed time since fork block must be representable as i64") - }; - - let next_block_base_fee_per_gas = if config.hardfork >= SpecId::LONDON { - if let Some(base_fee) = config.initial_base_fee_per_gas { - Some(base_fee) - } else { - let previous_base_fee = blockchain - .last_block() - .map_err(CreationError::Blockchain)? - .header() - .base_fee_per_gas; - - if previous_base_fee.is_none() { - Some(U256::from(DEFAULT_INITIAL_BASE_FEE_PER_GAS)) - } else { - None - } - } - } else { - None - }; - - Ok(BlockchainAndState { - fork_metadata: Some(ForkMetadata { - chain_id: blockchain.remote_chain_id(), - fork_block_number, - fork_block_hash: *blockchain - .block_by_number(fork_block_number) - .map_err(CreationError::Blockchain)? - .expect("Fork block must exist") - .hash(), - }), - rpc_client: Some(rpc_client), - blockchain: Box::new(blockchain), - state: Box::new(state), - irregular_state, - prev_randao_generator, - block_time_offset_seconds, - next_block_base_fee_per_gas, - }) - } else { - let mix_hash = if config.hardfork >= SpecId::MERGE { - Some(prev_randao_generator.generate_next()) - } else { - None - }; - - let blockchain = LocalBlockchain::new( - StateDiff::from(genesis_accounts), - config.chain_id, - config.hardfork, - GenesisBlockOptions { - gas_limit: Some(config.block_gas_limit.get()), - timestamp: config.initial_date.map(|d| { - d.duration_since(UNIX_EPOCH) - .expect("initial date must be after UNIX epoch") - .as_secs() - }), - mix_hash, - base_fee: config.initial_base_fee_per_gas, - blob_gas: config.initial_blob_gas.clone(), - }, - )?; - - let irregular_state = IrregularState::default(); - let state = blockchain - .state_at_block_number(0, irregular_state.state_overrides()) - .expect("Genesis state must exist"); - - let block_time_offset_seconds = block_time_offset_seconds(config)?; - - Ok(BlockchainAndState { - fork_metadata: None, - rpc_client: None, - blockchain: Box::new(blockchain), - state, - irregular_state, - block_time_offset_seconds, - prev_randao_generator, - // For local blockchain the initial base fee per gas config option is incorporated as - // part of the genesis block. - next_block_base_fee_per_gas: None, - }) - } -} - -/// The result returned by requesting a transaction. -#[derive(Debug, Clone)] -pub struct TransactionAndBlock { - /// The transaction. - pub transaction: ExecutableTransaction, - /// Block data in which the transaction is found if it has been mined. - pub block_data: Option, - /// Whether the transaction is pending - pub is_pending: bool, -} - -/// Block metadata for a transaction. -#[derive(Debug, Clone)] -pub struct BlockDataForTransaction { - pub block: Arc>, - pub transaction_index: u64, -} - -#[cfg(test)] -pub(crate) mod test_utils { - use std::convert::Infallible; - - use anyhow::anyhow; - use edr_eth::transaction::{Eip155TransactionRequest, TransactionKind, TransactionRequest}; - use edr_test_utils::env::get_alchemy_url; - - use super::*; - use crate::{ - test_utils::{create_test_config_with_fork, one_ether, FORK_BLOCK_NUMBER}, - NoopLogger, ProviderConfig, - }; - - pub(crate) struct ProviderTestFixture { - _runtime: runtime::Runtime, - pub config: ProviderConfig, - pub provider_data: ProviderData, - pub impersonated_account: Address, - } - - impl ProviderTestFixture { - pub(crate) fn new_local() -> anyhow::Result { - Self::with_fork(None) - } - - pub(crate) fn new_forked(url: Option) -> anyhow::Result { - let fork_url = url.unwrap_or(get_alchemy_url()); - Self::with_fork(Some(fork_url)) - } - - fn with_fork(fork: Option) -> anyhow::Result { - let fork = fork.map(|json_rpc_url| { - ForkConfig { - json_rpc_url, - // Random recent block for better cache consistency - block_number: Some(FORK_BLOCK_NUMBER), - http_headers: None, - } - }); - - let config = create_test_config_with_fork(fork); - - let runtime = runtime::Builder::new_multi_thread() - .worker_threads(1) - .enable_all() - .thread_name("provider-data-test") - .build()?; - - Self::new(runtime, config) - } - - pub fn new( - runtime: tokio::runtime::Runtime, - mut config: ProviderConfig, - ) -> anyhow::Result { - let logger = Box::::default(); - let subscription_callback_noop = Box::new(|_| ()); - - let impersonated_account = Address::random(); - config.genesis_accounts.insert( - impersonated_account, - AccountInfo { - balance: one_ether(), - nonce: 0, - code: None, - code_hash: KECCAK_EMPTY, - }, - ); - - let mut provider_data = ProviderData::new( - runtime.handle().clone(), - logger, - subscription_callback_noop, - None, - config.clone(), - )?; - - provider_data.impersonate_account(impersonated_account); - - Ok(Self { - _runtime: runtime, - config, - provider_data, - impersonated_account, - }) - } - - pub fn dummy_transaction_request( - &self, - local_account_index: usize, - gas_limit: u64, - nonce: Option, - ) -> anyhow::Result { - let request = TransactionRequest::Eip155(Eip155TransactionRequest { - kind: TransactionKind::Call(Address::ZERO), - gas_limit, - gas_price: U256::from(42_000_000_000_u64), - value: U256::from(1), - input: Bytes::default(), - nonce: nonce.unwrap_or(0), - chain_id: self.config.chain_id, - }); - - let sender = self.nth_local_account(local_account_index)?; - Ok(TransactionRequestAndSender { request, sender }) - } - - /// Retrieves the nth local account. - /// - /// # Panics - /// - /// Panics if there are not enough local accounts - pub fn nth_local_account(&self, index: usize) -> anyhow::Result
{ - self.provider_data - .local_accounts - .keys() - .nth(index) - .copied() - .ok_or(anyhow!("the requested local account does not exist")) - } - - pub fn impersonated_dummy_transaction(&self) -> anyhow::Result { - let mut transaction = self.dummy_transaction_request(0, 30_000, None)?; - transaction.sender = self.impersonated_account; - - Ok(self.provider_data.sign_transaction_request(transaction)?) - } - - pub fn signed_dummy_transaction( - &self, - local_account_index: usize, - nonce: Option, - ) -> anyhow::Result { - let transaction = self.dummy_transaction_request(local_account_index, 30_000, nonce)?; - Ok(self.provider_data.sign_transaction_request(transaction)?) - } - } -} - -#[cfg(test)] -mod tests { - use std::convert::Infallible; - - use alloy_sol_types::{sol, SolCall}; - use anyhow::Context; - use edr_eth::remote::eth::CallRequest; - use edr_evm::{hex, MineOrdering, TransactionError}; - use edr_test_utils::env::get_alchemy_url; - use serde_json::json; - - use super::{test_utils::ProviderTestFixture, *}; - use crate::{ - console_log::tests::{deploy_console_log_contract, ConsoleLogTransaction}, - requests::eth::resolve_call_request, - test_utils::{ - create_test_config, create_test_config_with_fork, one_ether, FORK_BLOCK_NUMBER, - }, - MemPoolConfig, MiningConfig, ProviderConfig, - }; - - #[test] - fn test_local_account_balance() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let account = *fixture - .provider_data - .local_accounts - .keys() - .next() - .expect("there are local accounts"); - - let last_block_number = fixture.provider_data.last_block_number(); - let block_spec = BlockSpec::Number(last_block_number); - - let balance = fixture.provider_data.balance(account, Some(&block_spec))?; - - assert_eq!(balance, one_ether()); - - Ok(()) - } - - #[test] - fn test_local_account_balance_forked() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_forked(None)?; - - let account = *fixture - .provider_data - .local_accounts - .keys() - .next() - .expect("there are local accounts"); - - let last_block_number = fixture.provider_data.last_block_number(); - let block_spec = BlockSpec::Number(last_block_number); - - let balance = fixture.provider_data.balance(account, Some(&block_spec))?; - - assert_eq!(balance, one_ether()); - - Ok(()) - } - - #[test] - fn test_sign_transaction_request() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let transaction = fixture.signed_dummy_transaction(0, None)?; - let recovered_address = transaction.recover()?; - - assert!(fixture - .provider_data - .local_accounts - .contains_key(&recovered_address)); - - Ok(()) - } - - #[test] - fn test_sign_transaction_request_impersonated_account() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let transaction = fixture.impersonated_dummy_transaction()?; - - assert_eq!(transaction.caller(), &fixture.impersonated_account); - - Ok(()) - } - - fn test_add_pending_transaction( - fixture: &mut ProviderTestFixture, - transaction: ExecutableTransaction, - ) -> anyhow::Result<()> { - let filter_id = fixture - .provider_data - .add_pending_transaction_filter::(); - - let transaction_hash = fixture.provider_data.add_pending_transaction(transaction)?; - - assert!(fixture - .provider_data - .mem_pool - .transaction_by_hash(&transaction_hash) - .is_some()); - - match fixture - .provider_data - .get_filter_changes(&filter_id) - .unwrap() - { - FilteredEvents::NewPendingTransactions(hashes) => { - assert!(hashes.contains(&transaction_hash)); - } - _ => panic!("expected pending transaction"), - }; - - assert!(fixture.provider_data.mem_pool.has_pending_transactions()); - - Ok(()) - } - - #[test] - fn add_pending_transaction() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - let transaction = fixture.signed_dummy_transaction(0, None)?; - - test_add_pending_transaction(&mut fixture, transaction) - } - - #[test] - fn add_pending_transaction_from_impersonated_account() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - let transaction = fixture.impersonated_dummy_transaction()?; - - test_add_pending_transaction(&mut fixture, transaction) - } - - #[test] - fn block_by_block_spec_earliest() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let block_spec = BlockSpec::Tag(BlockTag::Earliest); - - let block = fixture - .provider_data - .block_by_block_spec(&block_spec)? - .context("block should exist")?; - - assert_eq!(block.header().number, 0); - - Ok(()) - } - - #[test] - fn block_by_block_spec_finalized_safe_latest() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - // Mine a block to make sure we're not getting the genesis block - fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - let last_block_number = fixture.provider_data.last_block_number(); - // Sanity check - assert!(last_block_number > 0); - - let block_tags = vec![BlockTag::Finalized, BlockTag::Safe, BlockTag::Latest]; - for tag in block_tags { - let block_spec = BlockSpec::Tag(tag); - - let block = fixture - .provider_data - .block_by_block_spec(&block_spec)? - .context("block should exist")?; - - assert_eq!(block.header().number, last_block_number); - } - - Ok(()) - } - - #[test] - fn block_by_block_spec_pending() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let block_spec = BlockSpec::Tag(BlockTag::Pending); - - let block = fixture.provider_data.block_by_block_spec(&block_spec)?; - - assert!(block.is_none()); - - Ok(()) - } - - // Make sure executing a transaction in a pending block context doesn't panic. - #[test] - fn execute_in_block_context_pending() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let block_spec = Some(BlockSpec::Tag(BlockTag::Pending)); - - let mut value = 0; - let _ = - fixture - .provider_data - .execute_in_block_context(block_spec.as_ref(), |_, _, _| { - value += 1; - Ok::<(), ProviderError>(()) - })?; - - assert_eq!(value, 1); - - Ok(()) - } - - #[test] - fn chain_id() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let chain_id = fixture.provider_data.chain_id(); - assert_eq!(chain_id, fixture.config.chain_id); - - Ok(()) - } - - #[test] - fn chain_id_fork_mode() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_forked(None)?; - - let chain_id = fixture.provider_data.chain_id(); - assert_eq!(chain_id, fixture.config.chain_id); - - Ok(()) - } - - #[test] - fn fork_metadata_fork_mode() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_forked(None)?; - - let fork_metadata = fixture - .provider_data - .fork_metadata() - .expect("fork metadata should exist"); - assert_eq!(fork_metadata.chain_id, 1); - - Ok(()) - } - - #[test] - fn console_log_mine_block() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - let ConsoleLogTransaction { - transaction, - expected_call_data, - } = deploy_console_log_contract(&mut fixture.provider_data)?; - - let signed_transaction = fixture - .provider_data - .sign_transaction_request(transaction)?; - - fixture.provider_data.set_auto_mining(false); - fixture.provider_data.send_transaction(signed_transaction)?; - let (block_timestamp, _) = fixture.provider_data.next_block_timestamp(None)?; - let prevrandao = fixture.provider_data.prev_randao_generator.next_value(); - let result = fixture.provider_data.mine_block(BlockOptions { - timestamp: Some(block_timestamp), - mix_hash: Some(prevrandao), - ..BlockOptions::default() - })?; - - let console_log_inputs = result.console_log_inputs; - assert_eq!(console_log_inputs.len(), 1); - assert_eq!(console_log_inputs[0], expected_call_data); - - Ok(()) - } - - #[test] - fn console_log_run_call() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - let ConsoleLogTransaction { - transaction, - expected_call_data, - } = deploy_console_log_contract(&mut fixture.provider_data)?; - - let pending_transaction = fixture - .provider_data - .sign_transaction_request(transaction)?; - - let result = fixture.provider_data.run_call( - pending_transaction, - &BlockSpec::latest(), - &StateOverrides::default(), - )?; - - let console_log_inputs = result.console_log_inputs; - assert_eq!(console_log_inputs.len(), 1); - assert_eq!(console_log_inputs[0], expected_call_data); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_empty() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let previous_block_number = fixture.provider_data.last_block_number(); - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - assert!(result.block.transactions().is_empty()); - - let current_block_number = fixture.provider_data.last_block_number(); - assert_eq!(current_block_number, previous_block_number + 1); - - let cached_state = fixture - .provider_data - .get_or_compute_state(result.block.header().number)?; - - let calculated_state = fixture.provider_data.blockchain.state_at_block_number( - fixture.provider_data.last_block_number(), - fixture.provider_data.irregular_state.state_overrides(), - )?; - - assert_eq!(cached_state.state_root()?, calculated_state.state_root()?); - - Ok(()) - } - - #[test] - fn mine_and_commit_blocks_empty() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - fixture - .provider_data - .mine_and_commit_blocks(1_000_000_000, 1)?; - - let cached_state = fixture - .provider_data - .get_or_compute_state(fixture.provider_data.last_block_number())?; - - let calculated_state = fixture.provider_data.blockchain.state_at_block_number( - fixture.provider_data.last_block_number(), - fixture.provider_data.irregular_state.state_overrides(), - )?; - - assert_eq!(cached_state.state_root()?, calculated_state.state_root()?); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_single_transaction() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction = fixture.signed_dummy_transaction(0, None)?; - let expected = transaction.value(); - let receiver = transaction - .to() - .expect("Dummy transaction should have a receiver"); - - fixture.provider_data.add_pending_transaction(transaction)?; - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - assert_eq!(result.block.transactions().len(), 1); - - let balance = fixture - .provider_data - .balance(receiver, Some(&BlockSpec::latest()))?; - - assert_eq!(balance, expected); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_two_transactions_different_senders() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction1 = fixture.signed_dummy_transaction(0, None)?; - let transaction2 = fixture.signed_dummy_transaction(1, None)?; - - let receiver = transaction1 - .to() - .expect("Dummy transaction should have a receiver"); - - let expected = transaction1.value() + transaction2.value(); - - fixture - .provider_data - .add_pending_transaction(transaction1)?; - fixture - .provider_data - .add_pending_transaction(transaction2)?; - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - assert_eq!(result.block.transactions().len(), 2); - - let balance = fixture - .provider_data - .balance(receiver, Some(&BlockSpec::latest()))?; - - assert_eq!(balance, expected); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_two_transactions_same_sender() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction1 = fixture.signed_dummy_transaction(0, Some(0))?; - let transaction2 = fixture.signed_dummy_transaction(0, Some(1))?; - - let receiver = transaction1 - .to() - .expect("Dummy transaction should have a receiver"); - - let expected = transaction1.value() + transaction2.value(); - - fixture - .provider_data - .add_pending_transaction(transaction1)?; - fixture - .provider_data - .add_pending_transaction(transaction2)?; - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - assert_eq!(result.block.transactions().len(), 2); - - let balance = fixture - .provider_data - .balance(receiver, Some(&BlockSpec::latest()))?; - - assert_eq!(balance, expected); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_removes_mined_transactions() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction = fixture.signed_dummy_transaction(0, None)?; - - fixture - .provider_data - .add_pending_transaction(transaction.clone())?; - - let num_pending_transactions = fixture.provider_data.pending_transactions().count(); - assert_eq!(num_pending_transactions, 1); - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - assert_eq!(result.block.transactions().len(), 1); - - let num_pending_transactions = fixture.provider_data.pending_transactions().count(); - assert_eq!(num_pending_transactions, 0); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_leaves_unmined_transactions() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - // SAFETY: literal is non-zero - fixture - .provider_data - .set_block_gas_limit(unsafe { NonZeroU64::new_unchecked(55_000) })?; - - // Actual gas usage is 21_000 - let transaction1 = fixture.signed_dummy_transaction(0, Some(0))?; - let transaction3 = fixture.signed_dummy_transaction(0, Some(1))?; - - // Too expensive to mine - let transaction2 = { - let request = fixture.dummy_transaction_request(1, 40_000, None)?; - fixture.provider_data.sign_transaction_request(request)? - }; - - fixture - .provider_data - .add_pending_transaction(transaction1.clone())?; - fixture - .provider_data - .add_pending_transaction(transaction2.clone())?; - fixture - .provider_data - .add_pending_transaction(transaction3.clone())?; - - let pending_transactions = fixture - .provider_data - .pending_transactions() - .cloned() - .collect::>(); - - assert!(pending_transactions.contains(&transaction1)); - assert!(pending_transactions.contains(&transaction2)); - assert!(pending_transactions.contains(&transaction3)); - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - // Check that only the first and third transactions were mined - assert_eq!(result.block.transactions().len(), 2); - assert!(fixture - .provider_data - .transaction_receipt(transaction1.hash())? - .is_some()); - assert!(fixture - .provider_data - .transaction_receipt(transaction3.hash())? - .is_some()); - - // Check that the second transaction is still pending - let pending_transactions = fixture - .provider_data - .pending_transactions() - .cloned() - .collect::>(); - - assert_eq!(pending_transactions, vec![transaction2]); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_fifo_ordering() -> anyhow::Result<()> { - let default_config = create_test_config(); - let config = ProviderConfig { - mining: MiningConfig { - mem_pool: MemPoolConfig { - order: MineOrdering::Fifo, - }, - ..default_config.mining - }, - ..default_config - }; - - let runtime = runtime::Builder::new_multi_thread() - .worker_threads(1) - .enable_all() - .thread_name("provider-data-test") - .build()?; - - let mut fixture = ProviderTestFixture::new(runtime, config)?; - - let transaction1 = fixture.signed_dummy_transaction(0, None)?; - let transaction2 = fixture.signed_dummy_transaction(1, None)?; - - fixture - .provider_data - .add_pending_transaction(transaction1.clone())?; - fixture - .provider_data - .add_pending_transaction(transaction2.clone())?; - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - assert_eq!(result.block.transactions().len(), 2); - - let receipt1 = fixture - .provider_data - .transaction_receipt(transaction1.hash())? - .expect("receipt should exist"); - - assert_eq!(receipt1.transaction_index, 0); - - let receipt2 = fixture - .provider_data - .transaction_receipt(transaction2.hash())? - .expect("receipt should exist"); - - assert_eq!(receipt2.transaction_index, 1); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_correct_gas_used() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction1 = fixture.signed_dummy_transaction(0, None)?; - let transaction2 = fixture.signed_dummy_transaction(1, None)?; - - fixture - .provider_data - .add_pending_transaction(transaction1.clone())?; - fixture - .provider_data - .add_pending_transaction(transaction2.clone())?; - - let result = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - let receipt1 = fixture - .provider_data - .transaction_receipt(transaction1.hash())? - .expect("receipt should exist"); - let receipt2 = fixture - .provider_data - .transaction_receipt(transaction2.hash())? - .expect("receipt should exist"); - - assert_eq!(receipt1.gas_used, 21_000); - assert_eq!(receipt2.gas_used, 21_000); - assert_eq!( - result.block.header().gas_used, - receipt1.gas_used + receipt2.gas_used - ); - - Ok(()) - } - - #[test] - fn mine_and_commit_block_rewards_miner() -> anyhow::Result<()> { - let default_config = create_test_config(); - let config = ProviderConfig { - hardfork: SpecId::BERLIN, - ..default_config - }; - - let runtime = runtime::Builder::new_multi_thread() - .worker_threads(1) - .enable_all() - .thread_name("provider-data-test") - .build()?; - - let mut fixture = ProviderTestFixture::new(runtime, config)?; - - let miner = fixture.provider_data.beneficiary; - let previous_miner_balance = fixture - .provider_data - .balance(miner, Some(&BlockSpec::latest()))?; - - let transaction = fixture.signed_dummy_transaction(0, None)?; - fixture - .provider_data - .add_pending_transaction(transaction.clone())?; - - fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - let miner_balance = fixture - .provider_data - .balance(miner, Some(&BlockSpec::latest()))?; - - assert!(miner_balance > previous_miner_balance); - - Ok(()) - } - - #[test] - fn mine_and_commit_blocks_increases_block_number() -> anyhow::Result<()> { - const NUM_MINED_BLOCKS: u64 = 10; - - let mut fixture = ProviderTestFixture::new_local()?; - - let previous_block_number = fixture.provider_data.last_block_number(); - - fixture - .provider_data - .mine_and_commit_blocks(NUM_MINED_BLOCKS, 1)?; - - assert_eq!( - fixture.provider_data.last_block_number(), - previous_block_number + NUM_MINED_BLOCKS - ); - assert_eq!( - fixture.provider_data.last_block()?.header().number, - previous_block_number + NUM_MINED_BLOCKS - ); - - Ok(()) - } - - #[test] - fn mine_and_commit_blocks_works_with_snapshots() -> anyhow::Result<()> { - const NUM_MINED_BLOCKS: u64 = 10; - - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction1 = fixture.signed_dummy_transaction(0, None)?; - let transaction2 = fixture.signed_dummy_transaction(1, None)?; - - let original_block_number = fixture.provider_data.last_block_number(); - - fixture - .provider_data - .add_pending_transaction(transaction1.clone())?; - - let snapshot_id = fixture.provider_data.make_snapshot(); - assert_eq!( - fixture.provider_data.last_block_number(), - original_block_number - ); - - // Mine block after snapshot - fixture - .provider_data - .mine_and_commit_blocks(NUM_MINED_BLOCKS, 1)?; - - assert_eq!( - fixture.provider_data.last_block_number(), - original_block_number + NUM_MINED_BLOCKS - ); - - let reverted = fixture.provider_data.revert_to_snapshot(snapshot_id); - assert!(reverted); - - assert_eq!( - fixture.provider_data.last_block_number(), - original_block_number - ); - - fixture - .provider_data - .mine_and_commit_blocks(NUM_MINED_BLOCKS, 1)?; - - let block_number_before_snapshot = fixture.provider_data.last_block_number(); - - // Mine block before snapshot - let snapshot_id = fixture.provider_data.make_snapshot(); - - fixture - .provider_data - .add_pending_transaction(transaction2.clone())?; - - fixture.provider_data.mine_and_commit_blocks(1, 1)?; - - let reverted = fixture.provider_data.revert_to_snapshot(snapshot_id); - assert!(reverted); - - assert_eq!( - fixture.provider_data.last_block_number(), - block_number_before_snapshot - ); - - Ok(()) - } - - #[test] - fn next_filter_id() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let mut prev_filter_id = fixture.provider_data.last_filter_id; - for _ in 0..10 { - let filter_id = fixture.provider_data.next_filter_id(); - assert!(prev_filter_id < filter_id); - prev_filter_id = filter_id; - } - - Ok(()) - } - - #[test] - fn pending_transactions_returns_pending_and_queued() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local().unwrap(); - - let transaction1 = fixture.signed_dummy_transaction(0, Some(0))?; - fixture - .provider_data - .add_pending_transaction(transaction1.clone())?; - - let transaction2 = fixture.signed_dummy_transaction(0, Some(2))?; - fixture - .provider_data - .add_pending_transaction(transaction2.clone())?; - - let transaction3 = fixture.signed_dummy_transaction(0, Some(3))?; - fixture - .provider_data - .add_pending_transaction(transaction3.clone())?; - - let pending_transactions = fixture - .provider_data - .pending_transactions() - .cloned() - .collect::>(); - - assert_eq!( - pending_transactions, - vec![transaction1, transaction2, transaction3] - ); - - Ok(()) - } - - #[test] - fn set_balance_updates_mem_pool() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction = fixture.impersonated_dummy_transaction()?; - let transaction_hash = fixture.provider_data.add_pending_transaction(transaction)?; - - assert!(fixture - .provider_data - .mem_pool - .transaction_by_hash(&transaction_hash) - .is_some()); - - fixture - .provider_data - .set_balance(fixture.impersonated_account, U256::from(100))?; - - assert!(fixture - .provider_data - .mem_pool - .transaction_by_hash(&transaction_hash) - .is_none()); - - Ok(()) - } - - #[test] - fn transaction_by_invalid_hash() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - let non_existing_tx = fixture.provider_data.transaction_by_hash(&B256::ZERO)?; - - assert!(non_existing_tx.is_none()); - - Ok(()) - } - - #[test] - fn pending_transaction_by_hash() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction_request = fixture.signed_dummy_transaction(0, None)?; - let transaction_hash = fixture - .provider_data - .add_pending_transaction(transaction_request)?; - - let transaction_result = fixture - .provider_data - .transaction_by_hash(&transaction_hash)? - .context("transaction not found")?; - - assert_eq!(transaction_result.transaction.hash(), &transaction_hash); - - Ok(()) - } - - #[test] - fn transaction_by_hash() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let transaction_request = fixture.signed_dummy_transaction(0, None)?; - let transaction_hash = fixture - .provider_data - .add_pending_transaction(transaction_request)?; - - let results = fixture - .provider_data - .mine_and_commit_block(BlockOptions::default())?; - - // Make sure transaction was mined successfully. - assert!(results - .transaction_results - .first() - .context("failed to mine transaction")? - .is_success()); - // Sanity check that the mempool is empty. - assert_eq!(fixture.provider_data.mem_pool.transactions().count(), 0); - - let transaction_result = fixture - .provider_data - .transaction_by_hash(&transaction_hash)? - .context("transaction not found")?; - - assert_eq!(transaction_result.transaction.hash(), &transaction_hash); - - Ok(()) - } - - #[test] - fn reset_local_to_forking() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let fork_config = Some(ForkConfig { - json_rpc_url: get_alchemy_url(), - // Random recent block for better cache consistency - block_number: Some(FORK_BLOCK_NUMBER), - http_headers: None, - }); - - let block_spec = BlockSpec::Number(FORK_BLOCK_NUMBER); - - assert_eq!(fixture.provider_data.last_block_number(), 0); - - fixture.provider_data.reset(fork_config)?; - - // We're fetching a specific block instead of the last block number for the - // forked blockchain, because the last block number query cannot be - // cached. - assert!(fixture - .provider_data - .block_by_block_spec(&block_spec)? - .is_some()); - - Ok(()) - } - - #[test] - fn reset_forking_to_local() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_forked(None)?; - - // We're fetching a specific block instead of the last block number for the - // forked blockchain, because the last block number query cannot be - // cached. - assert!(fixture - .provider_data - .block_by_block_spec(&BlockSpec::Number(FORK_BLOCK_NUMBER))? - .is_some()); - - fixture.provider_data.reset(None)?; - - assert_eq!(fixture.provider_data.last_block_number(), 0); - - Ok(()) - } - - #[test] - fn sign_typed_data_v4() -> anyhow::Result<()> { - let fixture = ProviderTestFixture::new_local()?; - - // This test was taken from the `eth_signTypedData` example from the - // EIP-712 specification via Hardhat. - // - - let address: Address = "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826".parse()?; - let message = json!({ - "types": { - "EIP712Domain": [ - { "name": "name", "type": "string" }, - { "name": "version", "type": "string" }, - { "name": "chainId", "type": "uint256" }, - { "name": "verifyingContract", "type": "address" }, - ], - "Person": [ - { "name": "name", "type": "string" }, - { "name": "wallet", "type": "address" }, - ], - "Mail": [ - { "name": "from", "type": "Person" }, - { "name": "to", "type": "Person" }, - { "name": "contents", "type": "string" }, - ], - }, - "primaryType": "Mail", - "domain": { - "name": "Ether Mail", - "version": "1", - "chainId": 1, - "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC", - }, - "message": { - "from": { - "name": "Cow", - "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826", - }, - "to": { - "name": "Bob", - "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB", - }, - "contents": "Hello, Bob!", - }, - }); - let message: TypedData = serde_json::from_value(message)?; - - let signature = fixture - .provider_data - .sign_typed_data_v4(&address, &message)?; - - let expected_signature = "0x4355c47d63924e8a72e509b65029052eb6c299d53a04e167c5775fd466751c9d07299936d304c153f6443dfa05f40ff007d72911b6f72307f996231605b915621c"; - - assert_eq!(hex::decode(expected_signature)?, signature.to_vec(),); - - Ok(()) - } - - #[test] - fn run_call_in_hardfork_context() -> anyhow::Result<()> { - sol! { function Hello() public pure returns (string); } - - fn assert_decoded_output(result: ExecutionResult) -> anyhow::Result<()> { - let output = result.into_output().expect("Call must have output"); - let decoded = HelloCall::abi_decode_returns(output.as_ref(), false)?; - - assert_eq!(decoded._0, "Hello World"); - Ok(()) - } - - /// Executes a call to method `Hello` on contract `HelloWorld`, - /// deployed to mainnet. - /// - /// Should return a string `"Hello World"`. - fn call_hello_world_contract( - data: &mut ProviderData, - block_spec: BlockSpec, - request: CallRequest, - ) -> Result> { - let state_overrides = StateOverrides::default(); - - let transaction = resolve_call_request(data, request, &block_spec, &state_overrides)?; - - data.run_call(transaction, &block_spec, &state_overrides) - } - - const EIP_1559_ACTIVATION_BLOCK: u64 = 12_965_000; - const HELLO_WORLD_CONTRACT_ADDRESS: &str = "0xe36613A299bA695aBA8D0c0011FCe95e681f6dD3"; - - let hello_world_contract_address: Address = HELLO_WORLD_CONTRACT_ADDRESS.parse()?; - let hello_world_contract_call = HelloCall::new(()); - - let runtime = runtime::Builder::new_multi_thread() - .worker_threads(1) - .enable_all() - .thread_name("provider-data-test") - .build()?; - - let default_config = create_test_config_with_fork(Some(ForkConfig { - json_rpc_url: get_alchemy_url(), - block_number: Some(EIP_1559_ACTIVATION_BLOCK), - http_headers: None, - })); - - let config = ProviderConfig { - // SAFETY: literal is non-zero - block_gas_limit: unsafe { NonZeroU64::new_unchecked(1_000_000) }, - chain_id: 1, - coinbase: Address::ZERO, - hardfork: SpecId::LONDON, - network_id: 1, - ..default_config - }; - - let mut fixture = ProviderTestFixture::new(runtime, config)?; - - let default_call = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(hello_world_contract_address), - gas: Some(1_000_000), - value: Some(U256::ZERO), - data: Some(hello_world_contract_call.abi_encode().into()), - ..CallRequest::default() - }; - - // Should accept post-EIP-1559 gas semantics when running in the context of a - // post-EIP-1559 block - let result = call_hello_world_contract( - &mut fixture.provider_data, - BlockSpec::Number(EIP_1559_ACTIVATION_BLOCK), - CallRequest { - max_fee_per_gas: Some(U256::ZERO), - ..default_call.clone() - }, - )?; - - assert_decoded_output(result.execution_result)?; - - // Should accept pre-EIP-1559 gas semantics when running in the context of a - // pre-EIP-1559 block - let result = call_hello_world_contract( - &mut fixture.provider_data, - BlockSpec::Number(EIP_1559_ACTIVATION_BLOCK - 1), - CallRequest { - gas_price: Some(U256::ZERO), - ..default_call.clone() - }, - )?; - - assert_decoded_output(result.execution_result)?; - - // Should throw when given post-EIP-1559 gas semantics and when running in the - // context of a pre-EIP-1559 block - let result = call_hello_world_contract( - &mut fixture.provider_data, - BlockSpec::Number(EIP_1559_ACTIVATION_BLOCK - 1), - CallRequest { - max_fee_per_gas: Some(U256::ZERO), - ..default_call.clone() - }, - ); - - assert!(matches!( - result, - Err(ProviderError::RunTransaction( - TransactionError::Eip1559Unsupported - )) - )); - - // Should accept pre-EIP-1559 gas semantics when running in the context of a - // post-EIP-1559 block - let result = call_hello_world_contract( - &mut fixture.provider_data, - BlockSpec::Number(EIP_1559_ACTIVATION_BLOCK), - CallRequest { - gas_price: Some(U256::ZERO), - ..default_call.clone() - }, - )?; - - assert_decoded_output(result.execution_result)?; - - // Should support a historical call in the context of a block added via - // `mine_and_commit_blocks` - let previous_block_number = fixture.provider_data.last_block_number(); - - fixture.provider_data.mine_and_commit_blocks(100, 1)?; - - let result = call_hello_world_contract( - &mut fixture.provider_data, - BlockSpec::Number(previous_block_number + 50), - CallRequest { - max_fee_per_gas: Some(U256::ZERO), - ..default_call - }, - )?; - - assert_decoded_output(result.execution_result)?; - - Ok(()) - } - - macro_rules! impl_full_block_tests { - ($( - $name:ident => { - block_number: $block_number:expr, - chain_id: $chain_id:expr, - url: $url:expr, - }, - )+) => { - $( - paste::item! { - #[serial_test::serial] - #[tokio::test(flavor = "multi_thread")] - async fn []() -> anyhow::Result<()> { - let url = $url; - - crate::test_utils::run_full_block(url, $block_number, $chain_id).await - } - } - )+ - } - } - - impl_full_block_tests! { - mainnet_byzantium => { - block_number: 4_370_001, - chain_id: 1, - url: get_alchemy_url(), - }, - mainnet_constantinople => { - block_number: 7_280_001, - chain_id: 1, - url: get_alchemy_url(), - }, - mainnet_istanbul => { - block_number: 9_069_001, - chain_id: 1, - url: get_alchemy_url(), - }, - mainnet_muir_glacier => { - block_number: 9_300_077, - chain_id: 1, - url: get_alchemy_url(), - }, - mainnet_shanghai => { - block_number: 17_050_001, - chain_id: 1, - url: get_alchemy_url(), - }, - // This block contains a sequence of transaction that first raise - // an empty account's balance and then decrease it - mainnet_19318016 => { - block_number: 19_318_016, - chain_id: 1, - url: get_alchemy_url(), - }, - // This block has both EIP-2930 and EIP-1559 transactions - sepolia_eip_1559_2930 => { - block_number: 5_632_795, - chain_id: 11_155_111, - url: get_alchemy_url().replace("mainnet", "sepolia"), - }, - sepolia_shanghai => { - block_number: 3_095_000, - chain_id: 11_155_111, - url: get_alchemy_url().replace("mainnet", "sepolia"), - }, - // This block has an EIP-4844 transaction - mainnet_cancun => { - block_number: 19_529_021, - chain_id: 1, - url: get_alchemy_url(), - }, - // This block contains a transaction that uses the KZG point evaluation - // precompile, introduced in Cancun - mainnet_cancun2 => { - block_number: 19_562_047, - chain_id: 1, - url: get_alchemy_url(), - }, - } -} diff --git a/crates/edr_provider/src/data/account.rs b/crates/edr_provider/src/data/account.rs deleted file mode 100644 index 6769941d10..0000000000 --- a/crates/edr_provider/src/data/account.rs +++ /dev/null @@ -1,52 +0,0 @@ -use edr_eth::{signature::public_key_to_address, Address}; -use edr_evm::{Account, AccountInfo, AccountStatus, HashMap, KECCAK_EMPTY}; -use indexmap::IndexMap; - -use crate::{AccountConfig, ProviderConfig}; - -pub(super) struct InitialAccounts { - pub local_accounts: IndexMap, - pub genesis_accounts: HashMap, -} - -pub(super) fn create_accounts(config: &ProviderConfig) -> InitialAccounts { - let mut local_accounts = IndexMap::default(); - - let genesis_accounts = config - .accounts - .iter() - .map( - |AccountConfig { - secret_key, - balance, - }| { - let address = public_key_to_address(secret_key.public_key()); - let genesis_account = AccountInfo { - balance: *balance, - nonce: 0, - code: None, - code_hash: KECCAK_EMPTY, - }; - - local_accounts.insert(address, secret_key.clone()); - - (address, genesis_account) - }, - ) - .chain(config.genesis_accounts.clone()) - .map(|(address, account_info)| { - let account = Account { - info: account_info, - storage: HashMap::new(), - status: AccountStatus::Created | AccountStatus::Touched, - }; - - (address, account) - }) - .collect(); - - InitialAccounts { - local_accounts, - genesis_accounts, - } -} diff --git a/crates/edr_provider/src/data/call.rs b/crates/edr_provider/src/data/call.rs deleted file mode 100644 index 8a1974c28e..0000000000 --- a/crates/edr_provider/src/data/call.rs +++ /dev/null @@ -1,84 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{ - block::{BlobGas, Header}, - SpecId, U256, -}; -use edr_evm::{ - blockchain::{BlockchainError, SyncBlockchain}, - guaranteed_dry_run, - state::{StateError, StateOverrides, StateRefOverrider, SyncState}, - BlobExcessGasAndPrice, BlockEnv, CfgEnvWithHandlerCfg, DebugContext, ExecutionResult, TxEnv, -}; - -use crate::ProviderError; - -pub(super) struct RunCallArgs<'a, 'evm, DebugDataT> -where - 'a: 'evm, -{ - pub blockchain: &'a dyn SyncBlockchain, - pub header: &'a Header, - pub state: &'a dyn SyncState, - pub state_overrides: &'a StateOverrides, - pub cfg_env: CfgEnvWithHandlerCfg, - pub tx_env: TxEnv, - pub debug_context: Option< - DebugContext< - 'evm, - BlockchainError, - DebugDataT, - StateRefOverrider<'a, &'evm dyn SyncState>, - >, - >, -} - -/// Execute a transaction as a call. Returns the gas used and the output. -pub(super) fn run_call<'a, 'evm, DebugDataT, LoggerErrorT: Debug>( - args: RunCallArgs<'a, 'evm, DebugDataT>, -) -> Result> -where - 'a: 'evm, -{ - let RunCallArgs { - blockchain, - header, - state, - state_overrides, - cfg_env, - tx_env, - debug_context, - } = args; - - let block = BlockEnv { - number: U256::from(header.number), - coinbase: header.beneficiary, - timestamp: U256::from(header.timestamp), - gas_limit: U256::from(header.gas_limit), - basefee: U256::ZERO, - difficulty: header.difficulty, - prevrandao: if cfg_env.handler_cfg.spec_id >= SpecId::MERGE { - Some(header.mix_hash) - } else { - None - }, - blob_excess_gas_and_price: header - .blob_gas - .as_ref() - .map(|BlobGas { excess_gas, .. }| BlobExcessGasAndPrice::new(*excess_gas)), - }; - - guaranteed_dry_run( - blockchain, - state, - state_overrides, - cfg_env, - tx_env, - block, - debug_context, - ) - .map_or_else( - |error| Err(ProviderError::RunTransaction(error)), - |result| Ok(result.result), - ) -} diff --git a/crates/edr_provider/src/data/gas.rs b/crates/edr_provider/src/data/gas.rs deleted file mode 100644 index 7f6c565b57..0000000000 --- a/crates/edr_provider/src/data/gas.rs +++ /dev/null @@ -1,211 +0,0 @@ -use core::fmt::Debug; -use std::cmp; - -use edr_eth::{block::Header, reward_percentile::RewardPercentile, U256}; -use edr_evm::{ - blockchain::{BlockchainError, SyncBlockchain}, - state::{StateError, StateOverrides, SyncState}, - trace::{register_trace_collector_handles, TraceCollector}, - CfgEnvWithHandlerCfg, DebugContext, ExecutionResult, SyncBlock, TxEnv, -}; -use itertools::Itertools; - -use crate::{ - data::call::{self, RunCallArgs}, - ProviderError, -}; - -pub(super) struct CheckGasLimitArgs<'a> { - pub blockchain: &'a dyn SyncBlockchain, - pub header: &'a Header, - pub state: &'a dyn SyncState, - pub state_overrides: &'a StateOverrides, - pub cfg_env: CfgEnvWithHandlerCfg, - pub tx_env: TxEnv, - pub gas_limit: u64, - pub trace_collector: &'a mut TraceCollector, -} - -/// Test if the transaction successfully executes with the given gas limit. -/// Returns true on success and return false if the transaction runs out of gas -/// or funds or reverts. Returns an error for any other halt reason. -pub(super) fn check_gas_limit( - args: CheckGasLimitArgs<'_>, -) -> Result> { - let CheckGasLimitArgs { - blockchain, - header, - state, - state_overrides, - cfg_env, - mut tx_env, - gas_limit, - trace_collector, - } = args; - - tx_env.gas_limit = gas_limit; - - let result = call::run_call(RunCallArgs { - blockchain, - header, - state, - state_overrides, - cfg_env, - tx_env, - debug_context: Some(DebugContext { - data: trace_collector, - register_handles_fn: register_trace_collector_handles, - }), - })?; - - Ok(matches!(result, ExecutionResult::Success { .. })) -} - -pub(super) struct BinarySearchEstimationArgs<'a> { - pub blockchain: &'a dyn SyncBlockchain, - pub header: &'a Header, - pub state: &'a dyn SyncState, - pub state_overrides: &'a StateOverrides, - pub cfg_env: CfgEnvWithHandlerCfg, - pub tx_env: TxEnv, - pub lower_bound: u64, - pub upper_bound: u64, - pub trace_collector: &'a mut TraceCollector, -} - -/// Search for a tight upper bound on the gas limit that will allow the -/// transaction to execute. Matches Hardhat logic, except it's iterative, not -/// recursive. -pub(super) fn binary_search_estimation( - args: BinarySearchEstimationArgs<'_>, -) -> Result> { - const MAX_ITERATIONS: usize = 20; - - let BinarySearchEstimationArgs { - blockchain, - header, - state, - state_overrides, - cfg_env, - tx_env, - mut lower_bound, - mut upper_bound, - trace_collector, - } = args; - - let mut i = 0; - - while upper_bound - lower_bound > min_difference(lower_bound) && i < MAX_ITERATIONS { - let mut mid = lower_bound + (upper_bound - lower_bound) / 2; - if i == 0 { - // Start close to the lower bound as it's assumed to be derived from the gas - // used by the transaction. - let initial_mid = 3 * lower_bound; - mid = cmp::min(mid, initial_mid); - } - - let success = check_gas_limit(CheckGasLimitArgs { - blockchain, - header, - state, - state_overrides, - cfg_env: cfg_env.clone(), - tx_env: tx_env.clone(), - gas_limit: mid, - trace_collector, - })?; - - if success { - upper_bound = mid; - } else { - lower_bound = mid + 1; - } - - i += 1; - } - - Ok(upper_bound) -} - -// Matches Hardhat -#[inline] -fn min_difference(lower_bound: u64) -> u64 { - if lower_bound >= 4_000_000 { - 50_000 - } else if lower_bound >= 1_000_000 { - 10_000 - } else if lower_bound >= 100_000 { - 1_000 - } else if lower_bound >= 50_000 { - 500 - } else if lower_bound >= 30_000 { - 300 - } else { - 200 - } -} - -/// Compute miner rewards for percentiles. -pub(super) fn compute_rewards( - block: &dyn SyncBlock, - reward_percentiles: &[RewardPercentile], -) -> Result, ProviderError> { - if block.transactions().is_empty() { - return Ok(reward_percentiles.iter().map(|_| U256::ZERO).collect()); - } - - let base_fee_per_gas = block.header().base_fee_per_gas.unwrap_or_default(); - - let gas_used_and_effective_reward = block - .transaction_receipts()? - .iter() - .enumerate() - .map(|(i, receipt)| { - let transaction = &block.transactions()[i]; - - let gas_used = receipt.gas_used; - // gas price pre EIP-1559 and max fee per gas post EIP-1559 - let gas_price = transaction.gas_price(); - - let effective_reward = - if let Some(max_priority_fee_per_gas) = transaction.max_priority_fee_per_gas() { - cmp::min(max_priority_fee_per_gas, gas_price - base_fee_per_gas) - } else { - gas_price.saturating_sub(base_fee_per_gas) - }; - - (gas_used, effective_reward) - }) - .sorted_by(|(_, reward_first), (_, reward_second)| reward_first.cmp(reward_second)) - .collect::>(); - - // Ethereum block gas limit is 30 million, so it's safe to cast to f64. - let gas_limit = block.header().gas_limit as f64; - - Ok(reward_percentiles - .iter() - .map(|percentile| { - let mut gas_used = 0; - let target_gas = ((percentile.as_ref() / 100.0) * gas_limit) as u64; - - for (gas_used_by_tx, effective_reward) in &gas_used_and_effective_reward { - gas_used += gas_used_by_tx; - if target_gas <= gas_used { - return *effective_reward; - } - } - - gas_used_and_effective_reward - .last() - .map_or(U256::ZERO, |(_, reward)| *reward) - }) - .collect()) -} - -/// Gas used to gas limit ratio -pub(super) fn gas_used_ratio(gas_used: u64, gas_limit: u64) -> f64 { - // Ported from Hardhat - // https://github.com/NomicFoundation/hardhat/blob/0c547784952d6409e157b03ae69ba456b03cf6ee/packages/hardhat-core/src/internal/hardhat-network/provider/node.ts#L1359 - const FLOATS_PRECISION: f64 = 100_000.0; - gas_used as f64 * FLOATS_PRECISION / gas_limit as f64 / FLOATS_PRECISION -} diff --git a/crates/edr_provider/src/debug_mine.rs b/crates/edr_provider/src/debug_mine.rs deleted file mode 100644 index 864e556c78..0000000000 --- a/crates/edr_provider/src/debug_mine.rs +++ /dev/null @@ -1,80 +0,0 @@ -use core::fmt::Debug; -use std::sync::Arc; - -use edr_eth::{Bytes, B256}; -use edr_evm::{ - state::{StateDiff, SyncState}, - trace::Trace, - ExecutionResult, LocalBlock, MineBlockResultAndState, SyncBlock, -}; - -/// The result of mining a block, including the state, in debug mode. This -/// result needs to be inserted into the blockchain to be persistent. -pub struct DebugMineBlockResultAndState { - /// Mined block - pub block: LocalBlock, - /// State after mining the block - pub state: Box>, - /// State diff applied by block - pub state_diff: StateDiff, - /// Transaction results - pub transaction_results: Vec, - /// Transaction traces - pub transaction_traces: Vec, - /// Encoded `console.log` call inputs - pub console_log_inputs: Vec, -} - -impl DebugMineBlockResultAndState { - /// Constructs a new instance from a [`MineBlockResultAndState`], - /// transaction traces, and decoded console log messages. - pub fn new( - result: MineBlockResultAndState, - transaction_traces: Vec, - console_log_decoded_messages: Vec, - ) -> Self { - Self { - block: result.block, - state: result.state, - state_diff: result.state_diff, - transaction_results: result.transaction_results, - transaction_traces, - console_log_inputs: console_log_decoded_messages, - } - } -} - -/// The result of mining a block in debug mode, after having been committed to -/// the blockchain. -#[derive(Debug)] -pub struct DebugMineBlockResult { - /// Mined block - pub block: Arc>, - /// Transaction results - pub transaction_results: Vec, - /// Transaction traces - pub transaction_traces: Vec, - /// Encoded `console.log` call inputs - pub console_log_inputs: Vec, -} - -impl DebugMineBlockResult { - /// Whether the block contains a transaction with the given hash. - pub fn has_transaction(&self, transaction_hash: &B256) -> bool { - self.block - .transactions() - .iter() - .any(|tx| *tx.hash() == *transaction_hash) - } -} - -impl Clone for DebugMineBlockResult { - fn clone(&self) -> Self { - Self { - block: self.block.clone(), - transaction_results: self.transaction_results.clone(), - transaction_traces: self.transaction_traces.clone(), - console_log_inputs: self.console_log_inputs.clone(), - } - } -} diff --git a/crates/edr_provider/src/debugger.rs b/crates/edr_provider/src/debugger.rs deleted file mode 100644 index b0201f7c0a..0000000000 --- a/crates/edr_provider/src/debugger.rs +++ /dev/null @@ -1,63 +0,0 @@ -use core::fmt::Debug; - -use edr_evm::{ - db::Database, - evm::EvmHandler, - trace::{register_trace_collector_handles, TraceCollector}, - GetContextData, -}; - -use crate::{ - console_log::{register_console_log_handles, ConsoleLogCollector}, - mock::{register_mocking_handles, Mocker}, -}; - -/// Registers the EIP-3155 tracer handles. -pub fn register_debugger_handles( - handler: &mut EvmHandler<'_, ContextT, DatabaseT>, -) where - DatabaseT: Database, - DatabaseT::Error: Debug, - ContextT: GetContextData - + GetContextData - + GetContextData, -{ - register_console_log_handles(handler); - register_mocking_handles(handler); - register_trace_collector_handles(handler); -} - -pub struct Debugger { - pub console_logger: ConsoleLogCollector, - pub mocker: Mocker, - pub trace_collector: TraceCollector, -} - -impl Debugger { - /// Creates a new instance with the provided mocker. - pub fn with_mocker(mocker: Mocker) -> Self { - Self { - console_logger: ConsoleLogCollector::default(), - mocker, - trace_collector: TraceCollector::default(), - } - } -} - -impl GetContextData for Debugger { - fn get_context_data(&mut self) -> &mut ConsoleLogCollector { - &mut self.console_logger - } -} - -impl GetContextData for Debugger { - fn get_context_data(&mut self) -> &mut Mocker { - &mut self.mocker - } -} - -impl GetContextData for Debugger { - fn get_context_data(&mut self) -> &mut TraceCollector { - &mut self.trace_collector - } -} diff --git a/crates/edr_provider/src/error.rs b/crates/edr_provider/src/error.rs deleted file mode 100644 index 3336e6d5ec..0000000000 --- a/crates/edr_provider/src/error.rs +++ /dev/null @@ -1,452 +0,0 @@ -use core::fmt::Debug; -use std::{num::TryFromIntError, time::SystemTimeError}; - -use alloy_sol_types::{ContractError, SolInterface}; -use edr_eth::{ - remote::{filter::SubscriptionType, jsonrpc, BlockSpec, BlockTag, RpcClientError}, - Address, Bytes, SpecId, B256, U256, -}; -use edr_evm::{ - blockchain::BlockchainError, - hex, - state::{AccountOverrideConversionError, StateError}, - trace::Trace, - DebugTraceError, ExecutionResult, HaltReason, MemPoolAddTransactionError, MineBlockError, - OutOfGasError, TransactionCreationError, TransactionError, -}; -use ethers_core::types::transaction::eip712::Eip712Error; - -use crate::{data::CreationError, IntervalConfigConversionError}; - -#[derive(Debug, thiserror::Error)] -pub enum ProviderError { - /// Account override conversion error. - #[error(transparent)] - AccountOverrideConversionError(#[from] AccountOverrideConversionError), - /// The transaction's gas price is lower than the next block's base fee, - /// while automatically mining. - #[error("Transaction gasPrice ({actual}) is too low for the next block, which has a baseFeePerGas of {expected}")] - AutoMineGasPriceTooLow { expected: U256, actual: U256 }, - /// The transaction's max fee is lower than the next block's base fee, while - /// automatically mining. - #[error("Transaction maxFeePerGas ({actual}) is too low for the next block, which has a baseFeePerGas of {expected}")] - AutoMineMaxFeeTooLow { expected: U256, actual: U256 }, - /// The transaction's priority fee is lower than the minimum gas price, - /// while automatically mining. - #[error("Transaction gas price is {actual}, which is below the minimum of {expected}")] - AutoMinePriorityFeeTooLow { expected: U256, actual: U256 }, - /// The transaction nonce is too high, while automatically mining. - #[error("Nonce too high. Expected nonce to be {expected} but got {actual}. Note that transactions can't be queued when automining.")] - AutoMineNonceTooHigh { expected: u64, actual: u64 }, - /// The transaction nonce is too high, while automatically mining. - #[error("Nonce too low. Expected nonce to be {expected} but got {actual}. Note that transactions can't be queued when automining.")] - AutoMineNonceTooLow { expected: u64, actual: u64 }, - /// Blockchain error - #[error(transparent)] - Blockchain(#[from] BlockchainError), - #[error(transparent)] - Creation(#[from] CreationError), - #[error(transparent)] - DebugTrace(#[from] DebugTraceError), - #[error("An EIP-4844 (shard blob) transaction was received, but Hardhat doesn't have support for them yet.")] - Eip4844TransactionUnsupported, - #[error(transparent)] - Eip712Error(#[from] Eip712Error), - /// A transaction error occurred while estimating gas. - #[error(transparent)] - EstimateGasTransactionFailure(#[from] EstimateGasFailure), - #[error("{0}")] - InvalidArgument(String), - /// Block number or hash doesn't exist in blockchain - #[error( - "Received invalid block tag {block_spec}. Latest block number is {latest_block_number}" - )] - InvalidBlockNumberOrHash { - block_spec: BlockSpec, - latest_block_number: u64, - }, - /// The block tag is not allowed in pre-merge hardforks. - /// - #[error("The '{block_tag}' block tag is not allowed in pre-merge hardforks. You are using the '{spec:?}' hardfork.")] - InvalidBlockTag { block_tag: BlockTag, spec: SpecId }, - /// Invalid chain ID - #[error("Invalid chainId {actual} provided, expected ${expected} instead.")] - InvalidChainId { expected: u64, actual: u64 }, - /// The transaction with the provided hash was already mined. - #[error("Transaction {0} cannot be dropped because it's already mined")] - InvalidDropTransactionHash(B256), - /// The EIP-155 transaction was signed with another chain ID - #[error("Trying to send an incompatible EIP-155 transaction, signed for another chain.")] - InvalidEip155TransactionChainId, - /// Invalid filter subscription type - #[error("Subscription {filter_id} is not a {expected:?} subscription, but a {actual:?} subscription")] - InvalidFilterSubscriptionType { - filter_id: U256, - expected: SubscriptionType, - actual: SubscriptionType, - }, - #[error("{0}")] - InvalidInput(String), - /// Transaction hash doesn't exist on the blockchain. - #[error("Transaction hash '{0}' doesn't exist on the blockchain.")] - InvalidTransactionHash(B256), - /// Invalid transaction index - #[error("Transaction index '{0}' is too large")] - InvalidTransactionIndex(U256), - /// Invalid transaction request - #[error("{0}")] - InvalidTransactionInput(String), - #[error("Invalid transaction type {0}.")] - InvalidTransactionType(u8), - /// An error occurred while logging. - #[error("Failed to log: {0:?}")] - Logger(LoggerErrorT), - /// An error occurred while adding a pending transaction to the mem pool. - #[error(transparent)] - MemPoolAddTransaction(#[from] MemPoolAddTransactionError), - /// An error occurred while updating the mem pool. - #[error(transparent)] - MemPoolUpdate(StateError), - /// An error occurred while mining a block. - #[error(transparent)] - MineBlock(#[from] MineBlockError), - /// Rpc client error - #[error(transparent)] - RpcClientError(#[from] RpcClientError), - /// Unsupported RPC version - #[error("unsupported JSON-RPC version: {0:?}")] - RpcVersion(jsonrpc::Version), - /// Error while running a transaction - #[error(transparent)] - RunTransaction(#[from] TransactionError), - /// The `hardhat_setMinGasPrice` method is not supported when EIP-1559 is - /// active. - #[error("hardhat_setMinGasPrice is not supported when EIP-1559 is active")] - SetMinGasPriceUnsupported, - /// Serialization error - #[error("Failed to serialize response: {0}")] - Serialization(serde_json::Error), - #[error("New nonce ({proposed}) must not be smaller than the existing nonce ({previous})")] - SetAccountNonceLowerThanCurrent { previous: u64, proposed: u64 }, - /// Cannot set account nonce when the mem pool is not empty - #[error("Cannot set account nonce when the transaction pool is not empty")] - SetAccountNonceWithPendingTransactions, - /// `evm_setBlockGasLimit` was called with a gas limit of zero. - #[error("Block gas limit must be greater than 0")] - SetBlockGasLimitMustBeGreaterThanZero, - /// The `evm_setIntervalMining` method was called with an invalid interval. - #[error(transparent)] - SetIntervalMiningConfigInvalid(#[from] IntervalConfigConversionError), - /// The `hardhat_setNextBlockBaseFeePerGas` method is not supported due to - /// an older hardfork. - #[error("hardhat_setNextBlockBaseFeePerGas is disabled because EIP-1559 is not active")] - SetNextBlockBaseFeePerGasUnsupported { spec_id: SpecId }, - /// The `hardhat_setPrevRandao` method is not supported due to an older - /// hardfork. - #[error("hardhat_setPrevRandao is only available in post-merge hardforks, the current hardfork is {spec_id:?}")] - SetNextPrevRandaoUnsupported { spec_id: SpecId }, - /// An error occurred while recovering a signature. - #[error(transparent)] - Signature(#[from] edr_eth::signature::SignatureError), - /// State error - #[error(transparent)] - State(#[from] StateError), - /// System time error - #[error(transparent)] - SystemTime(#[from] SystemTimeError), - /// Timestamp lower than previous timestamp - #[error("Timestamp {proposed} is lower than the previous block's timestamp {previous}")] - TimestampLowerThanPrevious { proposed: u64, previous: u64 }, - /// Timestamp equals previous timestamp - #[error("Timestamp {proposed} is equal to the previous block's timestamp. Enable the 'allowBlocksWithSameTimestamp' option to allow this")] - TimestampEqualsPrevious { proposed: u64 }, - /// An error occurred while creating a pending transaction. - #[error(transparent)] - TransactionCreationError(#[from] TransactionCreationError), - /// `eth_sendTransaction` failed and - /// [`crate::config::ProviderConfig::bail_on_call_failure`] was enabled - #[error(transparent)] - TransactionFailed(#[from] TransactionFailureWithTraces), - /// Failed to convert an integer type - #[error("Could not convert the integer argument, due to: {0}")] - TryFromIntError(#[from] TryFromIntError), - /// The request hasn't been implemented yet - #[error("Unimplemented: {0}")] - Unimplemented(String), - /// The address is not owned by this node. - #[error("Unknown account {address}")] - UnknownAddress { address: Address }, - /// Minimum required hardfork not met - #[error("Feature is only available in post-{minimum:?} hardforks, the current hardfork is {actual:?}")] - UnmetHardfork { actual: SpecId, minimum: SpecId }, - #[error("The transaction contains an access list parameter, but this is not supported by the current hardfork: {current_hardfork:?}")] - UnsupportedAccessListParameter { - current_hardfork: SpecId, - minimum_hardfork: SpecId, - }, - #[error("The transaction contains EIP-1559 parameters, but they are not supported by the current hardfork: {current_hardfork:?}")] - UnsupportedEIP1559Parameters { - current_hardfork: SpecId, - minimum_hardfork: SpecId, - }, - #[error("{method_name} - Method not supported")] - UnsupportedMethod { method_name: String }, -} - -impl From> for jsonrpc::Error { - fn from(value: ProviderError) -> Self { - const INVALID_INPUT: i16 = -32000; - const INTERNAL_ERROR: i16 = -32603; - const INVALID_PARAMS: i16 = -32602; - - #[allow(clippy::match_same_arms)] - let code = match &value { - ProviderError::AccountOverrideConversionError(_) => INVALID_INPUT, - ProviderError::AutoMineGasPriceTooLow { .. } => INVALID_INPUT, - ProviderError::AutoMineMaxFeeTooLow { .. } => INVALID_INPUT, - ProviderError::AutoMineNonceTooHigh { .. } => INVALID_INPUT, - ProviderError::AutoMineNonceTooLow { .. } => INVALID_INPUT, - ProviderError::AutoMinePriorityFeeTooLow { .. } => INVALID_INPUT, - ProviderError::Blockchain(_) => INVALID_INPUT, - ProviderError::Creation(_) => INVALID_INPUT, - ProviderError::DebugTrace(_) => INTERNAL_ERROR, - ProviderError::Eip4844TransactionUnsupported => INVALID_INPUT, - ProviderError::Eip712Error(_) => INVALID_INPUT, - ProviderError::EstimateGasTransactionFailure(_) => INVALID_INPUT, - ProviderError::InvalidArgument(_) => INVALID_PARAMS, - ProviderError::InvalidBlockNumberOrHash { .. } => INVALID_INPUT, - ProviderError::InvalidBlockTag { .. } => INVALID_PARAMS, - ProviderError::InvalidChainId { .. } => INVALID_PARAMS, - ProviderError::InvalidDropTransactionHash(_) => INVALID_PARAMS, - ProviderError::InvalidEip155TransactionChainId => INVALID_PARAMS, - ProviderError::InvalidFilterSubscriptionType { .. } => INVALID_PARAMS, - ProviderError::InvalidInput(_) => INVALID_INPUT, - ProviderError::InvalidTransactionHash { .. } => INVALID_PARAMS, - ProviderError::InvalidTransactionIndex(_) => INVALID_PARAMS, - ProviderError::InvalidTransactionInput(_) => INVALID_INPUT, - ProviderError::InvalidTransactionType(_) => INVALID_PARAMS, - ProviderError::Logger(_) => INTERNAL_ERROR, - ProviderError::MemPoolAddTransaction(_) => INVALID_INPUT, - ProviderError::MemPoolUpdate(_) => INVALID_INPUT, - ProviderError::MineBlock(_) => INVALID_INPUT, - ProviderError::RpcClientError(_) => INTERNAL_ERROR, - ProviderError::RpcVersion(_) => INVALID_INPUT, - ProviderError::RunTransaction(_) => INVALID_INPUT, - ProviderError::Serialization(_) => INVALID_INPUT, - ProviderError::SetAccountNonceLowerThanCurrent { .. } => INVALID_INPUT, - ProviderError::SetAccountNonceWithPendingTransactions => INTERNAL_ERROR, - ProviderError::SetBlockGasLimitMustBeGreaterThanZero => INVALID_INPUT, - ProviderError::SetIntervalMiningConfigInvalid(_) => INVALID_PARAMS, - ProviderError::SetMinGasPriceUnsupported => INVALID_INPUT, - ProviderError::SetNextBlockBaseFeePerGasUnsupported { .. } => INVALID_INPUT, - ProviderError::SetNextPrevRandaoUnsupported { .. } => INVALID_INPUT, - ProviderError::Signature(_) => INVALID_INPUT, - ProviderError::State(_) => INVALID_INPUT, - ProviderError::SystemTime(_) => INVALID_INPUT, - ProviderError::TimestampLowerThanPrevious { .. } => INVALID_INPUT, - ProviderError::TimestampEqualsPrevious { .. } => INVALID_INPUT, - ProviderError::TransactionFailed(_) => INVALID_INPUT, - ProviderError::TransactionCreationError(_) => INVALID_INPUT, - ProviderError::TryFromIntError(_) => INVALID_INPUT, - ProviderError::Unimplemented(_) => INVALID_INPUT, - ProviderError::UnknownAddress { .. } => INVALID_INPUT, - ProviderError::UnmetHardfork { .. } => INVALID_PARAMS, - ProviderError::UnsupportedAccessListParameter { .. } => INVALID_PARAMS, - ProviderError::UnsupportedEIP1559Parameters { .. } => INVALID_PARAMS, - ProviderError::UnsupportedMethod { .. } => -32004, - }; - - let data = match &value { - ProviderError::EstimateGasTransactionFailure(EstimateGasFailure { - transaction_failure, - .. - }) - | ProviderError::TransactionFailed(transaction_failure) => Some( - serde_json::to_value(&transaction_failure.failure) - .expect("transaction_failure to json"), - ), - _ => None, - }; - - let message = match &value { - ProviderError::TransactionFailed(inner) - if matches!( - inner.failure.reason, - TransactionFailureReason::Inner(HaltReason::CreateContractSizeLimit) - ) => - { - "Transaction reverted: trying to deploy a contract whose code is too large".into() - } - _ => value.to_string(), - }; - - Self { - code, - message, - data, - } - } -} - -/// Failure that occurred while estimating gas. -#[derive(Debug, thiserror::Error)] -pub struct EstimateGasFailure { - pub console_log_inputs: Vec, - pub transaction_failure: TransactionFailureWithTraces, -} - -impl std::fmt::Display for EstimateGasFailure { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "{}", self.transaction_failure) - } -} - -#[derive(Clone, Debug, thiserror::Error)] -pub struct TransactionFailureWithTraces { - pub failure: TransactionFailure, - pub traces: Vec, -} - -impl std::fmt::Display for TransactionFailureWithTraces { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "{}", self.failure) - } -} - -/// Wrapper around [`edr_evm::HaltReason`] to convert error messages to match -/// Hardhat. -#[derive(Clone, Debug, thiserror::Error, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct TransactionFailure { - pub reason: TransactionFailureReason, - pub data: String, - #[serde(skip)] - pub solidity_trace: Trace, - pub transaction_hash: Option, -} - -impl TransactionFailure { - pub fn from_execution_result( - execution_result: &ExecutionResult, - transaction_hash: Option<&B256>, - solidity_trace: &Trace, - ) -> Option { - match execution_result { - ExecutionResult::Success { .. } => None, - ExecutionResult::Revert { output, .. } => Some(Self::revert( - output.clone(), - transaction_hash.copied(), - solidity_trace.clone(), - )), - ExecutionResult::Halt { reason, .. } => Some(Self::halt( - *reason, - transaction_hash.copied(), - solidity_trace.clone(), - )), - } - } - - pub fn revert(output: Bytes, transaction_hash: Option, solidity_trace: Trace) -> Self { - let data = format!("0x{}", hex::encode(output.as_ref())); - Self { - reason: TransactionFailureReason::Revert(output), - data, - solidity_trace, - transaction_hash, - } - } - - pub fn halt(halt: HaltReason, tx_hash: Option, solidity_trace: Trace) -> Self { - let reason = match halt { - HaltReason::OpcodeNotFound | HaltReason::InvalidFEOpcode => { - TransactionFailureReason::OpcodeNotFound - } - HaltReason::OutOfGas(error) => TransactionFailureReason::OutOfGas(error), - halt => TransactionFailureReason::Inner(halt), - }; - - Self { - reason, - data: "0x".to_string(), - solidity_trace, - transaction_hash: tx_hash, - } - } -} - -impl std::fmt::Display for TransactionFailure { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match &self.reason { - TransactionFailureReason::Inner(halt) => write!(f, "{halt:?}"), - TransactionFailureReason::OpcodeNotFound => { - write!( - f, - "VM Exception while processing transaction: invalid opcode" - ) - } - TransactionFailureReason::OutOfGas(_error) => write!(f, "Transaction ran out of gas"), - TransactionFailureReason::Revert(output) => write!(f, "{}", revert_error(output)), - } - } -} - -#[derive(Clone, Debug, serde::Serialize)] -pub enum TransactionFailureReason { - Inner(HaltReason), - OpcodeNotFound, - OutOfGas(OutOfGasError), - Revert(Bytes), -} - -fn revert_error(output: &Bytes) -> String { - if output.is_empty() { - return "Transaction reverted without a reason".to_string(); - } - - match alloy_sol_types::GenericContractError::abi_decode( - output.as_ref(), - /* validate */ false, - ) { - Ok(contract_error) => { - match contract_error { - ContractError::CustomError(custom_error) => { - format!("VM Exception while processing transaction: reverted with an unrecognized custom error (return data: {custom_error})") - } - ContractError::Revert(revert) => { - format!("reverted with reason string '{}'", revert.reason()) - } - ContractError::Panic(panic) => { - format!( - "VM Exception while processing transaction: reverted with panic code {} ({})", - serde_json::to_string(&panic.code).unwrap().replace('\"', ""), - panic_code_to_error_reason(panic.code.try_into().expect("panic code fits into u64")) - ) - } - } - } - Err(decode_error) => match decode_error { - alloy_sol_types::Error::TypeCheckFail { .. } - | alloy_sol_types::Error::UnknownSelector { .. } => { - format!("VM Exception while processing transaction: reverted with an unrecognized custom error (return data: 0x{})", hex::encode(output)) - } - _ => format!( - "Internal: Since we are not validating, this error should not occur: {decode_error:?}" - ), - }, - } -} - -fn panic_code_to_error_reason(error_code: u64) -> &'static str { - match error_code { - 0x1 => "Assertion error", - 0x11 => "Arithmetic operation underflowed or overflowed outside of an unchecked block", - 0x12 => "Division or modulo division by zero", - 0x21 => "Tried to convert a value into an enum, but the value was too big or negative", - 0x22 => "Incorrectly encoded storage byte array", - 0x31 => ".pop() was called on an empty array", - 0x32 => "Array accessed at an out-of-bounds or negative index", - 0x41 => "Too much memory was allocated, or an array was created that is too large", - 0x51 => "Called a zero-initialized variable of internal function type", - _ => "Unknown panic code", - } -} diff --git a/crates/edr_provider/src/filter.rs b/crates/edr_provider/src/filter.rs deleted file mode 100644 index a11a01fd33..0000000000 --- a/crates/edr_provider/src/filter.rs +++ /dev/null @@ -1,111 +0,0 @@ -mod criteria; - -use std::{ - mem, - time::{Duration, Instant}, -}; - -use edr_eth::{ - remote::filter::{FilteredEvents, LogOutput, SubscriptionType}, - B256, -}; - -pub use self::criteria::*; - -pub struct Filter { - pub data: FilterData, - pub deadline: Instant, - pub is_subscription: bool, -} - -impl Filter { - /// Constructs a new block filter. - pub fn new_block_filter(block_hash: B256, is_subscription: bool) -> Self { - Self::new_filter(FilterData::NewHeads(vec![block_hash]), is_subscription) - } - - /// Constructs a new log filter. - pub fn new_log_filter( - criteria: LogFilter, - logs: Vec, - is_subscription: bool, - ) -> Self { - Self::new_filter(FilterData::Logs { criteria, logs }, is_subscription) - } - - /// Constructs a new pending transaction filter. - pub fn new_pending_transaction_filter(is_subscription: bool) -> Self { - Self::new_filter( - FilterData::NewPendingTransactions(Vec::new()), - is_subscription, - ) - } - - fn new_filter(data: FilterData, is_subscription: bool) -> Self { - Self { - deadline: new_filter_deadline(), - data, - is_subscription, - } - } - - /// Whether the filter has expired. - pub fn has_expired(&self) -> bool { - Instant::now() > self.deadline - } - - /// Take events from the filter - pub fn take_events(&mut self) -> FilteredEvents { - self.deadline = new_filter_deadline(); - self.data.take_events() - } - - /// Take log events from the filter if the filter is a log events filter. - pub fn take_log_events(&mut self) -> Option> { - match &mut self.data { - FilterData::Logs { logs, .. } => { - self.deadline = new_filter_deadline(); - Some(std::mem::take(logs)) - } - _ => None, - } - } -} - -/// represents the output of `eth_getFilterChanges` -#[derive(Clone, Debug, PartialEq)] -pub enum FilterData { - /// logs - Logs { - criteria: LogFilter, - logs: Vec, - }, - /// new block heads - NewHeads(Vec), - /// new pending transactions - NewPendingTransactions(Vec), -} - -impl FilterData { - /// Move the memory out of the variant. - pub fn take_events(&mut self) -> FilteredEvents { - match self { - Self::Logs { logs, .. } => FilteredEvents::Logs(mem::take(logs)), - Self::NewHeads(v) => FilteredEvents::NewHeads(mem::take(v)), - Self::NewPendingTransactions(v) => FilteredEvents::NewPendingTransactions(mem::take(v)), - } - } - - /// Returns the type of the variant. - pub fn subscription_type(&self) -> SubscriptionType { - match self { - Self::Logs { .. } => SubscriptionType::Logs, - Self::NewHeads(_) => SubscriptionType::NewHeads, - Self::NewPendingTransactions(_) => SubscriptionType::NewPendingTransactions, - } - } -} - -fn new_filter_deadline() -> Instant { - Instant::now() + Duration::from_secs(5 * 60) -} diff --git a/crates/edr_provider/src/filter/criteria.rs b/crates/edr_provider/src/filter/criteria.rs deleted file mode 100644 index 51f9d58cf4..0000000000 --- a/crates/edr_provider/src/filter/criteria.rs +++ /dev/null @@ -1,49 +0,0 @@ -use edr_eth::{ - log::FilterLog, - remote::filter::{matches_address_filter, matches_topics_filter, LogOutput}, - Address, Bloom, BloomInput, B256, -}; -use edr_evm::HashSet; - -#[derive(Clone, Debug, PartialEq)] -pub struct LogFilter { - pub from_block: u64, - // If `to_block` is `None`, then the filter will resolve the to the latest block number at - // runtime - pub to_block: Option, - pub addresses: HashSet
, - pub normalized_topics: Vec>>, -} - -/// Checks if the bloom filter contains the log filter -pub fn bloom_contains_log_filter(bloom: &Bloom, filter: &LogFilter) -> bool { - for address in filter.addresses.iter() { - if bloom.contains_input(BloomInput::Raw(address.as_slice())) { - return true; - } - } - - filter.normalized_topics.iter().all(|topics| { - topics.as_ref().map_or(true, |topics| { - topics - .iter() - .any(|topic| bloom.contains_input(BloomInput::Raw(topic.as_slice()))) - }) - }) -} - -pub fn filter_logs<'i>( - logs: impl Iterator, - filter: &LogFilter, -) -> Vec { - logs.filter(|log| { - filter.from_block <= log.block_number - && filter - .to_block - .map_or(true, |to_block| log.block_number <= to_block) - && matches_address_filter(&log.address, &filter.addresses) - && matches_topics_filter(log.topics(), &filter.normalized_topics) - }) - .map(LogOutput::from) - .collect() -} diff --git a/crates/edr_provider/src/interval.rs b/crates/edr_provider/src/interval.rs deleted file mode 100644 index 796cdbecbc..0000000000 --- a/crates/edr_provider/src/interval.rs +++ /dev/null @@ -1,95 +0,0 @@ -use core::fmt::Debug; -use std::sync::Arc; - -use tokio::{ - runtime, - sync::{oneshot, Mutex}, - task::JoinHandle, - time::Instant, -}; - -use crate::{data::ProviderData, IntervalConfig, ProviderError}; - -/// Type for interval mining on a separate thread. -pub struct IntervalMiner { - inner: Option>, - runtime: runtime::Handle, -} - -/// Inner type for interval mining on a separate thread, required for -/// implementation of `Drop`. -struct Inner { - cancellation_sender: oneshot::Sender<()>, - background_task: JoinHandle>>, -} - -impl IntervalMiner { - pub fn new( - runtime: runtime::Handle, - config: IntervalConfig, - data: Arc>>, - ) -> Self { - let (cancellation_sender, cancellation_receiver) = oneshot::channel(); - let background_task = runtime - .spawn(async move { interval_mining_loop(config, data, cancellation_receiver).await }); - - Self { - inner: Some(Inner { - cancellation_sender, - background_task, - }), - runtime, - } - } -} - -#[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] -async fn interval_mining_loop( - config: IntervalConfig, - data: Arc>>, - mut cancellation_receiver: oneshot::Receiver<()>, -) -> Result<(), ProviderError> { - let mut now = Instant::now(); - loop { - let delay = config.generate_interval(); - let deadline = now + std::time::Duration::from_millis(delay); - - tokio::select! { - _ = &mut cancellation_receiver => return Ok(()), - _ = tokio::time::sleep_until(deadline) => { - tokio::select! { - // Check whether the interval miner needs to be destroyed - _ = &mut cancellation_receiver => return Ok(()), - mut data = data.lock() => { - now = Instant::now(); - - if let Err(error) = data.interval_mine() { - log::error!("Unexpected error while performing interval mining: {error}"); - return Err(error); - } - - Result::<(), ProviderError>::Ok(()) - } - } - }, - }?; - } -} - -impl Drop for IntervalMiner { - #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] - fn drop(&mut self) { - if let Some(Inner { - cancellation_sender, - background_task: task, - }) = self.inner.take() - { - cancellation_sender - .send(()) - .expect("Failed to send cancellation signal"); - - let _result = tokio::task::block_in_place(move || self.runtime.block_on(task)) - .expect("Failed to join interval mininig task"); - } - } -} diff --git a/crates/edr_provider/src/lib.rs b/crates/edr_provider/src/lib.rs deleted file mode 100644 index 7bcac6e9ee..0000000000 --- a/crates/edr_provider/src/lib.rs +++ /dev/null @@ -1,493 +0,0 @@ -mod config; -mod console_log; -mod data; -mod debug_mine; -mod debugger; -mod error; -mod filter; -mod interval; -mod logger; -mod mock; -mod pending; -mod requests; -mod snapshot; -mod subscribe; -/// Utilities for testing -#[cfg(any(test, feature = "test-utils"))] -pub mod test_utils; - -use core::fmt::Debug; -use std::sync::Arc; - -use edr_evm::{blockchain::BlockchainError, trace::Trace, HashSet}; -use lazy_static::lazy_static; -use logger::SyncLogger; -use mock::SyncCallOverride; -use parking_lot::Mutex; -use requests::{eth::handle_set_interval_mining, hardhat::rpc_types::ResetProviderConfig}; -use tokio::{runtime, sync::Mutex as AsyncMutex, task}; - -pub use self::{ - config::*, - data::CallResult, - debug_mine::DebugMineBlockResult, - error::{EstimateGasFailure, ProviderError, TransactionFailure, TransactionFailureReason}, - logger::{Logger, NoopLogger}, - mock::CallOverrideResult, - requests::{ - hardhat::rpc_types as hardhat_rpc_types, IntervalConfig as IntervalConfigRequest, - InvalidRequestReason, MethodInvocation, ProviderRequest, U64OrUsize, - }, - subscribe::*, -}; -use self::{ - data::{CreationError, ProviderData}, - interval::IntervalMiner, - requests::{debug, eth, hardhat}, -}; - -lazy_static! { - pub static ref PRIVATE_RPC_METHODS: HashSet<&'static str> = { - [ - "hardhat_getStackTraceFailuresCount", - "hardhat_setLoggingEnabled", - ] - .into_iter() - .collect() - }; -} - -#[derive(Clone, Debug)] -pub struct ResponseWithTraces { - pub result: serde_json::Value, - pub traces: Vec, -} - -/// A JSON-RPC provider for Ethereum. -/// -/// Add a layer in front that handles this -/// -/// ```rust,ignore -/// let RpcRequest { -/// version, -/// method: request, -/// id, -/// } = request; -/// -/// if version != jsonrpc::Version::V2_0 { -/// return Err(ProviderError::RpcVersion(version)); -/// } -/// -/// fn to_response( -/// id: jsonrpc::Id, -/// result: Result, -/// ) -> jsonrpc::Response { let data = match result { -/// Ok(result) => jsonrpc::ResponseData::Success { result }, Err(error) => -/// jsonrpc::ResponseData::Error { error: jsonrpc::Error { code: -32000, -/// message: error.to_string(), data: None, }, }, }; -/// -/// jsonrpc::Response { -/// jsonrpc: jsonrpc::Version::V2_0, -/// id, -/// data, -/// } -/// } -/// ``` -pub struct Provider { - data: Arc>>, - /// Interval miner runs in the background, if enabled. It holds the data - /// mutex, so it needs to internally check for cancellation/self-destruction - /// while async-awaiting the lock to avoid a deadlock. - interval_miner: Arc>>>, - runtime: runtime::Handle, -} - -impl Provider { - /// Constructs a new instance. - pub fn new( - runtime: runtime::Handle, - logger: Box>, - subscriber_callback: Box, - config: ProviderConfig, - ) -> Result { - let data = ProviderData::new( - runtime.clone(), - logger, - subscriber_callback, - None, - config.clone(), - )?; - let data = Arc::new(AsyncMutex::new(data)); - - let interval_miner = config - .mining - .interval - .as_ref() - .map(|config| IntervalMiner::new(runtime.clone(), config.clone(), data.clone())); - - let interval_miner = Arc::new(Mutex::new(interval_miner)); - - Ok(Self { - data, - interval_miner, - runtime, - }) - } - - pub fn set_call_override_callback(&self, call_override: Option>) { - let mut data = task::block_in_place(|| self.runtime.block_on(self.data.lock())); - data.set_call_override_callback(call_override); - } - - /// Blocking method to handle a request. - pub fn handle_request( - &self, - request: ProviderRequest, - ) -> Result> { - let mut data = task::block_in_place(|| self.runtime.block_on(self.data.lock())); - - match request { - ProviderRequest::Single(request) => self.handle_single_request(&mut data, request), - ProviderRequest::Batch(requests) => self.handle_batch_request(&mut data, requests), - } - } - - /// Blocking method to log a failed deserialization. - pub fn log_failed_deserialization( - &self, - method_name: &str, - error: &ProviderError, - ) -> Result<(), ProviderError> { - let mut data = task::block_in_place(|| self.runtime.block_on(self.data.lock())); - data.logger_mut() - .print_method_logs(method_name, Some(error)) - .map_err(ProviderError::Logger) - } - - /// Handles a batch of JSON requests for an execution provider. - fn handle_batch_request( - &self, - data: &mut ProviderData, - request: Vec, - ) -> Result> { - let mut results = Vec::new(); - let mut traces = Vec::new(); - - for req in request { - let response = self.handle_single_request(data, req)?; - results.push(response.result); - traces.extend(response.traces); - } - - let result = serde_json::to_value(results).map_err(ProviderError::Serialization)?; - Ok(ResponseWithTraces { result, traces }) - } - - fn handle_single_request( - &self, - data: &mut ProviderData, - request: MethodInvocation, - ) -> Result> { - let method_name = if data.logger_mut().is_enabled() { - let method_name = request.method_name(); - if PRIVATE_RPC_METHODS.contains(method_name) { - None - } else { - Some(method_name) - } - } else { - None - }; - - let result = match request { - // eth_* method - MethodInvocation::Accounts(()) => eth::handle_accounts_request(data).and_then(to_json), - MethodInvocation::BlockNumber(()) => { - eth::handle_block_number_request(data).and_then(to_json) - } - MethodInvocation::Call(request, block_spec, state_overrides) => { - eth::handle_call_request(data, request, block_spec, state_overrides) - .and_then(to_json_with_trace) - } - MethodInvocation::ChainId(()) => eth::handle_chain_id_request(data).and_then(to_json), - MethodInvocation::Coinbase(()) => eth::handle_coinbase_request(data).and_then(to_json), - MethodInvocation::EstimateGas(call_request, block_spec) => { - eth::handle_estimate_gas(data, call_request, block_spec) - .and_then(to_json_with_traces) - } - MethodInvocation::FeeHistory(block_count, newest_block, reward_percentiles) => { - eth::handle_fee_history(data, block_count, newest_block, reward_percentiles) - .and_then(to_json) - } - MethodInvocation::GasPrice(()) => eth::handle_gas_price(data).and_then(to_json), - MethodInvocation::GetBalance(address, block_spec) => { - eth::handle_get_balance_request(data, address, block_spec).and_then(to_json) - } - MethodInvocation::GetBlockByNumber(block_spec, transaction_detail_flag) => { - eth::handle_get_block_by_number_request(data, block_spec, transaction_detail_flag) - .and_then(to_json) - } - MethodInvocation::GetBlockByHash(block_hash, transaction_detail_flag) => { - eth::handle_get_block_by_hash_request(data, block_hash, transaction_detail_flag) - .and_then(to_json) - } - MethodInvocation::GetBlockTransactionCountByHash(block_hash) => { - eth::handle_get_block_transaction_count_by_hash_request(data, block_hash) - .and_then(to_json) - } - MethodInvocation::GetBlockTransactionCountByNumber(block_spec) => { - eth::handle_get_block_transaction_count_by_block_number(data, block_spec) - .and_then(to_json) - } - MethodInvocation::GetCode(address, block_spec) => { - eth::handle_get_code_request(data, address, block_spec).and_then(to_json) - } - MethodInvocation::GetFilterChanges(filter_id) => { - eth::handle_get_filter_changes_request(data, filter_id).and_then(to_json) - } - MethodInvocation::GetFilterLogs(filter_id) => { - eth::handle_get_filter_logs_request(data, filter_id).and_then(to_json) - } - MethodInvocation::GetLogs(filter_options) => { - eth::handle_get_logs_request(data, filter_options).and_then(to_json) - } - MethodInvocation::GetStorageAt(address, index, block_spec) => { - eth::handle_get_storage_at_request(data, address, index, block_spec) - .and_then(to_json) - } - MethodInvocation::GetTransactionByBlockHashAndIndex(block_hash, index) => { - eth::handle_get_transaction_by_block_hash_and_index(data, block_hash, index) - .and_then(to_json) - } - MethodInvocation::GetTransactionByBlockNumberAndIndex(block_spec, index) => { - eth::handle_get_transaction_by_block_spec_and_index(data, block_spec, index) - .and_then(to_json) - } - MethodInvocation::GetTransactionByHash(transaction_hash) => { - eth::handle_get_transaction_by_hash(data, transaction_hash).and_then(to_json) - } - MethodInvocation::GetTransactionCount(address, block_spec) => { - eth::handle_get_transaction_count_request(data, address, block_spec) - .and_then(to_json) - } - MethodInvocation::GetTransactionReceipt(transaction_hash) => { - eth::handle_get_transaction_receipt(data, transaction_hash).and_then(to_json) - } - MethodInvocation::Mining(()) => eth::handle_mining().and_then(to_json), - MethodInvocation::NetListening(()) => { - eth::handle_net_listening_request().and_then(to_json) - } - MethodInvocation::NetPeerCount(()) => { - eth::handle_net_peer_count_request().and_then(to_json) - } - MethodInvocation::NetVersion(()) => { - eth::handle_net_version_request(data).and_then(to_json) - } - MethodInvocation::NewBlockFilter(()) => { - eth::handle_new_block_filter_request(data).and_then(to_json) - } - MethodInvocation::NewFilter(options) => { - eth::handle_new_log_filter_request(data, options).and_then(to_json) - } - MethodInvocation::NewPendingTransactionFilter(()) => { - eth::handle_new_pending_transaction_filter_request(data).and_then(to_json) - } - MethodInvocation::PendingTransactions(()) => { - eth::handle_pending_transactions(data).and_then(to_json) - } - MethodInvocation::SendRawTransaction(raw_transaction) => { - eth::handle_send_raw_transaction_request(data, raw_transaction) - .and_then(to_json_with_traces) - } - MethodInvocation::SendTransaction(transaction_request) => { - eth::handle_send_transaction_request(data, transaction_request) - .and_then(to_json_with_traces) - } - MethodInvocation::Sign(message, address) => { - eth::handle_sign_request(data, message, address).and_then(to_json) - } - MethodInvocation::SignTypedDataV4(address, message) => { - eth::handle_sign_typed_data_v4(data, address, message).and_then(to_json) - } - MethodInvocation::Subscribe(subscription_type, filter_options) => { - eth::handle_subscribe_request(data, subscription_type, filter_options) - .and_then(to_json) - } - MethodInvocation::Syncing(()) => eth::handle_syncing().and_then(to_json), - MethodInvocation::UninstallFilter(filter_id) => { - eth::handle_uninstall_filter_request(data, filter_id).and_then(to_json) - } - MethodInvocation::Unsubscribe(filter_id) => { - eth::handle_unsubscribe_request(data, filter_id).and_then(to_json) - } - - // web3_* methods - MethodInvocation::Web3ClientVersion(()) => { - eth::handle_web3_client_version_request().and_then(to_json) - } - MethodInvocation::Web3Sha3(message) => { - eth::handle_web3_sha3_request(message).and_then(to_json) - } - - // evm_* methods - MethodInvocation::EvmIncreaseTime(increment) => { - eth::handle_increase_time_request(data, increment).and_then(to_json) - } - MethodInvocation::EvmMine(timestamp) => { - eth::handle_mine_request(data, timestamp).and_then(to_json_with_traces) - } - MethodInvocation::EvmRevert(snapshot_id) => { - eth::handle_revert_request(data, snapshot_id).and_then(to_json) - } - MethodInvocation::EvmSetAutomine(enabled) => { - eth::handle_set_automine_request(data, enabled).and_then(to_json) - } - MethodInvocation::EvmSetBlockGasLimit(gas_limit) => { - eth::handle_set_block_gas_limit_request(data, gas_limit).and_then(to_json) - } - MethodInvocation::EvmSetIntervalMining(config) => handle_set_interval_mining( - self.data.clone(), - &mut self.interval_miner.lock(), - self.runtime.clone(), - config, - ) - .and_then(to_json), - MethodInvocation::EvmSetNextBlockTimestamp(timestamp) => { - eth::handle_set_next_block_timestamp_request(data, timestamp).and_then(to_json) - } - MethodInvocation::EvmSnapshot(()) => { - eth::handle_snapshot_request(data).and_then(to_json) - } - - // debug_* methods - MethodInvocation::DebugTraceTransaction(transaction_hash, config) => { - debug::handle_debug_trace_transaction(data, transaction_hash, config) - .and_then(to_json) - } - MethodInvocation::DebugTraceCall(call_request, block_spec, config) => { - debug::handle_debug_trace_call(data, call_request, block_spec, config) - .and_then(to_json) - } - - // hardhat_* methods - MethodInvocation::AddCompilationResult(_, _, _) => Err(ProviderError::Unimplemented( - "AddCompilationResult".to_string(), - )), - MethodInvocation::DropTransaction(transaction_hash) => { - hardhat::handle_drop_transaction(data, transaction_hash).and_then(to_json) - } - MethodInvocation::GetAutomine(()) => { - hardhat::handle_get_automine_request(data).and_then(to_json) - } - MethodInvocation::GetStackTraceFailuresCount(()) => Err(ProviderError::Unimplemented( - "GetStackTraceFailuresCount".to_string(), - )), - MethodInvocation::ImpersonateAccount(address) => { - hardhat::handle_impersonate_account_request(data, *address).and_then(to_json) - } - // TODO: how to return traces from interval mine to the client? - MethodInvocation::IntervalMine(()) => { - hardhat::handle_interval_mine_request(data).and_then(to_json) - } - MethodInvocation::Metadata(()) => { - hardhat::handle_metadata_request(data).and_then(to_json) - } - MethodInvocation::Mine(number_of_blocks, interval) => { - hardhat::handle_mine(data, number_of_blocks, interval).and_then(to_json_with_traces) - } - MethodInvocation::Reset(config) => self.reset(data, config).and_then(to_json), - MethodInvocation::SetBalance(address, balance) => { - hardhat::handle_set_balance(data, address, balance).and_then(to_json) - } - MethodInvocation::SetCode(address, code) => { - hardhat::handle_set_code(data, address, code).and_then(to_json) - } - MethodInvocation::SetCoinbase(coinbase) => { - hardhat::handle_set_coinbase_request(data, coinbase).and_then(to_json) - } - MethodInvocation::SetLoggingEnabled(is_enabled) => { - hardhat::handle_set_logging_enabled_request(data, is_enabled).and_then(to_json) - } - MethodInvocation::SetMinGasPrice(min_gas_price) => { - hardhat::handle_set_min_gas_price(data, min_gas_price).and_then(to_json) - } - MethodInvocation::SetNextBlockBaseFeePerGas(base_fee_per_gas) => { - hardhat::handle_set_next_block_base_fee_per_gas_request(data, base_fee_per_gas) - .and_then(to_json) - } - MethodInvocation::SetNonce(address, nonce) => { - hardhat::handle_set_nonce(data, address, nonce).and_then(to_json) - } - MethodInvocation::SetPrevRandao(prev_randao) => { - hardhat::handle_set_prev_randao_request(data, prev_randao).and_then(to_json) - } - MethodInvocation::SetStorageAt(address, index, value) => { - hardhat::handle_set_storage_at(data, address, index, value).and_then(to_json) - } - MethodInvocation::StopImpersonatingAccount(address) => { - hardhat::handle_stop_impersonating_account_request(data, *address).and_then(to_json) - } - }; - - if let Some(method_name) = method_name { - // Skip printing for `hardhat_intervalMine` unless it is an error - if method_name != "hardhat_intervalMine" || result.is_err() { - data.logger_mut() - .print_method_logs(method_name, result.as_ref().err()) - .map_err(ProviderError::Logger)?; - } - } - - result - } - - fn reset( - &self, - data: &mut ProviderData, - config: Option, - ) -> Result> { - let mut interval_miner = self.interval_miner.lock(); - interval_miner.take(); - - data.reset(config.and_then(|c| c.forking))?; - - *interval_miner = data.mining_config().interval.as_ref().map(|config| { - IntervalMiner::new(self.runtime.clone(), config.clone(), self.data.clone()) - }); - - Ok(true) - } -} - -fn to_json( - value: T, -) -> Result> { - let response = serde_json::to_value(value).map_err(ProviderError::Serialization)?; - - Ok(ResponseWithTraces { - result: response, - traces: Vec::new(), - }) -} - -fn to_json_with_trace( - value: (T, Trace), -) -> Result> { - let response = serde_json::to_value(value.0).map_err(ProviderError::Serialization)?; - - Ok(ResponseWithTraces { - result: response, - traces: vec![value.1], - }) -} - -fn to_json_with_traces( - value: (T, Vec), -) -> Result> { - let response = serde_json::to_value(value.0).map_err(ProviderError::Serialization)?; - - Ok(ResponseWithTraces { - result: response, - traces: value.1, - }) -} diff --git a/crates/edr_provider/src/logger.rs b/crates/edr_provider/src/logger.rs deleted file mode 100644 index c39e3dcac0..0000000000 --- a/crates/edr_provider/src/logger.rs +++ /dev/null @@ -1,128 +0,0 @@ -use core::fmt::Debug; -use std::convert::Infallible; - -use dyn_clone::DynClone; -use edr_evm::{blockchain::BlockchainError, ExecutableTransaction}; - -use crate::{ - data::CallResult, debug_mine::DebugMineBlockResult, error::EstimateGasFailure, ProviderError, -}; - -pub trait Logger { - type BlockchainError; - - type LoggerError: Debug; - - /// Whether the logger is enabled. - fn is_enabled(&self) -> bool; - - /// Sets whether the logger is enabled. - fn set_is_enabled(&mut self, is_enabled: bool); - - fn log_call( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - result: &CallResult, - ) -> Result<(), Self::LoggerError> { - let _spec_id = spec_id; - let _transaction = transaction; - let _result = result; - - Ok(()) - } - - fn log_estimate_gas_failure( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - result: &EstimateGasFailure, - ) -> Result<(), Self::LoggerError> { - let _spec_id = spec_id; - let _transaction = transaction; - let _failure = result; - - Ok(()) - } - - fn log_interval_mined( - &mut self, - spec_id: edr_eth::SpecId, - result: &DebugMineBlockResult, - ) -> Result<(), Self::LoggerError> { - let _spec_id = spec_id; - let _result = result; - - Ok(()) - } - - fn log_mined_block( - &mut self, - spec_id: edr_eth::SpecId, - results: &[DebugMineBlockResult], - ) -> Result<(), Self::LoggerError> { - let _spec_id = spec_id; - let _results = results; - - Ok(()) - } - - fn log_send_transaction( - &mut self, - spec_id: edr_eth::SpecId, - transaction: &ExecutableTransaction, - mining_results: &[DebugMineBlockResult], - ) -> Result<(), Self::LoggerError> { - let _spec_id = spec_id; - let _transaction = transaction; - let _mining_results = mining_results; - - Ok(()) - } - - /// Prints the collected logs, which correspond to the method with the - /// provided name. - /// - /// Adds an empty line at the end. - fn print_method_logs( - &mut self, - method: &str, - error: Option<&ProviderError>, - ) -> Result<(), Self::LoggerError>; -} - -pub trait SyncLogger: Logger + DynClone + Send + Sync {} - -impl SyncLogger for T where T: Logger + DynClone + Send + Sync {} - -impl Clone - for Box> -{ - fn clone(&self) -> Self { - dyn_clone::clone_box(&**self) - } -} - -/// A logger that does nothing. -#[derive(Clone, Default)] -pub struct NoopLogger; - -impl Logger for NoopLogger { - type BlockchainError = BlockchainError; - - type LoggerError = Infallible; - - fn is_enabled(&self) -> bool { - false - } - - fn set_is_enabled(&mut self, _is_enabled: bool) {} - - fn print_method_logs( - &mut self, - _method: &str, - _error: Option<&ProviderError>, - ) -> Result<(), Infallible> { - Ok(()) - } -} diff --git a/crates/edr_provider/src/mock.rs b/crates/edr_provider/src/mock.rs deleted file mode 100644 index 05c1c396ff..0000000000 --- a/crates/edr_provider/src/mock.rs +++ /dev/null @@ -1,78 +0,0 @@ -use std::sync::Arc; - -use dyn_clone::DynClone; -use edr_eth::{Address, Bytes}; -use edr_evm::{ - db::Database, - evm::{EvmHandler, FrameOrResult, FrameResult}, - interpreter::{CallOutcome, Gas, InstructionResult, InterpreterResult}, - EVMError, GetContextData, -}; - -/// The result of executing a call override. -#[derive(Debug)] -pub struct CallOverrideResult { - pub output: Bytes, - pub should_revert: bool, -} - -pub trait SyncCallOverride: - Fn(Address, Bytes) -> Option + DynClone + Send + Sync -{ -} - -impl SyncCallOverride for F where - F: Fn(Address, Bytes) -> Option + DynClone + Send + Sync -{ -} - -dyn_clone::clone_trait_object!(SyncCallOverride); - -/// Registers the `Mocker`'s handles. -pub fn register_mocking_handles>( - handler: &mut EvmHandler<'_, ContextT, DatabaseT>, -) { - let old_handle = handler.execution.call.clone(); - handler.execution.call = Arc::new( - move |ctx, inputs| -> Result> { - let mocker = ctx.external.get_context_data(); - if let Some(CallOverrideResult { - output, - should_revert, - }) = mocker.override_call(inputs.contract, inputs.input.clone()) - { - let result = if should_revert { - InstructionResult::Revert - } else { - InstructionResult::Return - }; - - Ok(FrameOrResult::Result(FrameResult::Call(CallOutcome::new( - InterpreterResult { - result, - output, - gas: Gas::new(inputs.gas_limit), - }, - inputs.return_memory_offset, - )))) - } else { - old_handle(ctx, inputs) - } - }, - ); -} - -pub struct Mocker { - call_override: Option>, -} - -impl Mocker { - /// Constructs a new instance with the provided call override. - pub fn new(call_override: Option>) -> Self { - Self { call_override } - } - - fn override_call(&self, contract: Address, input: Bytes) -> Option { - self.call_override.as_ref().and_then(|f| f(contract, input)) - } -} diff --git a/crates/edr_provider/src/pending.rs b/crates/edr_provider/src/pending.rs deleted file mode 100644 index c71addda0e..0000000000 --- a/crates/edr_provider/src/pending.rs +++ /dev/null @@ -1,219 +0,0 @@ -use std::{collections::BTreeMap, sync::Arc}; - -use edr_eth::{receipt::BlockReceipt, SpecId, B256, U256}; -use edr_evm::{ - blockchain::{Blockchain, BlockchainError, BlockchainMut, SyncBlockchain}, - db::BlockHashRef, - state::{StateDiff, StateError, StateOverride, SyncState}, - BlockAndTotalDifficulty, LocalBlock, SyncBlock, -}; - -/// A blockchain with a pending block. -/// -/// # Panics -/// -/// Panics if a state override is provided to `state_at_block_number` for the -/// pending block; or if the `BlockchainMut` methods are called. -/// -/// WORKAROUND: This struct needs to implement all sub-traits of -/// [`SyncBlockchain`] because we cannot upcast the trait at its usage site -/// -#[derive(Debug)] -pub(crate) struct BlockchainWithPending<'blockchain> { - blockchain: &'blockchain dyn SyncBlockchain, - pending_block: Arc>, - pending_state_diff: StateDiff, -} - -impl<'blockchain> BlockchainWithPending<'blockchain> { - /// Constructs a new instance with the provided blockchain and pending - /// block. - pub fn new( - blockchain: &'blockchain dyn SyncBlockchain, - pending_block: LocalBlock, - pending_state_diff: StateDiff, - ) -> Self { - Self { - blockchain, - pending_block: Arc::new(pending_block), - pending_state_diff, - } - } -} - -impl<'blockchain> Blockchain for BlockchainWithPending<'blockchain> { - type BlockchainError = BlockchainError; - - type StateError = StateError; - - fn block_by_hash( - &self, - hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - if hash == self.pending_block.hash() { - Ok(Some(self.pending_block.clone())) - } else { - self.blockchain.block_by_hash(hash) - } - } - - fn block_by_number( - &self, - number: u64, - ) -> Result>>, Self::BlockchainError> - { - if number == self.pending_block.header().number { - Ok(Some(self.pending_block.clone())) - } else { - self.blockchain.block_by_number(number) - } - } - - fn block_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>>, Self::BlockchainError> - { - let contains_transaction = self - .pending_block - .transactions() - .iter() - .any(|tx| tx.hash() == transaction_hash); - - if contains_transaction { - Ok(Some(self.pending_block.clone())) - } else { - self.blockchain.block_by_transaction_hash(transaction_hash) - } - } - - fn chain_id(&self) -> u64 { - self.blockchain.chain_id() - } - - fn last_block( - &self, - ) -> Result>, Self::BlockchainError> { - Ok(self.pending_block.clone()) - } - - fn last_block_number(&self) -> u64 { - self.pending_block.header().number - } - - fn logs( - &self, - _from_block: u64, - _to_block: u64, - _addresses: &edr_evm::HashSet, - _normalized_topics: &[Option>], - ) -> Result, Self::BlockchainError> { - panic!("Retrieving logs from a pending blockchain is not supported."); - } - - fn network_id(&self) -> u64 { - self.blockchain.network_id() - } - - fn receipt_by_transaction_hash( - &self, - transaction_hash: &B256, - ) -> Result>, Self::BlockchainError> { - let pending_receipt = self - .pending_block - .transaction_receipts()? - .into_iter() - .find(|receipt| receipt.transaction_hash == *transaction_hash); - - if let Some(pending_receipt) = pending_receipt { - Ok(Some(pending_receipt)) - } else { - self.blockchain - .receipt_by_transaction_hash(transaction_hash) - } - } - - fn spec_at_block_number(&self, block_number: u64) -> Result { - if block_number == self.pending_block.header().number { - Ok(self.blockchain.spec_id()) - } else { - self.blockchain.spec_at_block_number(block_number) - } - } - - fn spec_id(&self) -> SpecId { - self.blockchain.spec_id() - } - - fn state_at_block_number( - &self, - block_number: u64, - state_overrides: &BTreeMap, - ) -> Result>, Self::BlockchainError> { - if block_number == self.pending_block.header().number { - assert!( - state_overrides.get(&block_number).is_none(), - "State overrides are not supported for a pending block." - ); - - let mut state = self - .blockchain - .state_at_block_number(block_number - 1, state_overrides)?; - - state.commit(self.pending_state_diff.as_inner().clone()); - - Ok(state) - } else { - self.blockchain - .state_at_block_number(block_number, state_overrides) - } - } - - fn total_difficulty_by_hash(&self, hash: &B256) -> Result, Self::BlockchainError> { - if hash == self.pending_block.hash() { - let previous_total_difficulty = self - .blockchain - .total_difficulty_by_hash(&self.pending_block.header().parent_hash)? - .expect("At least one block should exist before the pending block."); - - Ok(Some( - previous_total_difficulty + self.pending_block.header().difficulty, - )) - } else { - self.blockchain.total_difficulty_by_hash(hash) - } - } -} - -impl<'blockchain> BlockchainMut for BlockchainWithPending<'blockchain> { - type Error = BlockchainError; - - fn insert_block( - &mut self, - _block: LocalBlock, - _state_diff: StateDiff, - ) -> Result, Self::Error> { - panic!("Inserting blocks into a pending blockchain is not supported."); - } - - fn reserve_blocks(&mut self, _additional: u64, _interval: u64) -> Result<(), Self::Error> { - panic!("Reserving blocks in a pending blockchain is not supported."); - } - - fn revert_to_block(&mut self, _block_number: u64) -> Result<(), Self::Error> { - panic!("Reverting blocks in a pending blockchain is not supported."); - } -} - -impl<'blockchain> BlockHashRef for BlockchainWithPending<'blockchain> { - type Error = BlockchainError; - - fn block_hash(&self, number: U256) -> Result { - if number == U256::from(self.pending_block.header().number) { - Ok(*self.pending_block.hash()) - } else { - self.blockchain.block_hash(number) - } - } -} diff --git a/crates/edr_provider/src/requests.rs b/crates/edr_provider/src/requests.rs deleted file mode 100644 index e22ca57a01..0000000000 --- a/crates/edr_provider/src/requests.rs +++ /dev/null @@ -1,129 +0,0 @@ -pub mod debug; -/// Ethereum RPC request types -pub mod eth; -/// Hardhat RPC request types -pub mod hardhat; -mod methods; -mod serde; -mod validation; - -use std::fmt; - -use ::serde::{ - de::{self, MapAccess, SeqAccess, Visitor}, - Deserialize, Deserializer, Serialize, -}; - -pub use crate::requests::{ - methods::{IntervalConfig, MethodInvocation, U64OrUsize}, - serde::InvalidRequestReason, -}; - -/// JSON-RPC request for the provider. -#[derive(Clone, Debug, Serialize)] -#[serde(untagged)] -pub enum ProviderRequest { - /// A single JSON-RPC request - Single(MethodInvocation), - /// A batch of requests - Batch(Vec), -} - -// Custom deserializer for `ProviderRequest` instead of using -// `#[serde(untagged)]` as the latter hides custom error messages which are -// important to propagate to users. -impl<'de> Deserialize<'de> for ProviderRequest { - fn deserialize(deserializer: D) -> Result - where - D: Deserializer<'de>, - { - struct SingleOrBatchRequestVisitor; - - impl<'de> Visitor<'de> for SingleOrBatchRequestVisitor { - type Value = ProviderRequest; - - fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - formatter.write_str("single or batch request") - } - - fn visit_seq(self, seq: A) -> Result - where - A: SeqAccess<'de>, - { - // Forward to deserializer of `Vec` - Ok(ProviderRequest::Batch(Deserialize::deserialize( - de::value::SeqAccessDeserializer::new(seq), - )?)) - } - - fn visit_map(self, map: M) -> Result - where - M: MapAccess<'de>, - { - // Forward to deserializer of `MethodInvocation` - Ok(ProviderRequest::Single(Deserialize::deserialize( - de::value::MapAccessDeserializer::new(map), - )?)) - } - } - - deserializer.deserialize_any(SingleOrBatchRequestVisitor) - } -} - -#[cfg(test)] -mod tests { - use anyhow::Context; - - use super::*; - - #[test] - fn deserialize_single_request() -> anyhow::Result<()> { - let json = r#"{ - "jsonrpc": "2.0", - "method": "eth_getBalance", - "params": ["0x407d73d8a49eeb85d32cf465507dd71d507100c1", "latest"], - "id": 1 - }"#; - let request: ProviderRequest = serde_json::from_str(json)?; - assert!(matches!( - request, - ProviderRequest::Single(MethodInvocation::GetBalance(..)) - )); - Ok(()) - } - - #[test] - fn deserialize_batch_request() -> anyhow::Result<()> { - let json = r#"[ - { - "jsonrpc": "2.0", - "method": "eth_blockNumber", - "params": [], - "id": 1 - }, - { - "jsonrpc": "2.0", - "method": "eth_getTransactionByHash", - "params": ["0x3f07a9c83155594c000642e7d60e8a8a00038d03e9849171a05ed0e2d47acbb3"], - "id": 2 - } - ]"#; - let request: ProviderRequest = serde_json::from_str(json)?; - assert!(matches!(request, ProviderRequest::Batch(_))); - Ok(()) - } - - #[test] - fn deserialize_string_instead_of_request() -> anyhow::Result<()> { - let s = "foo"; - let json = format!(r#""{s}""#); - - let result: Result = serde_json::from_str(&json); - - let error_message = result.err().context("result is error")?.to_string(); - assert!(error_message.contains(s)); - - Ok(()) - } -} diff --git a/crates/edr_provider/src/requests/debug.rs b/crates/edr_provider/src/requests/debug.rs deleted file mode 100644 index 8ff11017cb..0000000000 --- a/crates/edr_provider/src/requests/debug.rs +++ /dev/null @@ -1,117 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{ - remote::{eth::CallRequest, BlockSpec}, - B256, -}; -use edr_evm::{state::StateOverrides, DebugTraceResult}; -use serde::{Deserialize, Deserializer}; - -use crate::{ - data::ProviderData, - requests::{ - eth::{resolve_block_spec_for_call_request, resolve_call_request}, - validation::validate_call_request, - }, - ProviderError, -}; - -pub fn handle_debug_trace_transaction( - data: &mut ProviderData, - transaction_hash: B256, - config: Option, -) -> Result> { - data.debug_trace_transaction( - &transaction_hash, - config.map(Into::into).unwrap_or_default(), - ) - .map_err(|error| match error { - ProviderError::InvalidTransactionHash(tx_hash) => ProviderError::InvalidInput(format!( - "Unable to find a block containing transaction {tx_hash}" - )), - _ => error, - }) -} - -pub fn handle_debug_trace_call( - data: &mut ProviderData, - call_request: CallRequest, - block_spec: Option, - config: Option, -) -> Result> { - let block_spec = resolve_block_spec_for_call_request(block_spec); - validate_call_request(data.spec_id(), &call_request, &block_spec)?; - - let transaction = - resolve_call_request(data, call_request, &block_spec, &StateOverrides::default())?; - data.debug_trace_call( - transaction, - &block_spec, - config.map(Into::into).unwrap_or_default(), - ) -} - -/// Config options for `debug_traceTransaction` -#[derive(Clone, Debug, Default, Eq, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceConfig { - /// Which tracer to use. This argument is currently unsupported. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(deserialize_with = "deserialize_tracer")] - #[serde(default)] - pub tracer: Option, - /// Disable storage trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_storage: Option, - /// Disable memory trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_memory: Option, - /// Disable stack trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_stack: Option, -} - -#[derive(Clone, Debug, Default, Eq, PartialEq, serde::Deserialize, serde::Serialize)] -pub enum Tracer { - #[default] - #[serde(rename = "default")] - Default, -} - -fn deserialize_tracer<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result, DeserializerT::Error> -where - DeserializerT: Deserializer<'de>, -{ - const HARDHAT_ERROR: &str = "Hardhat currently only supports the default tracer, so no tracer parameter should be passed."; - - let tracer = Option::::deserialize(deserializer) - .map_err(|_error| serde::de::Error::custom(HARDHAT_ERROR))?; - - if tracer.is_some() { - Err(serde::de::Error::custom(HARDHAT_ERROR)) - } else { - Ok(tracer) - } -} - -impl From for edr_evm::DebugTraceConfig { - fn from(value: DebugTraceConfig) -> Self { - let DebugTraceConfig { - disable_storage, - disable_memory, - disable_stack, - // Tracer argument is not supported by Hardhat - tracer: _, - } = value; - Self { - disable_storage: disable_storage.unwrap_or_default(), - disable_memory: disable_memory.unwrap_or_default(), - disable_stack: disable_stack.unwrap_or_default(), - } - } -} diff --git a/crates/edr_provider/src/requests/eth.rs b/crates/edr_provider/src/requests/eth.rs deleted file mode 100644 index 4343691445..0000000000 --- a/crates/edr_provider/src/requests/eth.rs +++ /dev/null @@ -1,18 +0,0 @@ -mod accounts; -mod blockchain; -mod blocks; -mod call; -mod config; -mod evm; -mod filter; -mod gas; -mod mine; -mod sign; -mod state; -mod transactions; -mod web3; - -pub use self::{ - accounts::*, blockchain::*, blocks::*, call::*, config::*, evm::*, filter::*, gas::*, mine::*, - sign::*, state::*, transactions::*, web3::*, -}; diff --git a/crates/edr_provider/src/requests/eth/accounts.rs b/crates/edr_provider/src/requests/eth/accounts.rs deleted file mode 100644 index 5bf5e4f0b3..0000000000 --- a/crates/edr_provider/src/requests/eth/accounts.rs +++ /dev/null @@ -1,13 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::Address; - -use crate::{data::ProviderData, ProviderError}; - -/// `require_canonical`: whether the server should additionally raise a JSON-RPC -/// error if the block is not in the canonical chain -pub fn handle_accounts_request( - data: &ProviderData, -) -> Result, ProviderError> { - Ok(data.accounts().copied().collect()) -} diff --git a/crates/edr_provider/src/requests/eth/blockchain.rs b/crates/edr_provider/src/requests/eth/blockchain.rs deleted file mode 100644 index a4604e2ef3..0000000000 --- a/crates/edr_provider/src/requests/eth/blockchain.rs +++ /dev/null @@ -1,32 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{remote::BlockSpec, Address, U256, U64}; - -use crate::{ - data::ProviderData, requests::validation::validate_post_merge_block_tags, ProviderError, -}; - -pub fn handle_block_number_request( - data: &ProviderData, -) -> Result> { - Ok(U64::from(data.last_block_number())) -} - -pub fn handle_chain_id_request( - data: &ProviderData, -) -> Result> { - Ok(U64::from(data.chain_id())) -} - -pub fn handle_get_transaction_count_request( - data: &mut ProviderData, - address: Address, - block_spec: Option, -) -> Result> { - if let Some(block_spec) = block_spec.as_ref() { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - } - - data.get_transaction_count(address, block_spec.as_ref()) - .map(U256::from) -} diff --git a/crates/edr_provider/src/requests/eth/blocks.rs b/crates/edr_provider/src/requests/eth/blocks.rs deleted file mode 100644 index b563d0aa5f..0000000000 --- a/crates/edr_provider/src/requests/eth/blocks.rs +++ /dev/null @@ -1,198 +0,0 @@ -use core::fmt::Debug; -use std::sync::Arc; - -use edr_eth::{ - remote::{eth, BlockSpec, PreEip1898BlockSpec}, - SpecId, B256, U256, U64, -}; -use edr_evm::{blockchain::BlockchainError, SyncBlock}; - -use crate::{ - data::{BlockDataForTransaction, ProviderData, TransactionAndBlock}, - requests::{eth::transaction_to_rpc_result, validation::validate_post_merge_block_tags}, - ProviderError, -}; - -#[derive(Clone, Debug, PartialEq, Eq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum HashOrTransaction { - Hash(B256), - Transaction(eth::Transaction), -} - -pub fn handle_get_block_by_hash_request( - data: &ProviderData, - block_hash: B256, - transaction_detail_flag: bool, -) -> Result>, ProviderError> { - data.block_by_hash(&block_hash)? - .map(|block| { - let total_difficulty = data.total_difficulty_by_hash(block.hash())?; - let pending = false; - block_to_rpc_output( - data.spec_id(), - block, - pending, - total_difficulty, - transaction_detail_flag, - ) - }) - .transpose() -} - -pub fn handle_get_block_by_number_request( - data: &mut ProviderData, - block_spec: PreEip1898BlockSpec, - transaction_detail_flag: bool, -) -> Result>, ProviderError> { - block_by_number(data, &block_spec.into())? - .map( - |BlockByNumberResult { - block, - pending, - total_difficulty, - }| { - block_to_rpc_output( - data.spec_id(), - block, - pending, - total_difficulty, - transaction_detail_flag, - ) - }, - ) - .transpose() -} - -pub fn handle_get_block_transaction_count_by_hash_request( - data: &ProviderData, - block_hash: B256, -) -> Result, ProviderError> { - Ok(data - .block_by_hash(&block_hash)? - .map(|block| U64::from(block.transactions().len()))) -} - -pub fn handle_get_block_transaction_count_by_block_number( - data: &mut ProviderData, - block_spec: PreEip1898BlockSpec, -) -> Result, ProviderError> { - Ok(block_by_number(data, &block_spec.into())? - .map(|BlockByNumberResult { block, .. }| U64::from(block.transactions().len()))) -} - -/// The result returned by requesting a block by number. -#[derive(Debug, Clone)] -struct BlockByNumberResult { - /// The block - pub block: Arc>, - /// Whether the block is a pending block. - pub pending: bool, - /// The total difficulty with the block - pub total_difficulty: Option, -} - -fn block_by_number( - data: &mut ProviderData, - block_spec: &BlockSpec, -) -> Result, ProviderError> { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - - match data.block_by_block_spec(block_spec) { - Ok(Some(block)) => { - let total_difficulty = data.total_difficulty_by_hash(block.hash())?; - Ok(Some(BlockByNumberResult { - block, - pending: false, - total_difficulty, - })) - } - // Pending block - Ok(None) => { - let result = data.mine_pending_block()?; - let block: Arc> = Arc::new(result.block); - - let last_block = data.last_block()?; - let previous_total_difficulty = data - .total_difficulty_by_hash(last_block.hash())? - .expect("last block has total difficulty"); - let total_difficulty = previous_total_difficulty + block.header().difficulty; - - Ok(Some(BlockByNumberResult { - block, - pending: true, - total_difficulty: Some(total_difficulty), - })) - } - Err(ProviderError::InvalidBlockNumberOrHash { .. }) => Ok(None), - Err(err) => Err(err), - } -} - -fn block_to_rpc_output( - spec_id: SpecId, - block: Arc>, - pending: bool, - total_difficulty: Option, - transaction_detail_flag: bool, -) -> Result, ProviderError> { - let header = block.header(); - - let transactions: Vec = if transaction_detail_flag { - block - .transactions() - .iter() - .enumerate() - .map(|(i, tx)| TransactionAndBlock { - transaction: tx.clone(), - block_data: Some(BlockDataForTransaction { - block: block.clone(), - transaction_index: i.try_into().expect("usize fits into u64"), - }), - is_pending: false, - }) - .map(|tx| transaction_to_rpc_result(tx, spec_id).map(HashOrTransaction::Transaction)) - .collect::>()? - } else { - block - .transactions() - .iter() - .map(|tx| HashOrTransaction::Hash(*tx.hash())) - .collect() - }; - - let mix_hash = if pending { None } else { Some(header.mix_hash) }; - let nonce = if pending { None } else { Some(header.nonce) }; - let number = if pending { None } else { Some(header.number) }; - - Ok(eth::Block { - hash: Some(*block.hash()), - parent_hash: header.parent_hash, - sha3_uncles: header.ommers_hash, - state_root: header.state_root, - transactions_root: header.transactions_root, - receipts_root: header.receipts_root, - number, - gas_used: header.gas_used, - gas_limit: header.gas_limit, - extra_data: header.extra_data.clone(), - logs_bloom: header.logs_bloom, - timestamp: header.timestamp, - difficulty: header.difficulty, - total_difficulty, - uncles: block.ommer_hashes().to_vec(), - transactions, - size: block.rlp_size(), - mix_hash, - nonce, - base_fee_per_gas: header.base_fee_per_gas, - miner: Some(header.beneficiary), - withdrawals: block - .withdrawals() - .map(<[edr_eth::withdrawal::Withdrawal]>::to_vec), - withdrawals_root: header.withdrawals_root, - blob_gas_used: header.blob_gas.as_ref().map(|bg| bg.gas_used), - excess_blob_gas: header.blob_gas.as_ref().map(|bg| bg.excess_gas), - parent_beacon_block_root: header.parent_beacon_block_root, - }) -} diff --git a/crates/edr_provider/src/requests/eth/call.rs b/crates/edr_provider/src/requests/eth/call.rs deleted file mode 100644 index 7a4871ac09..0000000000 --- a/crates/edr_provider/src/requests/eth/call.rs +++ /dev/null @@ -1,235 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{ - remote::{eth::CallRequest, BlockSpec, StateOverrideOptions}, - transaction::{ - Eip1559TransactionRequest, Eip155TransactionRequest, Eip2930TransactionRequest, - TransactionRequest, - }, - Bytes, SpecId, U256, -}; -use edr_evm::{state::StateOverrides, trace::Trace, ExecutableTransaction}; - -use crate::{ - data::ProviderData, requests::validation::validate_call_request, ProviderError, - TransactionFailure, -}; - -pub fn handle_call_request( - data: &mut ProviderData, - request: CallRequest, - block_spec: Option, - state_overrides: Option, -) -> Result<(Bytes, Trace), ProviderError> { - let block_spec = resolve_block_spec_for_call_request(block_spec); - validate_call_request(data.spec_id(), &request, &block_spec)?; - - let state_overrides = - state_overrides.map_or(Ok(StateOverrides::default()), StateOverrides::try_from)?; - - let transaction = resolve_call_request(data, request, &block_spec, &state_overrides)?; - let result = data.run_call(transaction.clone(), &block_spec, &state_overrides)?; - - let spec_id = data.spec_id(); - data.logger_mut() - .log_call(spec_id, &transaction, &result) - .map_err(ProviderError::Logger)?; - - if data.bail_on_call_failure() { - if let Some(failure) = - TransactionFailure::from_execution_result(&result.execution_result, None, &result.trace) - { - return Err(ProviderError::TransactionFailed( - crate::error::TransactionFailureWithTraces { - failure, - traces: vec![result.trace], - }, - )); - } - } - - let output = result.execution_result.into_output().unwrap_or_default(); - Ok((output, result.trace)) -} - -pub(crate) fn resolve_block_spec_for_call_request(block_spec: Option) -> BlockSpec { - block_spec.unwrap_or_else(BlockSpec::latest) -} - -pub(crate) fn resolve_call_request( - data: &mut ProviderData, - request: CallRequest, - block_spec: &BlockSpec, - state_overrides: &StateOverrides, -) -> Result> { - resolve_call_request_inner( - data, - request, - block_spec, - state_overrides, - |_data| Ok(U256::ZERO), - |_, max_fee_per_gas, max_priority_fee_per_gas| { - let max_fee_per_gas = max_fee_per_gas - .or(max_priority_fee_per_gas) - .unwrap_or(U256::ZERO); - - let max_priority_fee_per_gas = max_priority_fee_per_gas.unwrap_or(U256::ZERO); - - Ok((max_fee_per_gas, max_priority_fee_per_gas)) - }, - ) -} - -pub(crate) fn resolve_call_request_inner( - data: &mut ProviderData, - request: CallRequest, - block_spec: &BlockSpec, - state_overrides: &StateOverrides, - default_gas_price_fn: impl FnOnce( - &ProviderData, - ) -> Result>, - max_fees_fn: impl FnOnce( - &ProviderData, - // max_fee_per_gas - Option, - // max_priority_fee_per_gas - Option, - ) -> Result<(U256, U256), ProviderError>, -) -> Result> { - let CallRequest { - from, - to, - gas, - gas_price, - max_fee_per_gas, - max_priority_fee_per_gas, - value, - data: input, - access_list, - .. - } = request; - - let chain_id = data.chain_id(); - let from = from.unwrap_or_else(|| data.default_caller()); - let gas_limit = gas.unwrap_or_else(|| data.block_gas_limit()); - let input = input.map_or(Bytes::new(), Bytes::from); - let nonce = data.nonce(&from, Some(block_spec), state_overrides)?; - let value = value.unwrap_or(U256::ZERO); - - let transaction = if data.spec_id() < SpecId::LONDON || gas_price.is_some() { - let gas_price = gas_price.map_or_else(|| default_gas_price_fn(data), Ok)?; - match access_list { - Some(access_list) if data.spec_id() >= SpecId::BERLIN => { - TransactionRequest::Eip2930(Eip2930TransactionRequest { - nonce, - gas_price, - gas_limit, - value, - input, - kind: to.into(), - chain_id, - access_list, - }) - } - _ => TransactionRequest::Eip155(Eip155TransactionRequest { - nonce, - gas_price, - gas_limit, - kind: to.into(), - value, - input, - chain_id, - }), - } - } else { - let (max_fee_per_gas, max_priority_fee_per_gas) = - max_fees_fn(data, max_fee_per_gas, max_priority_fee_per_gas)?; - - TransactionRequest::Eip1559(Eip1559TransactionRequest { - chain_id, - nonce, - max_fee_per_gas, - max_priority_fee_per_gas, - gas_limit, - kind: to.into(), - value, - input, - access_list: access_list.unwrap_or_default(), - }) - }; - - let transaction = transaction.fake_sign(&from); - ExecutableTransaction::with_caller(data.spec_id(), transaction, from) - .map_err(ProviderError::TransactionCreationError) -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::{data::test_utils::ProviderTestFixture, test_utils::pending_base_fee}; - - #[test] - fn resolve_call_request_inner_with_gas_price() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let pending_base_fee = pending_base_fee(&mut fixture.provider_data)?; - - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - gas_price: Some(pending_base_fee), - ..CallRequest::default() - }; - - let resolved = resolve_call_request_inner( - &mut fixture.provider_data, - request, - &BlockSpec::pending(), - &StateOverrides::default(), - |_data| unreachable!("gas_price is set"), - |_, _, _| unreachable!("gas_price is set"), - )?; - - assert_eq!(resolved.gas_price(), pending_base_fee); - - Ok(()) - } - - #[test] - fn resolve_call_request_inner_with_max_fee_and_max_priority_fee() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let max_fee_per_gas = pending_base_fee(&mut fixture.provider_data)?; - let max_priority_fee_per_gas = Some(max_fee_per_gas / U256::from(2)); - - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - max_fee_per_gas: Some(max_fee_per_gas), - max_priority_fee_per_gas, - ..CallRequest::default() - }; - - let resolved = resolve_call_request_inner( - &mut fixture.provider_data, - request, - &BlockSpec::pending(), - &StateOverrides::default(), - |_data| unreachable!("max fees are set"), - |_, max_fee_per_gas, max_priority_fee_per_gas| { - Ok(( - max_fee_per_gas.expect("max fee is set"), - max_priority_fee_per_gas.expect("max priority fee is set"), - )) - }, - )?; - - assert_eq!(resolved.gas_price(), max_fee_per_gas); - assert_eq!( - resolved.max_priority_fee_per_gas(), - max_priority_fee_per_gas - ); - - Ok(()) - } -} diff --git a/crates/edr_provider/src/requests/eth/config.rs b/crates/edr_provider/src/requests/eth/config.rs deleted file mode 100644 index f00dd602d7..0000000000 --- a/crates/edr_provider/src/requests/eth/config.rs +++ /dev/null @@ -1,41 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{Address, U256, U64}; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_gas_price( - data: &ProviderData, -) -> Result> { - data.gas_price() -} - -pub fn handle_coinbase_request( - data: &ProviderData, -) -> Result> { - Ok(data.coinbase()) -} - -pub fn handle_mining() -> Result> { - Ok(false) -} - -pub fn handle_net_listening_request( -) -> Result> { - Ok(true) -} - -pub fn handle_net_peer_count_request( -) -> Result> { - Ok(U64::from(0)) -} - -pub fn handle_net_version_request( - data: &ProviderData, -) -> Result> { - Ok(data.network_id()) -} - -pub fn handle_syncing() -> Result> { - Ok(false) -} diff --git a/crates/edr_provider/src/requests/eth/evm.rs b/crates/edr_provider/src/requests/eth/evm.rs deleted file mode 100644 index 200ea63563..0000000000 --- a/crates/edr_provider/src/requests/eth/evm.rs +++ /dev/null @@ -1,83 +0,0 @@ -use core::fmt::Debug; -use std::num::NonZeroU64; - -use edr_eth::{block::BlockOptions, U64}; -use edr_evm::trace::Trace; - -use crate::{data::ProviderData, requests::methods::U64OrUsize, ProviderError}; - -pub fn handle_increase_time_request( - data: &mut ProviderData, - increment: U64OrUsize, -) -> Result> { - let new_block_time = data.increase_block_time(increment.into()); - - // This RPC call is an exception: it returns a number as a string decimal - Ok(new_block_time.to_string()) -} - -pub fn handle_mine_request( - data: &mut ProviderData, - timestamp: Option, -) -> Result<(String, Vec), ProviderError> { - let mine_block_result = data.mine_and_commit_block(BlockOptions { - timestamp: timestamp.map(U64OrUsize::into), - ..BlockOptions::default() - })?; - - let traces = mine_block_result.transaction_traces.clone(); - - let spec_id = data.spec_id(); - data.logger_mut() - .log_mined_block(spec_id, &[mine_block_result]) - .map_err(ProviderError::Logger)?; - - let result = String::from("0"); - Ok((result, traces)) -} - -pub fn handle_revert_request( - data: &mut ProviderData, - snapshot_id: U64, -) -> Result> { - Ok(data.revert_to_snapshot(snapshot_id.as_limbs()[0])) -} - -pub fn handle_set_automine_request( - data: &mut ProviderData, - automine: bool, -) -> Result> { - data.set_auto_mining(automine); - - Ok(true) -} - -pub fn handle_set_block_gas_limit_request( - data: &mut ProviderData, - gas_limit: U64, -) -> Result> { - let gas_limit = NonZeroU64::new(gas_limit.as_limbs()[0]) - .ok_or(ProviderError::SetBlockGasLimitMustBeGreaterThanZero)?; - - data.set_block_gas_limit(gas_limit)?; - - Ok(true) -} - -pub fn handle_set_next_block_timestamp_request( - data: &mut ProviderData, - timestamp: U64OrUsize, -) -> Result> { - let new_timestamp = data.set_next_block_timestamp(timestamp.into())?; - - // This RPC call is an exception: it returns a number as a string decimal - Ok(new_timestamp.to_string()) -} - -pub fn handle_snapshot_request( - data: &mut ProviderData, -) -> Result> { - let snapshot_id = data.make_snapshot(); - - Ok(U64::from(snapshot_id)) -} diff --git a/crates/edr_provider/src/requests/eth/filter.rs b/crates/edr_provider/src/requests/eth/filter.rs deleted file mode 100644 index bca2eea0ff..0000000000 --- a/crates/edr_provider/src/requests/eth/filter.rs +++ /dev/null @@ -1,190 +0,0 @@ -use core::fmt::Debug; -use std::iter; - -use edr_eth::{ - remote::{ - filter::{FilteredEvents, LogFilterOptions, LogOutput, OneOrMore, SubscriptionType}, - BlockSpec, BlockTag, Eip1898BlockSpec, - }, - U256, -}; -use edr_evm::HashSet; - -use crate::{ - data::ProviderData, filter::LogFilter, requests::validation::validate_post_merge_block_tags, - ProviderError, -}; - -pub fn handle_get_filter_changes_request( - data: &mut ProviderData, - filter_id: U256, -) -> Result, ProviderError> { - Ok(data.get_filter_changes(&filter_id)) -} - -pub fn handle_get_filter_logs_request( - data: &mut ProviderData, - filter_id: U256, -) -> Result>, ProviderError> { - data.get_filter_logs(&filter_id) -} - -pub fn handle_get_logs_request( - data: &ProviderData, - filter_options: LogFilterOptions, -) -> Result, ProviderError> { - // Hardhat integration tests expect validation in this order. - if let Some(from_block) = &filter_options.from_block { - validate_post_merge_block_tags(data.spec_id(), from_block)?; - } - if let Some(to_block) = &filter_options.to_block { - validate_post_merge_block_tags(data.spec_id(), to_block)?; - } - - let filter = validate_filter_criteria::(data, filter_options)?; - data.logs(filter) - .map(|logs| logs.iter().map(LogOutput::from).collect()) -} - -pub fn handle_new_block_filter_request( - data: &mut ProviderData, -) -> Result> { - data.add_block_filter::() -} - -pub fn handle_new_log_filter_request( - data: &mut ProviderData, - filter_criteria: LogFilterOptions, -) -> Result> { - let filter_criteria = validate_filter_criteria::(data, filter_criteria)?; - data.add_log_filter::(filter_criteria) -} - -pub fn handle_new_pending_transaction_filter_request( - data: &mut ProviderData, -) -> Result> { - Ok(data.add_pending_transaction_filter::()) -} - -pub fn handle_subscribe_request( - data: &mut ProviderData, - subscription_type: SubscriptionType, - filter_criteria: Option, -) -> Result> { - match subscription_type { - SubscriptionType::Logs => { - let filter_criteria = filter_criteria.ok_or_else(|| { - ProviderError::InvalidArgument("Missing params argument".to_string()) - })?; - let filter_criteria = - validate_filter_criteria::(data, filter_criteria)?; - data.add_log_filter::(filter_criteria) - } - SubscriptionType::NewHeads => data.add_block_filter::(), - SubscriptionType::NewPendingTransactions => { - Ok(data.add_pending_transaction_filter::()) - } - } -} - -pub fn handle_uninstall_filter_request( - data: &mut ProviderData, - filter_id: U256, -) -> Result> { - Ok(data.remove_filter(&filter_id)) -} - -pub fn handle_unsubscribe_request( - data: &mut ProviderData, - filter_id: U256, -) -> Result> { - Ok(data.remove_subscription(&filter_id)) -} - -fn validate_filter_criteria( - data: &ProviderData, - filter: LogFilterOptions, -) -> Result> { - fn normalize_block_spec( - data: &ProviderData, - block_spec: Option, - ) -> Result, ProviderError> { - if let Some(block_spec) = &block_spec { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - } - - let block_number = match block_spec { - Some( - BlockSpec::Number(block_number) - | BlockSpec::Eip1898(Eip1898BlockSpec::Number { block_number }), - ) => Some(block_number), - Some(BlockSpec::Tag(BlockTag::Earliest)) => Some(0), - Some(BlockSpec::Tag( - BlockTag::Latest | BlockTag::Pending | BlockTag::Safe | BlockTag::Finalized, - )) - | None => None, - Some(BlockSpec::Eip1898(Eip1898BlockSpec::Hash { block_hash, .. })) => { - let block = - data.block_by_hash(&block_hash)? - .ok_or(ProviderError::InvalidArgument( - "blockHash cannot be found".to_string(), - ))?; - Some(block.header().number) - } - }; - - Ok(block_number) - } - - let (from_block, to_block) = if let Some(block_hash) = filter.block_hash { - if filter.from_block.is_some() || filter.to_block.is_some() { - return Err(ProviderError::InvalidArgument( - "blockHash is mutually exclusive with fromBlock/toBlock".to_string(), - )); - } - - let block = data.block_by_hash(&block_hash)?.ok_or_else(|| { - ProviderError::InvalidArgument("blockHash cannot be found".to_string()) - })?; - - let block_number = block.header().number; - - (block_number, Some(block_number)) - } else { - let from_block = normalize_block_spec(data, filter.from_block)? - .unwrap_or_else(|| data.last_block_number()); - - let mut to_block = normalize_block_spec(data, filter.to_block)?; - if SHOULD_RESOLVE_LATEST && to_block.is_none() { - to_block = Some(data.last_block_number()); - } - - (from_block, to_block) - }; - - let addresses = filter - .address - .map_or(HashSet::new(), |addresses| match addresses { - OneOrMore::One(address) => iter::once(address).collect(), - OneOrMore::Many(addresses) => addresses.into_iter().collect(), - }); - - let normalized_topics = filter.topics.map_or(Vec::new(), |topics| { - topics - .into_iter() - .map(|topics| { - topics.map(|topics| match topics { - OneOrMore::One(topic) => vec![topic], - OneOrMore::Many(topics) => topics, - }) - }) - .collect() - }); - - Ok(LogFilter { - from_block, - to_block, - addresses, - normalized_topics, - }) -} diff --git a/crates/edr_provider/src/requests/eth/gas.rs b/crates/edr_provider/src/requests/eth/gas.rs deleted file mode 100644 index e1bc123966..0000000000 --- a/crates/edr_provider/src/requests/eth/gas.rs +++ /dev/null @@ -1,297 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{ - remote::{ - eth::{CallRequest, FeeHistoryResult}, - BlockSpec, - }, - reward_percentile::RewardPercentile, - SpecId, U256, U64, -}; -use edr_evm::{state::StateOverrides, trace::Trace, ExecutableTransaction}; - -use super::resolve_call_request_inner; -use crate::{ - data::ProviderData, - requests::validation::{validate_call_request, validate_post_merge_block_tags}, - ProviderError, -}; - -pub fn handle_estimate_gas( - data: &mut ProviderData, - call_request: CallRequest, - block_spec: Option, -) -> Result<(U64, Vec), ProviderError> { - // Matching Hardhat behavior in defaulting to "pending" instead of "latest" for - // estimate gas. - let block_spec = block_spec.unwrap_or_else(BlockSpec::pending); - - validate_call_request(data.spec_id(), &call_request, &block_spec)?; - - let transaction = - resolve_estimate_gas_request(data, call_request, &block_spec, &StateOverrides::default())?; - - let result = data.estimate_gas(transaction.clone(), &block_spec); - if let Err(ProviderError::EstimateGasTransactionFailure(failure)) = result { - let spec_id = data.spec_id(); - data.logger_mut() - .log_estimate_gas_failure(spec_id, &transaction, &failure) - .map_err(ProviderError::Logger)?; - - Err(ProviderError::TransactionFailed( - failure.transaction_failure, - )) - } else { - let result = result?; - Ok((U64::from(result.estimation), result.traces)) - } -} - -pub fn handle_fee_history( - data: &mut ProviderData, - block_count: U256, - newest_block: BlockSpec, - reward_percentiles: Option>, -) -> Result> { - if data.spec_id() < SpecId::LONDON { - return Err(ProviderError::InvalidInput( - "eth_feeHistory is disabled. It only works with the London hardfork or a later one." - .into(), - )); - } - - let block_count: u64 = block_count - .try_into() - .map_err(|_err| ProviderError::InvalidInput("blockCount should be at most 1024".into()))?; - if block_count == 0 { - return Err(ProviderError::InvalidInput( - "blockCount should be at least 1".into(), - )); - } - if block_count > 1024 { - return Err(ProviderError::InvalidInput( - "blockCount should be at most 1024".into(), - )); - } - - validate_post_merge_block_tags(data.spec_id(), &newest_block)?; - - let reward_percentiles = reward_percentiles.map(|percentiles| { - let mut validated_percentiles = Vec::with_capacity(percentiles.len()); - for (i, percentile) in percentiles.iter().copied().enumerate() { - validated_percentiles.push(RewardPercentile::try_from(percentile).map_err(|_err| { - ProviderError::InvalidInput(format!( - "The reward percentile number {} is invalid. It must be a float between 0 and 100, but is {} instead.", - i + 1, - percentile - )) - })?); - if i > 0 { - let prev = percentiles[i - 1]; - if prev > percentile { - return Err(ProviderError::InvalidInput(format!("\ -The reward percentiles should be in non-decreasing order, but the percentile number {i} is greater than the next one"))); - } - } - } - Ok(validated_percentiles) - }).transpose()?; - - data.fee_history(block_count, &newest_block, reward_percentiles) -} - -fn resolve_estimate_gas_request( - data: &mut ProviderData, - request: CallRequest, - block_spec: &BlockSpec, - state_overrides: &StateOverrides, -) -> Result> { - resolve_call_request_inner( - data, - request, - block_spec, - state_overrides, - ProviderData::gas_price, - |data, max_fee_per_gas, max_priority_fee_per_gas| { - let max_priority_fee_per_gas = max_priority_fee_per_gas.unwrap_or_else(|| { - const DEFAULT: u64 = 1_000_000_000; - let default = U256::from(DEFAULT); - - if let Some(max_fee_per_gas) = max_fee_per_gas { - default.min(max_fee_per_gas) - } else { - default - } - }); - - let max_fee_per_gas = max_fee_per_gas.map_or_else( - || -> Result> { - let base_fee = if let Some(block) = data.block_by_block_spec(block_spec)? { - max_priority_fee_per_gas - + block.header().base_fee_per_gas.unwrap_or(U256::ZERO) - } else { - // Pending block - let base_fee = data - .next_block_base_fee_per_gas()? - .expect("This function can only be called for post-EIP-1559 blocks"); - - U256::from(2) * base_fee + max_priority_fee_per_gas - }; - - Ok(base_fee) - }, - Ok, - )?; - - Ok((max_fee_per_gas, max_priority_fee_per_gas)) - }, - ) -} - -#[cfg(test)] -mod tests { - use edr_eth::remote::{eth::CallRequest, BlockTag}; - - use super::*; - use crate::{data::test_utils::ProviderTestFixture, test_utils::pending_base_fee}; - - #[test] - fn resolve_estimate_gas_request_with_default_max_priority_fee() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let max_fee_per_gas = - pending_base_fee(&mut fixture.provider_data)?.max(U256::from(10_000_000_000u64)); - - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - max_fee_per_gas: Some(max_fee_per_gas), - ..CallRequest::default() - }; - - let resolved = resolve_estimate_gas_request( - &mut fixture.provider_data, - request, - &BlockSpec::pending(), - &StateOverrides::default(), - )?; - - assert_eq!(resolved.gas_price(), max_fee_per_gas); - assert_eq!( - resolved.max_priority_fee_per_gas(), - Some(U256::from(1_000_000_000u64)) - ); - - Ok(()) - } - - #[test] - fn resolve_estimate_gas_request_with_default_max_fee_when_pending_block() -> anyhow::Result<()> - { - let base_fee = U256::from(10); - let max_priority_fee_per_gas = U256::from(1); - - let mut fixture = ProviderTestFixture::new_local()?; - fixture - .provider_data - .set_next_block_base_fee_per_gas(base_fee)?; - - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - max_priority_fee_per_gas: Some(max_priority_fee_per_gas), - ..CallRequest::default() - }; - - let resolved = resolve_estimate_gas_request( - &mut fixture.provider_data, - request, - &BlockSpec::pending(), - &StateOverrides::default(), - )?; - - assert_eq!( - resolved.gas_price(), - U256::from(2) * base_fee + max_priority_fee_per_gas - ); - assert_eq!( - resolved.max_priority_fee_per_gas(), - Some(max_priority_fee_per_gas) - ); - - Ok(()) - } - - #[test] - fn resolve_estimate_gas_request_with_default_max_fee_when_historic_block() -> anyhow::Result<()> - { - let mut fixture = ProviderTestFixture::new_local()?; - fixture - .provider_data - .set_next_block_base_fee_per_gas(U256::from(10))?; - - let transaction = fixture.signed_dummy_transaction(0, None)?; - fixture.provider_data.send_transaction(transaction)?; - - let last_block = fixture.provider_data.last_block()?; - assert_eq!(last_block.header().number, 1); - - let max_priority_fee_per_gas = U256::from(1); - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - max_priority_fee_per_gas: Some(max_priority_fee_per_gas), - ..CallRequest::default() - }; - - let resolved = resolve_estimate_gas_request( - &mut fixture.provider_data, - request, - &BlockSpec::Tag(BlockTag::Latest), - &StateOverrides::default(), - )?; - - assert_eq!( - Some(resolved.gas_price()), - last_block - .header() - .base_fee_per_gas - .map(|base_fee| base_fee + max_priority_fee_per_gas) - ); - assert_eq!( - resolved.max_priority_fee_per_gas(), - Some(max_priority_fee_per_gas) - ); - - Ok(()) - } - - #[test] - fn resolve_estimate_gas_request_with_capped_max_priority_fee() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - fixture - .provider_data - .set_next_block_base_fee_per_gas(U256::ZERO)?; - - let max_fee_per_gas = U256::from(123); - - let request = CallRequest { - from: Some(fixture.nth_local_account(0)?), - to: Some(fixture.nth_local_account(1)?), - max_fee_per_gas: Some(max_fee_per_gas), - ..CallRequest::default() - }; - - let resolved = resolve_estimate_gas_request( - &mut fixture.provider_data, - request, - &BlockSpec::pending(), - &StateOverrides::default(), - )?; - - assert_eq!(resolved.gas_price(), max_fee_per_gas); - assert_eq!(resolved.max_priority_fee_per_gas(), Some(max_fee_per_gas)); - - Ok(()) - } -} diff --git a/crates/edr_provider/src/requests/eth/mine.rs b/crates/edr_provider/src/requests/eth/mine.rs deleted file mode 100644 index 804dd38b00..0000000000 --- a/crates/edr_provider/src/requests/eth/mine.rs +++ /dev/null @@ -1,18 +0,0 @@ -use core::fmt::Debug; -use std::sync::Arc; - -use tokio::{runtime, sync::Mutex}; - -use crate::{data::ProviderData, interval::IntervalMiner, requests, IntervalConfig, ProviderError}; - -pub fn handle_set_interval_mining( - data: Arc>>, - interval_miner: &mut Option>, - runtime: runtime::Handle, - config: requests::IntervalConfig, -) -> Result> { - let config: Option = config.try_into()?; - *interval_miner = config.map(|config| IntervalMiner::new(runtime, config, data.clone())); - - Ok(true) -} diff --git a/crates/edr_provider/src/requests/eth/sign.rs b/crates/edr_provider/src/requests/eth/sign.rs deleted file mode 100644 index 26d83bd95b..0000000000 --- a/crates/edr_provider/src/requests/eth/sign.rs +++ /dev/null @@ -1,22 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{Address, Bytes}; -use ethers_core::types::transaction::eip712::TypedData; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_sign_request( - data: &ProviderData, - message: Bytes, - address: Address, -) -> Result> { - Ok((&data.sign(&address, message)?).into()) -} - -pub fn handle_sign_typed_data_v4( - data: &ProviderData, - address: Address, - message: TypedData, -) -> Result> { - Ok((&data.sign_typed_data_v4(&address, &message)?).into()) -} diff --git a/crates/edr_provider/src/requests/eth/state.rs b/crates/edr_provider/src/requests/eth/state.rs deleted file mode 100644 index 2278adcd4d..0000000000 --- a/crates/edr_provider/src/requests/eth/state.rs +++ /dev/null @@ -1,45 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{remote::BlockSpec, utils::u256_to_padded_hex, Address, Bytes, U256}; - -use crate::{ - data::ProviderData, requests::validation::validate_post_merge_block_tags, ProviderError, -}; - -pub fn handle_get_balance_request( - data: &mut ProviderData, - address: Address, - block_spec: Option, -) -> Result> { - if let Some(block_spec) = block_spec.as_ref() { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - } - - data.balance(address, block_spec.as_ref()) -} - -pub fn handle_get_code_request( - data: &mut ProviderData, - address: Address, - block_spec: Option, -) -> Result> { - if let Some(block_spec) = block_spec.as_ref() { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - } - - data.get_code(address, block_spec.as_ref()) -} - -pub fn handle_get_storage_at_request( - data: &mut ProviderData, - address: Address, - index: U256, - block_spec: Option, -) -> Result> { - if let Some(block_spec) = block_spec.as_ref() { - validate_post_merge_block_tags(data.spec_id(), block_spec)?; - } - - let storage = data.get_storage_at(address, index, block_spec.as_ref())?; - Ok(u256_to_padded_hex(&storage)) -} diff --git a/crates/edr_provider/src/requests/eth/transactions.rs b/crates/edr_provider/src/requests/eth/transactions.rs deleted file mode 100644 index 5d52ece027..0000000000 --- a/crates/edr_provider/src/requests/eth/transactions.rs +++ /dev/null @@ -1,575 +0,0 @@ -use core::fmt::Debug; -use std::sync::Arc; - -use edr_eth::{ - receipt::{BlockReceipt, TransactionReceipt}, - remote::{self, PreEip1898BlockSpec}, - rlp::Decodable, - transaction::{ - Eip1559TransactionRequest, Eip155TransactionRequest, Eip2930TransactionRequest, - EthTransactionRequest, SignedTransaction, TransactionKind, TransactionRequest, - TransactionRequestAndSender, - }, - Bytes, SpecId, B256, U256, -}; -use edr_evm::{blockchain::BlockchainError, trace::Trace, ExecutableTransaction, SyncBlock}; - -use crate::{ - data::{BlockDataForTransaction, ProviderData, TransactionAndBlock}, - error::TransactionFailureWithTraces, - requests::validation::{ - validate_eip3860_max_initcode_size, validate_post_merge_block_tags, - validate_transaction_and_call_request, validate_transaction_spec, - }, - ProviderError, TransactionFailure, -}; - -const FIRST_HARDFORK_WITH_TRANSACTION_TYPE: SpecId = SpecId::BERLIN; - -pub fn handle_get_transaction_by_block_hash_and_index( - data: &ProviderData, - block_hash: B256, - index: U256, -) -> Result, ProviderError> { - let index = rpc_index_to_usize(&index)?; - - data.block_by_hash(&block_hash)? - .and_then(|block| transaction_from_block(block, index, false)) - .map(|tx| transaction_to_rpc_result(tx, data.spec_id())) - .transpose() -} - -pub fn handle_get_transaction_by_block_spec_and_index( - data: &mut ProviderData, - block_spec: PreEip1898BlockSpec, - index: U256, -) -> Result, ProviderError> { - validate_post_merge_block_tags(data.spec_id(), &block_spec)?; - - let index = rpc_index_to_usize(&index)?; - - match data.block_by_block_spec(&block_spec.into()) { - Ok(Some(block)) => Some((block, false)), - // Pending block requested - Ok(None) => { - let result = data.mine_pending_block()?; - let block: Arc> = Arc::new(result.block); - Some((block, true)) - } - // Matching Hardhat behavior in returning None for invalid block hash or number. - Err(ProviderError::InvalidBlockNumberOrHash { .. }) => None, - Err(err) => return Err(err), - } - .and_then(|(block, is_pending)| transaction_from_block(block, index, is_pending)) - .map(|tx| transaction_to_rpc_result(tx, data.spec_id())) - .transpose() -} - -pub fn handle_pending_transactions( - data: &ProviderData, -) -> Result, ProviderError> { - let spec_id = data.spec_id(); - data.pending_transactions() - .map(|pending_transaction| { - let transaction_and_block = TransactionAndBlock { - transaction: pending_transaction.clone(), - block_data: None, - is_pending: true, - }; - transaction_to_rpc_result(transaction_and_block, spec_id) - }) - .collect() -} - -fn rpc_index_to_usize( - index: &U256, -) -> Result> { - index - .try_into() - .map_err(|_err| ProviderError::InvalidTransactionIndex(*index)) -} - -pub fn handle_get_transaction_by_hash( - data: &ProviderData, - transaction_hash: B256, -) -> Result, ProviderError> { - data.transaction_by_hash(&transaction_hash)? - .map(|tx| transaction_to_rpc_result(tx, data.spec_id())) - .transpose() -} - -pub fn handle_get_transaction_receipt( - data: &ProviderData, - transaction_hash: B256, -) -> Result>, ProviderError> { - let receipt = data.transaction_receipt(&transaction_hash)?; - - // The JSON-RPC layer should not return the gas price as effective gas price for - // receipts in pre-London hardforks. - if let Some(receipt) = receipt.as_ref() { - if data.spec_id() < SpecId::LONDON && receipt.effective_gas_price.is_some() { - return Ok(Some(Arc::new(BlockReceipt { - inner: TransactionReceipt { - effective_gas_price: None, - ..receipt.inner.clone() - }, - block_hash: receipt.block_hash, - block_number: receipt.block_number, - }))); - } - } - - Ok(receipt) -} - -fn transaction_from_block( - block: Arc>, - transaction_index: usize, - is_pending: bool, -) -> Option { - block - .transactions() - .get(transaction_index) - .map(|transaction| TransactionAndBlock { - transaction: transaction.clone(), - block_data: Some(BlockDataForTransaction { - block: block.clone(), - transaction_index: transaction_index.try_into().expect("usize fits into u64"), - }), - is_pending, - }) -} - -pub fn transaction_to_rpc_result( - transaction_and_block: TransactionAndBlock, - spec_id: SpecId, -) -> Result> { - fn gas_price_for_post_eip1559( - signed_transaction: &SignedTransaction, - block: Option<&Arc>>, - ) -> U256 { - let max_fee_per_gas = signed_transaction - .max_fee_per_gas() - .expect("Transaction must be post EIP-1559 transaction."); - let max_priority_fee_per_gas = signed_transaction - .max_priority_fee_per_gas() - .expect("Transaction must be post EIP-1559 transaction."); - - if let Some(block) = block { - let base_fee_per_gas = block.header().base_fee_per_gas.expect( - "Transaction must have base fee per gas in block metadata if EIP-1559 is active.", - ); - let priority_fee_per_gas = - max_priority_fee_per_gas.min(max_fee_per_gas - base_fee_per_gas); - base_fee_per_gas + priority_fee_per_gas - } else { - // We are following Hardhat's behavior of returning the max fee per gas for - // pending transactions. - max_fee_per_gas - } - } - - let TransactionAndBlock { - transaction, - block_data, - is_pending, - } = transaction_and_block; - let signed_transaction = transaction.as_inner(); - let block = block_data.as_ref().map(|b| &b.block); - let header = block.map(|b| b.header()); - - let gas_price = match &signed_transaction { - SignedTransaction::PreEip155Legacy(tx) => tx.gas_price, - SignedTransaction::PostEip155Legacy(tx) => tx.gas_price, - SignedTransaction::Eip2930(tx) => tx.gas_price, - SignedTransaction::Eip1559(_) | SignedTransaction::Eip4844(_) => { - gas_price_for_post_eip1559(signed_transaction, block) - } - }; - - let chain_id = match &signed_transaction { - // Following Hardhat in not returning `chain_id` for `PostEip155Legacy` legacy transactions - // even though the chain id would be recoverable. - SignedTransaction::PreEip155Legacy(_) | SignedTransaction::PostEip155Legacy(_) => None, - SignedTransaction::Eip2930(tx) => Some(tx.chain_id), - SignedTransaction::Eip1559(tx) => Some(tx.chain_id), - SignedTransaction::Eip4844(tx) => Some(tx.chain_id), - }; - - let show_transaction_type = spec_id >= FIRST_HARDFORK_WITH_TRANSACTION_TYPE; - let is_typed_transaction = signed_transaction.transaction_type() > 0; - let transaction_type = if show_transaction_type || is_typed_transaction { - Some(signed_transaction.transaction_type()) - } else { - None - }; - - let signature = signed_transaction.signature(); - let (block_hash, block_number) = if is_pending { - (None, None) - } else { - header - .map(|header| (header.hash(), U256::from(header.number))) - .unzip() - }; - - let transaction_index = if is_pending { - None - } else { - block_data.as_ref().map(|bd| bd.transaction_index) - }; - - Ok(remote::eth::Transaction { - hash: *signed_transaction.hash(), - nonce: signed_transaction.nonce(), - block_hash, - block_number, - transaction_index, - from: *transaction.caller(), - to: signed_transaction.to(), - value: signed_transaction.value(), - gas_price, - gas: U256::from(signed_transaction.gas_limit()), - input: signed_transaction.data().clone(), - v: signature.v, - // Following Hardhat in always returning `v` instead of `y_parity`. - y_parity: None, - r: signature.r, - s: signature.s, - chain_id, - transaction_type, - access_list: signed_transaction - .access_list() - .map(|access_list| access_list.clone().into()), - max_fee_per_gas: signed_transaction.max_fee_per_gas(), - max_priority_fee_per_gas: signed_transaction.max_priority_fee_per_gas(), - max_fee_per_blob_gas: signed_transaction.max_fee_per_blob_gas(), - blob_versioned_hashes: signed_transaction.blob_hashes(), - }) -} - -pub fn handle_send_transaction_request( - data: &mut ProviderData, - transaction_request: EthTransactionRequest, -) -> Result<(B256, Vec), ProviderError> { - validate_send_transaction_request(data, &transaction_request)?; - - let transaction_request = resolve_transaction_request(data, transaction_request)?; - let signed_transaction = data.sign_transaction_request(transaction_request)?; - - send_raw_transaction_and_log(data, signed_transaction) -} - -pub fn handle_send_raw_transaction_request( - data: &mut ProviderData, - raw_transaction: Bytes, -) -> Result<(B256, Vec), ProviderError> { - let mut raw_transaction: &[u8] = raw_transaction.as_ref(); - let signed_transaction = - SignedTransaction::decode(&mut raw_transaction).map_err(|err| match err { - edr_eth::rlp::Error::Custom(message) if SignedTransaction::is_invalid_transaction_type_error(message) => { - let type_id = *raw_transaction.first().expect("We already validated that the transaction is not empty if it's an invalid transaction type error."); - ProviderError::InvalidTransactionType(type_id) - } - err => ProviderError::InvalidArgument(err.to_string()), - })?; - - if matches!(signed_transaction, SignedTransaction::Eip4844(_)) { - return Err(ProviderError::Eip4844TransactionUnsupported); - } - - validate_send_raw_transaction_request(data, &signed_transaction)?; - - let pending_transaction = ExecutableTransaction::new(data.spec_id(), signed_transaction)?; - - send_raw_transaction_and_log(data, pending_transaction) -} - -fn resolve_transaction_request( - data: &mut ProviderData, - transaction_request: EthTransactionRequest, -) -> Result> { - const DEFAULT_MAX_PRIORITY_FEE_PER_GAS: u64 = 1_000_000_000; - - /// # Panics - /// - /// Panics if `data.spec_id()` is less than `SpecId::LONDON`. - fn calculate_max_fee_per_gas( - data: &ProviderData, - max_priority_fee_per_gas: U256, - ) -> Result { - let base_fee_per_gas = data - .next_block_base_fee_per_gas()? - .expect("We already validated that the block is post-London."); - Ok(U256::from(2) * base_fee_per_gas + max_priority_fee_per_gas) - } - - let EthTransactionRequest { - from, - to, - gas_price, - max_fee_per_gas, - max_priority_fee_per_gas, - gas, - value, - data: input, - nonce, - chain_id, - access_list, - // We ignore the transaction type - transaction_type: _transaction_type, - blobs: _blobs, - blob_hashes: _blob_hashes, - } = transaction_request; - - let chain_id = chain_id.unwrap_or_else(|| data.chain_id()); - let gas_limit = gas.unwrap_or_else(|| data.block_gas_limit()); - let input = input.map_or(Bytes::new(), Into::into); - let nonce = nonce.map_or_else(|| data.account_next_nonce(&from), Ok)?; - let value = value.unwrap_or(U256::ZERO); - - let request = match ( - gas_price, - max_fee_per_gas, - max_priority_fee_per_gas, - access_list, - ) { - (gas_price, max_fee_per_gas, max_priority_fee_per_gas, access_list) - if data.spec_id() >= SpecId::LONDON - && (gas_price.is_none() - || max_fee_per_gas.is_some() - || max_priority_fee_per_gas.is_some()) => - { - let (max_fee_per_gas, max_priority_fee_per_gas) = - match (max_fee_per_gas, max_priority_fee_per_gas) { - (Some(max_fee_per_gas), Some(max_priority_fee_per_gas)) => { - (max_fee_per_gas, max_priority_fee_per_gas) - } - (Some(max_fee_per_gas), None) => ( - max_fee_per_gas, - max_fee_per_gas.min(U256::from(DEFAULT_MAX_PRIORITY_FEE_PER_GAS)), - ), - (None, Some(max_priority_fee_per_gas)) => { - let max_fee_per_gas = - calculate_max_fee_per_gas(data, max_priority_fee_per_gas)?; - (max_fee_per_gas, max_priority_fee_per_gas) - } - (None, None) => { - let max_priority_fee_per_gas = U256::from(DEFAULT_MAX_PRIORITY_FEE_PER_GAS); - let max_fee_per_gas = - calculate_max_fee_per_gas(data, max_priority_fee_per_gas)?; - (max_fee_per_gas, max_priority_fee_per_gas) - } - }; - - TransactionRequest::Eip1559(Eip1559TransactionRequest { - nonce, - max_priority_fee_per_gas, - max_fee_per_gas, - gas_limit, - value, - input, - kind: match to { - Some(to) => TransactionKind::Call(to), - None => TransactionKind::Create, - }, - chain_id, - access_list: access_list.unwrap_or_default(), - }) - } - (gas_price, _, _, Some(access_list)) => { - TransactionRequest::Eip2930(Eip2930TransactionRequest { - nonce, - gas_price: gas_price.map_or_else(|| data.next_gas_price(), Ok)?, - gas_limit, - value, - input, - kind: match to { - Some(to) => TransactionKind::Call(to), - None => TransactionKind::Create, - }, - chain_id, - access_list, - }) - } - (gas_price, _, _, _) => TransactionRequest::Eip155(Eip155TransactionRequest { - nonce, - gas_price: gas_price.map_or_else(|| data.next_gas_price(), Ok)?, - gas_limit, - value, - input, - kind: match to { - Some(to) => TransactionKind::Call(to), - None => TransactionKind::Create, - }, - chain_id, - }), - }; - - Ok(TransactionRequestAndSender { - request, - sender: from, - }) -} - -fn send_raw_transaction_and_log( - data: &mut ProviderData, - signed_transaction: ExecutableTransaction, -) -> Result<(B256, Vec), ProviderError> { - let result = data.send_transaction(signed_transaction.clone())?; - - let spec_id = data.spec_id(); - data.logger_mut() - .log_send_transaction(spec_id, &signed_transaction, &result.mining_results) - .map_err(ProviderError::Logger)?; - - if data.bail_on_transaction_failure() { - let transaction_failure = - result - .transaction_result_and_trace() - .and_then(|(execution_result, trace)| { - TransactionFailure::from_execution_result( - execution_result, - Some(&result.transaction_hash), - trace, - ) - }); - - if let Some(failure) = transaction_failure { - let (_transaction_hash, traces) = result.into(); - return Err(ProviderError::TransactionFailed( - TransactionFailureWithTraces { failure, traces }, - )); - } - } - - Ok(result.into()) -} - -fn validate_send_transaction_request( - data: &ProviderData, - request: &EthTransactionRequest, -) -> Result<(), ProviderError> { - if let Some(chain_id) = request.chain_id { - let expected = data.chain_id(); - if chain_id != expected { - return Err(ProviderError::InvalidChainId { - expected, - actual: chain_id, - }); - } - } - - if let Some(request_data) = &request.data { - validate_eip3860_max_initcode_size( - data.spec_id(), - data.allow_unlimited_initcode_size(), - &request.to, - request_data, - )?; - } - - validate_transaction_and_call_request(data.spec_id(), request) -} - -fn validate_send_raw_transaction_request( - data: &ProviderData, - signed_transaction: &SignedTransaction, -) -> Result<(), ProviderError> { - // Validate signature - let _ = signed_transaction - .recover() - .map_err(|_err| ProviderError::InvalidArgument("Invalid Signature".into()))?; - - if let Some(tx_chain_id) = signed_transaction.chain_id() { - let expected = data.chain_id(); - if tx_chain_id != expected { - let error = if signed_transaction.is_eip155() { - ProviderError::InvalidEip155TransactionChainId - } else { - ProviderError::InvalidArgument(format!("Trying to send a raw transaction with an invalid chainId. The expected chainId is {expected}")) - }; - return Err(error); - } - } - - validate_transaction_spec(data.spec_id(), signed_transaction.into()).map_err( - |err| match err { - ProviderError::UnsupportedEIP1559Parameters { - minimum_hardfork, .. - } => ProviderError::InvalidArgument(format!( - "\ -Trying to send an EIP-1559 transaction but they are not supported by the current hard fork.\ -\ -You can use them by running Hardhat Network with 'hardfork' {minimum_hardfork:?} or later." - )), - err => err, - }, - )?; - - validate_eip3860_max_initcode_size( - data.spec_id(), - data.allow_unlimited_initcode_size(), - &signed_transaction.to(), - signed_transaction.data(), - )?; - - validate_transaction_and_call_request(data.spec_id(), signed_transaction) -} - -#[cfg(test)] -mod tests { - use anyhow::Context; - use edr_eth::{ - transaction::{Eip155TransactionRequest, TransactionKind, TransactionRequest}, - Address, Bytes, U256, - }; - use edr_evm::ExecutableTransaction; - - use super::*; - use crate::{data::test_utils::ProviderTestFixture, test_utils::one_ether}; - - #[test] - fn transaction_by_hash_for_impersonated_account() -> anyhow::Result<()> { - let mut fixture = ProviderTestFixture::new_local()?; - - let impersonated_account: Address = "0x20620fa0ad46516e915029c94e3c87c9cd7861ff".parse()?; - fixture - .provider_data - .impersonate_account(impersonated_account); - - fixture - .provider_data - .set_balance(impersonated_account, one_ether())?; - - let chain_id = fixture.provider_data.chain_id(); - - let request = TransactionRequest::Eip155(Eip155TransactionRequest { - kind: TransactionKind::Call(Address::ZERO), - gas_limit: 30_000, - gas_price: U256::from(42_000_000_000_u64), - value: U256::from(1), - input: Bytes::default(), - nonce: 0, - chain_id, - }) - .fake_sign(&impersonated_account); - let transaction = ExecutableTransaction::with_caller( - fixture.provider_data.spec_id(), - request, - impersonated_account, - )?; - - fixture.provider_data.set_auto_mining(true); - let result = fixture.provider_data.send_transaction(transaction)?; - assert!(result.transaction_result_and_trace().is_some()); - - let rpc_transaction = - handle_get_transaction_by_hash(&fixture.provider_data, result.transaction_hash)? - .context("transaction not found")?; - assert_eq!(&rpc_transaction.from, &impersonated_account); - assert_eq!(&rpc_transaction.hash, &result.transaction_hash); - - Ok(()) - } -} diff --git a/crates/edr_provider/src/requests/eth/web3.rs b/crates/edr_provider/src/requests/eth/web3.rs deleted file mode 100644 index b19994ae8b..0000000000 --- a/crates/edr_provider/src/requests/eth/web3.rs +++ /dev/null @@ -1,26 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{Bytes, B256}; -use sha3::{Digest, Keccak256}; - -use crate::ProviderError; - -pub fn client_version() -> String { - format!( - "edr/{}/revm/{}", - env!("CARGO_PKG_VERSION"), - env!("REVM_VERSION"), - ) -} - -pub fn handle_web3_client_version_request( -) -> Result> { - Ok(client_version()) -} - -pub fn handle_web3_sha3_request( - message: Bytes, -) -> Result> { - let hash = Keccak256::digest(&message[..]); - Ok(B256::from_slice(&hash[..])) -} diff --git a/crates/edr_provider/src/requests/hardhat.rs b/crates/edr_provider/src/requests/hardhat.rs deleted file mode 100644 index 5aa0314aab..0000000000 --- a/crates/edr_provider/src/requests/hardhat.rs +++ /dev/null @@ -1,9 +0,0 @@ -mod accounts; -mod config; -mod log; -mod miner; -pub mod rpc_types; -mod state; -mod transactions; - -pub use self::{accounts::*, config::*, log::*, miner::*, state::*, transactions::*}; diff --git a/crates/edr_provider/src/requests/hardhat/accounts.rs b/crates/edr_provider/src/requests/hardhat/accounts.rs deleted file mode 100644 index 3ab1592769..0000000000 --- a/crates/edr_provider/src/requests/hardhat/accounts.rs +++ /dev/null @@ -1,21 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::Address; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_impersonate_account_request( - data: &mut ProviderData, - address: Address, -) -> Result> { - data.impersonate_account(address); - - Ok(true) -} - -pub fn handle_stop_impersonating_account_request( - data: &mut ProviderData, - address: Address, -) -> Result> { - Ok(data.stop_impersonating_account(address)) -} diff --git a/crates/edr_provider/src/requests/hardhat/config.rs b/crates/edr_provider/src/requests/hardhat/config.rs deleted file mode 100644 index 8f98a1705b..0000000000 --- a/crates/edr_provider/src/requests/hardhat/config.rs +++ /dev/null @@ -1,64 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{Address, B256, U256}; - -use crate::{ - data::ProviderData, - requests::{eth::client_version, hardhat::rpc_types::Metadata}, - ProviderError, -}; - -pub fn handle_get_automine_request( - data: &ProviderData, -) -> Result> { - Ok(data.is_auto_mining()) -} - -pub fn handle_metadata_request( - data: &ProviderData, -) -> Result> { - Ok(Metadata { - client_version: client_version(), - chain_id: data.chain_id(), - instance_id: *data.instance_id(), - latest_block_number: data.last_block_number(), - latest_block_hash: *data.last_block()?.hash(), - forked_network: data.fork_metadata().cloned(), - }) -} - -pub fn handle_set_coinbase_request( - data: &mut ProviderData, - coinbase: Address, -) -> Result> { - data.set_coinbase(coinbase); - - Ok(true) -} - -pub fn handle_set_min_gas_price( - data: &mut ProviderData, - min_gas_price: U256, -) -> Result> { - data.set_min_gas_price(min_gas_price)?; - - Ok(true) -} - -pub fn handle_set_next_block_base_fee_per_gas_request( - data: &mut ProviderData, - base_fee_per_gas: U256, -) -> Result> { - data.set_next_block_base_fee_per_gas(base_fee_per_gas)?; - - Ok(true) -} - -pub fn handle_set_prev_randao_request( - data: &mut ProviderData, - prev_randao: B256, -) -> Result> { - data.set_next_prev_randao(prev_randao)?; - - Ok(true) -} diff --git a/crates/edr_provider/src/requests/hardhat/log.rs b/crates/edr_provider/src/requests/hardhat/log.rs deleted file mode 100644 index b1a982c94b..0000000000 --- a/crates/edr_provider/src/requests/hardhat/log.rs +++ /dev/null @@ -1,11 +0,0 @@ -use core::fmt::Debug; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_set_logging_enabled_request( - data: &mut ProviderData, - is_enabled: bool, -) -> Result> { - data.logger_mut().set_is_enabled(is_enabled); - Ok(true) -} diff --git a/crates/edr_provider/src/requests/hardhat/miner.rs b/crates/edr_provider/src/requests/hardhat/miner.rs deleted file mode 100644 index 4b3a6449ad..0000000000 --- a/crates/edr_provider/src/requests/hardhat/miner.rs +++ /dev/null @@ -1,34 +0,0 @@ -use core::fmt::Debug; - -use edr_evm::trace::Trace; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_interval_mine_request( - data: &mut ProviderData, -) -> Result> { - data.interval_mine() -} - -pub fn handle_mine( - data: &mut ProviderData, - number_of_blocks: Option, - interval: Option, -) -> Result<(bool, Vec), ProviderError> { - let number_of_blocks = number_of_blocks.unwrap_or(1); - let interval = interval.unwrap_or(1); - - let mined_block_results = data.mine_and_commit_blocks(number_of_blocks, interval)?; - - let spec_id = data.spec_id(); - data.logger_mut() - .log_mined_block(spec_id, &mined_block_results) - .map_err(ProviderError::Logger)?; - - let traces = mined_block_results - .into_iter() - .flat_map(|result| result.transaction_traces) - .collect(); - - Ok((true, traces)) -} diff --git a/crates/edr_provider/src/requests/hardhat/rpc_types.rs b/crates/edr_provider/src/requests/hardhat/rpc_types.rs deleted file mode 100644 index 84cbc30fa1..0000000000 --- a/crates/edr_provider/src/requests/hardhat/rpc_types.rs +++ /dev/null @@ -1,7 +0,0 @@ -mod compiler; -mod config; -mod metadata; - -pub use compiler::{CompilerInput, CompilerInputSource, CompilerOutput, CompilerOutputContract}; -pub use config::{ForkConfig, ResetProviderConfig}; -pub use metadata::{ForkMetadata, Metadata}; diff --git a/crates/edr_provider/src/requests/hardhat/rpc_types/compiler.rs b/crates/edr_provider/src/requests/hardhat/rpc_types/compiler.rs deleted file mode 100644 index cbeb6b8ef2..0000000000 --- a/crates/edr_provider/src/requests/hardhat/rpc_types/compiler.rs +++ /dev/null @@ -1,136 +0,0 @@ -use edr_eth::HashMap; - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerInput { - language: String, - /// maps sourceName to content: - sources: HashMap, - settings: CompilerSettings, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerInputSource { - content: String, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -struct CompilerSettings { - #[serde(rename = "viaIR")] - via_ir: Option, - optimizer: OptimizerSettings, - metadata: Option, - /// mapping: source name -> (mapping: contract name -> compiler output - /// selections) - output_selection: HashMap>>, - evm_version: Option, - /// mapping: library file name -> (mapping: library name -> library content) - libraries: Option>>, - remappings: Option>, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -struct OptimizerSettings { - runs: Option, - enabled: Option, - details: Option, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -struct OptimizerDetails { - yul_details: YulDetails, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -struct YulDetails { - optimizer_steps: String, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -struct MetadataSettings { - use_literal_content: bool, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerOutput { - /// mapping: source name -> CompilerOutputSource - sources: HashMap, - /// mapping: source name -> (mapping: contract name -> - /// CompilerOutputContract) - contracts: HashMap>, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerOutputSource { - id: usize, - ast: serde_json::Value, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerOutputContract { - abi: serde_json::Value, - evm: CompilerOutputContractEvm, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerOutputContractEvm { - bytecode: CompilerOutputBytecode, - deployed_bytecode: CompilerOutputBytecode, - /// mapping: method signature -> method identifier - method_identifiers: HashMap, -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct CompilerOutputBytecode { - object: String, - opcodes: String, - source_map: String, - /// mapping: source name -> (mapping: library name -> LinkReferences) - link_references: HashMap>>, -} - -pub mod u64_that_must_be_20 { - pub fn serialize(val: &u64, s: S) -> Result - where - S: serde::Serializer, - { - if *val == 20 { - s.serialize_u64(*val) - } else { - use serde::ser::Error; - Err(S::Error::custom("value must be 20")) - } - } - - pub fn deserialize<'de, D>(deserializer: D) -> Result - where - D: serde::Deserializer<'de>, - { - let s: u64 = serde::de::Deserialize::deserialize(deserializer)?; - if s == 20 { - Ok(s) - } else { - use serde::de::Error; - Err(D::Error::custom("value must be 20")) - } - } -} - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct LinkReference { - start: usize, - #[serde(with = "u64_that_must_be_20")] - length: u64, -} diff --git a/crates/edr_provider/src/requests/hardhat/rpc_types/config.rs b/crates/edr_provider/src/requests/hardhat/rpc_types/config.rs deleted file mode 100644 index b6edbbcd7e..0000000000 --- a/crates/edr_provider/src/requests/hardhat/rpc_types/config.rs +++ /dev/null @@ -1,15 +0,0 @@ -use std::collections::HashMap; - -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -pub struct ResetProviderConfig { - pub forking: Option, -} - -/// Configuration for forking a blockchain -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct ForkConfig { - pub json_rpc_url: String, - pub block_number: Option, - pub http_headers: Option>, -} diff --git a/crates/edr_provider/src/requests/hardhat/rpc_types/metadata.rs b/crates/edr_provider/src/requests/hardhat/rpc_types/metadata.rs deleted file mode 100644 index 6fc3abda81..0000000000 --- a/crates/edr_provider/src/requests/hardhat/rpc_types/metadata.rs +++ /dev/null @@ -1,38 +0,0 @@ -use edr_eth::B256; - -/// Metadata about the provider instance. -#[derive(serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct Metadata { - /// A string identifying the version of Hardhat, for debugging purposes, - /// not meant to be displayed to users. - pub client_version: String, - /// The chain's id. Used to sign transactions. - pub chain_id: u64, - /// A 0x-prefixed hex-encoded 32 bytes id which uniquely identifies an - /// instance/run of Hardhat Network. Running Hardhat Network more than - /// once (even with the same version and parameters) will always result - /// in different `instanceId`s. Running `hardhat_reset` will change the - /// `instanceId` of an existing Hardhat Network. - pub instance_id: B256, - /// The latest block's number in Hardhat Network - pub latest_block_number: u64, - /// The latest block's hash in Hardhat Network - pub latest_block_hash: B256, - /// This field is only present when Hardhat Network is forking another - /// chain. - #[serde(skip_serializing_if = "Option::is_none")] - pub forked_network: Option, -} - -/// Metadata about the forked network. -#[derive(Clone, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct ForkMetadata { - /// The chainId of the network that is being forked - pub chain_id: u64, - /// The number of the block that the network forked from. - pub fork_block_number: u64, - /// The hash of the block that the network forked from. - pub fork_block_hash: B256, -} diff --git a/crates/edr_provider/src/requests/hardhat/state.rs b/crates/edr_provider/src/requests/hardhat/state.rs deleted file mode 100644 index 9e6157c1db..0000000000 --- a/crates/edr_provider/src/requests/hardhat/state.rs +++ /dev/null @@ -1,46 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{Address, Bytes, U256}; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_set_balance( - data: &mut ProviderData, - address: Address, - balance: U256, -) -> Result> { - data.set_balance(address, balance)?; - - Ok(true) -} - -pub fn handle_set_code( - data: &mut ProviderData, - address: Address, - code: Bytes, -) -> Result> { - data.set_code(address, code)?; - - Ok(true) -} - -pub fn handle_set_nonce( - data: &mut ProviderData, - address: Address, - nonce: u64, -) -> Result> { - data.set_nonce(address, nonce)?; - - Ok(true) -} - -pub fn handle_set_storage_at( - data: &mut ProviderData, - address: Address, - index: U256, - value: U256, -) -> Result> { - data.set_account_storage_slot(address, index, value)?; - - Ok(true) -} diff --git a/crates/edr_provider/src/requests/hardhat/transactions.rs b/crates/edr_provider/src/requests/hardhat/transactions.rs deleted file mode 100644 index d964fff120..0000000000 --- a/crates/edr_provider/src/requests/hardhat/transactions.rs +++ /dev/null @@ -1,22 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::B256; - -use crate::{data::ProviderData, ProviderError}; - -pub fn handle_drop_transaction( - data: &mut ProviderData, - transaction_hash: B256, -) -> Result> { - let was_removed = data.remove_pending_transaction(&transaction_hash).is_some(); - if was_removed { - return Ok(true); - } - - let was_transaction_mined = data.transaction_receipt(&transaction_hash)?.is_some(); - if was_transaction_mined { - Err(ProviderError::InvalidDropTransactionHash(transaction_hash)) - } else { - Ok(false) - } -} diff --git a/crates/edr_provider/src/requests/methods.rs b/crates/edr_provider/src/requests/methods.rs deleted file mode 100644 index b3bb2b1a69..0000000000 --- a/crates/edr_provider/src/requests/methods.rs +++ /dev/null @@ -1,512 +0,0 @@ -use edr_eth::{ - remote::{ - eth::CallRequest, - filter::{LogFilterOptions, SubscriptionType}, - BlockSpec, PreEip1898BlockSpec, StateOverrideOptions, - }, - serde::{optional_single_to_sequence, sequence_to_optional_single}, - transaction::EthTransactionRequest, - Address, Bytes, B256, U256, U64, -}; -use ethers_core::types::transaction::eip712::TypedData; - -use super::serde::RpcAddress; -use crate::requests::{ - debug::DebugTraceConfig, - hardhat::rpc_types::{CompilerInput, CompilerOutput, ResetProviderConfig}, -}; - -mod optional_block_spec { - use super::BlockSpec; - - pub fn latest() -> Option { - Some(BlockSpec::latest()) - } - - pub fn pending() -> Option { - Some(BlockSpec::pending()) - } -} - -/// for an invoking a method on a remote ethereum node -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(tag = "method", content = "params")] -pub enum MethodInvocation { - /// eth_accounts - #[serde(rename = "eth_accounts", with = "edr_eth::serde::empty_params")] - Accounts(()), - /// eth_blockNumber - #[serde(rename = "eth_blockNumber", with = "edr_eth::serde::empty_params")] - BlockNumber(()), - /// eth_call - #[serde(rename = "eth_call")] - Call( - CallRequest, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - #[serde(default, skip_serializing_if = "Option::is_none")] Option, - ), - /// eth_chainId - #[serde(rename = "eth_chainId", with = "edr_eth::serde::empty_params")] - ChainId(()), - /// eth_coinbase - #[serde(rename = "eth_coinbase", with = "edr_eth::serde::empty_params")] - Coinbase(()), - /// eth_estimateGas - #[serde(rename = "eth_estimateGas")] - EstimateGas( - CallRequest, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::pending" - )] - Option, - ), - /// eth_feeHistory - #[serde(rename = "eth_feeHistory")] - FeeHistory( - /// block count - U256, - /// newest block - BlockSpec, - /// reward percentiles - #[serde(default, skip_serializing_if = "Option::is_none")] - Option>, - ), - /// eth_gasPrice - #[serde(rename = "eth_gasPrice", with = "edr_eth::serde::empty_params")] - GasPrice(()), - /// eth_getBalance - #[serde(rename = "eth_getBalance")] - GetBalance( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getBlockByNumber - #[serde(rename = "eth_getBlockByNumber")] - GetBlockByNumber( - PreEip1898BlockSpec, - /// include transaction data - bool, - ), - /// eth_getBlockByHash - #[serde(rename = "eth_getBlockByHash")] - GetBlockByHash( - /// hash - B256, - /// include transaction data - bool, - ), - /// eth_getBlockTransactionCountByHash - #[serde( - rename = "eth_getBlockTransactionCountByHash", - with = "edr_eth::serde::sequence" - )] - GetBlockTransactionCountByHash(B256), - /// eth_getBlockTransactionCountByNumber - #[serde( - rename = "eth_getBlockTransactionCountByNumber", - with = "edr_eth::serde::sequence" - )] - GetBlockTransactionCountByNumber(PreEip1898BlockSpec), - /// eth_getCode - #[serde(rename = "eth_getCode")] - GetCode( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getFilterChanges - #[serde(rename = "eth_getFilterChanges", with = "edr_eth::serde::sequence")] - GetFilterChanges(U256), - /// eth_getFilterLogs - #[serde(rename = "eth_getFilterLogs", with = "edr_eth::serde::sequence")] - GetFilterLogs(U256), - /// eth_getLogs - #[serde(rename = "eth_getLogs", with = "edr_eth::serde::sequence")] - GetLogs(LogFilterOptions), - /// eth_getStorageAt - #[serde(rename = "eth_getStorageAt")] - GetStorageAt( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde(deserialize_with = "crate::requests::serde::deserialize_storage_slot")] U256, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getTransactionByBlockHashAndIndex - #[serde(rename = "eth_getTransactionByBlockHashAndIndex")] - GetTransactionByBlockHashAndIndex(B256, U256), - /// eth_getTransactionByBlockNumberAndIndex - // Matching Hardhat behavior in not accepting EIP-1898 block tags - // https://github.com/NomicFoundation/hardhat/blob/06474681f72e1cd895abbec419f6f10be3d8e4ed/packages/hardhat-core/src/internal/hardhat-network/provider/modules/eth.ts#L775 - #[serde(rename = "eth_getTransactionByBlockNumberAndIndex")] - GetTransactionByBlockNumberAndIndex(PreEip1898BlockSpec, U256), - /// eth_getTransactionByHash - #[serde(rename = "eth_getTransactionByHash", with = "edr_eth::serde::sequence")] - GetTransactionByHash(B256), - /// eth_getTransactionCount - #[serde(rename = "eth_getTransactionCount")] - GetTransactionCount( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde( - skip_serializing_if = "Option::is_none", - default = "optional_block_spec::latest" - )] - Option, - ), - /// eth_getTransactionReceipt - #[serde( - rename = "eth_getTransactionReceipt", - with = "edr_eth::serde::sequence" - )] - GetTransactionReceipt(B256), - /// eth_mining - #[serde(rename = "eth_mining", with = "edr_eth::serde::empty_params")] - Mining(()), - /// net_listening - #[serde(rename = "net_listening", with = "edr_eth::serde::empty_params")] - NetListening(()), - /// net_peerCount - #[serde(rename = "net_peerCount", with = "edr_eth::serde::empty_params")] - NetPeerCount(()), - /// net_version - #[serde(rename = "net_version", with = "edr_eth::serde::empty_params")] - NetVersion(()), - /// eth_newBlockFilter - #[serde(rename = "eth_newBlockFilter", with = "edr_eth::serde::empty_params")] - NewBlockFilter(()), - /// eth_newFilter - #[serde(rename = "eth_newFilter", with = "edr_eth::serde::sequence")] - NewFilter(LogFilterOptions), - /// eth_newPendingTransactionFilter - #[serde( - rename = "eth_newPendingTransactionFilter", - with = "edr_eth::serde::empty_params" - )] - NewPendingTransactionFilter(()), - /// eth_pendingTransactions - #[serde( - rename = "eth_pendingTransactions", - with = "edr_eth::serde::empty_params" - )] - PendingTransactions(()), - /// eth_sendRawTransaction - #[serde(rename = "eth_sendRawTransaction", with = "edr_eth::serde::sequence")] - SendRawTransaction(Bytes), - /// eth_sendTransaction - #[serde(rename = "eth_sendTransaction", with = "edr_eth::serde::sequence")] - SendTransaction(EthTransactionRequest), - /// eth_sign - #[serde(rename = "eth_sign", alias = "personal_sign")] - Sign( - Bytes, - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - ), - /// eth_signTypedData_v4 - #[serde(rename = "eth_signTypedData_v4")] - SignTypedDataV4( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde(deserialize_with = "crate::requests::serde::typed_data::deserialize")] TypedData, - ), - /// eth_subscribe - #[serde(rename = "eth_subscribe")] - Subscribe( - SubscriptionType, - #[serde(default, skip_serializing_if = "Option::is_none")] Option, - ), - /// eth_syncing - #[serde(rename = "eth_syncing", with = "edr_eth::serde::empty_params")] - Syncing(()), - /// eth_uninstallFilter - #[serde(rename = "eth_uninstallFilter", with = "edr_eth::serde::sequence")] - UninstallFilter(U256), - /// eth_unsubscribe - #[serde(rename = "eth_unsubscribe", with = "edr_eth::serde::sequence")] - Unsubscribe(U256), - /// web3_clientVersion - #[serde(rename = "web3_clientVersion", with = "edr_eth::serde::empty_params")] - Web3ClientVersion(()), - /// web3_sha3 - #[serde(rename = "web3_sha3", with = "edr_eth::serde::sequence")] - Web3Sha3(Bytes), - /// evm_increaseTime - #[serde(rename = "evm_increaseTime", with = "edr_eth::serde::sequence")] - EvmIncreaseTime(U64OrUsize), - /// evm_mine - #[serde( - rename = "evm_mine", - serialize_with = "optional_single_to_sequence", - deserialize_with = "sequence_to_optional_single" - )] - EvmMine(Option), - /// evm_revert - #[serde(rename = "evm_revert", with = "edr_eth::serde::sequence")] - EvmRevert(U64), - /// evm_setAutomine - #[serde(rename = "evm_setAutomine", with = "edr_eth::serde::sequence")] - EvmSetAutomine(bool), - /// evm_setBlockGasLimit - #[serde(rename = "evm_setBlockGasLimit", with = "edr_eth::serde::sequence")] - EvmSetBlockGasLimit(U64), - /// evm_setIntervalMining - #[serde(rename = "evm_setIntervalMining", with = "edr_eth::serde::sequence")] - EvmSetIntervalMining(IntervalConfig), - /// evm_setNextBlockTimestamp - #[serde( - rename = "evm_setNextBlockTimestamp", - with = "edr_eth::serde::sequence" - )] - EvmSetNextBlockTimestamp(U64OrUsize), - /// evm_snapshot - #[serde(rename = "evm_snapshot", with = "edr_eth::serde::empty_params")] - EvmSnapshot(()), - - // debug_traceTransaction - #[serde(rename = "debug_traceCall")] - DebugTraceCall( - CallRequest, - #[serde(default)] Option, - #[serde(default)] Option, - ), - // debug_traceTransaction - #[serde(rename = "debug_traceTransaction")] - DebugTraceTransaction(B256, #[serde(default)] Option), - - /// hardhat_addCompilationResult - #[serde(rename = "hardhat_addCompilationResult")] - AddCompilationResult( - /// solc version: - String, - CompilerInput, - CompilerOutput, - ), - /// hardhat_dropTransaction - #[serde(rename = "hardhat_dropTransaction", with = "edr_eth::serde::sequence")] - DropTransaction(B256), - /// hardhat_getAutomine - #[serde(rename = "hardhat_getAutomine", with = "edr_eth::serde::empty_params")] - GetAutomine(()), - /// hardhat_getStackTraceFailuresCount - #[serde( - rename = "hardhat_getStackTraceFailuresCount", - with = "edr_eth::serde::empty_params" - )] - GetStackTraceFailuresCount(()), - /// hardhat_impersonateAccount - #[serde( - rename = "hardhat_impersonateAccount", - with = "edr_eth::serde::sequence" - )] - ImpersonateAccount(RpcAddress), - /// hardhat_intervalMine - #[serde(rename = "hardhat_intervalMine", with = "edr_eth::serde::empty_params")] - IntervalMine(()), - /// hardhat_metadata - #[serde(rename = "hardhat_metadata", with = "edr_eth::serde::empty_params")] - Metadata(()), - /// hardhat_mine - #[serde(rename = "hardhat_mine")] - Mine( - /// block count: - #[serde(default, with = "edr_eth::serde::optional_u64")] - Option, - /// interval: - #[serde( - default, - skip_serializing_if = "Option::is_none", - with = "edr_eth::serde::optional_u64" - )] - Option, - ), - /// hardhat_reset - #[serde( - rename = "hardhat_reset", - serialize_with = "optional_single_to_sequence", - deserialize_with = "sequence_to_optional_single" - )] - Reset(Option), - /// hardhat_setBalance - #[serde(rename = "hardhat_setBalance")] - SetBalance( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde(deserialize_with = "crate::requests::serde::deserialize_quantity")] U256, - ), - /// hardhat_setCode - #[serde(rename = "hardhat_setCode")] - SetCode( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde(deserialize_with = "crate::requests::serde::deserialize_data")] Bytes, - ), - /// hardhat_setCoinbase - #[serde(rename = "hardhat_setCoinbase", with = "edr_eth::serde::sequence")] - SetCoinbase(#[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address), - /// hardhat_setLoggingEnabled - #[serde( - rename = "hardhat_setLoggingEnabled", - with = "edr_eth::serde::sequence" - )] - SetLoggingEnabled(bool), - /// hardhat_setMinGasPrice - #[serde(rename = "hardhat_setMinGasPrice", with = "edr_eth::serde::sequence")] - SetMinGasPrice(U256), - /// hardhat_setNextBlockBaseFeePerGas - #[serde( - rename = "hardhat_setNextBlockBaseFeePerGas", - with = "edr_eth::serde::sequence" - )] - SetNextBlockBaseFeePerGas(U256), - /// hardhat_setNonce - #[serde(rename = "hardhat_setNonce")] - SetNonce( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde( - deserialize_with = "crate::requests::serde::deserialize_nonce", - serialize_with = "edr_eth::serde::u64::serialize" - )] - u64, - ), - /// hardhat_setPrevRandao - #[serde(rename = "hardhat_setPrevRandao", with = "edr_eth::serde::sequence")] - SetPrevRandao(B256), - /// hardhat_setStorageAt - #[serde(rename = "hardhat_setStorageAt")] - SetStorageAt( - #[serde(deserialize_with = "crate::requests::serde::deserialize_address")] Address, - #[serde(deserialize_with = "crate::requests::serde::deserialize_storage_key")] U256, - #[serde(with = "crate::requests::serde::storage_value")] U256, - ), - /// hardhat_stopImpersonatingAccount - #[serde( - rename = "hardhat_stopImpersonatingAccount", - with = "edr_eth::serde::sequence" - )] - StopImpersonatingAccount(RpcAddress), -} - -impl MethodInvocation { - /// Retrieves the instance's method name. - pub fn method_name(&self) -> &'static str { - match self { - MethodInvocation::Accounts(_) => "eth_accounts", - MethodInvocation::BlockNumber(_) => "eth_blockNumber", - MethodInvocation::Call(_, _, _) => "eth_call", - MethodInvocation::ChainId(_) => "eth_chainId", - MethodInvocation::Coinbase(_) => "eth_coinbase", - MethodInvocation::EstimateGas(_, _) => "eth_estimateGas", - MethodInvocation::FeeHistory(_, _, _) => "eth_feeHistory", - MethodInvocation::GasPrice(_) => "eth_gasPrice", - MethodInvocation::GetBalance(_, _) => "eth_getBalance", - MethodInvocation::GetBlockByNumber(_, _) => "eth_getBlockByNumber", - MethodInvocation::GetBlockByHash(_, _) => "eth_getBlockByHash", - MethodInvocation::GetBlockTransactionCountByHash(_) => { - "eth_getBlockTransactionCountByHash" - } - MethodInvocation::GetBlockTransactionCountByNumber(_) => { - "eth_getBlockTransactionCountByNumber" - } - MethodInvocation::GetCode(_, _) => "eth_getCode", - MethodInvocation::GetFilterChanges(_) => "eth_getFilterChanges", - MethodInvocation::GetFilterLogs(_) => "eth_getFilterLogs", - MethodInvocation::GetLogs(_) => "eth_getLogs", - MethodInvocation::GetStorageAt(_, _, _) => "eth_getStorageAt", - MethodInvocation::GetTransactionByBlockHashAndIndex(_, _) => { - "eth_getTransactionByBlockHashAndIndex" - } - MethodInvocation::GetTransactionByBlockNumberAndIndex(_, _) => { - "eth_getTransactionByBlockNumberAndIndex" - } - MethodInvocation::GetTransactionByHash(_) => "eth_getTransactionByHash", - MethodInvocation::GetTransactionCount(_, _) => "eth_getTransactionCount", - MethodInvocation::GetTransactionReceipt(_) => "eth_getTransactionReceipt", - MethodInvocation::Mining(_) => "eth_mining", - MethodInvocation::NetListening(_) => "net_listening", - MethodInvocation::NetPeerCount(_) => "net_peerCount", - MethodInvocation::NetVersion(_) => "net_version", - MethodInvocation::NewBlockFilter(_) => "eth_newBlockFilter", - MethodInvocation::NewFilter(_) => "eth_newFilter", - MethodInvocation::NewPendingTransactionFilter(_) => "eth_newPendingTransactionFilter", - MethodInvocation::PendingTransactions(_) => "eth_pendingTransactions", - MethodInvocation::SendRawTransaction(_) => "eth_sendRawTransaction", - MethodInvocation::SendTransaction(_) => "eth_sendTransaction", - MethodInvocation::Sign(_, _) => "eth_sign", - MethodInvocation::SignTypedDataV4(_, _) => "eth_signTypedData_v4", - MethodInvocation::Subscribe(_, _) => "eth_subscribe", - MethodInvocation::Syncing(_) => "eth_syncing", - MethodInvocation::UninstallFilter(_) => "eth_uninstallFilter", - MethodInvocation::Unsubscribe(_) => "eth_unsubscribe", - MethodInvocation::Web3ClientVersion(_) => "web3_clientVersion", - MethodInvocation::Web3Sha3(_) => "web3_sha3", - MethodInvocation::EvmIncreaseTime(_) => "evm_increaseTime", - MethodInvocation::EvmMine(_) => "evm_mine", - MethodInvocation::EvmRevert(_) => "evm_revert", - MethodInvocation::EvmSetAutomine(_) => "evm_setAutomine", - MethodInvocation::EvmSetBlockGasLimit(_) => "evm_setBlockGasLimit", - MethodInvocation::EvmSetIntervalMining(_) => "evm_setIntervalMining", - MethodInvocation::EvmSetNextBlockTimestamp(_) => "evm_setNextBlockTimestamp", - MethodInvocation::EvmSnapshot(_) => "evm_snapshot", - MethodInvocation::DebugTraceCall(_, _, _) => "debug_traceCall", - MethodInvocation::DebugTraceTransaction(_, _) => "debug_traceTransaction", - MethodInvocation::AddCompilationResult(_, _, _) => "hardhat_addCompilationResult", - MethodInvocation::DropTransaction(_) => "hardhat_dropTransaction", - MethodInvocation::GetAutomine(_) => "hardhat_getAutomine", - MethodInvocation::GetStackTraceFailuresCount(_) => "hardhat_getStackTraceFailuresCount", - MethodInvocation::ImpersonateAccount(_) => "hardhat_impersonateAccount", - MethodInvocation::IntervalMine(_) => "hardhat_intervalMine", - MethodInvocation::Metadata(_) => "hardhat_metadata", - MethodInvocation::Mine(_, _) => "hardhat_mine", - MethodInvocation::Reset(_) => "hardhat_reset", - MethodInvocation::SetBalance(_, _) => "hardhat_setBalance", - MethodInvocation::SetCode(_, _) => "hardhat_setCode", - MethodInvocation::SetCoinbase(_) => "hardhat_setCoinbase", - MethodInvocation::SetLoggingEnabled(_) => "hardhat_setLoggingEnabled", - MethodInvocation::SetMinGasPrice(_) => "hardhat_setMinGasPrice", - MethodInvocation::SetNextBlockBaseFeePerGas(_) => "hardhat_setNextBlockBaseFeePerGas", - MethodInvocation::SetNonce(_, _) => "hardhat_setNonce", - MethodInvocation::SetPrevRandao(_) => "hardhat_setPrevRandao", - MethodInvocation::SetStorageAt(_, _, _) => "hardhat_setStorageAt", - MethodInvocation::StopImpersonatingAccount(_) => "hardhat_stopImpersonatingAccount", - } - } -} - -/// an input that can be either a single `u64` or an array of two `u64` values -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum IntervalConfig { - /// A fixed value; or disabled, when zero. - FixedOrDisabled(u64), - /// an array of two `u64` values - Range([u64; 2]), -} - -/// an input that can be either a U256 or a usize -#[derive(Clone, Debug, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(untagged)] -pub enum U64OrUsize { - /// usize - Usize(usize), - /// U256 - U64(U64), -} - -impl From for u64 { - fn from(either: U64OrUsize) -> Self { - match either { - U64OrUsize::U64(u) => u.as_limbs()[0], - U64OrUsize::Usize(u) => u as u64, - } - } -} diff --git a/crates/edr_provider/src/requests/serde.rs b/crates/edr_provider/src/requests/serde.rs deleted file mode 100644 index 4bf0a5d36b..0000000000 --- a/crates/edr_provider/src/requests/serde.rs +++ /dev/null @@ -1,622 +0,0 @@ -use core::fmt::Debug; -use std::{ - ops::{Deref, DerefMut}, - str::FromStr, -}; - -use edr_eth::{Address, Bytes, U256, U64}; -use serde::{Deserialize, Deserializer, Serialize}; - -use crate::ProviderError; - -#[derive(Clone, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Serialize)] -#[repr(transparent)] -pub struct RpcAddress(#[serde(deserialize_with = "deserialize_address")] pub Address); - -impl Deref for RpcAddress { - type Target = Address; - - #[inline] - fn deref(&self) -> &Self::Target { - &self.0 - } -} - -impl DerefMut for RpcAddress { - #[inline] - fn deref_mut(&mut self) -> &mut Self::Target { - &mut self.0 - } -} - -impl From
for RpcAddress { - fn from(address: Address) -> Self { - Self(address) - } -} - -const STORAGE_KEY_TOO_LARGE_ERROR_MESSAGE: &str = - "Storage key must not be greater than or equal to 2^256."; -const STORAGE_VALUE_INVALID_LENGTH_ERROR_MESSAGE: &str = - "Storage value must be exactly 32 bytes long."; -const UNSUPPORTED_METHOD: &str = "unknown variant"; - -pub enum InvalidRequestReason<'a> { - UnsupportedMethod { - method_name: &'a str, - }, - InvalidStorageKey { - method_name: &'a str, - error_message: &'a str, - }, - InvalidStorageValue { - method_name: &'a str, - error_message: &'a str, - }, - InvalidJson { - error_message: &'a str, - }, -} - -impl<'a> InvalidRequestReason<'a> { - pub fn new(json_request: &'a str, error_message: &'a str) -> Self { - if let Ok(request) = serde_json::from_str::>(json_request) { - if error_message.starts_with(STORAGE_KEY_TOO_LARGE_ERROR_MESSAGE) { - return InvalidRequestReason::InvalidStorageKey { - method_name: request.method, - error_message, - }; - } else if error_message.starts_with(STORAGE_VALUE_INVALID_LENGTH_ERROR_MESSAGE) { - return InvalidRequestReason::InvalidStorageValue { - method_name: request.method, - error_message, - }; - } else if error_message.starts_with(UNSUPPORTED_METHOD) { - return InvalidRequestReason::UnsupportedMethod { - method_name: request.method, - }; - } - } - - InvalidRequestReason::InvalidJson { error_message } - } - - pub fn error_code(&self) -> i16 { - match self { - InvalidRequestReason::UnsupportedMethod { .. } => -32004, - InvalidRequestReason::InvalidStorageKey { .. } - | InvalidRequestReason::InvalidStorageValue { .. } => -32000, - InvalidRequestReason::InvalidJson { .. } => -32602, - } - } - - pub fn error_message(&self) -> String { - match self { - InvalidRequestReason::UnsupportedMethod { method_name } => { - format!("Method {method_name} is not supported") - } - InvalidRequestReason::InvalidStorageKey { error_message, .. } - | InvalidRequestReason::InvalidStorageValue { error_message, .. } - | InvalidRequestReason::InvalidJson { error_message } => (*error_message).into(), - } - } - - /// Converts the invalid request reason into a provider error. - pub fn provider_error( - &self, - ) -> Option<(String, ProviderError)> { - match self { - InvalidRequestReason::InvalidJson { .. } => None, - InvalidRequestReason::InvalidStorageKey { - error_message, - method_name, - } - | InvalidRequestReason::InvalidStorageValue { - error_message, - method_name, - } => Some(( - (*method_name).to_string(), - ProviderError::InvalidInput((*error_message).to_string()), - )), - InvalidRequestReason::UnsupportedMethod { method_name } => Some(( - (*method_name).to_string(), - ProviderError::UnsupportedMethod { - method_name: (*method_name).to_string(), - }, - )), - } - } -} - -#[derive(Clone, Debug, Deserialize)] -struct RequestWithMethod<'a> { - method: &'a str, -} - -/// Helper function for deserializing the JSON-RPC address type. -pub(crate) fn deserialize_address<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result -where - DeserializerT: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize address argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : ADDRESS")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - if value.len() != 42 { - return Err(error_message()); - } - - Address::from_str(&value).map_err(|_error| error_message()) -} - -/// Helper function for deserializing the JSON-RPC data type. -pub(crate) fn deserialize_data<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result -where - DeserializerT: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize data argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : DATA")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - Bytes::from_str(&value).map_err(|_error| error_message()) -} - -/// Helper function for deserializing the JSON-RPC quantity type. -pub(crate) fn deserialize_quantity<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result -where - DeserializerT: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize quantity argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : QUANTITY")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - U256::from_str(&value).map_err(|_error| error_message()) -} - -/// Helper function for deserializing the JSON-RPC quantity type, specialized -/// for `u64` nonces. -pub(crate) fn deserialize_nonce<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result -where - DeserializerT: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize quantity argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : QUANTITY")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - if value.len() > 18 { - return Err(serde::de::Error::custom(format!( - "Nonce must not be greater than or equal to 2^64. Received {value}" - ))); - } - - U64::from_str(&value).map_or_else( - |_error| Err(error_message()), - |value| Ok(value.as_limbs()[0]), - ) -} - -/// Helper function for deserializing the JSON-RPC quantity type, specialized -/// for a storage key. -pub(crate) fn deserialize_storage_key<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result -where - DeserializerT: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize quantity argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : QUANTITY")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - if value.len() > 66 { - return Err(serde::de::Error::custom(format!( - "{STORAGE_KEY_TOO_LARGE_ERROR_MESSAGE} Received {value}." - ))); - } - - U256::from_str(&value).map_err(|_error| error_message()) -} - -/// Helper function for deserializing the JSON-RPC storage slot type. -pub(crate) fn deserialize_storage_slot<'de, D>(deserializer: D) -> Result -where - D: Deserializer<'de>, -{ - let value = String::deserialize(deserializer).map_err(|err| { - if let Some(value) = extract_value_from_serde_json_error(err.to_string().as_str()) { - serde::de::Error::custom(format!( - "Storage slot argument must be a string, got '{value}'" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize storage slot argument into string with error: '{err}'" - )) - } - })?; - - if value.is_empty() { - return Err(serde::de::Error::custom( - "Storage slot argument cannot be an empty string".to_string(), - )); - } - - let is_zero_x_prefixed = value.starts_with("0x"); - let expected_length = 2 * 32 + if is_zero_x_prefixed { 2 } else { 0 }; - - if value.len() > expected_length { - let explanation = if is_zero_x_prefixed { - "(\"0x\" + 32 bytes)" - } else { - "(32 bytes)" - }; - return Err(serde::de::Error::custom(format!( - "Storage slot argument must have a length of at most {expected_length} {explanation}, but '{value}' has a length of {}'", - value.len() - ))); - } - - let result = if is_zero_x_prefixed { - U256::from_str_radix(&value[2..], 16).map_err(|_err| invalid_hex::(&value))? - } else { - U256::from_str_radix(&value, 16).map_err(|_err| invalid_hex::(&value))? - }; - - Ok(result) -} - -/// Helper module for serializing/deserializing the JSON-RPC data type, -/// specialized for a storage value. -pub(crate) mod storage_value { - use serde::Serializer; - - use super::{ - extract_value_from_serde_json_error, Deserialize, Deserializer, FromStr, - STORAGE_VALUE_INVALID_LENGTH_ERROR_MESSAGE, U256, - }; - - /// Helper function for deserializing the JSON-RPC data type, specialized - /// for a storage value. - pub fn deserialize<'de, DeserializerT>( - deserializer: DeserializerT, - ) -> Result - where - DeserializerT: Deserializer<'de>, - { - let value = String::deserialize(deserializer).map_err(|error| { - if let Some(value) = extract_value_from_serde_json_error(error.to_string().as_str()) { - serde::de::Error::custom(format!( - "This method only supports strings but input was: {value}" - )) - } else { - serde::de::Error::custom(format!( - "Failed to deserialize quantity argument into string with error: '{error}'" - )) - } - })?; - - let error_message = - || serde::de::Error::custom(format!("invalid value \"{value}\" supplied to : DATA")); - - if !value.starts_with("0x") { - return Err(error_message()); - } - - // Remove 2 characters for the "0x" prefix and divide by 2 because each byte is - // represented by 2 hex characters. - let length = (value.len() - 2) / 2; - if length != 32 { - return Err(serde::de::Error::custom(format!( - "{STORAGE_VALUE_INVALID_LENGTH_ERROR_MESSAGE} Received {value}, which is {length} bytes long." - ))); - } - - U256::from_str(&value).map_err(|_error| error_message()) - } - - /// Serialize U256 with padding to make sure it's accepted by - /// `deserialize_storage_value` which expects padded values (as opposed to - /// the Ethereum JSON-RPC spec which expects values without padding). - pub fn serialize( - value: &U256, - serializer: SerializerT, - ) -> Result - where - SerializerT: Serializer, - { - let padded = format!("0x{value:0>64x}"); - serializer.serialize_str(&padded) - } -} - -/// Helper module for deserializing the payload of an `eth_signTypedData_v4` -/// request. The types and the deserializer implementation are a patched version -/// of [`ethers_core`](https://github.com/gakonst/ethers-rs/blob/5394d899adca736a602e316e6f0c06fdb5aa64b9/ethers-core/src/types/transaction/eip712.rs) -/// in order to support hex strings for the salt parameter. -/// `ethers_core` is copyright (c) 2020 Georgios Konstantopoulos and is licensed -/// under the MIT License. -pub(crate) mod typed_data { - use std::collections::BTreeMap; - - use edr_eth::Bytes; - use ethers_core::types::transaction::eip712::{EIP712Domain, TypedData, Types}; - use serde::{Deserialize, Deserializer}; - - #[derive(Debug, Deserialize)] - #[serde(rename_all = "camelCase")] - struct PatchedEIP712Domain { - #[serde(default, skip_serializing_if = "Option::is_none")] - name: Option, - - #[serde(default, skip_serializing_if = "Option::is_none")] - version: Option, - - #[serde( - default, - skip_serializing_if = "Option::is_none", - deserialize_with = "ethers_core::types::serde_helpers::deserialize_stringified_numeric_opt" - )] - chain_id: Option, - - #[serde(default, skip_serializing_if = "Option::is_none")] - verifying_contract: Option, - - // Changed salt from `[u8; 32]` to `Bytes` to support hex strings. - #[serde(default, skip_serializing_if = "Option::is_none")] - salt: Option, - } - - #[derive(Debug, thiserror::Error)] - #[error("The salt parameter must be exactly 32 bytes long.")] - struct InvalidSaltError; - - impl TryFrom for EIP712Domain { - type Error = InvalidSaltError; - - fn try_from(value: PatchedEIP712Domain) -> Result { - let PatchedEIP712Domain { - name, - version, - chain_id, - verifying_contract, - salt, - } = value; - - let salt: Option<[u8; 32]> = salt - .map(|bytes| { - let vec: Vec = bytes.into(); - vec.try_into().map_err(|_error| InvalidSaltError {}) - }) - .transpose()?; - - Ok(EIP712Domain { - name, - version, - chain_id, - verifying_contract, - salt, - }) - } - } - - #[derive(Deserialize)] - struct TypedDataHelper { - domain: PatchedEIP712Domain, - types: Types, - #[serde(rename = "primaryType")] - primary_type: String, - message: BTreeMap, - } - - #[derive(Deserialize)] - #[serde(untagged)] - enum Type { - Val(TypedDataHelper), - String(String), - } - - fn invalid_json_error<'de, DeserializerT: Deserializer<'de>>( - _error: impl std::error::Error, - ) -> DeserializerT::Error { - serde::de::Error::custom("The message parameter is an invalid JSON.".to_string()) - } - - /// Helper function for deserializing the payload of an - /// `eth_signTypedData_v4` request. - pub(crate) fn deserialize<'de, DeserializerT>( - deserializer: DeserializerT, - ) -> Result - where - DeserializerT: Deserializer<'de>, - { - match Type::deserialize(deserializer).map_err(invalid_json_error::<'de, DeserializerT>)? { - Type::Val(v) => { - let TypedDataHelper { - domain, - types, - primary_type, - message, - } = v; - Ok(TypedData { - domain: domain.try_into().map_err(serde::de::Error::custom)?, - types, - primary_type, - message, - }) - } - Type::String(s) => { - let TypedDataHelper { - domain, - types, - primary_type, - message, - } = serde_json::from_str(&s).map_err(invalid_json_error::<'de, DeserializerT>)?; - Ok(TypedData { - domain: domain.try_into().map_err(serde::de::Error::custom)?, - types, - primary_type, - message, - }) - } - } - } -} - -fn invalid_hex<'de, D>(value: &str) -> D::Error -where - D: Deserializer<'de>, -{ - serde::de::Error::custom(format!( - "Storage slot argument must be a valid hexadecimal, got '{value}'" - )) -} - -fn extract_value_from_serde_json_error(error_message: &str) -> Option<&str> { - let start = error_message.find('`')?; - let end = error_message.rfind('`')?; - if start < end { - Some(&error_message[start + 1..end]) - } else { - None - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn extract_value_from_error_message() { - assert_eq!( - extract_value_from_serde_json_error("invalid type: integer `0`, expected a string"), - Some("0"), - ); - assert_eq!(extract_value_from_serde_json_error(""), None); - assert_eq!(extract_value_from_serde_json_error("`"), None); - assert_eq!(extract_value_from_serde_json_error("``"), Some("")); - assert_eq!( - extract_value_from_serde_json_error("foo`bar`baz"), - Some("bar") - ); - assert_eq!(extract_value_from_serde_json_error("`foobarbaz"), None); - assert_eq!(extract_value_from_serde_json_error("foobarbaz`"), None); - assert_eq!(extract_value_from_serde_json_error("foo`barbaz"), None); - } - - #[test] - fn deserialize_too_large_nonce() { - let json = r#""0xffffffffffffffffff""#; - - let mut deserializer = serde_json::Deserializer::from_str(json); - let error = deserialize_nonce(&mut deserializer) - .unwrap_err() - .to_string(); - - assert!( - error.contains("Nonce must not be greater than or equal to 2^64."), - "actual: {error}" - ); - } - - #[test] - fn serialize_storage_value_round_trip() { - #[derive(Serialize, Deserialize)] - struct Test { - #[serde(with = "storage_value")] - n: U256, - } - - let u256_json = r#""0x313f922be1649cec058ec0f076664500c78bdc0b""#; - let n: U256 = serde_json::from_str(u256_json).unwrap(); - - let test = Test { n }; - - let json = serde_json::to_string(&test).unwrap(); - assert!(json.contains("0x000000000000000000000000313f922be1649cec058ec0f076664500c78bdc0b")); - - let parsed = serde_json::from_str::(&json).unwrap(); - - assert_eq!(parsed.n, n); - } -} diff --git a/crates/edr_provider/src/requests/validation.rs b/crates/edr_provider/src/requests/validation.rs deleted file mode 100644 index bf0516a71e..0000000000 --- a/crates/edr_provider/src/requests/validation.rs +++ /dev/null @@ -1,265 +0,0 @@ -use core::fmt::Debug; - -use edr_eth::{ - access_list::AccessListItem, - remote::{eth::CallRequest, BlockSpec, BlockTag, PreEip1898BlockSpec}, - transaction::{EthTransactionRequest, SignedTransaction}, - Address, SpecId, B256, U256, -}; -use edr_evm::Bytes; - -use crate::ProviderError; - -/// Data used for validating a transaction complies with a [`SpecId`]. -pub struct SpecValidationData<'data> { - pub gas_price: Option<&'data U256>, - pub max_fee_per_gas: Option<&'data U256>, - pub max_priority_fee_per_gas: Option<&'data U256>, - pub access_list: Option<&'data Vec>, - pub blobs: Option<&'data Vec>, - pub blob_hashes: Option<&'data Vec>, -} - -impl<'data> From<&'data EthTransactionRequest> for SpecValidationData<'data> { - fn from(value: &'data EthTransactionRequest) -> Self { - Self { - gas_price: value.gas_price.as_ref(), - max_fee_per_gas: value.max_fee_per_gas.as_ref(), - max_priority_fee_per_gas: value.max_priority_fee_per_gas.as_ref(), - access_list: value.access_list.as_ref(), - blobs: value.blobs.as_ref(), - blob_hashes: value.blob_hashes.as_ref(), - } - } -} - -impl<'data> From<&'data CallRequest> for SpecValidationData<'data> { - fn from(value: &'data CallRequest) -> Self { - Self { - gas_price: value.gas_price.as_ref(), - max_fee_per_gas: value.max_fee_per_gas.as_ref(), - max_priority_fee_per_gas: value.max_priority_fee_per_gas.as_ref(), - access_list: value.access_list.as_ref(), - blobs: value.blobs.as_ref(), - blob_hashes: value.blob_hashes.as_ref(), - } - } -} - -impl<'data> From<&'data SignedTransaction> for SpecValidationData<'data> { - fn from(value: &'data SignedTransaction) -> Self { - match value { - SignedTransaction::PreEip155Legacy(tx) => Self { - gas_price: Some(&tx.gas_price), - max_fee_per_gas: None, - max_priority_fee_per_gas: None, - access_list: None, - blobs: None, - blob_hashes: None, - }, - SignedTransaction::PostEip155Legacy(tx) => Self { - gas_price: Some(&tx.gas_price), - max_fee_per_gas: None, - max_priority_fee_per_gas: None, - access_list: None, - blobs: None, - blob_hashes: None, - }, - SignedTransaction::Eip2930(tx) => Self { - gas_price: Some(&tx.gas_price), - max_fee_per_gas: None, - max_priority_fee_per_gas: None, - access_list: Some(tx.access_list.0.as_ref()), - blobs: None, - blob_hashes: None, - }, - SignedTransaction::Eip1559(tx) => Self { - gas_price: None, - max_fee_per_gas: Some(&tx.max_fee_per_gas), - max_priority_fee_per_gas: Some(&tx.max_priority_fee_per_gas), - access_list: Some(tx.access_list.0.as_ref()), - blobs: None, - blob_hashes: None, - }, - SignedTransaction::Eip4844(tx) => Self { - gas_price: None, - max_fee_per_gas: Some(&tx.max_fee_per_gas), - max_priority_fee_per_gas: Some(&tx.max_priority_fee_per_gas), - access_list: Some(tx.access_list.0.as_ref()), - blobs: None, - blob_hashes: Some(tx.blob_hashes.as_ref()), - }, - } - } -} - -pub fn validate_transaction_spec( - spec_id: SpecId, - data: SpecValidationData<'_>, -) -> Result<(), ProviderError> { - let SpecValidationData { - gas_price, - max_fee_per_gas, - max_priority_fee_per_gas, - access_list, - blobs, - blob_hashes, - } = data; - - if spec_id < SpecId::LONDON && (max_fee_per_gas.is_some() || max_priority_fee_per_gas.is_some()) - { - return Err(ProviderError::UnsupportedEIP1559Parameters { - current_hardfork: spec_id, - minimum_hardfork: SpecId::BERLIN, - }); - } - - if spec_id < SpecId::BERLIN && access_list.is_some() { - return Err(ProviderError::UnsupportedAccessListParameter { - current_hardfork: spec_id, - minimum_hardfork: SpecId::BERLIN, - }); - } - - if gas_price.is_some() { - if max_fee_per_gas.is_some() { - return Err(ProviderError::InvalidTransactionInput( - "Cannot send both gasPrice and maxFeePerGas params".to_string(), - )); - } - - if max_priority_fee_per_gas.is_some() { - return Err(ProviderError::InvalidTransactionInput( - "Cannot send both gasPrice and maxPriorityFeePerGas".to_string(), - )); - } - } - - if let Some(max_fee_per_gas) = max_fee_per_gas { - if let Some(max_priority_fee_per_gas) = max_priority_fee_per_gas { - if max_priority_fee_per_gas > max_fee_per_gas { - return Err(ProviderError::InvalidTransactionInput(format!( - "maxPriorityFeePerGas ({max_priority_fee_per_gas}) is bigger than maxFeePerGas ({max_fee_per_gas})"), - )); - } - } - } - - if blobs.is_some() || blob_hashes.is_some() { - return Err(ProviderError::Eip4844TransactionUnsupported); - } - - Ok(()) -} - -pub fn validate_call_request( - spec_id: SpecId, - call_request: &CallRequest, - block_spec: &BlockSpec, -) -> Result<(), ProviderError> { - validate_post_merge_block_tags(spec_id, block_spec)?; - - validate_transaction_and_call_request( - spec_id, - <&CallRequest as Into>>::into(call_request), - ) -} - -pub fn validate_transaction_and_call_request<'a, LoggerErrorT: Debug>( - spec_id: SpecId, - validation_data: impl Into>, -) -> Result<(), ProviderError> { - validate_transaction_spec(spec_id, validation_data.into()).map_err(|err| match err { - ProviderError::UnsupportedAccessListParameter { - minimum_hardfork, .. - } => ProviderError::InvalidArgument(format!("\ -Access list received but is not supported by the current hardfork. - -You can use them by running Hardhat Network with 'hardfork' {minimum_hardfork:?} or later. - ")), - ProviderError::UnsupportedEIP1559Parameters { - minimum_hardfork, .. - } => ProviderError::InvalidArgument(format!("\ -EIP-1559 style fee params (maxFeePerGas or maxPriorityFeePerGas) received but they are not supported by the current hardfork. - -You can use them by running Hardhat Network with 'hardfork' {minimum_hardfork:?} or later. - ")), - err => err, - }) -} - -pub fn validate_eip3860_max_initcode_size( - spec_id: SpecId, - allow_unlimited_contract_code_size: bool, - to: &Option
, - data: &Bytes, -) -> Result<(), ProviderError> { - if spec_id < SpecId::SHANGHAI || to.is_some() || allow_unlimited_contract_code_size { - return Ok(()); - } - - if data.len() > edr_evm::MAX_INITCODE_SIZE { - return Err(ProviderError::InvalidArgument(format!(" -Trying to send a deployment transaction whose init code length is {}. The max length allowed by EIP-3860 is {}. - -Enable the 'allowUnlimitedContractSize' option to allow init codes of any length.", data.len(), edr_evm::MAX_INITCODE_SIZE))); - } - - Ok(()) -} - -pub enum ValidationBlockSpec<'a> { - PreEip1898(&'a PreEip1898BlockSpec), - PostEip1898(&'a BlockSpec), -} - -impl<'a> From<&'a PreEip1898BlockSpec> for ValidationBlockSpec<'a> { - fn from(value: &'a PreEip1898BlockSpec) -> Self { - Self::PreEip1898(value) - } -} - -impl<'a> From<&'a BlockSpec> for ValidationBlockSpec<'a> { - fn from(value: &'a BlockSpec) -> Self { - Self::PostEip1898(value) - } -} - -impl<'a> From> for BlockSpec { - fn from(value: ValidationBlockSpec<'a>) -> Self { - match value { - ValidationBlockSpec::PreEip1898(PreEip1898BlockSpec::Number(block_number)) => { - BlockSpec::Number(*block_number) - } - ValidationBlockSpec::PreEip1898(PreEip1898BlockSpec::Tag(block_tag)) => { - BlockSpec::Tag(*block_tag) - } - ValidationBlockSpec::PostEip1898(block_spec) => block_spec.clone(), - } - } -} - -pub fn validate_post_merge_block_tags<'a, LoggerErrorT: Debug>( - hardfork: SpecId, - block_spec: impl Into>, -) -> Result<(), ProviderError> { - let block_spec: ValidationBlockSpec<'a> = block_spec.into(); - - if hardfork < SpecId::MERGE { - match block_spec { - ValidationBlockSpec::PreEip1898(PreEip1898BlockSpec::Tag( - tag @ (BlockTag::Safe | BlockTag::Finalized), - )) - | ValidationBlockSpec::PostEip1898(BlockSpec::Tag( - tag @ (BlockTag::Safe | BlockTag::Finalized), - )) => { - return Err(ProviderError::InvalidBlockTag { - block_tag: *tag, - spec: hardfork, - }); - } - _ => (), - } - } - Ok(()) -} diff --git a/crates/edr_provider/src/snapshot.rs b/crates/edr_provider/src/snapshot.rs deleted file mode 100644 index 6a21e7e712..0000000000 --- a/crates/edr_provider/src/snapshot.rs +++ /dev/null @@ -1,21 +0,0 @@ -use std::time::Instant; - -use edr_eth::{Address, U256}; -use edr_evm::{state::IrregularState, MemPool, RandomHashGenerator}; -use rpds::HashTrieMapSync; - -use crate::data::StateId; - -pub(crate) struct Snapshot { - pub block_number: u64, - pub block_number_to_state_id: HashTrieMapSync, - pub block_time_offset_seconds: i64, - pub coinbase: Address, - pub irregular_state: IrregularState, - pub mem_pool: MemPool, - pub next_block_base_fee_per_gas: Option, - pub next_block_timestamp: Option, - pub parent_beacon_block_root_generator: RandomHashGenerator, - pub prev_randao_generator: RandomHashGenerator, - pub time: Instant, -} diff --git a/crates/edr_provider/src/subscribe.rs b/crates/edr_provider/src/subscribe.rs deleted file mode 100644 index b10169f32a..0000000000 --- a/crates/edr_provider/src/subscribe.rs +++ /dev/null @@ -1,25 +0,0 @@ -use dyn_clone::DynClone; -use edr_eth::{remote::filter::LogOutput, B256, U256}; -use edr_evm::{blockchain::BlockchainError, BlockAndTotalDifficulty}; - -/// Subscription event. -#[derive(Clone, Debug)] -pub struct SubscriptionEvent { - pub filter_id: U256, - pub result: SubscriptionEventData, -} - -/// Subscription event data. -#[derive(Clone, Debug)] -pub enum SubscriptionEventData { - Logs(Vec), - NewHeads(BlockAndTotalDifficulty), - NewPendingTransactions(B256), -} - -/// Supertrait for subscription callbacks. -pub trait SyncSubscriberCallback: Fn(SubscriptionEvent) + DynClone + Send + Sync {} - -impl SyncSubscriberCallback for F where F: Fn(SubscriptionEvent) + DynClone + Send + Sync {} - -dyn_clone::clone_trait_object!(SyncSubscriberCallback); diff --git a/crates/edr_provider/src/test_utils.rs b/crates/edr_provider/src/test_utils.rs deleted file mode 100644 index a68ec41031..0000000000 --- a/crates/edr_provider/src/test_utils.rs +++ /dev/null @@ -1,281 +0,0 @@ -use std::{convert::Infallible, num::NonZeroU64, time::SystemTime}; - -use anyhow::anyhow; -use edr_eth::{ - block::{miner_reward, BlobGas, BlockOptions}, - remote::{PreEip1898BlockSpec, RpcClient}, - signature::secret_key_from_str, - spec::chain_hardfork_activations, - trie::KECCAK_NULL_RLP, - withdrawal::Withdrawal, - Address, HashMap, SpecId, U256, -}; -use edr_evm::{ - alloy_primitives::U160, - blockchain::{Blockchain, ForkedBlockchain}, - state::IrregularState, - Block, BlockBuilder, CfgEnv, CfgEnvWithHandlerCfg, DebugContext, ExecutionResultWithContext, - RandomHashGenerator, RemoteBlock, -}; - -use super::*; -use crate::{config::MiningConfig, requests::hardhat::rpc_types::ForkConfig}; - -pub const TEST_SECRET_KEY: &str = - "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"; - -// Address 0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826 -pub const TEST_SECRET_KEY_SIGN_TYPED_DATA_V4: &str = - "0xc85ef7d79691fe79573b1a7064c19c1a9819ebdbd1faaab1a8ec92344438aaf4"; - -pub const FORK_BLOCK_NUMBER: u64 = 18_725_000; - -/// Constructs a test config with a single account with 1 ether -pub fn create_test_config() -> ProviderConfig { - create_test_config_with_fork(None) -} - -pub fn one_ether() -> U256 { - U256::from(10).pow(U256::from(18)) -} - -pub fn create_test_config_with_fork(fork: Option) -> ProviderConfig { - ProviderConfig { - accounts: vec![ - AccountConfig { - secret_key: secret_key_from_str(TEST_SECRET_KEY) - .expect("should construct secret key from string"), - balance: one_ether(), - }, - AccountConfig { - secret_key: secret_key_from_str(TEST_SECRET_KEY_SIGN_TYPED_DATA_V4) - .expect("should construct secret key from string"), - balance: one_ether(), - }, - ], - allow_blocks_with_same_timestamp: false, - allow_unlimited_contract_size: false, - bail_on_call_failure: false, - bail_on_transaction_failure: false, - // SAFETY: literal is non-zero - block_gas_limit: unsafe { NonZeroU64::new_unchecked(30_000_000) }, - chain_id: 123, - chains: HashMap::new(), - coinbase: Address::from(U160::from(1)), - fork, - genesis_accounts: HashMap::new(), - hardfork: SpecId::LATEST, - initial_base_fee_per_gas: Some(U256::from(1000000000)), - initial_blob_gas: Some(BlobGas { - gas_used: 0, - excess_gas: 0, - }), - initial_date: Some(SystemTime::now()), - initial_parent_beacon_block_root: Some(KECCAK_NULL_RLP), - min_gas_price: U256::ZERO, - mining: MiningConfig::default(), - network_id: 123, - cache_dir: edr_defaults::CACHE_DIR.into(), - } -} - -/// Retrieves the pending base fee per gas from the provider data. -pub fn pending_base_fee( - data: &mut ProviderData, -) -> Result> { - let block = data.mine_pending_block()?.block; - - let base_fee = block - .header() - .base_fee_per_gas - .unwrap_or_else(|| U256::from(1)); - - Ok(base_fee) -} - -/// Runs a full remote block, asserting that the mined block matches the remote -/// block. -pub async fn run_full_block(url: String, block_number: u64, chain_id: u64) -> anyhow::Result<()> { - let runtime = tokio::runtime::Handle::current(); - let default_config = create_test_config_with_fork(Some(ForkConfig { - json_rpc_url: url.clone(), - block_number: Some(block_number - 1), - http_headers: None, - })); - - let replay_block = { - let rpc_client = RpcClient::new(&url, default_config.cache_dir.clone(), None)?; - - let block = rpc_client - .get_block_by_number_with_transaction_data(PreEip1898BlockSpec::Number(block_number)) - .await?; - - RemoteBlock::new(block, Arc::new(rpc_client), runtime.clone())? - }; - - let rpc_client = RpcClient::new(&url, default_config.cache_dir.clone(), None)?; - let mut irregular_state = IrregularState::default(); - let state_root_generator = Arc::new(parking_lot::Mutex::new(RandomHashGenerator::with_seed( - edr_defaults::STATE_ROOT_HASH_SEED, - ))); - let hardfork_activation_overrides = HashMap::new(); - - let hardfork_activations = - chain_hardfork_activations(chain_id).ok_or(anyhow!("Unsupported chain id"))?; - - let spec_id = hardfork_activations - .hardfork_at_block_number(block_number) - .ok_or(anyhow!("Unsupported block number"))?; - - let blockchain = ForkedBlockchain::new( - runtime.clone(), - Some(chain_id), - spec_id, - Arc::new(rpc_client), - Some(block_number - 1), - &mut irregular_state, - state_root_generator, - &hardfork_activation_overrides, - ) - .await?; - - let mut cfg = CfgEnv::default(); - cfg.chain_id = chain_id; - cfg.disable_eip3607 = true; - - let cfg = CfgEnvWithHandlerCfg::new_with_spec_id(cfg, spec_id); - - let parent = blockchain.last_block()?; - let replay_header = replay_block.header(); - - let mut builder = BlockBuilder::new( - cfg, - &parent, - BlockOptions { - beneficiary: Some(replay_header.beneficiary), - gas_limit: Some(replay_header.gas_limit), - extra_data: Some(replay_header.extra_data.clone()), - mix_hash: Some(replay_header.mix_hash), - nonce: Some(replay_header.nonce), - parent_beacon_block_root: replay_header.parent_beacon_block_root, - state_root: Some(replay_header.state_root), - timestamp: Some(replay_header.timestamp), - withdrawals: replay_block.withdrawals().map(<[Withdrawal]>::to_vec), - ..BlockOptions::default() - }, - None, - )?; - - let mut state = - blockchain.state_at_block_number(block_number - 1, irregular_state.state_overrides())?; - - for transaction in replay_block.transactions() { - let debug_context: Option> = None; - let ExecutionResultWithContext { - result, - evm_context: _, - } = builder.add_transaction(&blockchain, &mut state, transaction.clone(), debug_context); - - result?; - } - - let rewards = vec![( - replay_header.beneficiary, - miner_reward(spec_id).unwrap_or(U256::ZERO), - )]; - let mined_block = builder.finalize(&mut state, rewards)?; - - let mined_header = mined_block.block.header(); - for (expected, actual) in replay_block - .transaction_receipts()? - .into_iter() - .zip(mined_block.block.transaction_receipts().iter()) - { - debug_assert_eq!( - expected.block_number, - actual.block_number, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.transaction_hash, - actual.transaction_hash, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.transaction_index, - actual.transaction_index, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.from, - actual.from, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.to, - actual.to, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.contract_address, - actual.contract_address, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.gas_used, - actual.gas_used, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.effective_gas_price, - actual.effective_gas_price, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.cumulative_gas_used, - actual.cumulative_gas_used, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - if expected.logs_bloom != actual.logs_bloom { - for (expected, actual) in expected.logs.iter().zip(actual.logs.iter()) { - debug_assert_eq!( - expected.inner.address, - actual.inner.address, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.inner.topics(), - actual.inner.topics(), - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - debug_assert_eq!( - expected.inner.data.data, - actual.inner.data.data, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - } - } - debug_assert_eq!( - expected.data, - actual.data, - "{:?}", - replay_block.transactions()[expected.transaction_index as usize] - ); - } - - assert_eq!(mined_header, replay_header); - - Ok(()) -} diff --git a/crates/edr_provider/tests/common.rs b/crates/edr_provider/tests/common.rs deleted file mode 100644 index 2120f1d6da..0000000000 --- a/crates/edr_provider/tests/common.rs +++ /dev/null @@ -1,45 +0,0 @@ -pub fn help_test_method_invocation_serde(call: MethodInvocation) -where - MethodInvocation: - PartialEq + Clone + std::fmt::Debug + serde::de::DeserializeOwned + serde::Serialize, -{ - help_test_method_invocation_serde_with_expected(call.clone(), call); -} - -#[allow(clippy::type_complexity)] -/// # Panics -/// -/// Will panic if an assertion fails -pub fn help_test_method_invocation_serde_with_expected( - call: MethodInvocation, - expected: MethodInvocation, -) where - MethodInvocation: PartialEq + std::fmt::Debug + serde::de::DeserializeOwned + serde::Serialize, -{ - // validate that variations of MethodInvocation which have single values can - // still be deserialized when presented with `params` as a vector rather - // than a single value: - #[derive(Debug, serde::Deserialize)] - struct MethodInvocationStructWithUntypedParams { - #[allow(dead_code)] - method: String, - #[allow(dead_code)] - params: Vec, - } - #[derive(Debug, serde::Deserialize)] - #[serde(untagged)] - enum MethodInvocationEnumWithUntypedParams { - Eth(MethodInvocationStructWithUntypedParams), - Hardhat(MethodInvocationStructWithUntypedParams), - } - - let json = serde_json::json!(call).to_string(); - - serde_json::from_str::(&json).unwrap_or_else(|_| { - panic!("should have successfully deserialized, with params as a Vec, json {json}") - }); - - let call_decoded: MethodInvocation = serde_json::from_str(&json) - .unwrap_or_else(|error| panic!("failed to deserialized json {json} due to error: {error}")); - assert_eq!(expected, call_decoded); -} diff --git a/crates/edr_provider/tests/eth_request_serialization.rs b/crates/edr_provider/tests/eth_request_serialization.rs deleted file mode 100644 index c8eb38c721..0000000000 --- a/crates/edr_provider/tests/eth_request_serialization.rs +++ /dev/null @@ -1,517 +0,0 @@ -mod common; - -use edr_eth::{ - remote::{ - eth::CallRequest, - filter::{LogFilterOptions, LogOutput, OneOrMore}, - BlockSpec, BlockTag, PreEip1898BlockSpec, - }, - transaction::EthTransactionRequest, - Address, Bytes, B256, U256, U64, -}; -use edr_evm::alloy_primitives::U160; -use edr_provider::{IntervalConfigRequest, MethodInvocation, U64OrUsize}; - -use crate::common::{ - help_test_method_invocation_serde, help_test_method_invocation_serde_with_expected, -}; - -#[test] -fn test_serde_eth_accounts() { - help_test_method_invocation_serde(MethodInvocation::Accounts(())); -} - -#[test] -fn test_serde_eth_block_number() { - help_test_method_invocation_serde(MethodInvocation::BlockNumber(())); -} - -#[test] -fn test_serde_eth_call() { - let tx = CallRequest { - from: Some(Address::from(U160::from(1))), - to: Some(Address::from(U160::from(2))), - gas: Some(3), - gas_price: Some(U256::from(4)), - max_fee_per_gas: None, - max_priority_fee_per_gas: None, - value: Some(U256::from(123568919)), - data: Some(Bytes::from(&b"whatever"[..])), - access_list: None, - transaction_type: None, - blobs: Some(vec![Bytes::from("0x1234")]), - blob_hashes: Some(vec![B256::from(U256::from(1))]), - }; - help_test_method_invocation_serde(MethodInvocation::Call( - tx.clone(), - Some(BlockSpec::latest()), - None, - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::Call(tx.clone(), None, None), - MethodInvocation::Call(tx, Some(BlockSpec::latest()), None), - ); -} - -#[test] -fn test_serde_eth_chain_id() { - help_test_method_invocation_serde(MethodInvocation::ChainId(())); -} - -#[test] -fn test_serde_eth_coinbase() { - help_test_method_invocation_serde(MethodInvocation::Coinbase(())); -} - -#[test] -fn test_serde_eth_estimate_gas() { - let tx = CallRequest { - from: Some(Address::from(U160::from(1))), - to: Some(Address::from(U160::from(2))), - gas: Some(3), - gas_price: Some(U256::from(4)), - max_fee_per_gas: None, - max_priority_fee_per_gas: None, - value: Some(U256::from(123568919)), - data: Some(Bytes::from(&b"whatever"[..])), - access_list: None, - transaction_type: None, - blobs: None, - blob_hashes: None, - }; - help_test_method_invocation_serde(MethodInvocation::EstimateGas( - tx.clone(), - Some(BlockSpec::latest()), - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::EstimateGas(tx.clone(), None), - MethodInvocation::EstimateGas(tx, Some(BlockSpec::pending())), - ); -} - -#[test] -fn test_serde_eth_fee_history() { - help_test_method_invocation_serde(MethodInvocation::FeeHistory( - U256::from(3), - BlockSpec::Number(100), - Some(vec![0.5_f64, 10_f64, 80_f64, 90_f64, 99.5_f64]), - )); -} - -#[test] -fn test_serde_eth_gas_price() { - help_test_method_invocation_serde(MethodInvocation::GasPrice(())); -} - -#[test] -fn test_serde_eth_get_balance() { - help_test_method_invocation_serde(MethodInvocation::GetBalance( - Address::from(U160::from(1)), - Some(BlockSpec::latest()), - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::GetBalance(Address::from(U160::from(1)), None), - MethodInvocation::GetBalance(Address::from(U160::from(1)), Some(BlockSpec::latest())), - ); -} - -#[test] -fn test_serde_eth_get_block_by_number() { - help_test_method_invocation_serde(MethodInvocation::GetBlockByNumber( - PreEip1898BlockSpec::Number(100), - true, - )); -} - -#[test] -fn test_serde_eth_get_block_by_tag() { - help_test_method_invocation_serde(MethodInvocation::GetBlockByNumber( - PreEip1898BlockSpec::latest(), - true, - )); -} - -#[test] -fn test_serde_eth_get_block_by_hash() { - help_test_method_invocation_serde(MethodInvocation::GetBlockByHash( - B256::from(U256::from(1)), - true, - )); -} - -#[test] -fn test_serde_eth_get_transaction_count() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionCount( - Address::from(U160::from(1)), - Some(BlockSpec::latest()), - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::GetTransactionCount(Address::from(U160::from(1)), None), - MethodInvocation::GetTransactionCount( - Address::from(U160::from(1)), - Some(BlockSpec::latest()), - ), - ); -} - -#[test] -fn test_serde_eth_get_transaction() { - help_test_method_invocation_serde(MethodInvocation::GetBlockTransactionCountByHash( - B256::from(U256::from(1)), - )); -} - -#[test] -fn test_serde_eth_get_transaction_count_by_number() { - help_test_method_invocation_serde(MethodInvocation::GetBlockTransactionCountByNumber( - PreEip1898BlockSpec::Number(100), - )); -} - -#[test] -fn test_serde_eth_get_code() { - help_test_method_invocation_serde(MethodInvocation::GetCode( - Address::from(U160::from(1)), - Some(BlockSpec::latest()), - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::GetCode(Address::from(U160::from(1)), None), - MethodInvocation::GetCode(Address::from(U160::from(1)), Some(BlockSpec::latest())), - ); -} - -#[test] -fn test_serde_eth_get_filter_changes() { - help_test_method_invocation_serde(MethodInvocation::GetFilterChanges(U256::from(100))); -} - -#[test] -fn test_serde_eth_get_filter_logs() { - help_test_method_invocation_serde(MethodInvocation::GetFilterLogs(U256::from(100))); -} - -#[test] -fn test_serde_eth_get_logs_by_block_numbers() { - help_test_method_invocation_serde(MethodInvocation::GetLogs(LogFilterOptions { - from_block: Some(BlockSpec::Number(100)), - to_block: Some(BlockSpec::Number(102)), - block_hash: None, - address: Some(OneOrMore::One(Address::from(U160::from(1)))), - topics: None, - })); -} - -#[test] -fn test_serde_eth_get_logs_by_block_tags() { - help_test_method_invocation_serde(MethodInvocation::GetLogs(LogFilterOptions { - from_block: Some(BlockSpec::Tag(BlockTag::Safe)), - to_block: Some(BlockSpec::latest()), - block_hash: None, - address: Some(OneOrMore::One(Address::from(U160::from(1)))), - topics: Some(vec![Some(OneOrMore::One(B256::from(U256::from(1))))]), - })); -} - -#[test] -fn test_serde_eth_get_logs_by_block_hash() { - help_test_method_invocation_serde(MethodInvocation::GetLogs(LogFilterOptions { - from_block: None, - to_block: None, - block_hash: Some(B256::from(U256::from(1))), - address: Some(OneOrMore::One(Address::from(U160::from(1)))), - topics: Some(vec![Some(OneOrMore::One(B256::from(U256::from(1))))]), - })); -} - -#[test] -fn test_serde_eth_get_storage_at() { - help_test_method_invocation_serde(MethodInvocation::GetStorageAt( - Address::from(U160::from(1)), - U256::ZERO, - Some(BlockSpec::latest()), - )); - help_test_method_invocation_serde_with_expected( - MethodInvocation::GetStorageAt(Address::from(U160::from(1)), U256::ZERO, None), - MethodInvocation::GetStorageAt( - Address::from(U160::from(1)), - U256::ZERO, - Some(BlockSpec::latest()), - ), - ); -} - -#[test] -fn test_serde_eth_get_tx_by_block_hash_and_index() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionByBlockHashAndIndex( - B256::from(U256::from(1)), - U256::from(1), - )); -} - -#[test] -fn test_serde_eth_get_tx_by_block_number_and_index() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionByBlockNumberAndIndex( - PreEip1898BlockSpec::Number(100), - U256::from(1), - )); -} - -#[test] -fn test_serde_eth_get_tx_by_hash() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionByHash(B256::from( - U256::from(1), - ))); -} - -#[test] -fn test_serde_eth_get_tx_count_by_block_number() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionCount( - Address::from(U160::from(1)), - Some(BlockSpec::Number(100)), - )); -} - -#[test] -fn test_serde_eth_get_tx_count_by_block_tag() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionCount( - Address::from(U160::from(1)), - Some(BlockSpec::latest()), - )); -} - -#[test] -fn test_serde_eth_get_tx_receipt() { - help_test_method_invocation_serde(MethodInvocation::GetTransactionReceipt(B256::from( - U256::from(1), - ))); -} - -#[test] -fn test_serde_eth_mining() { - help_test_method_invocation_serde(MethodInvocation::Mining(())); -} - -#[test] -fn test_serde_eth_new_block_filter() { - help_test_method_invocation_serde(MethodInvocation::NewBlockFilter(())); -} - -#[test] -fn test_serde_eth_new_filter() { - help_test_method_invocation_serde(MethodInvocation::NewFilter(LogFilterOptions { - from_block: Some(BlockSpec::Number(1000)), - to_block: Some(BlockSpec::latest()), - block_hash: None, - address: Some(OneOrMore::One(Address::from(U160::from(1)))), - topics: Some(vec![Some(OneOrMore::One(B256::from(U256::from(1))))]), - })); -} - -#[test] -fn test_serde_eth_new_pending_transaction_filter() { - help_test_method_invocation_serde(MethodInvocation::NewPendingTransactionFilter(())); -} - -#[test] -fn test_serde_eth_pending_transactions() { - help_test_method_invocation_serde(MethodInvocation::PendingTransactions(())); -} - -#[test] -fn test_serde_eth_send_raw_transaction() { - help_test_method_invocation_serde(MethodInvocation::SendRawTransaction(Bytes::from( - &b"whatever"[..], - ))); -} - -#[test] -fn test_serde_eth_send_transaction() { - help_test_method_invocation_serde(MethodInvocation::SendTransaction(EthTransactionRequest { - from: Address::from(U160::from(1)), - to: Some(Address::from(U160::from(2))), - gas: Some(3_u64), - gas_price: Some(U256::from(4)), - max_fee_per_gas: None, - value: Some(U256::from(123568919)), - data: Some(Bytes::from(&b"whatever"[..])), - nonce: None, - chain_id: None, - access_list: None, - max_priority_fee_per_gas: None, - transaction_type: None, - blobs: Some(vec![Bytes::from("0x1234")]), - blob_hashes: Some(vec![B256::from(U256::from(1))]), - })); -} - -#[test] -fn test_serde_eth_sign() { - help_test_method_invocation_serde(MethodInvocation::Sign( - Bytes::from(&b"whatever"[..]), - Address::from(U160::from(1)), - )); -} - -macro_rules! impl_serde_eth_subscribe_tests { - ($( - $name:ident => $variant:expr, - )+) => { - $( - paste::item! { - #[test] - fn []() { - use edr_eth::remote::filter::SubscriptionType; - - help_test_method_invocation_serde(MethodInvocation::Subscribe($variant, None)); - } - - #[test] - fn []() { - use edr_eth::remote::filter::SubscriptionType; - - help_test_method_invocation_serde(MethodInvocation::Subscribe($variant, Some(LogFilterOptions { - from_block: Some(BlockSpec::Number(1000)), - to_block: Some(BlockSpec::latest()), - block_hash: None, - address: Some(OneOrMore::One(Address::from(U160::from(1)))), - topics: Some(vec![Some(OneOrMore::One(B256::from(U256::from(1))))]), - }))); - } - } - )+ - }; -} - -impl_serde_eth_subscribe_tests! { - logs => SubscriptionType::Logs, - new_pending_transactions => SubscriptionType::NewPendingTransactions, - new_heads => SubscriptionType::NewHeads, -} - -#[test] -fn test_serde_eth_syncing() { - help_test_method_invocation_serde(MethodInvocation::Syncing(())); -} - -#[test] -fn test_serde_eth_uninstall_filter() { - help_test_method_invocation_serde(MethodInvocation::UninstallFilter(U256::from(100))); -} - -#[test] -fn test_serde_eth_unsubscribe() { - help_test_method_invocation_serde(MethodInvocation::Unsubscribe(U256::from(100))); -} - -fn help_test_serde_value(value: T) -where - T: PartialEq + std::fmt::Debug + serde::de::DeserializeOwned + serde::Serialize, -{ - let serialized = serde_json::json!(value).to_string(); - - let deserialized: T = serde_json::from_str(&serialized) - .unwrap_or_else(|_| panic!("should have successfully deserialized json {serialized}")); - - assert_eq!(value, deserialized); -} - -#[test] -fn test_serde_log_output() { - help_test_serde_value(LogOutput { - removed: false, - log_index: Some(0), - transaction_index: Some(99), - transaction_hash: Some(B256::from(U256::from(1))), - block_hash: Some(B256::from(U256::from(2))), - block_number: Some(0), - address: Address::from(U160::from(1)), - data: Bytes::from_static(b"whatever"), - topics: vec![B256::from(U256::from(3)), B256::from(U256::from(3))], - }); -} - -#[test] -fn test_serde_one_or_more_addresses() { - help_test_serde_value(OneOrMore::One(Address::from(U160::from(1)))); - help_test_serde_value(OneOrMore::Many(vec![ - Address::from(U160::from(1)), - Address::from(U160::from(1)), - ])); -} - -#[test] -fn test_evm_increase_time() { - help_test_method_invocation_serde(MethodInvocation::EvmIncreaseTime(U64OrUsize::U64( - U64::from(12345), - ))); -} - -#[test] -fn test_evm_mine() { - help_test_method_invocation_serde(MethodInvocation::EvmMine(Some(U64OrUsize::U64(U64::from( - 12345, - ))))); - help_test_method_invocation_serde(MethodInvocation::EvmMine(Some(U64OrUsize::Usize(12345)))); - help_test_method_invocation_serde(MethodInvocation::EvmMine(None)); -} - -#[test] -fn test_evm_set_next_block_timestamp() { - help_test_method_invocation_serde(MethodInvocation::EvmSetNextBlockTimestamp(U64OrUsize::U64( - U64::from(12345), - ))); -} - -#[test] -fn test_serde_web3_client_version() { - help_test_method_invocation_serde(MethodInvocation::Web3ClientVersion(())); -} - -#[test] -fn test_serde_web3_sha3() { - help_test_method_invocation_serde(MethodInvocation::Web3Sha3(Bytes::from(&b"whatever"[..]))); -} - -#[test] -fn test_evm_set_automine() { - help_test_method_invocation_serde(MethodInvocation::EvmSetAutomine(false)); -} - -#[test] -fn test_evm_set_interval_mining() { - help_test_method_invocation_serde(MethodInvocation::EvmSetIntervalMining( - IntervalConfigRequest::FixedOrDisabled(1000), - )); - help_test_method_invocation_serde(MethodInvocation::EvmSetIntervalMining( - IntervalConfigRequest::Range([1000, 5000]), - )); -} - -#[test] -fn test_evm_snapshot() { - help_test_method_invocation_serde(MethodInvocation::EvmSnapshot(())); -} - -#[test] -fn test_net_listening() { - help_test_method_invocation_serde(MethodInvocation::NetListening(())); -} - -#[test] -fn test_net_peer_count() { - help_test_method_invocation_serde(MethodInvocation::NetPeerCount(())); -} - -#[test] -fn test_personal_sign() { - let call = MethodInvocation::Sign(Bytes::from(&b"whatever"[..]), Address::from(U160::from(1))); - - let serialized = serde_json::json!(call) - .to_string() - .replace("eth_sign", "personal_sign"); - - let call_deserialized: MethodInvocation = serde_json::from_str(&serialized) - .unwrap_or_else(|_| panic!("should have successfully deserialized json {serialized}")); - - assert_eq!(call, call_deserialized); -} diff --git a/crates/edr_provider/tests/fixtures/compiler_input.json b/crates/edr_provider/tests/fixtures/compiler_input.json deleted file mode 100644 index 73d232a3ae..0000000000 --- a/crates/edr_provider/tests/fixtures/compiler_input.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "language": "Solidity", - "sources": { - "literal.sol": { - "content": "\n contract Nine {\n function returnNine() public pure returns (int) { return 9; }\n }\n " - } - }, - "settings": { - "optimizer": { - "enabled": false - }, - "outputSelection": { - "*": { - "*": [ - "abi", - "evm.bytecode", - "evm.deployedBytecode", - "evm.methodIdentifiers" - ], - "": [ - "id", - "ast" - ] - } - } - } -} diff --git a/crates/edr_provider/tests/fixtures/compiler_output.json b/crates/edr_provider/tests/fixtures/compiler_output.json deleted file mode 100644 index 6378c4197b..0000000000 --- a/crates/edr_provider/tests/fixtures/compiler_output.json +++ /dev/null @@ -1,415 +0,0 @@ -{ - "contracts": { - "literal.sol": { - "Nine": { - "abi": [ - { - "inputs": [], - "name": "returnNine", - "outputs": [ - { - "internalType": "int256", - "name": "", - "type": "int256" - } - ], - "stateMutability": "pure", - "type": "function" - } - ], - "evm": { - "bytecode": { - "generatedSources": [], - "linkReferences": {}, - "object": "608060405234801561001057600080fd5b5060b68061001f6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c8063df78ca5114602d575b600080fd5b60336047565b604051603e9190605d565b60405180910390f35b60006009905090565b6057816076565b82525050565b6000602082019050607060008301846050565b92915050565b600081905091905056fea2646970667358221220e7cab788146024c85c2e10b3c4e75886f12897ba5cbb11977003230b6e9f4bbd64736f6c63430008000033", - "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xB6 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xDF78CA51 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x9 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x57 DUP2 PUSH1 0x76 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x70 PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE7 0xCA 0xB7 DUP9 EQ PUSH1 0x24 0xC8 0x5C 0x2E LT 0xB3 0xC4 0xE7 PC DUP7 CALL 0x28 SWAP8 0xBA 0x5C 0xBB GT SWAP8 PUSH17 0x3230B6E9F4BBD64736F6C634300080000 CALLER ", - "sourceMap": "13:107:0:-:0;;;;;;;;;;;;;;;;;;;" - }, - "deployedBytecode": { - "generatedSources": [ - { - "ast": { - "nodeType": "YulBlock", - "src": "0:431:1", - "statements": [ - { - "body": { - "nodeType": "YulBlock", - "src": "70:52:1", - "statements": [ - { - "expression": { - "arguments": [ - { - "name": "pos", - "nodeType": "YulIdentifier", - "src": "87:3:1" - }, - { - "arguments": [ - { - "name": "value", - "nodeType": "YulIdentifier", - "src": "109:5:1" - } - ], - "functionName": { - "name": "cleanup_t_int256", - "nodeType": "YulIdentifier", - "src": "92:16:1" - }, - "nodeType": "YulFunctionCall", - "src": "92:23:1" - } - ], - "functionName": { - "name": "mstore", - "nodeType": "YulIdentifier", - "src": "80:6:1" - }, - "nodeType": "YulFunctionCall", - "src": "80:36:1" - }, - "nodeType": "YulExpressionStatement", - "src": "80:36:1" - } - ] - }, - "name": "abi_encode_t_int256_to_t_int256_fromStack", - "nodeType": "YulFunctionDefinition", - "parameters": [ - { - "name": "value", - "nodeType": "YulTypedName", - "src": "58:5:1", - "type": "" - }, - { - "name": "pos", - "nodeType": "YulTypedName", - "src": "65:3:1", - "type": "" - } - ], - "src": "7:115:1" - }, - { - "body": { - "nodeType": "YulBlock", - "src": "224:122:1", - "statements": [ - { - "nodeType": "YulAssignment", - "src": "234:26:1", - "value": { - "arguments": [ - { - "name": "headStart", - "nodeType": "YulIdentifier", - "src": "246:9:1" - }, - { - "kind": "number", - "nodeType": "YulLiteral", - "src": "257:2:1", - "type": "", - "value": "32" - } - ], - "functionName": { - "name": "add", - "nodeType": "YulIdentifier", - "src": "242:3:1" - }, - "nodeType": "YulFunctionCall", - "src": "242:18:1" - }, - "variableNames": [ - { - "name": "tail", - "nodeType": "YulIdentifier", - "src": "234:4:1" - } - ] - }, - { - "expression": { - "arguments": [ - { - "name": "value0", - "nodeType": "YulIdentifier", - "src": "312:6:1" - }, - { - "arguments": [ - { - "name": "headStart", - "nodeType": "YulIdentifier", - "src": "325:9:1" - }, - { - "kind": "number", - "nodeType": "YulLiteral", - "src": "336:1:1", - "type": "", - "value": "0" - } - ], - "functionName": { - "name": "add", - "nodeType": "YulIdentifier", - "src": "321:3:1" - }, - "nodeType": "YulFunctionCall", - "src": "321:17:1" - } - ], - "functionName": { - "name": "abi_encode_t_int256_to_t_int256_fromStack", - "nodeType": "YulIdentifier", - "src": "270:41:1" - }, - "nodeType": "YulFunctionCall", - "src": "270:69:1" - }, - "nodeType": "YulExpressionStatement", - "src": "270:69:1" - } - ] - }, - "name": "abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed", - "nodeType": "YulFunctionDefinition", - "parameters": [ - { - "name": "headStart", - "nodeType": "YulTypedName", - "src": "196:9:1", - "type": "" - }, - { - "name": "value0", - "nodeType": "YulTypedName", - "src": "208:6:1", - "type": "" - } - ], - "returnVariables": [ - { - "name": "tail", - "nodeType": "YulTypedName", - "src": "219:4:1", - "type": "" - } - ], - "src": "128:218:1" - }, - { - "body": { - "nodeType": "YulBlock", - "src": "396:32:1", - "statements": [ - { - "nodeType": "YulAssignment", - "src": "406:16:1", - "value": { - "name": "value", - "nodeType": "YulIdentifier", - "src": "417:5:1" - }, - "variableNames": [ - { - "name": "cleaned", - "nodeType": "YulIdentifier", - "src": "406:7:1" - } - ] - } - ] - }, - "name": "cleanup_t_int256", - "nodeType": "YulFunctionDefinition", - "parameters": [ - { - "name": "value", - "nodeType": "YulTypedName", - "src": "378:5:1", - "type": "" - } - ], - "returnVariables": [ - { - "name": "cleaned", - "nodeType": "YulTypedName", - "src": "388:7:1", - "type": "" - } - ], - "src": "352:76:1" - } - ] - }, - "contents": "{\n\n function abi_encode_t_int256_to_t_int256_fromStack(value, pos) {\n mstore(pos, cleanup_t_int256(value))\n }\n\n function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_int256_to_t_int256_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_int256(value) -> cleaned {\n cleaned := value\n }\n\n}\n", - "id": 1, - "language": "Yul", - "name": "#utility.yul" - } - ], - "immutableReferences": {}, - "linkReferences": {}, - "object": "6080604052348015600f57600080fd5b506004361060285760003560e01c8063df78ca5114602d575b600080fd5b60336047565b604051603e9190605d565b60405180910390f35b60006009905090565b6057816076565b82525050565b6000602082019050607060008301846050565b92915050565b600081905091905056fea2646970667358221220e7cab788146024c85c2e10b3c4e75886f12897ba5cbb11977003230b6e9f4bbd64736f6c63430008000033", - "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xDF78CA51 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x9 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x57 DUP2 PUSH1 0x76 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x70 PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE7 0xCA 0xB7 DUP9 EQ PUSH1 0x24 0xC8 0x5C 0x2E LT 0xB3 0xC4 0xE7 PC DUP7 CALL 0x28 SWAP8 0xBA 0x5C 0xBB GT SWAP8 PUSH17 0x3230B6E9F4BBD64736F6C634300080000 CALLER ", - "sourceMap": "13:107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;88:3;102:1;95:8;;45:61;:::o;7:115:1:-;92:23;109:5;92:23;:::i;:::-;87:3;80:36;70:52;;:::o;128:218::-;;257:2;246:9;242:18;234:26;;270:69;336:1;325:9;321:17;312:6;270:69;:::i;:::-;224:122;;;;:::o;352:76::-;;417:5;406:16;;396:32;;;:::o" - }, - "methodIdentifiers": { - "returnNine()": "df78ca51" - } - } - } - } - }, - "errors": [ - { - "component": "general", - "errorCode": "1878", - "formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: \" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> literal.sol\n\n", - "message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: \" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.", - "severity": "warning", - "sourceLocation": { - "end": -1, - "file": "literal.sol", - "start": -1 - }, - "type": "Warning" - }, - { - "component": "general", - "errorCode": "3420", - "formattedMessage": "Warning: Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.0;\"\n--> literal.sol\n\n", - "message": "Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.0;\"", - "severity": "warning", - "sourceLocation": { - "end": -1, - "file": "literal.sol", - "start": -1 - }, - "type": "Warning" - } - ], - "sources": { - "literal.sol": { - "ast": { - "absolutePath": "literal.sol", - "exportedSymbols": { - "Nine": [ - 9 - ] - }, - "id": 10, - "nodeType": "SourceUnit", - "nodes": [ - { - "abstract": false, - "baseContracts": [], - "contractDependencies": [], - "contractKind": "contract", - "fullyImplemented": true, - "id": 9, - "linearizedBaseContracts": [ - 9 - ], - "name": "Nine", - "nodeType": "ContractDefinition", - "nodes": [ - { - "body": { - "id": 7, - "nodeType": "Block", - "src": "93:13:0", - "statements": [ - { - "expression": { - "hexValue": "39", - "id": 5, - "isConstant": false, - "isLValue": false, - "isPure": true, - "kind": "number", - "lValueRequested": false, - "nodeType": "Literal", - "src": "102:1:0", - "typeDescriptions": { - "typeIdentifier": "t_rational_9_by_1", - "typeString": "int_const 9" - }, - "value": "9" - }, - "functionReturnParameters": 4, - "id": 6, - "nodeType": "Return", - "src": "95:8:0" - } - ] - }, - "functionSelector": "df78ca51", - "id": 8, - "implemented": true, - "kind": "function", - "modifiers": [], - "name": "returnNine", - "nodeType": "FunctionDefinition", - "parameters": { - "id": 1, - "nodeType": "ParameterList", - "parameters": [], - "src": "64:2:0" - }, - "returnParameters": { - "id": 4, - "nodeType": "ParameterList", - "parameters": [ - { - "constant": false, - "id": 3, - "mutability": "mutable", - "name": "", - "nodeType": "VariableDeclaration", - "scope": 8, - "src": "88:3:0", - "stateVariable": false, - "storageLocation": "default", - "typeDescriptions": { - "typeIdentifier": "t_int256", - "typeString": "int256" - }, - "typeName": { - "id": 2, - "name": "int", - "nodeType": "ElementaryTypeName", - "src": "88:3:0", - "typeDescriptions": { - "typeIdentifier": "t_int256", - "typeString": "int256" - } - }, - "visibility": "internal" - } - ], - "src": "87:5:0" - }, - "scope": 9, - "src": "45:61:0", - "stateMutability": "pure", - "virtual": false, - "visibility": "public" - } - ], - "scope": 10, - "src": "13:107:0" - } - ], - "src": "13:118:0" - }, - "id": 0 - } - } -} diff --git a/crates/edr_provider/tests/hardhat_request_serialization.rs b/crates/edr_provider/tests/hardhat_request_serialization.rs deleted file mode 100644 index a4527f363b..0000000000 --- a/crates/edr_provider/tests/hardhat_request_serialization.rs +++ /dev/null @@ -1,163 +0,0 @@ -mod common; - -use edr_eth::{Address, Bytes, B256, U256}; -use edr_evm::alloy_primitives::U160; -use edr_provider::{ - hardhat_rpc_types::{CompilerInput, CompilerOutput, ForkConfig, ResetProviderConfig}, - MethodInvocation, -}; - -use crate::common::help_test_method_invocation_serde; - -#[test] -fn serde_hardhat_compiler() { - // these were taken from a run of TypeScript function compileLiteral - let compiler_input_json = include_str!("fixtures/compiler_input.json"); - let compiler_output_json = include_str!("fixtures/compiler_output.json"); - - let call = MethodInvocation::AddCompilationResult( - String::from("0.8.0"), - serde_json::from_str::(compiler_input_json).unwrap(), - serde_json::from_str::(compiler_output_json).unwrap(), - ); - - help_test_method_invocation_serde(call.clone()); - - match call { - MethodInvocation::AddCompilationResult(_, ref input, ref output) => { - assert_eq!( - serde_json::to_value(input).unwrap(), - serde_json::to_value( - serde_json::from_str::(compiler_input_json).unwrap() - ) - .unwrap(), - ); - assert_eq!( - serde_json::to_value(output).unwrap(), - serde_json::to_value( - serde_json::from_str::(compiler_output_json).unwrap() - ) - .unwrap(), - ); - } - _ => panic!("method invocation should have been AddCompilationResult"), - } -} - -#[test] -fn serde_hardhat_drop_transaction() { - help_test_method_invocation_serde(MethodInvocation::DropTransaction(B256::from(U256::from(1)))); -} - -#[test] -fn serde_hardhat_get_automine() { - help_test_method_invocation_serde(MethodInvocation::GetAutomine(())); -} - -#[test] -fn serde_hardhat_get_stack_trace_failures_count() { - help_test_method_invocation_serde(MethodInvocation::GetStackTraceFailuresCount(())); -} - -#[test] -fn serde_hardhat_impersonate_account() { - help_test_method_invocation_serde(MethodInvocation::ImpersonateAccount( - Address::from(U160::from(1)).into(), - )); -} - -#[test] -fn serde_hardhat_interval_mine() { - help_test_method_invocation_serde(MethodInvocation::IntervalMine(())); -} - -#[test] -fn serde_hardhat_metadata() { - help_test_method_invocation_serde(MethodInvocation::Metadata(())); -} - -#[test] -fn serde_hardhat_mine() { - help_test_method_invocation_serde(MethodInvocation::Mine(Some(1), Some(1))); - help_test_method_invocation_serde(MethodInvocation::Mine(Some(1), None)); - help_test_method_invocation_serde(MethodInvocation::Mine(None, Some(1))); - help_test_method_invocation_serde(MethodInvocation::Mine(None, None)); - - let json = r#"{"jsonrpc":"2.0","method":"hardhat_mine","params":[],"id":2}"#; - let deserialized: MethodInvocation = serde_json::from_str(json) - .unwrap_or_else(|_| panic!("should have successfully deserialized json {json}")); - assert_eq!(MethodInvocation::Mine(None, None), deserialized); -} - -#[test] -fn serde_hardhat_reset() { - help_test_method_invocation_serde(MethodInvocation::Reset(Some(ResetProviderConfig { - forking: Some(ForkConfig { - json_rpc_url: String::from("http://whatever.com/whatever"), - block_number: Some(123456), - http_headers: None, - }), - }))); -} - -#[test] -fn serde_hardhat_set_balance() { - help_test_method_invocation_serde(MethodInvocation::SetBalance( - Address::from(U160::from(1)), - U256::ZERO, - )); -} - -#[test] -fn serde_hardhat_set_code() { - help_test_method_invocation_serde(MethodInvocation::SetCode( - Address::from(U160::from(1)), - Bytes::from(&b"whatever"[..]), - )); -} - -#[test] -fn serde_hardhat_set_coinbase() { - help_test_method_invocation_serde(MethodInvocation::SetCoinbase(Address::random())); -} - -#[test] -fn serde_hardhat_set_logging_enabled() { - help_test_method_invocation_serde(MethodInvocation::SetLoggingEnabled(true)); -} - -#[test] -fn serde_hardhat_set_min_gas_price() { - help_test_method_invocation_serde(MethodInvocation::SetMinGasPrice(U256::from(1))); -} - -#[test] -fn serde_hardhat_set_next_block_base_fee_per_gas() { - help_test_method_invocation_serde(MethodInvocation::SetNextBlockBaseFeePerGas(U256::from(1))); -} - -#[test] -fn serde_hardhat_set_nonce() { - help_test_method_invocation_serde(MethodInvocation::SetNonce(Address::random(), 1u64)); -} - -#[test] -fn serde_hardhat_set_prev_randao() { - help_test_method_invocation_serde(MethodInvocation::SetPrevRandao(B256::random())); -} - -#[test] -fn serde_hardhat_set_storage_at() { - help_test_method_invocation_serde(MethodInvocation::SetStorageAt( - Address::random(), - U256::ZERO, - U256::MAX, - )); -} - -#[test] -fn serde_hardhat_stop_impersonating_account() { - help_test_method_invocation_serde(MethodInvocation::StopImpersonatingAccount( - Address::random().into(), - )); -} diff --git a/crates/edr_provider/tests/issue_324.rs b/crates/edr_provider/tests/issue_324.rs deleted file mode 100644 index ac5dc28458..0000000000 --- a/crates/edr_provider/tests/issue_324.rs +++ /dev/null @@ -1,117 +0,0 @@ -use std::str::FromStr; - -use edr_eth::{remote::eth::CallRequest, Address, Bytes, SpecId, U256}; -use edr_provider::{ - hardhat_rpc_types::ForkConfig, test_utils::create_test_config_with_fork, MethodInvocation, - NoopLogger, Provider, ProviderRequest, -}; -use edr_test_utils::env::get_alchemy_url; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_324() -> anyhow::Result<()> { - // contract Foo { - // uint public x = 1; - // uint public y = 2; - // } - const TEST_CONTRACT_ADDRESS: &str = "0x530B7F66914c1E345DF1683eae4536fc7b80660f"; - const DEPLOYMENT_BLOCK_NUMBER: u64 = 5464258; - - let contract_address = Address::from_str(TEST_CONTRACT_ADDRESS).unwrap(); - - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let mut config = create_test_config_with_fork(Some(ForkConfig { - json_rpc_url: get_alchemy_url().replace("mainnet", "sepolia"), - block_number: Some(DEPLOYMENT_BLOCK_NUMBER), - http_headers: None, - })); - config.hardfork = SpecId::CANCUN; - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - let x = provider.handle_request(ProviderRequest::Single(MethodInvocation::Call( - CallRequest { - to: Some(contract_address), - data: Some(Bytes::from_str("0x0c55699c").unwrap()), // x() - ..CallRequest::default() - }, - None, - None, - )))?; - - assert_eq!( - x.result, - "0x0000000000000000000000000000000000000000000000000000000000000001" - ); - - let y = provider.handle_request(ProviderRequest::Single(MethodInvocation::Call( - CallRequest { - to: Some(contract_address), - data: Some(Bytes::from_str("0xa56dfe4a").unwrap()), // y() - ..CallRequest::default() - }, - None, - None, - )))?; - - assert_eq!( - y.result, - "0x0000000000000000000000000000000000000000000000000000000000000002" - ); - - let x_storage_index = U256::ZERO; - let expected_x = "0x0000000000000000000000000000000000000000000000000000000000000002"; - provider.handle_request(ProviderRequest::Single(MethodInvocation::SetStorageAt( - contract_address, - x_storage_index, - U256::from_str(expected_x).unwrap(), - )))?; - - let new_x = provider.handle_request(ProviderRequest::Single( - MethodInvocation::GetStorageAt(contract_address, x_storage_index, None), - ))?; - - assert_eq!(new_x.result, expected_x); - - let new_x = provider.handle_request(ProviderRequest::Single(MethodInvocation::Call( - CallRequest { - to: Some(contract_address), - data: Some(Bytes::from_str("0x0c55699c").unwrap()), // x() - ..CallRequest::default() - }, - None, - None, - )))?; - - assert_eq!(new_x.result, expected_x); - - let y_storage_index = U256::from(1u64); - let expected_y = "0x0000000000000000000000000000000000000000000000000000000000000003"; - provider.handle_request(ProviderRequest::Single(MethodInvocation::SetStorageAt( - contract_address, - y_storage_index, - U256::from_str(expected_y).unwrap(), - )))?; - - let new_y = provider.handle_request(ProviderRequest::Single( - MethodInvocation::GetStorageAt(contract_address, y_storage_index, None), - ))?; - - assert_eq!(new_y.result, expected_y); - - let new_y = provider.handle_request(ProviderRequest::Single(MethodInvocation::Call( - CallRequest { - to: Some(contract_address), - data: Some(Bytes::from_str("0xa56dfe4a").unwrap()), // y() - ..CallRequest::default() - }, - None, - None, - )))?; - - assert_eq!(new_y.result, expected_y); - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_325.rs b/crates/edr_provider/tests/issue_325.rs deleted file mode 100644 index 6e1fe0ccd5..0000000000 --- a/crates/edr_provider/tests/issue_325.rs +++ /dev/null @@ -1,65 +0,0 @@ -use edr_eth::{ - remote::PreEip1898BlockSpec, transaction::EthTransactionRequest, AccountInfo, Address, SpecId, - B256, -}; -use edr_evm::KECCAK_EMPTY; -use edr_provider::{ - test_utils::{create_test_config_with_fork, one_ether}, - MethodInvocation, MiningConfig, NoopLogger, Provider, ProviderRequest, -}; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_325() -> anyhow::Result<()> { - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let mut config = create_test_config_with_fork(None); - config.hardfork = SpecId::CANCUN; - config.mining = MiningConfig { - auto_mine: false, - ..MiningConfig::default() - }; - - let impersonated_account = Address::random(); - config.genesis_accounts.insert( - impersonated_account, - AccountInfo { - balance: one_ether(), - nonce: 0, - code: None, - code_hash: KECCAK_EMPTY, - }, - ); - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - provider.handle_request(ProviderRequest::Single( - MethodInvocation::ImpersonateAccount(impersonated_account.into()), - ))?; - - let result = provider.handle_request(ProviderRequest::Single( - MethodInvocation::SendTransaction(EthTransactionRequest { - from: impersonated_account, - to: Some(Address::random()), - ..EthTransactionRequest::default() - }), - ))?; - - let transaction_hash: B256 = serde_json::from_value(result.result)?; - - let result = provider.handle_request(ProviderRequest::Single( - MethodInvocation::DropTransaction(transaction_hash), - ))?; - - let dropped: bool = serde_json::from_value(result.result)?; - - assert!(dropped); - - provider.handle_request(ProviderRequest::Single(MethodInvocation::GetBlockByNumber( - PreEip1898BlockSpec::pending(), - false, - )))?; - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_326.rs b/crates/edr_provider/tests/issue_326.rs deleted file mode 100644 index aad0e20248..0000000000 --- a/crates/edr_provider/tests/issue_326.rs +++ /dev/null @@ -1,67 +0,0 @@ -use std::str::FromStr; - -use edr_eth::{ - remote::eth::CallRequest, transaction::EthTransactionRequest, AccountInfo, Address, SpecId, - U256, -}; -use edr_evm::KECCAK_EMPTY; -use edr_provider::{ - test_utils::{create_test_config_with_fork, one_ether}, - MethodInvocation, MiningConfig, NoopLogger, Provider, ProviderRequest, -}; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_326() -> anyhow::Result<()> { - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let mut config = create_test_config_with_fork(None); - config.hardfork = SpecId::CANCUN; - config.mining = MiningConfig { - auto_mine: false, - ..MiningConfig::default() - }; - config.initial_base_fee_per_gas = Some(U256::from_str("0x100").unwrap()); - - let impersonated_account = Address::random(); - config.genesis_accounts.insert( - impersonated_account, - AccountInfo { - balance: one_ether(), - nonce: 0, - code: None, - code_hash: KECCAK_EMPTY, - }, - ); - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - provider.handle_request(ProviderRequest::Single( - MethodInvocation::ImpersonateAccount(impersonated_account.into()), - ))?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::Mine(None, None)))?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::SendTransaction( - EthTransactionRequest { - from: impersonated_account, - to: Some(impersonated_account), - nonce: Some(0), - max_fee_per_gas: Some(U256::from_str("0xA").unwrap()), - ..EthTransactionRequest::default() - }, - )))?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::EstimateGas( - CallRequest { - from: Some(impersonated_account), - to: Some(impersonated_account), - max_fee_per_gas: Some(U256::from_str("0x200").unwrap()), - ..CallRequest::default() - }, - None, - )))?; - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_346.rs b/crates/edr_provider/tests/issue_346.rs deleted file mode 100644 index 1f721188d4..0000000000 --- a/crates/edr_provider/tests/issue_346.rs +++ /dev/null @@ -1,135 +0,0 @@ -use edr_provider::{test_utils::create_test_config, NoopLogger, Provider}; -use serde_json::json; -use tokio::runtime; - -// https://github.com/NomicFoundation/edr/issues/346 -#[tokio::test(flavor = "multi_thread")] -async fn issue_346() -> anyhow::Result<()> { - let config = create_test_config(); - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - // The address has been changed from the repro in the issue to an address that - // we have a secret key for in the test config. - let request_hex_salt = json!({ - "method": "eth_signTypedData_v4", - "params": [ - "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826", - { - "types": { - "UpdateAdminThreshold": [ - { - "name": "threshold", - "type": "uint8" - }, - { - "name": "nonce", - "type": "uint256" - } - ], - "EIP712Domain": [ - { - "name": "name", - "type": "string" - }, - { - "name": "version", - "type": "string" - }, - { - "name": "chainId", - "type": "uint256" - }, - { - "name": "verifyingContract", - "type": "address" - }, - { - "name": "salt", - "type": "bytes32" - } - ] - }, - "domain": { - "name": "Collateral", - "version": "2", - "chainId": "0x7a69", - "verifyingContract": "0xb0279db6a2f1e01fbc8483fccef0be2bc6299cc3", - "salt": "0x54c6b2b3ad37d2ee0bf85cf73d4c147b0a1c333627a2cbf9a1bb9ecc1543fc7a" - }, - "primaryType": "UpdateAdminThreshold", - "message": { - "threshold": "1", - "nonce": "0" - } - } - ] - }); - - assert!(provider - .handle_request(serde_json::from_value(request_hex_salt)?) - .is_ok()); - - #[allow(clippy::zero_prefixed_literal)] - let request_array_salt = json!({ - "method": "eth_signTypedData_v4", - "params": [ - "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826", - { - "types": { - "UpdateAdminThreshold": [ - { - "name": "threshold", - "type": "uint8" - }, - { - "name": "nonce", - "type": "uint256" - } - ], - "EIP712Domain": [ - { - "name": "name", - "type": "string" - }, - { - "name": "version", - "type": "string" - }, - { - "name": "chainId", - "type": "uint256" - }, - { - "name": "verifyingContract", - "type": "address" - }, - { - "name": "salt", - "type": "bytes32" - } - ] - }, - "domain": { - "name": "Collateral", - "version": "2", - "chainId": "0x7a69", - "verifyingContract": "0xb0279db6a2f1e01fbc8483fccef0be2bc6299cc3", - "salt": [84, 198, 178, 179, 73, 5, 10, 38, 1, 48, 2, 47, 1, 6, 0, 23, 0, 8, 1, 4, 9, 62, 03, 49, 61, 87, 58, 04, 1, 7, 52, 22] - }, - "primaryType": "UpdateAdminThreshold", - "message": { - "threshold": "1", - "nonce": "0" - } - } - ] - }); - - assert!(provider - .handle_request(serde_json::from_value(request_array_salt)?) - .is_ok()); - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_356.rs b/crates/edr_provider/tests/issue_356.rs deleted file mode 100644 index a41b43c61c..0000000000 --- a/crates/edr_provider/tests/issue_356.rs +++ /dev/null @@ -1,58 +0,0 @@ -use std::str::FromStr; - -use anyhow::Context; -use edr_eth::{remote::eth::CallRequest, Address, Bytes, SpecId}; -use edr_provider::{ - hardhat_rpc_types::ForkConfig, test_utils::create_test_config_with_fork, MethodInvocation, - NoopLogger, Provider, ProviderRequest, -}; -use edr_test_utils::env::get_alchemy_url; -use sha3::{Digest, Keccak256}; -use tokio::runtime; - -// Check that there is no panic when calling a forked blockchain where the -// hardfork is specified as Cancun, but the block number is before the Cancun -// hardfork. https://github.com/NomicFoundation/edr/issues/356 -#[tokio::test(flavor = "multi_thread")] -async fn issue_324() -> anyhow::Result<()> { - // ERC-20 contract - const TEST_CONTRACT_ADDRESS: &str = "0xaa8e23fb1079ea71e0a56f48a2aa51851d8433d0"; - - let contract_address = Address::from_str(TEST_CONTRACT_ADDRESS).context("Invalid address")?; - - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let mut config = create_test_config_with_fork(Some(ForkConfig { - json_rpc_url: get_alchemy_url().replace("mainnet", "sepolia"), - // Pre-cancun Sepolia block - block_number: Some(4243456), - http_headers: None, - })); - config.hardfork = SpecId::CANCUN; - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - let selector = Bytes::copy_from_slice( - &Keccak256::new_with_prefix("decimals()") - .finalize() - .as_slice()[..4], - ); - - let response = provider.handle_request(ProviderRequest::Single(MethodInvocation::Call( - CallRequest { - to: Some(contract_address), - data: Some(selector), - ..CallRequest::default() - }, - None, - None, - )))?; - - assert_eq!( - response.result, - "0x0000000000000000000000000000000000000000000000000000000000000006" - ); - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_361.rs b/crates/edr_provider/tests/issue_361.rs deleted file mode 100644 index 8ce4378d7f..0000000000 --- a/crates/edr_provider/tests/issue_361.rs +++ /dev/null @@ -1,55 +0,0 @@ -use edr_eth::{ - remote::{filter::LogFilterOptions, BlockSpec}, - transaction::EthTransactionRequest, - AccountInfo, Address, SpecId, -}; -use edr_evm::KECCAK_EMPTY; -use edr_provider::{ - test_utils::{create_test_config_with_fork, one_ether}, - MethodInvocation, NoopLogger, Provider, ProviderRequest, -}; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn issue_361() -> anyhow::Result<()> { - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let mut config = create_test_config_with_fork(None); - config.hardfork = SpecId::MUIR_GLACIER; - - let impersonated_account = Address::random(); - config.genesis_accounts.insert( - impersonated_account, - AccountInfo { - balance: one_ether(), - nonce: 0, - code: None, - code_hash: KECCAK_EMPTY, - }, - ); - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - provider.handle_request(ProviderRequest::Single( - MethodInvocation::ImpersonateAccount(impersonated_account.into()), - ))?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::SendTransaction( - EthTransactionRequest { - from: impersonated_account, - to: Some(Address::random()), - ..EthTransactionRequest::default() - }, - )))?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::GetLogs( - LogFilterOptions { - from_block: Some(BlockSpec::Number(0)), - to_block: Some(BlockSpec::latest()), - ..LogFilterOptions::default() - }, - )))?; - - Ok(()) -} diff --git a/crates/edr_provider/tests/issue_384.rs b/crates/edr_provider/tests/issue_384.rs deleted file mode 100644 index 588df6f3f6..0000000000 --- a/crates/edr_provider/tests/issue_384.rs +++ /dev/null @@ -1,28 +0,0 @@ -#![cfg(feature = "test-utils")] - -use edr_provider::{ - hardhat_rpc_types::ForkConfig, test_utils::create_test_config_with_fork, MethodInvocation, - NoopLogger, Provider, ProviderRequest, -}; -use edr_test_utils::env::get_infura_url; -use tokio::runtime; - -#[tokio::test(flavor = "multi_thread")] -async fn avalanche_chain_mine_local_block() -> anyhow::Result<()> { - const BLOCK_NUMBER: u64 = 22_587_773; - - let logger = Box::new(NoopLogger); - let subscriber = Box::new(|_event| {}); - - let config = create_test_config_with_fork(Some(ForkConfig { - json_rpc_url: get_infura_url().replace("mainnet", "avalanche-mainnet"), - block_number: Some(BLOCK_NUMBER), - http_headers: None, - })); - - let provider = Provider::new(runtime::Handle::current(), logger, subscriber, config)?; - - provider.handle_request(ProviderRequest::Single(MethodInvocation::EvmMine(None)))?; - - Ok(()) -} diff --git a/crates/edr_solidity/Cargo.toml b/crates/edr_solidity/Cargo.toml deleted file mode 100644 index a7e3b351ba..0000000000 --- a/crates/edr_solidity/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "edr_solidity" -version = "0.3.5" -edition = "2021" - -[dependencies] -edr_eth = { version = "0.3.5", path = "../edr_eth" } -edr_evm = { version = "0.3.5", path = "../edr_evm" } diff --git a/crates/edr_solidity/src/build_model.rs b/crates/edr_solidity/src/build_model.rs deleted file mode 100644 index 0e25f2f8fb..0000000000 --- a/crates/edr_solidity/src/build_model.rs +++ /dev/null @@ -1,11 +0,0 @@ -/// Temporary stub -pub struct BuildModel { - /// Temporary stub - pub source_files: Vec, -} - -/// Temporary stub -pub struct SourceFile { - /// Temporary stub - pub source_name: String, -} diff --git a/crates/edr_solidity/src/contracts_identifier.rs b/crates/edr_solidity/src/contracts_identifier.rs deleted file mode 100644 index c332faec30..0000000000 --- a/crates/edr_solidity/src/contracts_identifier.rs +++ /dev/null @@ -1,704 +0,0 @@ -mod radix_tree; - -use std::collections::HashMap; - -use edr_eth::Bytes; -use edr_evm::interpreter::opcode; -use radix_tree::RadixTree; - -use self::radix_tree::RadixNode; -use crate::opcodes::opcode_length; - -/// Temporary stub -#[derive(Debug, PartialEq)] -pub enum BytecodeType { - /// Temporary stub - Runtime, - /// Temporary stub - Deployment, -} - -/// Temporary stub -#[derive(Debug, PartialEq)] -pub struct ImmutableReference { - offset: usize, - length: usize, -} - -/// Temporary stub -#[derive(Debug, PartialEq)] -pub struct Bytecode { - normalized_code: Bytes, - bytecode_type: BytecodeType, - library_offsets: Vec, - immutable_references: Vec, -} - -impl Bytecode { - /// Temporary stub - pub fn is_deployment(&self) -> bool { - self.bytecode_type == BytecodeType::Deployment - } -} - -/// Temporary stub -pub struct CreateMessageTrace { - code: Bytes, -} - -/// Temporary stub -pub struct CallMessageTrace { - code: Bytes, -} - -/// Temporary stub -pub enum EvmMessageTrace { - /// Temporary stub - Create(CreateMessageTrace), - /// Temporary stub - Call(CallMessageTrace), -} - -impl EvmMessageTrace { - fn code(&self) -> &Bytes { - match self { - EvmMessageTrace::Create(create_message_trace) => &create_message_trace.code, - EvmMessageTrace::Call(call_message_trace) => &call_message_trace.code, - } - } -} - -/// Map of bytecodes to known contracts -// TODO add a caching layer: https://github.com/NomicFoundation/edr/issues/257 -#[derive(Default)] -pub struct ContractsIdentifier<'a> { - tree: RadixTree, - bytecodes: HashMap<&'a Bytes, &'a Bytecode>, -} - -impl<'a> ContractsIdentifier<'a> { - /// Add a known bytecode - pub fn add_bytecode(&mut self, bytecode: &'a Bytecode) { - self.tree.add_word(bytecode.normalized_code.clone()); - self.bytecodes.insert(&bytecode.normalized_code, bytecode); - } - - /// Get a bytecode by its normalized code - pub fn bytecode_by_message_trace(&self, trace: EvmMessageTrace) -> Option<&Bytecode> { - let normalized_code = normalize_library_runtime_bytecode_if_necessary(trace.code().clone()); - - self.search_bytecode_in_radix_tree(&trace, &normalized_code, true, None) - } - - fn search_bytecode_in_radix_tree( - &self, - trace: &EvmMessageTrace, - code: &Bytes, - normalize_libraries: bool, - radix_node: Option<&RadixNode>, - ) -> Option<&Bytecode> { - let radix_node = radix_node.unwrap_or(self.tree.root()); - - let (found, matched_bytes, node) = radix_node.longest_match(code); - - if found { - return self.bytecodes.get(&code).copied(); - } - - // The entire vector is present as a prefix, but not exactly - if code.len() == matched_bytes { - return None; - } - - // Deployment messages have their abi-encoded arguments at the end of the - // bytecode. - // - // We don't know how long those arguments are, as we don't know which contract - // is being deployed, hence we don't know the signature of its - // constructor. - // - // To make things even harder, we can't trust that the user actually passed the - // right amount of arguments. - // - // Luckily, the chances of a complete deployment bytecode being the prefix of - // another one are remote. For example, most of the time it ends with - // its metadata hash, which will differ. - // - // We take advantage of this last observation, and just return the bytecode that - // exactly matched the searchResult (sub)trie that we got. - let entire_node_matched = - matched_bytes == node.bytes_matched_before() + node.content().len(); - let not_entiry_bytecode_found = matched_bytes < code.len(); - if is_create_trace(trace) - && entire_node_matched - && not_entiry_bytecode_found - && node.is_present() - { - // concatenate the normalized code and the node content - let matched_bytecode: Bytes = [&code[..node.bytes_matched_before()], node.content()] - .concat() - .into(); - - let bytecode = self.bytecodes.get(&matched_bytecode).copied(); - - if let Some(bytecode) = bytecode { - if bytecode.is_deployment() { - return Some(bytecode); - } - } - } - - if normalize_libraries { - for suffix in node.descendant_suffixes() { - let descendant: Bytes = [&code[..node.bytes_matched_before()], &suffix] - .concat() - .into(); - - let bytecode_with_libraries = self.bytecodes.get(&descendant); - - if bytecode_with_libraries.is_none() { - continue; - } - let bytecode_with_libraries = bytecode_with_libraries.unwrap(); - - if bytecode_with_libraries.library_offsets.is_empty() - && bytecode_with_libraries.immutable_references.is_empty() - { - continue; - } - - let normalized_libraries_code = - zero_out_addresses(code, &bytecode_with_libraries.library_offsets); - let normalized_code = zero_out_slices( - &normalized_libraries_code, - &bytecode_with_libraries.immutable_references, - ); - - let normalized_result = - self.search_bytecode_in_radix_tree(trace, &normalized_code, false, Some(node)); - - if normalized_result.is_some() { - return normalized_result; - } - } - } - - // If we got here we may still have the contract, but with a different metadata - // hash. - // - // We check if we got to match the entire executable bytecode, and are just - // stuck because of the metadata. If that's the case, we can assume that - // any descendant will be a valid Bytecode, so we just choose the most - // recently added one. - // - // The reason this works is that there's no chance that Solidity includes an - // entire bytecode (i.e. with metadata), as a prefix of another one. - - if is_matching_metadata(code) { - let last_suffix = self.tree.root().descendant_suffixes().last(); - - if let Some(last_suffix) = last_suffix { - // TODO: this should be the last one in chronological insertion order: https://github.com/NomicFoundation/edr/issues/258 - let descendant: Bytes = [&code[..node.bytes_matched_before()], &last_suffix] - .concat() - .into(); - - return self.bytecodes.get(&descendant).copied(); - } - } - - None - } -} - -fn zero_out_addresses(code: &Bytes, offsets: &[usize]) -> Bytes { - let references = offsets - .iter() - .map(|offset| ImmutableReference { - offset: *offset, - length: 20, - }) - .collect::>(); - - zero_out_slices(code, &references) -} - -fn zero_out_slices(code: &Bytes, immutable_references: &[ImmutableReference]) -> Bytes { - let mut result = code.to_vec(); - - for reference in immutable_references { - for byte in result - .iter_mut() - .skip(reference.offset) - .take(reference.length) - { - *byte = 0; - } - } - - result.into() -} - -fn is_create_trace(trace: &EvmMessageTrace) -> bool { - match trace { - EvmMessageTrace::Create(_) => true, - EvmMessageTrace::Call(_) => false, - } -} - -fn normalize_library_runtime_bytecode_if_necessary(bytecode: Bytes) -> Bytes { - // Libraries' protection normalization: - // Solidity 0.4.20 introduced a protection to prevent libraries from being - // called directly. This is done by modifying the code on deployment, and - // hard-coding the contract address. The first instruction is a PUSH20 of - // the address, which we zero-out as a way of normalizing it. Note that it's - // also zeroed-out in the compiler output. - - if let Some(first_opcode) = bytecode.first() { - if *first_opcode == opcode::PUSH20 { - return zero_out_addresses(&bytecode, &[1]); - } - } - - bytecode -} - -fn is_matching_metadata(code: &[u8]) -> bool { - let mut byte = 0; - - while let (Some(opcode), Some(next_opcode)) = (code.get(byte), code.get(byte + 1)) { - // Solidity always emits REVERT INVALID right before the metadata - if *opcode == opcode::REVERT && *next_opcode == opcode::INVALID { - return true; - } - - byte += opcode_length(*opcode); - } - - false -} - -#[cfg(test)] -mod tests { - use std::vec; - - use super::*; - - fn create_test_call_trace(code: Bytes) -> EvmMessageTrace { - EvmMessageTrace::Call(CallMessageTrace { code }) - } - - fn create_test_create_trace(code: Bytes) -> EvmMessageTrace { - EvmMessageTrace::Create(CreateMessageTrace { code }) - } - - fn create_test_bytecode(normalized_code: Bytes) -> Bytecode { - Bytecode { - normalized_code, - bytecode_type: BytecodeType::Runtime, - library_offsets: vec![], - immutable_references: vec![], - } - } - - fn create_test_bytecode_with_libraries_and_immutable_references( - normalized_code: Bytes, - library_offsets: Vec, - immutable_references: Vec, - ) -> Bytecode { - Bytecode { - normalized_code, - bytecode_type: BytecodeType::Runtime, - library_offsets, - immutable_references, - } - } - - fn create_test_deployment_bytecode(normalized_code: Bytes) -> Bytecode { - Bytecode { - normalized_code, - bytecode_type: BytecodeType::Deployment, - library_offsets: vec![], - immutable_references: vec![], - } - } - - #[test] - fn test_contracts_identifier_empty() { - let contracts_identifier = ContractsIdentifier::default(); - - // should not find any bytecode for a call trace - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - - // sould not find any bytecode for a create trace - let create_trace = create_test_create_trace(vec![1, 2, 3, 4, 5].into()); - let contract = contracts_identifier.bytecode_by_message_trace(create_trace); - assert_eq!(contract, None); - } - - #[test] - fn test_contracts_identifier_single_matching_bytecode() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode(vec![1, 2, 3, 4, 5].into()); - contracts_identifier.add_bytecode(&bytecode); - - // should find a bytecode that matches exactly - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - - // should not find a bytecode that doesn't match - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 6].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - } - - #[test] - fn test_contracts_identifier_multiple_matches_same_prefix() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode1 = create_test_bytecode(vec![1, 2, 3, 4, 5].into()); - let bytecode2 = create_test_bytecode(vec![1, 2, 3, 4, 5, 6, 7, 8].into()); - contracts_identifier.add_bytecode(&bytecode1); - contracts_identifier.add_bytecode(&bytecode2); - - // should find the exact match - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode1)); - - // should find the exact match - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5, 6, 7, 8].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode2)); - - // should not find a bytecode that doesn't match - let call_trace = create_test_call_trace(vec![0, 1, 2, 3, 4, 5, 6, 7, 8].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - } - - #[test] - fn test_contracts_identifier_trace_matches_common_prefix() { - let mut contracts_identifier = ContractsIdentifier::default(); - - // add two bytecodes that share a prefix - let bytecode1 = create_test_bytecode(vec![1, 2, 3, 4, 5].into()); - let bytecode2 = create_test_bytecode(vec![1, 2, 3, 6, 7].into()); - contracts_identifier.add_bytecode(&bytecode1); - contracts_identifier.add_bytecode(&bytecode2); - - // search a trace that matches the common prefix - let call_trace = create_test_call_trace(vec![1, 2, 3].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - } - - #[test] - fn test_contracts_identifier_trace_matches_deployment_bytecode_prefix() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_deployment_bytecode(vec![1, 2, 3, 4, 5].into()); - contracts_identifier.add_bytecode(&bytecode); - - // a create trace that matches the a deployment bytecode plus some extra stuff - // (constructor args) - let create_trace = create_test_create_trace(vec![1, 2, 3, 4, 5, 10, 11].into()); - let contract = contracts_identifier.bytecode_by_message_trace(create_trace); - assert_eq!(contract, Some(&bytecode)); - - // the same bytecode, but for a call trace, should not match - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5, 10, 11].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - - // the same scenario but with a runtime bytecode shouldn't result in matches - let mut contracts_identifier = ContractsIdentifier::default(); - let bytecode = create_test_bytecode(vec![1, 2, 3, 4, 5].into()); - contracts_identifier.add_bytecode(&bytecode); - - let create_trace = create_test_create_trace(vec![1, 2, 3, 4, 5, 10, 11].into()); - let contract = contracts_identifier.bytecode_by_message_trace(create_trace); - assert_eq!(contract, None); - - let call_trace = create_test_call_trace(vec![1, 2, 3, 4, 5, 10, 11].into()); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, None); - } - - #[test] - fn test_contracts_identifier_bytecode_with_one_library() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode_with_libraries_and_immutable_references( - vec![ - // 0 ------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, library address - // ------------------------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 40 ------------------------------------------------------------------------------ - 21, 22, 23, 24, 25, - ] - .into(), - vec![20], - vec![], - ); - contracts_identifier.add_bytecode(&bytecode); - - // the same bytecode, but for a call trace, should not match - let call_trace = create_test_call_trace( - vec![ - // 0 ----------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, library address - // ----------------------------------------------------------------- - 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, - // 40 ---------------------------------------------------------------------------------- - 21, 22, 23, 24, 25, - ] - .into(), - ); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } - - #[test] - fn test_contracts_identifier_bytecode_with_one_immutable_reference() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode_with_libraries_and_immutable_references( - vec![ - // 0 ------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // -------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 30 ------------------------------------------------------------------------------ - 21, 22, 23, 24, 25, - ] - .into(), - vec![], - vec![ImmutableReference { - offset: 20, - length: 10, - }], - ); - contracts_identifier.add_bytecode(&bytecode); - - // the same bytecode, but for a call trace, should not match - let call_trace = create_test_call_trace( - vec![ - // 0 ----------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // ------------------------------------------------ - 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, - // 30 ---------------------------------------------------------------------------------- - 21, 22, 23, 24, 25, - ] - .into(), - ); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } - - #[test] - fn test_contracts_identifier_bytecode_with_one_library_and_one_immutable_reference() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode_with_libraries_and_immutable_references( - vec![ - // 0 ------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // -------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 30 ------------------------------------------------------------------------------ - 21, 22, 23, 24, 25, - // 35, library address - // ------------------------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 55 ------------------------------------------------------------------------------ - 26, 27, 28, 29, 30, - ] - .into(), - vec![35], - vec![ImmutableReference { - offset: 20, - length: 10, - }], - ); - contracts_identifier.add_bytecode(&bytecode); - - // the same bytecode, but for a call trace, should not match - let call_trace = create_test_call_trace( - vec![ - // 0 ----------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // ------------------------------------------------ - 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, - // 30 ---------------------------------------------------------------------------------- - 21, 22, 23, 24, 25, - // 35, library address - // ----------------------------------------------------------------- - 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, - 218, 219, 220, - // 55 ---------------------------------------------------------------------------------- - 26, 27, 28, 29, 30, - ] - .into(), - ); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } - - #[test] - fn test_contracts_identifier_bytecode_with_multiple_libraries_and_immutable_references() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode_with_libraries_and_immutable_references( - vec![ - // 0 ------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // -------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 30 ------------------------------------------------------------------------------ - 21, 22, 23, 24, 25, - // 35, library address - // ------------------------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 55 ------------------------------------------------------------------------------ - 26, 27, 28, 29, 30, - // 60, another library address - // ----------------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // 80 ------------------------------------------------------------------------------ - 31, 32, 33, 34, 35, - // 85, immutable reference of length 30 - // -------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, - // 115 ----------------------------------------------------------------------------- - 36, 37, 38, 39, 40, - ] - .into(), - vec![35, 60], - vec![ - ImmutableReference { - offset: 20, - length: 10, - }, - ImmutableReference { - offset: 85, - length: 30, - }, - ], - ); - contracts_identifier.add_bytecode(&bytecode); - - // the same bytecode, but for a call trace, should not match - let call_trace = create_test_call_trace( - vec![ - // 0 ----------------------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - // 20, immutable reference of length 10 - // ------------------------------------------------ - 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, - // 30 ---------------------------------------------------------------------------------- - 21, 22, 23, 24, 25, - // 35, library address - // ----------------------------------------------------------------- - 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, - 218, 219, 220, - // 55 ---------------------------------------------------------------------------------- - 26, 27, 28, 29, 30, - // 60, another library address - // --------------------------------------------------------- - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 238, 239, 240, - // 80 ---------------------------------------------------------------------------------- - 31, 32, 33, 34, 35, - // 85, immutable reference of length 30 - // ------------------------------------------------ - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - // 115 --------------------------------------------------------------------------------- - 36, 37, 38, 39, 40, - ] - .into(), - ); - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } - - #[test] - fn test_contracts_identifier_bytecode_with_different_metadata() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode( - vec![ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - // metadata ---------------------------------------------------------------------------- - 0xfd, 0xfe, 11, 12, 13, 14, 15, - ] - .into(), - ); - contracts_identifier.add_bytecode(&bytecode); - - let call_trace = create_test_call_trace( - vec![ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - // metadata ---------------------------------------------------------------------------- - 0xfd, 0xfe, 21, 22, 23, - ] - .into(), - ); - - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } - - #[test] - fn test_contracts_identifier_normalized_library_runtime_code() { - let mut contracts_identifier = ContractsIdentifier::default(); - - let bytecode = create_test_bytecode( - vec![ - // PUSH20 - 0x73, - // library address - // --------------------------------------------------------------------- - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - // rest of the code - // -------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - ] - .into(), - ); - contracts_identifier.add_bytecode(&bytecode); - - let call_trace = create_test_call_trace( - vec![ - // PUSH20 - 0x73, - // library address - // --------------------------------------------------------------------- - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - // rest of the code - // -------------------------------------------------------------------- - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - ] - .into(), - ); - - let contract = contracts_identifier.bytecode_by_message_trace(call_trace); - assert_eq!(contract, Some(&bytecode)); - } -} diff --git a/crates/edr_solidity/src/contracts_identifier/radix_tree.rs b/crates/edr_solidity/src/contracts_identifier/radix_tree.rs deleted file mode 100644 index 978e3691c8..0000000000 --- a/crates/edr_solidity/src/contracts_identifier/radix_tree.rs +++ /dev/null @@ -1,534 +0,0 @@ -use std::collections::BTreeMap; - -use edr_eth::Bytes; - -#[derive(Debug)] -pub struct RadixNode { - content: Bytes, - is_present: bool, - bytes_matched_before: usize, - child_nodes: BTreeMap, -} - -impl RadixNode { - fn new(content: Bytes, is_present: bool, bytes_matched_before: usize) -> RadixNode { - RadixNode { - content, - is_present, - bytes_matched_before, - child_nodes: BTreeMap::new(), - } - } - - pub fn content(&self) -> &[u8] { - &self.content - } - - pub fn is_present(&self) -> bool { - self.is_present - } - - pub fn bytes_matched_before(&self) -> usize { - self.bytes_matched_before - } - - fn add_word(&mut self, word: Bytes) { - if word.is_empty() { - return; - } - - let b = word[0]; - - // we temporarily remove the next node and then insert it back, possibly mutated - // and/or in a different position - let next_node = self.child_nodes.remove(&b); - - if let Some(mut next_node) = next_node { - let prefix_length = longest_prefix_length(&word, &next_node.content); - - // We know it's at least 1 - debug_assert!(prefix_length > 0); - - // Check if the next node's label is included in the word - if prefix_length == next_node.content.len() { - // Check if the next node matches the word exactly - if prefix_length == word.len() { - next_node.is_present = true; - self.child_nodes.insert(b, next_node); - return; - } - - next_node.add_word(word.slice(prefix_length..)); - self.child_nodes.insert(b, next_node); - - return; - } - - // If the content includes what's left of the word and some extra - if prefix_length == word.len() { - // nextNode includes the current word and some extra, so we insert a - // new node with the word - let mut node = - RadixNode::new(word, true, self.bytes_matched_before + self.content.len()); - - // the new node points to next_node - next_node.content = next_node.content.slice(prefix_length..); - next_node.bytes_matched_before += node.content.len(); - node.child_nodes.insert(next_node.content[0], next_node); - - // the current node now points to the new node - self.child_nodes.insert(b, node); - - return; - } - - // The content includes some part of the word, but not all of it - // insert a new in-between node between current node and it's child, that - // will have children for the old child and a new node for the given word. - let mut middle_node = RadixNode::new( - word.slice(..prefix_length), - false, - self.bytes_matched_before + self.content.len(), - ); - - // next_node should come after middle_node and its content and - // bytes_matched_before need to be adapted - next_node.content = next_node.content.slice(prefix_length..); - next_node.bytes_matched_before += - middle_node.bytes_matched_before + middle_node.content.len(); - middle_node - .child_nodes - .insert(next_node.content[0], next_node); - - // create a new node for the word - let new_node = RadixNode::new( - word.slice(prefix_length..), - true, - middle_node.bytes_matched_before + middle_node.content.len(), - ); - middle_node - .child_nodes - .insert(word[prefix_length], new_node); - - // set the middle_node as current_node's child - self.child_nodes.insert(b, middle_node); - } else { - let bytes_matched_before = self.bytes_matched_before + self.content.len(); - - let node = RadixNode::new(word, true, bytes_matched_before); - - self.child_nodes.insert(b, node); - } - } - - /** - * Returns a tuple containing: - * - a boolean indicating if the word was matched exactly - * - the number of bytes matched - * - the node that matched the word - * If the word is not matched exactly, the node will be the one that - * matched the longest prefix. - */ - pub fn longest_match(&self, word: &[u8]) -> (bool, usize, &RadixNode) { - let prefix_length = longest_prefix_length(word, &self.content); - - let matched = prefix_length + self.bytes_matched_before; - - let entire_word_matched = prefix_length == word.len(); - let entire_content_matched = prefix_length == self.content.len(); - - if entire_word_matched { - if entire_content_matched { - return (self.is_present, matched, &self); - } - - return (false, matched, &self); - } - - if !entire_content_matched { - return (false, matched, &self); - } - - let next_node = self.child_nodes.get(&word[prefix_length]); - - match next_node { - None => (false, matched, &self), - Some(next_node) => next_node.longest_match(&word[prefix_length..]), - } - } - - pub fn descendant_suffixes<'a>(&'a self) -> Box + 'a> { - let child_nodes = self.child_nodes.values(); - - let suffixes = std::iter::once(self.content.clone()) - .filter(|_x| self.is_present) - .chain(child_nodes.flat_map(|node| { - node.descendant_suffixes() - .map(|suffix| [self.content.clone(), suffix].concat().into()) - })); - - Box::new(suffixes) - } -} - -#[derive(Debug)] -pub struct RadixTree { - root: RadixNode, -} - -impl RadixTree { - pub fn root(&self) -> &RadixNode { - &self.root - } - - pub fn add_word(&mut self, word: Bytes) { - self.root.add_word(word); - } -} - -impl Default for RadixTree { - fn default() -> Self { - RadixTree { - root: RadixNode::new(Bytes::new(), false, 0), - } - } -} - -fn longest_prefix_length(a: &[u8], b: &[u8]) -> usize { - a.iter() - .zip(b.iter()) - .enumerate() - .find(|(_, (a, b))| a != b) - .map_or_else(|| a.len().min(b.len()), |(idx, _)| idx) -} - -#[cfg(test)] -mod tests { - use edr_eth::hex_literal::hex; - - use super::*; - - #[test] - fn test_radix_tree_empty() { - let tree = RadixTree::default(); - - // check that the root content is empty - assert_eq!(tree.root.content.len(), 0); - - // check that the root is not present - assert!(!tree.root.is_present); - - // check that the bytes matched before in the root is 0 - assert_eq!(tree.root.bytes_matched_before, 0); - - // check that the root doesn't have children - assert_eq!(tree.root.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_single_word() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - - assert_eq!(tree.root.child_nodes.len(), 1); - - let child = tree.root.child_nodes.get(&b't').unwrap(); - - assert_eq!(child.content, b"test".to_vec()); - assert!(child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_same_word_twice() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - tree.add_word(Bytes::from("test")); - - assert_eq!(tree.root.child_nodes.len(), 1); - - let child = tree.root.child_nodes.get(&b't').unwrap(); - - assert_eq!(child.content, Bytes::from("test")); - assert!(child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_word_same_prefix() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - tree.add_word(Bytes::from("test2")); - - assert_eq!(tree.root.child_nodes.len(), 1); - - let child = tree.root.child_nodes.get(&b't').unwrap(); - - assert_eq!(child.content, Bytes::from("test")); - assert!(child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 1); - - let grandchild = child.child_nodes.get(&b'2').unwrap(); - assert_eq!(grandchild.content, Bytes::from("2")); - assert!(grandchild.is_present); - assert_eq!(grandchild.bytes_matched_before, 4); - assert_eq!(grandchild.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_word_prefix_existing_one() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - tree.add_word(Bytes::from("te")); - - assert_eq!(tree.root.child_nodes.len(), 1); - let child = tree.root.child_nodes.get(&b't').unwrap(); - assert_eq!(child.content, Bytes::from("te")); - assert!(child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 1); - - let grandchild = child.child_nodes.get(&b's').unwrap(); - assert_eq!(grandchild.content, Bytes::from("st")); - assert!(grandchild.is_present); - assert_eq!(grandchild.bytes_matched_before, 2); - assert_eq!(grandchild.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_word_with_shared_prefix_but_different_existing_ones() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - tree.add_word(Bytes::from("tast")); - - assert_eq!(tree.root.child_nodes.len(), 1); - let child = tree.root.child_nodes.get(&b't').unwrap(); - assert_eq!(child.content, Bytes::from("t")); - assert!(!child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 2); - - let grandchild1 = child.child_nodes.get(&b'e').unwrap(); - assert_eq!(grandchild1.content, Bytes::from("est")); - assert!(grandchild1.is_present); - assert_eq!(grandchild1.bytes_matched_before, 1); - assert_eq!(grandchild1.child_nodes.len(), 0); - - let grandchild2 = child.child_nodes.get(&b'a').unwrap(); - assert_eq!(grandchild2.content, Bytes::from("ast")); - assert!(grandchild2.is_present); - assert_eq!(grandchild2.bytes_matched_before, 1); - assert_eq!(grandchild2.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_add_word_match_existing_nodes() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - tree.add_word(Bytes::from("tast")); - tree.add_word(Bytes::from("t")); - - assert_eq!(tree.root.child_nodes.len(), 1); - let child = tree.root.child_nodes.get(&b't').unwrap(); - assert_eq!(child.content, Bytes::from("t")); - assert!(child.is_present); - assert_eq!(child.bytes_matched_before, 0); - assert_eq!(child.child_nodes.len(), 2); - - let grandchild1 = child.child_nodes.get(&b'e').unwrap(); - assert_eq!(grandchild1.content, Bytes::from("est")); - assert!(grandchild1.is_present); - assert_eq!(grandchild1.bytes_matched_before, 1); - assert_eq!(grandchild1.child_nodes.len(), 0); - - let grandchild2 = child.child_nodes.get(&b'a').unwrap(); - assert_eq!(grandchild2.content, Bytes::from("ast")); - assert!(grandchild2.is_present); - assert_eq!(grandchild2.bytes_matched_before, 1); - assert_eq!(grandchild2.child_nodes.len(), 0); - } - - #[test] - fn test_radix_tree_get_max_match_default_first_node_empty_tree() { - let tree = RadixTree::default(); - let (exact_match, length_matched, node) = tree.root.longest_match(&Bytes::from("word")); - - assert!(!exact_match); - assert_eq!(length_matched, 0); - assert!(std::ptr::eq(node, &tree.root)); - } - - #[test] - fn test_radix_tree_get_max_match_default_first_node_words_without_prefix() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("asdf")); - let (exact_match, length_matched, node) = tree.root.longest_match(&Bytes::from("word")); - - assert!(!exact_match); - assert_eq!(length_matched, 0); - assert!(std::ptr::eq(node, &tree.root)); - } - - #[test] - fn test_radix_tree_get_max_match_default_first_node_prefix_smaller_than_content() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("asd")); - let (exact_match, length_matched, node) = tree.root.longest_match(&Bytes::from("as")); - - assert!(!exact_match); - assert_eq!(length_matched, 2); - assert!(std::ptr::eq( - node, - tree.root.child_nodes.get(&b'a').unwrap() - ),); - } - - #[test] - fn test_radix_tree_get_max_match_default_first_node_words_present_after_some_nodes() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("a")); - tree.add_word(Bytes::from("as")); - tree.add_word(Bytes::from("asd")); - let (exact_match, length_matched, node) = tree.root.longest_match(&Bytes::from("asd")); - - assert!(exact_match); - assert_eq!(length_matched, 3); - let expected_node = tree - .root - .child_nodes - .get(&b'a') - .unwrap() - .child_nodes - .get(&b's') - .unwrap() - .child_nodes - .get(&b'd') - .unwrap(); - assert!(std::ptr::eq(node, expected_node)); - } - - #[test] - fn test_radix_tree_get_max_match_default_first_node_word_longer_than_existing_nodes() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("a")); - tree.add_word(Bytes::from("as")); - tree.add_word(Bytes::from("asd")); - let (exact_match, length_matched, node) = tree.root.longest_match(&Bytes::from("asdf")); - - assert!(!exact_match); - assert_eq!(length_matched, 3); - let expected_node = tree - .root - .child_nodes - .get(&b'a') - .unwrap() - .child_nodes - .get(&b's') - .unwrap() - .child_nodes - .get(&b'd') - .unwrap(); - assert!(std::ptr::eq(node, expected_node)); - } - - #[test] - fn test_radix_tree_descendant_suffixes_empty_tree() { - let tree = RadixTree::default(); - - let suffixes: Vec = tree.root.descendant_suffixes().collect(); - - assert_eq!(suffixes.len(), 0); - } - - #[test] - fn test_radix_tree_descendant_suffixes_return_the_node_label_if_present() { - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("test")); - - let suffixes: Vec = tree.root.descendant_suffixes().collect(); - - assert_eq!(suffixes.len(), 1); - assert_eq!(suffixes[0], Bytes::from("test")); - } - - #[test] - fn test_radix_tree_descendant_suffixes_more_complex_tree() { - // - // | - // - // / \ - // [de] - // | / \ - // [f] [g] [h] - let mut tree = RadixTree::default(); - tree.add_word(Bytes::from("abcde")); - tree.add_word(Bytes::from("abcdef")); - tree.add_word(Bytes::from("abcgg")); - tree.add_word(Bytes::from("abcgh")); - - let suffixes: Vec = tree.root.descendant_suffixes().collect(); - assert_eq!( - suffixes, - vec![ - b"abcde".to_vec(), - b"abcdef".to_vec(), - b"abcgg".to_vec(), - b"abcgh".to_vec() - ] - ); - - let abc_node = tree.root.child_nodes.get(&b'a').unwrap(); - let suffixes: Vec = abc_node.descendant_suffixes().collect(); - assert_eq!( - suffixes, - vec![ - b"abcde".to_vec(), - b"abcdef".to_vec(), - b"abcgg".to_vec(), - b"abcgh".to_vec() - ] - ); - - let abcde_node = abc_node.child_nodes.get(&b'd').unwrap(); - let suffixes: Vec = abcde_node.descendant_suffixes().collect(); - assert_eq!(suffixes, vec![b"de".to_vec(), b"def".to_vec()]); - - let abcg_node = abc_node.child_nodes.get(&b'g').unwrap(); - let suffixes: Vec = abcg_node.descendant_suffixes().collect(); - assert_eq!(suffixes, vec![b"gg".to_vec(), b"gh".to_vec()]); - - let abcgh_node = abcg_node.child_nodes.get(&b'h').unwrap(); - let suffixes: Vec = abcgh_node.descendant_suffixes().collect(); - assert_eq!(suffixes, vec![b"h".to_vec()]); - } - - #[test] - fn test_radix_tree_real_world_example() { - // Bytecodes extracted from - // Use compiler soljson-v0.6.3+commit.8dda9521.js - // 0_6 - // abi-v2 - // call-failing-function - // Without optimizations - // test-files/0_6/abi-v2/call-failing-function - let mut tree = RadixTree::default(); - - let bytecode1 = Bytes::from_static(&hex!("608060405234801561001057600080fd5b506105d5806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f8a8fd6d14610030575b600080fd5b61003861003a565b005b6000604051610048906100f0565b604051809103906000f080158015610064573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff1663a9cc47186040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156100af57600080fd5b505af11580156100c3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052506100ec91908101906101e1565b5050565b6103078061029983390190565b600082601f83011261010e57600080fd5b815161012161011c8261024f565b610222565b9150818183526020840193506020810190508385604084028201111561014657600080fd5b60005b83811015610176578161015c8882610180565b845260208401935060408301925050600181019050610149565b5050505092915050565b60006040828403121561019257600080fd5b61019c6040610222565b905060006101ac848285016101cc565b60008301525060206101c0848285016101cc565b60208301525092915050565b6000815190506101db81610281565b92915050565b6000602082840312156101f357600080fd5b600082015167ffffffffffffffff81111561020d57600080fd5b610219848285016100fd565b91505092915050565b6000604051905081810181811067ffffffffffffffff8211171561024557600080fd5b8060405250919050565b600067ffffffffffffffff82111561026657600080fd5b602082029050602081019050919050565b6000819050919050565b61028a81610277565b811461029557600080fd5b5056fe608060405234801561001057600080fd5b506102e7806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063a9cc471814610030575b600080fd5b61003861004e565b604051610045919061021b565b60405180910390f35b60606040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100829061023d565b60405180910390fd5b61009361010d565b81526020019060019003908161008b5790505090506040518060400160405280600181526020016002815250816000815181106100cc57fe5b60200260200101819052506040518060400160405280600281526020016003815250816001815181106100fb57fe5b60200260200101819052508091505090565b604051806040016040528060008152602001600081525090565b600061013383836101dd565b60408301905092915050565b600061014a8261026d565b6101548185610285565b935061015f8361025d565b8060005b838110156101905781516101778882610127565b975061018283610278565b925050600181019050610163565b5085935050505092915050565b60006101aa600883610296565b91507f44206661696c65640000000000000000000000000000000000000000000000006000830152602082019050919050565b6040820160008201516101f3600085018261020c565b506020820151610206602085018261020c565b50505050565b610215816102a7565b82525050565b60006020820190508181036000830152610235818461013f565b905092915050565b600060208201905081810360008301526102568161019d565b9050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905091905056fea2646970667358221220fbf4de57de6e06c6bac2a7ec2392518b6eb777da534fdd38b8bd290988583c6764736f6c63430006030033a264697066735822122070cadf9cc927971990ad70f87b31a21294cb7ba5f9498d6595ebde6fab6c9a9b64736f6c63430006030033")); - let bytecode2 = Bytes::from_static(&hex!("608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f8a8fd6d14610030575b600080fd5b61003861003a565b005b6000604051610048906100f0565b604051809103906000f080158015610064573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff1663a9cc47186040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156100af57600080fd5b505af11580156100c3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052506100ec91908101906101e1565b5050565b6103078061029983390190565b600082601f83011261010e57600080fd5b815161012161011c8261024f565b610222565b9150818183526020840193506020810190508385604084028201111561014657600080fd5b60005b83811015610176578161015c8882610180565b845260208401935060408301925050600181019050610149565b5050505092915050565b60006040828403121561019257600080fd5b61019c6040610222565b905060006101ac848285016101cc565b60008301525060206101c0848285016101cc565b60208301525092915050565b6000815190506101db81610281565b92915050565b6000602082840312156101f357600080fd5b600082015167ffffffffffffffff81111561020d57600080fd5b610219848285016100fd565b91505092915050565b6000604051905081810181811067ffffffffffffffff8211171561024557600080fd5b8060405250919050565b600067ffffffffffffffff82111561026657600080fd5b602082029050602081019050919050565b6000819050919050565b61028a81610277565b811461029557600080fd5b5056fe608060405234801561001057600080fd5b506102e7806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063a9cc471814610030575b600080fd5b61003861004e565b604051610045919061021b565b60405180910390f35b60606040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100829061023d565b60405180910390fd5b61009361010d565b81526020019060019003908161008b5790505090506040518060400160405280600181526020016002815250816000815181106100cc57fe5b60200260200101819052506040518060400160405280600281526020016003815250816001815181106100fb57fe5b60200260200101819052508091505090565b604051806040016040528060008152602001600081525090565b600061013383836101dd565b60408301905092915050565b600061014a8261026d565b6101548185610285565b935061015f8361025d565b8060005b838110156101905781516101778882610127565b975061018283610278565b925050600181019050610163565b5085935050505092915050565b60006101aa600883610296565b91507f44206661696c65640000000000000000000000000000000000000000000000006000830152602082019050919050565b6040820160008201516101f3600085018261020c565b506020820151610206602085018261020c565b50505050565b610215816102a7565b82525050565b60006020820190508181036000830152610235818461013f565b905092915050565b600060208201905081810360008301526102568161019d565b9050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905091905056fea2646970667358221220fbf4de57de6e06c6bac2a7ec2392518b6eb777da534fdd38b8bd290988583c6764736f6c63430006030033a264697066735822122070cadf9cc927971990ad70f87b31a21294cb7ba5f9498d6595ebde6fab6c9a9b64736f6c63430006030033")); - let bytecode3 = Bytes::from_static(&hex!("608060405234801561001057600080fd5b506102e7806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063a9cc471814610030575b600080fd5b61003861004e565b604051610045919061021b565b60405180910390f35b60606040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100829061023d565b60405180910390fd5b61009361010d565b81526020019060019003908161008b5790505090506040518060400160405280600181526020016002815250816000815181106100cc57fe5b60200260200101819052506040518060400160405280600281526020016003815250816001815181106100fb57fe5b60200260200101819052508091505090565b604051806040016040528060008152602001600081525090565b600061013383836101dd565b60408301905092915050565b600061014a8261026d565b6101548185610285565b935061015f8361025d565b8060005b838110156101905781516101778882610127565b975061018283610278565b925050600181019050610163565b5085935050505092915050565b60006101aa600883610296565b91507f44206661696c65640000000000000000000000000000000000000000000000006000830152602082019050919050565b6040820160008201516101f3600085018261020c565b506020820151610206602085018261020c565b50505050565b610215816102a7565b82525050565b60006020820190508181036000830152610235818461013f565b905092915050565b600060208201905081810360008301526102568161019d565b9050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905091905056fea2646970667358221220fbf4de57de6e06c6bac2a7ec2392518b6eb777da534fdd38b8bd290988583c6764736f6c63430006030033")); - let bytecode4 = Bytes::from_static(&hex!("608060405234801561001057600080fd5b506004361061002b5760003560e01c8063a9cc471814610030575b600080fd5b61003861004e565b604051610045919061021b565b60405180910390f35b60606040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100829061023d565b60405180910390fd5b61009361010d565b81526020019060019003908161008b5790505090506040518060400160405280600181526020016002815250816000815181106100cc57fe5b60200260200101819052506040518060400160405280600281526020016003815250816001815181106100fb57fe5b60200260200101819052508091505090565b604051806040016040528060008152602001600081525090565b600061013383836101dd565b60408301905092915050565b600061014a8261026d565b6101548185610285565b935061015f8361025d565b8060005b838110156101905781516101778882610127565b975061018283610278565b925050600181019050610163565b5085935050505092915050565b60006101aa600883610296565b91507f44206661696c65640000000000000000000000000000000000000000000000006000830152602082019050919050565b6040820160008201516101f3600085018261020c565b506020820151610206602085018261020c565b50505050565b610215816102a7565b82525050565b60006020820190508181036000830152610235818461013f565b905092915050565b600060208201905081810360008301526102568161019d565b9050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905091905056fea2646970667358221220fbf4de57de6e06c6bac2a7ec2392518b6eb777da534fdd38b8bd290988583c6764736f6c63430006030033")); - - tree.add_word(bytecode1.clone()); - tree.add_word(bytecode2.clone()); - tree.add_word(bytecode3.clone()); - tree.add_word(bytecode4.clone()); - - assert!(tree.root.longest_match(&bytecode1).0); - assert!(tree.root.longest_match(&bytecode2).0); - assert!(tree.root.longest_match(&bytecode3).0); - assert!(tree.root.longest_match(&bytecode4).0); - } -} diff --git a/crates/edr_solidity/src/lib.rs b/crates/edr_solidity/src/lib.rs deleted file mode 100644 index 2e603574e9..0000000000 --- a/crates/edr_solidity/src/lib.rs +++ /dev/null @@ -1,11 +0,0 @@ -#![warn(missing_docs)] - -//! Repository of information about contracts written in Solidity. - -/// Model of the project's codebase -pub mod build_model; - -/// Map of bytecodes to known contracts -pub mod contracts_identifier; - -mod opcodes; diff --git a/crates/edr_solidity/src/opcodes.rs b/crates/edr_solidity/src/opcodes.rs deleted file mode 100644 index a8b66d51b9..0000000000 --- a/crates/edr_solidity/src/opcodes.rs +++ /dev/null @@ -1,17 +0,0 @@ -use edr_evm::interpreter::opcode; - -fn is_push(opcode: u8) -> bool { - (opcode::PUSH1..=opcode::PUSH32).contains(&opcode) -} - -fn push_length(opcode: u8) -> usize { - (opcode - opcode::PUSH1 + 1) as usize -} - -pub fn opcode_length(opcode: u8) -> usize { - if !is_push(opcode) { - return 1; - } - - 1 + push_length(opcode) -} diff --git a/crates/edr_test_utils/Cargo.toml b/crates/edr_test_utils/Cargo.toml deleted file mode 100644 index 8fc4f8b037..0000000000 --- a/crates/edr_test_utils/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "edr_test_utils" -version = "0.3.5" -edition = "2021" - -[dependencies] -serde = { version = "1.0.147", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.89" } diff --git a/crates/edr_test_utils/src/env.rs b/crates/edr_test_utils/src/env.rs deleted file mode 100644 index 2ea53f6ef0..0000000000 --- a/crates/edr_test_utils/src/env.rs +++ /dev/null @@ -1,31 +0,0 @@ -//! Helper functions for environment variables - -fn get_non_empty_env_var_or_panic(name: &'static str) -> String { - let result = std::env::var_os(name) - .unwrap_or_else(|| panic!("{name} environment variable not defined")) - .into_string() - .expect("Couldn't convert OsString into a String"); - if result.is_empty() { - panic!("{name} environment variable is empty") - } else { - result - } -} - -/// Returns the Alchemy URL from the environment variables. -/// -/// # Panics -/// -/// Panics if the environment variable is not defined, or if it is empty. -pub fn get_alchemy_url() -> String { - get_non_empty_env_var_or_panic("ALCHEMY_URL") -} - -/// Returns the Infura URL from the environment variables. -/// -/// # Panics -/// -/// Panics if the environment variable is not defined, or if it is empty. -pub fn get_infura_url() -> String { - get_non_empty_env_var_or_panic("INFURA_URL") -} diff --git a/crates/edr_test_utils/src/lib.rs b/crates/edr_test_utils/src/lib.rs deleted file mode 100644 index 3d7924f6ab..0000000000 --- a/crates/edr_test_utils/src/lib.rs +++ /dev/null @@ -1 +0,0 @@ -pub mod env; diff --git a/crates/eth_execution_api/Cargo.toml b/crates/eth_execution_api/Cargo.toml deleted file mode 100644 index 2fa1b98453..0000000000 --- a/crates/eth_execution_api/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "eth_execution_api" -version = "1.0.0-beta.1" -edition = "2021" - -[dependencies] -derive_builder = { version = "0.11.2", default-features = false } -serde = { version = "1.0.145", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] } diff --git a/crates/eth_execution_api/src/lib.rs b/crates/eth_execution_api/src/lib.rs deleted file mode 100644 index 8b13789179..0000000000 --- a/crates/eth_execution_api/src/lib.rs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/crates/tools/Cargo.toml b/crates/tools/Cargo.toml deleted file mode 100644 index c1f32e130b..0000000000 --- a/crates/tools/Cargo.toml +++ /dev/null @@ -1,30 +0,0 @@ -[package] -name = "tools" -version = "0.1.0" -edition = "2021" - -[dependencies] -anyhow = { version = "1.0.75" } -cfg-if = "1.0.0" -clap = { version = "3.2.20", features = ["derive"] } -difference = { version = "2.0.0", default-features = false } -edr_defaults = { version = "0.3.5", path = "../edr_defaults" } -edr_eth = { version = "0.3.5", path = "../edr_eth" } -edr_evm = { version = "0.3.5", path = "../edr_evm", features = ["tracing"] } -edr_provider = { version = "0.3.5", path = "../edr_provider", features = ["test-utils"] } -flate2 = "1.0.28" -indicatif = { version = "0.17.7", features = ["rayon"] } -mimalloc = { version = "0.1.39", default-features = false } -reqwest = { version = "0.11.12", features = ["blocking"] } -serde_json = "1.0.107" -serde = { version = "1.0.189", features = ["derive"] } -tempfile = "3.7.1" -tokio = "1.33.0" -tracing = { version = "0.1.37", features = ["attributes", "std"], optional = true } -tracing-flame = { version = "0.2.0", default-features = false, features = ["smallvec"], optional = true } -tracing-subscriber = { version = "0.3.18", default-features = false, features = ["ansi", "env-filter", "fmt", "parking_lot", "smallvec", "std"], optional = true } -toml = { version = "0.5.9", default-features = false } -walkdir = { version = "2.4.0", features = [] } - -[features] -tracing = ["dep:tracing", "dep:tracing-flame", "dep:tracing-subscriber", "edr_eth/tracing", "edr_evm/tracing", "edr_provider/tracing"] diff --git a/crates/tools/js/benchmark/.gitignore b/crates/tools/js/benchmark/.gitignore deleted file mode 100644 index 3c3629e647..0000000000 --- a/crates/tools/js/benchmark/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules diff --git a/crates/tools/js/benchmark/README.md b/crates/tools/js/benchmark/README.md deleted file mode 100644 index 27316d1088..0000000000 --- a/crates/tools/js/benchmark/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# JS Benchmark Runner - -## Run - -To run: - -```shell -pnpm install -pnpm run benchmark -``` - -The measurements will be printed to stdout as machine-readable json and to stderr and saved to `./benchmark-output.json` disk as json. - -Please see `pnpm run help` for more. diff --git a/crates/tools/js/benchmark/index.js b/crates/tools/js/benchmark/index.js deleted file mode 100644 index c0f65d0d64..0000000000 --- a/crates/tools/js/benchmark/index.js +++ /dev/null @@ -1,430 +0,0 @@ -// Trigger change - -const child_process = require("child_process"); -const path = require("path"); -const fs = require("fs"); -const readline = require("readline"); -const zlib = require("zlib"); - -const { ArgumentParser } = require("argparse"); -const { _ } = require("lodash"); - -const { - createHardhatNetworkProvider, -} = require("hardhat/internal/hardhat-network/provider/provider"); - -const SCENARIOS_DIR = "../../scenarios/"; -const SCENARIO_SNAPSHOT_NAME = "snapshot.json"; -const OZ_MAX_MIN_FAILURES = 1.05; - -async function main() { - const parser = new ArgumentParser({ - description: "Scenario benchmark runner", - }); - parser.add_argument("command", { - choices: ["benchmark", "verify", "report"], - help: "Whether to run a benchmark, verify that there are no regressions or create a report for `github-action-benchmark`", - }); - parser.add_argument("-g", "--grep", { - type: "str", - help: "Only execute the scenarios that contain the given string", - }); - parser.add_argument("-o", "--benchmark-output", { - type: "str", - default: "./benchmark-output.json", - help: "Where to save the benchmark output file", - }); - const args = parser.parse_args(); - - // Make results not GC - let results; - if (args.command === "benchmark") { - if (args.grep) { - for (let scenarioFileName of getScenarioFileNames()) { - if (scenarioFileName.includes(args.grep)) { - results = await benchmarkScenario(scenarioFileName); - } - } - } else { - await benchmarkAllScenarios(args.benchmark_output); - } - await flushStdout(); - } else if (args.command === "verify") { - const success = await verify(args.benchmark_output); - process.exit(success ? 0 : 1); - } else if (args.command === "report") { - await report(args.benchmark_output); - await flushStdout(); - } -} - -async function report(benchmarkResultPath) { - const benchmarkResult = require(benchmarkResultPath); - - let totalTime = 0; - const report = []; - for (let scenarioName in benchmarkResult) { - const scenarioResult = benchmarkResult[scenarioName]; - report.push({ - name: scenarioName, - unit: "ms", - value: scenarioResult.timeMs, - }); - totalTime += scenarioResult.timeMs; - } - report.unshift({ - name: "All Scenarios", - unit: "ms", - value: totalTime, - }); - - console.log(JSON.stringify(report)); -} - -async function verify(benchmarkResultPath) { - let success = true; - const benchmarkResult = require(benchmarkResultPath); - const snapshotResult = require(path.join( - getScenariosDir(), - SCENARIO_SNAPSHOT_NAME - )); - - for (let scenarioName in snapshotResult) { - // TODO https://github.com/NomicFoundation/edr/issues/365 - if (scenarioName.includes("neptune-mutual")) { - continue; - } - - // TODO https://github.com/NomicFoundation/edr/issues/365 - if (scenarioName.includes("openzeppelin")) { - const snapshotCount = snapshotResult[scenarioName].failures.length; - const actualCount = benchmarkResult[scenarioName].failures.length; - const ratio = - Math.max(snapshotCount, actualCount) / - Math.min(snapshotCount, actualCount); - - if (ratio > OZ_MAX_MIN_FAILURES) { - console.error( - `Snapshot failure for ${scenarioName} with max/min failure ratio`, - ratio - ); - success = false; - } - - continue; - } - - let snapshotFailures = new Set(snapshotResult[scenarioName].failures); - let benchFailures = new Set(benchmarkResult[scenarioName].failures); - - if (!_.isEqual(snapshotFailures, benchFailures)) { - success = false; - const shouldFail = setDifference(snapshotFailures, benchFailures); - const shouldNotFail = setDifference(benchFailures, snapshotFailures); - - // We're logging to stderr so that it doesn't pollute stdout where we write the result - console.error(`Snapshot failure for ${scenarioName}`); - - if (shouldFail.size > 0) { - console.error( - `Scenario ${scenarioName} should fail at indexes ${Array.from( - shouldFail - ).sort()}` - ); - } - - if (shouldNotFail.size > 0) { - console.error( - `Scenario ${scenarioName} should not fail at indexes ${Array.from( - shouldNotFail - ).sort()}` - ); - } - } - } - - if (success) { - console.error("Benchmark result matches snapshot"); - } - - return success; -} - -// From https://stackoverflow.com/a/66512466 -function setDifference(a, b) { - return new Set(Array.from(a).filter((item) => !b.has(item))); -} - -async function benchmarkAllScenarios(outPath) { - const result = {}; - let totalTime = 0; - let totalFailures = 0; - for (let scenarioFileName of getScenarioFileNames()) { - try { - const scenarioResults = []; - const iterations = numIterations(scenarioFileName); - for (let i = 0; i < iterations; i++) { - // Run in subprocess with grep to simulate Hardhat test runner behaviour - // where there is one provider per process - const processResult = child_process.spawnSync( - process.argv[0], - [ - "--noconcurrent_sweeping", - "--noconcurrent_recompilation", - "--max-old-space-size=28000", - "index.js", - "benchmark", - "-g", - scenarioFileName, - ], - { - shell: true, - timeout: 60 * 60 * 1000, - // Pipe stdout, proxy the rest - stdio: [process.stdin, "pipe", process.stderr], - encoding: "utf-8", - } - ); - const scenarioResult = JSON.parse(processResult.stdout); - scenarioResults.push(scenarioResult); - } - const scenarioResult = medianOfResults(scenarioResults); - totalTime += scenarioResult.result.timeMs; - totalFailures += scenarioResult.result.failures.length; - result[scenarioResult.name] = scenarioResult.result; - } catch (e) { - console.error(e); - console.error(processResult.stdout.toString()); - throw e; - } - } - - fs.writeFileSync(outPath, JSON.stringify(result) + "\n"); - - // Log info to stderr so that it doesn't pollute stdout where we write the result - console.error( - `Total time ${ - Math.round(100 * (totalTime / 1000)) / 100 - } seconds with ${totalFailures} failures.` - ); - - console.error(`Benchmark results written to ${outPath}`); -} - -function numIterations(scenarioName) { - // Run fast scenarios repeatedly to get more reliable results - if (scenarioName.includes("safe-contracts")) { - return 15; - } else if ( - scenarioName.includes("seaport") || - scenarioName.includes("openzeppelin") || - scenarioName.includes("rocketpool") || - scenarioName.includes("uniswap") - ) { - return 5; - } else if (scenarioName.includes("neptune-mutual")) { - return 3; - } else { - return 1; - } -} - -function medianOfResults(results) { - if (results.length === 0) { - throw new Error("No results to calculate median"); - } - const sorted = results.sort((a, b) => a.result.timeMs - b.result.timeMs); - const middle = Math.floor(sorted.length / 2); - return sorted[middle]; -} - -async function benchmarkScenario(scenarioFileName) { - let { config, requests } = await loadScenario(scenarioFileName); - const name = path.basename(scenarioFileName).split(".")[0]; - console.error(`Running ${name} scenario`); - - const start = performance.now(); - - const provider = await createHardhatNetworkProvider(config.providerConfig, { - enabled: config.loggerEnabled, - }); - - const failures = []; - const rpcCallResults = []; - const rpcCallErrors = []; - - for (let i = 0; i < requests.length; i += 1) { - try { - const result = await provider.request(requests[i]); - rpcCallResults.push(result); - } catch (e) { - rpcCallErrors.push(e); - failures.push(i); - } - } - - const timeMs = performance.now() - start; - - console.error( - `${name} finished in ${ - Math.round(100 * (timeMs / 1000)) / 100 - } seconds with ${failures.length} failures.` - ); - - const result = { - name, - result: { - timeMs, - failures, - }, - }; - console.log(JSON.stringify(result)); - - // Return this to avoid gc - return { rpcCallResults, rpcCallErrors }; -} - -async function loadScenario(scenarioFileName) { - const result = { - requests: [], - }; - let i = 0; - const filePath = path.join(getScenariosDir(), scenarioFileName); - for await (const line of readFile(filePath)) { - const parsed = JSON.parse(line); - if (i === 0) { - result.config = preprocessConfig(parsed); - } else { - result.requests.push(parsed); - } - i += 1; - } - return result; -} - -function preprocessConfig(config) { - // From https://stackoverflow.com/a/59771233 - const camelize = (obj) => - _.transform(obj, (acc, value, key, target) => { - const camelKey = _.isArray(target) ? key : _.camelCase(key); - - acc[camelKey] = _.isObject(value) ? camelize(value) : value; - }); - config = camelize(config); - - // EDR serializes None as null to json, but Hardhat expects it to be undefined - const removeNull = (obj) => - _.transform(obj, (acc, value, key) => { - if (_.isObject(value)) { - acc[key] = removeNull(value); - } else if (!_.isNull(value)) { - acc[key] = value; - } - }); - config = removeNull(config); - - config.providerConfig.initialDate = new Date( - config.providerConfig.initialDate.secsSinceEpoch * 1000 - ); - - config.providerConfig.hardfork = normalizeHardfork( - config.providerConfig.hardfork - ); - - // "accounts" in EDR are "genesisAccounts" in Hardhat - if (Object.keys(config.providerConfig.genesisAccounts).length !== 0) { - throw new Error("Genesis accounts are not supported"); - } - config.providerConfig.genesisAccounts = config.providerConfig.accounts.map( - ({ balance, secretKey }) => { - return { balance, privateKey: secretKey }; - } - ); - delete config.providerConfig.accounts; - - config.providerConfig.automine = config.providerConfig.mining.autoMine; - config.providerConfig.mempoolOrder = - config.providerConfig.mining.memPool.order.toLowerCase(); - config.providerConfig.intervalMining = - config.providerConfig.mining.interval ?? 0; - delete config.providerConfig.mining; - - config.providerConfig.throwOnCallFailures = - config.providerConfig.bailOnCallFailure; - delete config.providerConfig.bailOnCallFailure; - config.providerConfig.throwOnTransactionFailures = - config.providerConfig.bailOnTransactionFailure; - delete config.providerConfig.bailOnTransactionFailure; - - let chains = new Map(); - for (let key of Object.keys(config.providerConfig.chains)) { - const hardforkHistory = new Map(); - const hardforks = config.providerConfig.chains[key].hardforks; - for (let [blockNumber, hardfork] of hardforks) { - hardforkHistory.set(normalizeHardfork(hardfork), blockNumber); - } - chains.set(Number(key), { hardforkHistory }); - } - config.providerConfig.chains = chains; - - if (!_.isUndefined(config.providerConfig.fork)) { - config.providerConfig.forkConfig = config.providerConfig.fork; - delete config.providerConfig.fork; - } - - config.providerConfig.minGasPrice = BigInt(config.providerConfig.minGasPrice); - - return config; -} - -function normalizeHardfork(hardfork) { - hardfork = _.camelCase(hardfork.toLowerCase()); - if (hardfork === "frontier") { - hardfork = "chainstart"; - } else if (hardfork === "daoFork") { - hardfork = "dao"; - } else if (hardfork == "tangerine") { - hardfork = "tangerineWhistle"; - } - return hardfork; -} - -// From https://stackoverflow.com/a/65015455/2650622 -function readFile(path) { - let stream = fs.createReadStream(path); - - if (/\.gz$/i.test(path)) { - stream = stream.pipe(zlib.createGunzip()); - } - - return readline.createInterface({ - input: stream, - crlfDelay: Infinity, - }); -} - -function getScenariosDir() { - return path.join(__dirname, SCENARIOS_DIR); -} - -function getScenarioFileNames() { - const scenariosDir = path.join(__dirname, SCENARIOS_DIR); - const scenarioFiles = fs.readdirSync(scenariosDir); - scenarioFiles.sort(); - return scenarioFiles.filter((fileName) => fileName.endsWith(".jsonl.gz")); -} - -async function flushStdout() { - return new Promise((resolve) => { - process.stdout.write("", resolve); - }); -} - -main() - .catch((error) => { - console.error(error); - process.exit(1); - }) - .then(() => { - process.exit(0); - }); diff --git a/crates/tools/js/benchmark/package.json b/crates/tools/js/benchmark/package.json deleted file mode 100644 index 84d54d294c..0000000000 --- a/crates/tools/js/benchmark/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "benchmark", - "version": "1.0.0", - "private": true, - "description": "", - "main": "index.js", - "scripts": { - "benchmark": "node --noconcurrent_sweeping --noconcurrent_recompilation --max-old-space-size=28000 index.js benchmark", - "prebenchmark": "cd ../../../edr_napi/ && pnpm build && cd ../../packages/hardhat-core/ && pnpm build", - "verify": "node index.js verify", - "report": "node index.js report", - "help": "node index.js -h" - }, - "keywords": [], - "author": "", - "license": "ISC", - "dependencies": { - "argparse": "^2.0.1", - "hardhat": "workspace:^", - "lodash": "^4.17.11", - "tsx": "^4.7.1" - } -} diff --git a/crates/tools/js/benchmark/tsconfig.json b/crates/tools/js/benchmark/tsconfig.json deleted file mode 100644 index 574e785c71..0000000000 --- a/crates/tools/js/benchmark/tsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "target": "es2020", - "module": "commonjs", - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "skipLibCheck": true, - "resolveJsonModule": true - } -} diff --git a/crates/tools/python/README.md b/crates/tools/python/README.md deleted file mode 100644 index de2572f466..0000000000 --- a/crates/tools/python/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# iPython Notebook - -## Requirements - -- [Miniconda](https://docs.anaconda.com/free/miniconda/index.html) - -## Running - -From this directory: - -```bash -conda env create -f env.yml -conda activate hardhat -jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10 -``` - diff --git a/crates/tools/python/benchmark-variance.ipynb b/crates/tools/python/benchmark-variance.ipynb deleted file mode 100644 index 069a448d0e..0000000000 --- a/crates/tools/python/benchmark-variance.ipynb +++ /dev/null @@ -1,455 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "ba2c800a", - "metadata": {}, - "outputs": [], - "source": [ - "# Load scenarios\n", - "\n", - "%matplotlib inline\n", - "\n", - "from collections import Counter, defaultdict\n", - "import glob\n", - "import gzip\n", - "import json\n", - "import math\n", - "from operator import itemgetter\n", - "import os\n", - "from pathlib import Path\n", - "\n", - "from IPython.display import display, Markdown\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "import nltk\n", - "import numpy as np\n", - "import pandas as pd\n", - "from pygtrie import StringTrie\n", - "import seaborn as sns\n", - "\n", - "JS_CALIBRATION_RESULTS = Path(\"./js-benchmark-variance\")\n", - "RS_SYNTHETIX_RESULTS = Path(\"./rs-benchmark-variance.txt\")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "8ae49305", - "metadata": {}, - "outputs": [], - "source": [ - "js_data = defaultdict(list)\n", - "\n", - "for filepath in glob.iglob(os.path.join(JS_CALIBRATION_RESULTS, \"*.json\")):\n", - " total = 0\n", - " with open(filepath) as f:\n", - " measurements = json.load(f)\n", - " for key, value in measurements.items():\n", - " js_data[\"scenario\"].append(key)\n", - " js_data[\"timeMs\"].append(value[\"timeMs\"])\n", - " total += value[\"timeMs\"]\n", - " js_data[\"scenario\"].append(\"total\")\n", - " js_data[\"timeMs\"].append(total)\n", - "\n", - "js_df = pd.DataFrame(js_data)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "24ae73e6", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAALMCAYAAADtgxjEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAACrVElEQVR4nOzdeVxN+f8H8Ndt31MolUrJFpV1iMHYIoYwxti3wWDGvo6dQZixDWFm7LIb+55931WWLCUKLYhCCt3P7w+/7tdVmcx076lzX8/Howd9zune1225930/57MohBACRERERDKkJ3UAIiIiIk1hoUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioaMlK1asgEKhwMWLF6WO8tm6deuGEiVKqLVNmzYN27Zty3KuNh/nxIkToVAo8vS2njx5kie3py2Z3+979+599tfu2bMHEydOzNM8SUlJaNeuHezs7KBQKNCyZcs8vf2C4r/8XP6r06dPY+LEiXj+/HmWY1999RW++uorrWfKC1euXEHdunVhbW0NhUKBuXPn5niuQqHATz/9pNYWGxuLfv36oXTp0jA1NYWtrS28vLzQq1cvxMbGajh9/paXz6X5kYHUASj/GzduHAYOHKjWNm3aNLRp00bSF7KePXuiSZMmkt1/Qbdnzx4EBQXlabHzyy+/YOvWrVi2bBlKliwJW1vbPLvtgqRZs2Y4c+YMHBwctH7fp0+fxqRJk9CtWzcUKlRI7djChQu1niev9OjRA69evcL69ethY2OT5c3Xpzx48ACVK1dGoUKFMHToUJQpUwbJycm4ceMGNm7ciLt378LZ2Vlz4fM5uT+XstChHKWmpsLMzAwlS5aUOkq2ihcvjuLFi0sdgz5w7do1lCxZEh07dsyT2xNCIC0tDaamprn+mtevX3/W+ZpQtGhRFC1aVNIM2fH09JQ6wr927do19OrVC/7+/p/9tX/99ReePHmC8+fPw83NTdXesmVLjB49GkqlMi+jFhiZz/Fyfy7lpat85uTJk2jQoAEsLS1hZmaGmjVrYvfu3dme5+vrCxMTEzg5OWHcuHFYsmRJlu7yDRs2wM/PDw4ODjA1NUW5cuUwatQovHr1Su32unXrBgsLC1y9ehV+fn6wtLREgwYNVMc+fPekUCjw6tUrrFy5EgqFAgqFIkt3+IsXL9C3b18UKVIEhQsXRuvWrfHo0SO1c0qUKIGvv/4au3btQqVKlVT5du3aBeB993+5cuVgbm6OL774IsvlsJy6W9euXQtfX19YWFjAwsICFStWxNKlS//xew+8795u3bo1rKysYG1tjU6dOuHx48dq5yiVSsycORNly5aFsbEx7Ozs0KVLFzx48EB1Tp8+fWBiYoJLly6pfV2DBg1gb2+PuLi4HDPcu3cPCoUCM2fOxNSpU+Hi4gITExNUrVoVhw4dytXjWLZsGXx8fGBiYgJbW1u0atUKERERquPdunVDUFAQAKh+hh/+7mzatAnVq1eHtbU1zMzM4O7ujh49evxj5oMHDyIiIkJ1e0ePHgXw/pJWv3794OTkBCMjI7i7u2PMmDFIT09Xu53MSw6LFy9GuXLlYGxsjJUrV+Z4v5m/Q1u2bEGlSpVgYmKCSZMmqfKsWLEiy9coFAq1XqzM36Pr16+jffv2sLa2hr29PXr06IHk5ORs861evRrlypWDmZkZfHx8VL+zmbK7dPXVV1+hQoUKuHDhAmrXrq36vk6fPj3LC+3169fh5+cHMzMzFC1aFD/++CN2796t9j3NzsSJEzF8+HAAgJubW5afw8eXrjK/T7/++itmzJiBEiVKwNTUFF999RVu376Nt2/fYtSoUXB0dIS1tTVatWqFxMTELPe7YcMG+Pr6wtzcHBYWFmjcuDGuXLmSY84PXbt2DQEBAbCxsYGJiQkqVqyo9jPP/F6+e/cOixYtUj2mz/H06VPo6enBzs4u2+N6ep9+KUxNTcWwYcPg5uam+puqWrUq1q1bp3beuXPn0Lx5cxQuXBgmJiYoWbIkBg0apHbOnTt30KFDB9jZ2cHY2BjlypVT/S1mOnr0KBQKBdatW4cxY8bA0dERVlZWaNiwIW7duqV2bkhICAICAlC8eHGYmJjAw8MDP/zwQ5bL8Jm/55cvX0abNm1gY2OjehOb3XNpbp7ngPeXFL/++mvV43F0dESzZs2ynCcpQVqxfPlyAUBcuHAhx3OOHj0qDA0NRZUqVcSGDRvEtm3bhJ+fn1AoFGL9+vWq88LCwoSJiYnw9vYW69evFzt27BBNmzYVJUqUEABEdHS06txffvlFzJkzR+zevVscPXpULF68WLi5uYl69eqp3XfXrl2FoaGhKFGihAgMDBSHDh0S+/fvVx1zdXVVnXvmzBlhamoqmjZtKs6cOSPOnDkjrl+/rvY43d3dRf/+/cX+/fvFkiVLhI2NTZb7dHV1FcWLFxcVKlQQ69atE3v27BHVq1cXhoaGYvz48aJWrVpiy5YtYuvWraJ06dLC3t5epKamqr5+woQJ4uNf4XHjxgkAonXr1mLTpk3iwIEDYvbs2WLcuHGf/Plk3parq6sYPny42L9/v5g9e7YwNzcXlSpVEm/evFGd27t3bwFA/PTTT2Lfvn1i8eLFomjRosLZ2Vk8fvxYCCHE69evRcWKFYW7u7t49uyZEEKI8ePHCz09PXHgwIFPZomOjhYAhLOzs/jyyy/F33//LTZt2iSqVasmDA0NxenTp1XnZn6/P/yZT5s2TQAQ7du3F7t37xarVq0S7u7uwtraWty+fVsIIURkZKRo06aNAKD6GZ45c0akpaWJ06dPC4VCIdq1ayf27NkjDh8+LJYvXy46d+6cY+a0tDRx5swZUalSJeHu7q66veTkZPH69Wvh7e0tzM3NxW+//SYOHDggxo0bJwwMDETTpk3VbgeAcHJyEt7e3mLt2rXi8OHD4tq1azner6urq3BwcBDu7u5i2bJl4siRI+L8+fOq7+Hy5cuzfA0AMWHCBNXnmT/7MmXKiPHjx4uQkBAxe/ZsYWxsLLp3757la0uUKCG++OILsXHjRrFnzx7x1VdfCQMDAxEVFfXJn0vdunVF4cKFRalSpcTixYtFSEiI6NevnwAgVq5cqTrv0aNHonDhwsLFxUWsWLFC7NmzR3Tu3Fn1933kyJEcvx+xsbGif//+AoDYsmWL2s8hM0PdunVV52d+n1xdXUXz5s3Frl27RHBwsLC3txelS5cWnTt3Fj169BB79+4VixcvFhYWFqJ58+Zq9zl16lShUChEjx49xK5du8SWLVuEr6+vMDc3Vz0v5OTmzZvC0tJSlCxZUqxatUrs3r1btG/fXgAQM2bMEEIIkZiYKM6cOSMAiDZt2qge06cAED/++KPq8+DgYAFA+Pn5iX379qm+H7n1ww8/CDMzMzF79mxx5MgRsWvXLjF9+nQxf/581Tn79u0ThoaGwtvbW6xYsUIcPnxYLFu2TLRr1051zvXr14W1tbXw8vISq1atEgcOHBBDhw4Venp6YuLEiarzjhw5ovpd69ixo9i9e7dYt26dcHFxEaVKlRLv3r1Tnbto0SIRGBgoduzYIY4dOyZWrlwpfHx8RJkyZdSetz58jhs5cqQICQkR27ZtUzv2odw8z718+VIULlxYVK1aVWzcuFEcO3ZMbNiwQfTp00fcuHHjs77HmsRCR0tyU+jUqFFD2NnZiRcvXqja3r17JypUqCCKFy8ulEqlEEKIb7/9Vpibm6t+2YQQIiMjQ3h6emZ5cv2QUqkUb9++FceOHRMARFhYmOpY165dBQCxbNmyLF/3caEjhBDm5uaia9euOT7Ofv36qbXPnDlTABBxcXGqNldXV2FqaioePHigagsNDRUAhIODg3j16pWqfdu2bQKA2LFjh6rt4z/Ou3fvCn19fdGxY8dsH/+nZN7W4MGD1drXrFkjAIjg4GAhhBARERHZPr5z584JAGL06NGqtjt37ggrKyvRsmVLcfDgQaGnpyfGjh37j1kyX3wcHR3F69evVe0pKSnC1tZWNGzYUNX28Qvqs2fPVEXoh2JiYoSxsbHo0KGDqu3HH3/M8uQmhBC//fabACCeP3/+j1k/VrduXVG+fHm1tsWLFwsAYuPGjWrtM2bMEADUCj8AwtraWiQlJeXq/lxdXYW+vr64deuWWvu/KXRmzpypdl6/fv2EiYmJ6u8u82vt7e1FSkqKqi0+Pl7o6emJwMBAVVtOhQ4Ace7cObX78fT0FI0bN1Z9Pnz4cKFQKLIUCY0bN/7HQkcIIX799dccnwdyKnR8fHxERkaGqn3u3LkCgGjRooXa1w8aNEgAUBUKMTExwsDAQPTv31/tvBcvXohixYqJtm3bfjJru3bthLGxsYiJiVFr9/f3F2ZmZmq/gx8XL5/y8blKpVL88MMPQk9PTwAQCoVClCtXTgwePDjH58sPVahQQbRs2fKT55QsWVKULFlS7W/2Y40bNxbFixfPUmj99NNPwsTERPV7n1nofPx3vHHjRtWbk+xkPsffv39fABDbt29XHcv8PR8/fnyWr/v4uTS3z3MXL14UAFQFU37FS1f5xKtXr3Du3Dm0adMGFhYWqnZ9fX107twZDx48UHVZHjt2DPXr10eRIkVU5+np6aFt27ZZbvfu3bvo0KEDihUrBn19fRgaGqJu3boAoHYpI9M333yTJ4+nRYsWap97e3sDAO7fv6/WXrFiRTg5Oak+L1euHID3XexmZmZZ2j/++g+FhIQgIyMDP/7447/O/fHYkrZt28LAwABHjhwBANW/3bp1Uzvviy++QLly5dQuLXl4eOCvv/7Ctm3b8PXXX6N27dqfNfC3devWMDExUX1uaWmJ5s2b4/jx48jIyMj2a86cOYPXr19nyefs7Iz69evn6tJXtWrVALx/7Bs3bsTDhw9znTk7hw8fhrm5Odq0aaPWnpnx40z169eHjY1Nrm/f29sbpUuX/k8Zgex/Z9PS0rJcqqlXrx4sLS1Vn9vb28POzu6Tv5uZihUrhi+++CLL/Xz4tceOHUOFChWyjKdp3759rh/L52ratKna5ZvMv7dmzZqpnZfZHhMTAwDYv38/3r17hy5duuDdu3eqDxMTE9StW/eTl9mA978bDRo0yDIQuFu3bkhNTcWZM2f+60MD8P6S4+LFi3H37l0sXLgQ3bt3x9u3bzFnzhyUL18ex44d++TXf/HFF9i7dy9GjRqFo0eP4vXr12rHb9++jaioKHz//fdqf7MfSktLw6FDh9CqVSuYmZmpfb+aNm2KtLQ0nD17Vu1rcvM8mpiYiD59+sDZ2RkGBgYwNDSEq6srgH//HJ/b5zkPDw/Y2Nhg5MiRWLx4MW7cuPGPty0FFjr5xLNnzyCEyHaWhqOjI4D315kz/7W3t89y3sdtL1++RO3atXHu3DlMmTIFR48exYULF7BlyxYAyPLHamZmBisrqzx5PIULF1b73NjYONv7/HhWjpGR0Sfb09LScrzPzLE0/2VQXbFixdQ+NzAwQOHChdW+9wBy/DllHs/UrFkz2NvbIy0tDUOGDIG+vv6/zpLZ9ubNG7x8+TLbr/ncfNmpU6cOtm3bpnoBK168OCpUqJBlPEJuPX36FMWKFcsyBsDOzg4GBgZZMn3uTKW8mtmU29/Zj8/LPPfj83JzH9l9bW7/vvPSv/07TEhIAPC+ODY0NFT72LBhwz8u1/D06dNcPeflFVdXV/Tt2xdLly7FnTt3sGHDBqSlpanGNeXk999/x8iRI7Ft2zbUq1cPtra2aNmyJe7cuQMgd889T58+xbt37zB//vws36umTZsCQJbv1z/9TiqVSvj5+WHLli0YMWIEDh06hPPnz6sKpux+J3Pz95Lb5xFra2scO3YMFStWxOjRo1G+fHk4OjpiwoQJePv27T/ej7Zw1lU+YWNjAz09vWwHqWYO4s3swSlcuLDqCeZD8fHxap8fPnwYjx49wtGjR1W9OACyXV8DQIFfRyFzlsuDBw/+9VTR+Ph4tR6md+/e4enTp6onnMx/4+LisjypPXr0SK2XDXg/KPnFixcoX748BgwYgNq1a+e6t+Ljn2dmm5GRkVqv34c+zPex7PLlJCAgAAEBAUhPT8fZs2cRGBiIDh06oESJEvD19c3VbXyY6dy5cxBCqP2OJSYm4t27d1kyfe7vYXbnZ76r/niwc16/cGpCbv++84PMn93mzZtVvQifo3Dhwrl6ztOUtm3bIjAwENeuXfvkeebm5pg0aRImTZqEhIQEVe9O8+bNcfPmTbXnnpzY2Nioeuhz6nX+cEZYbly7dg1hYWFYsWIFunbtqmqPjIzM8Wty8/f1Oc9zXl5eWL9+PYQQCA8Px4oVKzB58mSYmppi1KhRn/V4NIU9OvmEubk5qlevji1btqhV4UqlEsHBwShevLiqe75u3bo4fPiwWvWvVCqxadMmtdvM/IXOfBeQ6Y8//vjPeXP7Dlab/Pz8oK+vj0WLFv3r21izZo3a5xs3bsS7d+9UM1Xq168PAAgODlY778KFC4iIiFDNVAOAJUuWIDg4GAsWLMCOHTvw/PlzdO/ePddZtmzZotaD9eLFC+zcuRO1a9fOsWfI19cXpqamWfI9ePBAdZkgU049Fh8yNjZG3bp1MWPGDADI9UyaDzVo0AAvX77MssDkqlWrVMfzmr29PUxMTBAeHq7Wvn379jy/r7xWt25dXLt2LctlgPXr1+fq63Pzc80rjRs3hoGBAaKiolC1atVsPz6lQYMGqjdkH1q1ahXMzMxQo0aNPMmZ0yzHly9fIjY2VtWDlBv29vbo1q0b2rdvj1u3biE1NRWlS5dGyZIlsWzZsizFdSYzMzPUq1cPV65cgbe3d7bfq+x6/D5FU8/xn/M892EWHx8fzJkzB4UKFcLly5f/U4a8xB4dLTt8+HC2q6U2bdoUgYGBaNSoEerVq4dhw4bByMgICxcuxLVr17Bu3TrVL/WYMWOwc+dONGjQAGPGjIGpqSkWL16smjKeea29Zs2asLGxQZ8+fTBhwgQYGhpizZo1CAsL+8+Pw8vLC0ePHsXOnTvh4OAAS0tLlClT5j/f7n9RokQJjB49Gr/88gtev36tmip848YNPHnyBJMmTfrH29iyZQsMDAzQqFEjXL9+HePGjYOPj49q/FOZMmXQu3dvzJ8/H3p6evD398e9e/cwbtw4ODs7Y/DgwQCAq1evYsCAAejatauquFm6dCnatGmDuXPnZplymh19fX00atQIQ4YMgVKpxIwZM5CSkvLJx1GoUCGMGzcOo0ePRpcuXdC+fXs8ffoUkyZNgomJCSZMmKA618vLCwAwY8YM+Pv7Q19fH97e3pgyZQoePHiABg0aoHjx4nj+/DnmzZunNr7rc3Tp0gVBQUHo2rUr7t27By8vL5w8eRLTpk1D06ZN0bBhw8++zX+iUCjQqVMn1cKFPj4+OH/+PNauXZvn95XXBg0ahGXLlsHf3x+TJ0+Gvb091q5di5s3bwL456nQmT/XefPmoWvXrjA0NESZMmXUxhXllRIlSmDy5MkYM2YM7t69iyZNmsDGxgYJCQk4f/68qickJxMmTMCuXbtQr149jB8/Hra2tlizZg12796NmTNnwtra+l9n+7DnYurUqTh16hS+++47VKxYEaampoiOjsaCBQvw9OlT/Prrr5+8rerVq+Prr7+Gt7c3bGxsEBERgdWrV8PX11c1ljAoKAjNmzdHjRo1MHjwYLi4uCAmJgb79+9XvYGaN28evvzyS9SuXRt9+/ZFiRIl8OLFC0RGRmLnzp04fPjwZz3GsmXLomTJkhg1ahSEELC1tcXOnTsREhLymd8tdbl9ntu1axcWLlyIli1bwt3dHUIIbNmyBc+fP0ejRo3+U4Y8JelQaB2SOQsjp4/Mkf8nTpwQ9evXF+bm5sLU1FTUqFFD7Ny5M8vtnThxQlSvXl0YGxuLYsWKieHDh6tmsXw4U+H06dPC19dXmJmZiaJFi4qePXuKy5cvZ5mR0rVrV2Fubp5t9uxmXYWGhopatWoJMzMzAUA1kyOn2WWZswg+nDHi6uoqmjVrluX+kM3siszZIb/++quqLbspkUIIsWrVKlGtWjVhYmIiLCwsRKVKlbKdffOhzNu6dOmSaN68ubCwsBCWlpaiffv2IiEhQe3cjIwMMWPGDFG6dGlhaGgoihQpIjp16iRiY2OFEO+nXJYtW1Z4enqqzRwT4v1MJ0NDwywzb7J7rDNmzBCTJk0SxYsXF0ZGRqJSpUqqKf+ZspvdI4QQS5YsEd7e3sLIyEhYW1uLgICALLN40tPTRc+ePUXRokWFQqFQ3c6uXbuEv7+/cHJyEkZGRsLOzk40bdpUnDhx4pPfQyGyn3UlhBBPnz4Vffr0EQ4ODsLAwEC4urqKn3/+WaSlpamdl93P/lNy+h0SQojk5GTRs2dPYW9vL8zNzUXz5s3FvXv3cpx19eEsRiGy/97mlM/V1VVtFmJOs66y+95k9/d17do10bBhQ2FiYiJsbW3F999/L1auXJlltmROfv75Z+Ho6KiaZZT5d5fTrKsP/66E+N/f66ZNm9Tac/r73rZtm6hXr56wsrISxsbGwtXVVbRp00YcPHjwH7NevXpVNG/eXFhbWwsjIyPh4+OT42y53PxuvHr1SgAQQ4cOVbWdPXtW/Pjjj8LHx0fY2toKfX19UbRoUdGkSROxZ8+ef7zNUaNGiapVqwobGxthbGws3N3dxeDBg8WTJ0/Uzjtz5ozw9/cX1tbWwtjYWJQsWTLLTM7o6GjRo0cP4eTkJAwNDUXRokVFzZo1xZQpU1Tn5PT9z2424Y0bN0SjRo2EpaWlsLGxEd9++62IiYnJ9e/5h8c+9E/Pc0K8Xx6gffv2omTJksLU1FRYW1uLL774QqxYseIfv6fapBBCCI1WUqQ1fn5+uHfvHm7fvi11FPoP7t27Bzc3N/z6668YNmyY1HEon+jduzfWrVuHp0+fqgYFU1ZXrlxB5cqVERQUhH79+kkdh/IBXroqoIYMGYJKlSrB2dkZSUlJWLNmDUJCQnK9AjAR5V+TJ0+Go6Mj3N3d8fLlS+zatQtLlizB2LFjWeTk4MGDBwgNDcXUqVNhZmamsxvKUlYsdAqojIwMjB8/HvHx8VAoFPD09MTq1avRqVMnqaMR0X9kaGiIX3/9FQ8ePMC7d+9QqlQpzJ49O8vmuvQ/S5YswfTp0+Ht7Y0dO3Z81gBjkjdeuiIiIiLZ4vRyIiIiki0WOkRERCRbLHSIiIhItnR+MLJSqcSjR49gaWlZ4LdAICIi0hVCCLx48QKOjo6fXEhT5wudR48e/et9kYiIiEhasbGxn9xQVecLncxl0WNjY/Ns524iIiLSrJSUFDg7O//j9iY6X+hkXq6ysrJioUNERFTA/NOwE50djBwUFARPT09Uq1ZN6ihERESkITq/YGBKSgqsra2RnJzMHh0iIqICIrev3zrbo0NERETyx0KHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItnS2UKHKyMTERHJH1dG5srIREREBU5uX791flNPIiIi+nwZGRkIDw9HUlISbG1t4e3tDX19faljZcFCh4iISKYiIyMRHR2dq3NTU1MRFRWVq3Pj4uJw7do1vH79WtVmamqKChUqwMHB4R+/vmTJkjAzM8vVfbm5ucHDwyNX52aHhQ4REZFMzZ8/H2FhYVq5r9evX+PChQt5frs+Pj6YN2/ev/56FjpEREQy1b9//zzt0RFC4ODBg7CyssIXX3wBhUKhduz8+fNISUlBw4YN1Y597HN7dP4LFjpEREQy5eHh8Z8u+3zsypUr2LlzJ3777TeUL18+y/Hr16/jxx9/RP369VGpUqU8u9//QmenlxMREdHnSUpKApBzL0tme+Z5+QELHSIiIsoVW1tbAMjxclhme+Z5+QELHSIiIsoVb29vFCtWDGvWrIFSqVQ7plQqsWbNGjg4OMDb21uihFmx0CEiIqJc0dfXR79+/XDmzBmMHTsW169fR2pqKq5fv46xY8fizJkz6Nu3b75aT4crI3NlZCIios9y/PhxLFy4EPHx8ao2BwcH9O3bF3Xq1NFKhty+frPQYaFDRET02aReGZlbQBAREZHG6Ovr55sp5J+is2N0uHs5ERGR/PHSFS9dERERFTi5ff3W2R4dIiIikj8WOkRERCRbLHSIiIhItljoEBERkWxxejkRkQ6JjIzMcZ+ij6WmpiIqKkrDid4rWbIkzMzMcnWum5tbnu7ITfLGQoeISIfMnz8fYWFhUsf4T3x8fDBv3jypY1ABwUKHiEiH9O/fXxY9OkS5xUKHiEiHeHh48LIP6RQORiYiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZ0tlCJygoCJ6enqhWrZrUUYiIiEhDFEIIIXUIKaWkpMDa2hrJycmwsrKSOg4RERHlQm5fv3W2R4eIiIjkj4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyZYsCp3o6GjUq1cPnp6e8PLywqtXr6SORERERPmAgdQB8kK3bt0wZcoU1K5dG0lJSTA2NpY6EhEREeUDBb7QuX79OgwNDVG7dm0AgK2trcSJiIiIKL+Q/NLV8ePH0bx5czg6OkKhUGDbtm1Zzlm4cCHc3NxgYmKCKlWq4MSJE6pjd+7cgYWFBVq0aIHKlStj2rRpWkxPRERE+Znkhc6rV6/g4+ODBQsWZHt8w4YNGDRoEMaMGYMrV66gdu3a8Pf3R0xMDADg7du3OHHiBIKCgnDmzBmEhIQgJCREmw+BiIiI8inJCx1/f39MmTIFrVu3zvb47Nmz8f3336Nnz54oV64c5s6dC2dnZyxatAgAULx4cVSrVg3Ozs4wNjZG06ZNERoamuP9paenIyUlRe2DiIiI5EnyQudT3rx5g0uXLsHPz0+t3c/PD6dPnwYAVKtWDQkJCXj27BmUSiWOHz+OcuXK5XibgYGBsLa2Vn04Oztr9DEQERGRdPJ1ofPkyRNkZGTA3t5erd3e3h7x8fEAAAMDA0ybNg116tSBt7c3SpUqha+//jrH2/z555+RnJys+oiNjdXoYyAiIiLpFIhZVwqFQu1zIYRam7+/P/z9/XN1W8bGxpx+TkREpCPydY9OkSJFoK+vr+q9yZSYmJill4eIiIjoY/m60DEyMkKVKlWyzKIKCQlBzZo1JUpFREREBYXkl65evnyJyMhI1efR0dEIDQ2Fra0tXFxcMGTIEHTu3BlVq1aFr68v/vzzT8TExKBPnz7/6X6DgoIQFBSEjIyM//oQiIiIKJ9SCCGElAGOHj2KevXqZWnv2rUrVqxYAeD9goEzZ85EXFwcKlSogDlz5qBOnTp5cv8pKSmwtrZGcnIyrKys1I4lJCQgOTk5V7eTnp6e5RKbphQrVizX44ysra15mY+IiGTnU6/fH5K80JFaTt+ohIQEdOzUGe/evpEw3X9nYGiENcGrWewQEZGs5LbQyddjdKSmlMFlLTk8BiIion9L8jE6+ZW9vT0WLgzK9To7cXFxWLZsmYZTvdejRw84ODjk6lxnZ2f25hARkc7S2UInN4ORy5Yti7Jly+bq9tLS0lCjRo28ivdJLi4uMDEx0cp9ERERFWQco5PLa3xERESUf3CMDhEREek8FjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2eL0cokW1MvIyEB4eDiSkpJga2sLb29v6OvrS5KFiIhIrji9XILp5cePH8fChQvV9sYqVqwY+vXrl2d7eBEREckZp5fnU8ePH8eECRPg7u6OoKAg7NmzB0FBQXB3d8eECRNw/PhxqSMSERHJBnt0tNijk5GRgY4dO8Ld3R1TpkyBnt7/6kylUomxY8ciOjoawcHBvIxFRET0CezRyYfCw8MRHx+Pjh07qhU5AKCnp4eOHTsiLi4O4eHhEiUkIiKSFxY6WpSUlAQAcHNzy/Z4ZnvmeURERPTfsNDRIltbWwBAdHR0tscz2zPPIyIiov9GZwudoKAgeHp6olq1alq7T29vbxQrVgxr1qyBUqlUO6ZUKrFmzRo4ODjA29tba5mIiIjkjIORtTy9PHPWla+vLzp27Ag3NzdER0djzZo1OHPmDCZNmsQp5kRERP8gt6/fLHTyyTo6Dg4O6Nu3L4scIiKiXGChk0tSFDoAV0YmIiL6L3L7+q2zW0BITV9fH5UqVZI6BhERkazp7GBkIiIikj8WOkRERCRbLHSIiIhItljoEBERkWzpbKEjxYKBREREpF2cXi7R9HIiIiL697h7OREREek8FjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyZbOFjpcGZmIiEj+uDIyV0YmIiIqcLgyMhEREek8FjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFs6Wyhw93LiYiI5I+7l3P3ciIiogKHu5cTERGRzmOhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2dLZQicoKAienp6oVq2a1FGIiIhIQxRCCCF1CCmlpKTA2toaycnJsLKykjoOERER5UJuX791tkeHiIiI5I+FDhEREckWCx0iIiKSLRY6REREJFufXejs27cPJ0+eVH0eFBSEihUrokOHDnj27FmehiMiIiL6Lz670Bk+fDhSUlIAAFevXsXQoUPRtGlT3L17F0OGDMnzgERERET/lsHnfkF0dDQ8PT0BAH///Te+/vprTJs2DZcvX0bTpk3zPCARERHRv/XZPTpGRkZITU0FABw8eBB+fn4AAFtbW1VPDxEREVF+8Nk9Ol9++SWGDBmCWrVq4fz589iwYQMA4Pbt2yhevHieByQiIiL6tz67R2fBggUwMDDA5s2bsWjRIjg5OQEA9u7diyZNmuR5QCIiIqJ/i1tAcAsIIiKiAodbQBAREZHOy/UYHX19/Vydl5GR8a/DEBEREeWlXBc6Qgi4urqia9euqFSpkiYzEREREeWJXBc6586dw7JlyzBv3jy4ubmhR48e6NixI2xsbDSZj4iIiOhfy/UYnWrVqmHRokWIi4vDkCFDsHXrVhQvXhzt2rVDSEiIJjMSERER/SufPRjZxMQEnTp1wqFDh3Dt2jUkJiaiSZMmSEpK0kQ+IiIion/tsxcMBIAHDx5gxYoVWLFiBV6/fo3hw4dzajYRERHlO7kudN68eYOtW7di6dKlOHHiBPz9/TF37lw0bdoUenqcpU5ERET5T64LHQcHB1haWqJr165YuHAh7OzsAAAvX75UO489O0RERJRf5Hpl5A97bRQKRZbjQggoFIoCt44OV0YmIiIqeHL7+p3rHp0jR47kSTAiIiIibcl1oVO3bl1N5qACKi0tDTExMVq5LxcXF5iYmGjlvoiISB7+1ayrqKgoLF++HFFRUZg3bx7s7Oywb98+ODs7o3z58nmdkbQsMjIS0dHRuTo3NjYWq1at0nCi97p06QJnZ+dcnevm5gYPDw8NJyIiovzus3cvP3bsGPz9/VGrVi0cP34cERERcHd3x8yZM3H+/Hls3rxZU1k1gmN0sho4cCDCwsKkjvGf+Pj4YN68eVLHICIiDcnzMTqZRo0ahSlTpmDIkCGwtLRUtderV48vLDLRv3//XPfovH37Fk+ePNFwoveKFCkCQ0PDXJ3r5uam4TRERFQQfHahc/XqVaxduzZLe9GiRfH06dM8CfW5DAwMUKFCBQBA1apVsWTJEklyyIWHhwcv+xARkSx8dqFTqFAhxMXFZXnHfOXKFTg5OeVZsM/NFBoaKsl9ExERUf712Usad+jQASNHjkR8fDwUCgWUSiVOnTqFYcOGoUuXLprISERERPSvfHahM3XqVLi4uMDJyQkvX76Ep6cn6tSpg5o1a2Ls2LGfHeD48eNo3rw5HB0doVAosG3btiznLFy4EG5ubjAxMUGVKlVw4sQJteMpKSmoUqUKvvzySxw7duyzMxAREZE8fXahY2hoiDVr1uD27dvYuHEjgoODcfPmTaxevRr6+vqfHeDVq1fw8fHBggULsj2+YcMGDBo0CGPGjMGVK1dQu3Zt+Pv7q63dcu/ePVy6dAmLFy9Gly5dkJKS8tk5iIiISH4+e3q5JikUCmzduhUtW7ZUtVWvXh2VK1fGokWLVG3lypVDy5YtERgYmOU2/P398csvv6Bq1arZ3kd6ejrS09NVn6ekpMDZ2ZnTy4mIiAoQjU0vF0Jg8+bNOHLkCBITE6FUKtWOb9my5fPT5uDNmze4dOkSRo0apdbu5+eH06dPAwCePXsGMzMzGBsb48GDB7hx4wbc3d1zvM3AwEBMmjQpzzISERFR/vXZl64GDhyIzp07Izo6GhYWFrC2tlb7yEtPnjxBRkYG7O3t1drt7e0RHx8PAIiIiEDVqlXh4+ODr7/+GvPmzYOtrW2Ot/nzzz8jOTlZ9REbG5unmYmIiCj/+OweneDgYGzZsgVNmzbVRJ5sfbxbeuZO6QBQs2ZNXL16Nde3ZWxsDGNj4zzNR0RERPnTZ/foWFtbf/LSUF4qUqQI9PX1Vb03mRITE7P08hARERF97LMLnYkTJ2LSpEl4/fq1JvKoMTIyQpUqVRASEqLWHhISgpo1a2r8/omIiKhg++xLV99++y3WrVsHOzs7lChRIsveQ5cvX/6s23v58iUiIyNVn0dHRyM0NBS2trZwcXHBkCFD0LlzZ1StWhW+vr74888/ERMTgz59+nxudDVBQUEICgpCRkbGf7odIiIiyr8+e3p527ZtceTIEbRp0wb29vZZxs9MmDDhswIcPXoU9erVy9LetWtXrFixAsD7BQNnzpyJuLg4VKhQAXPmzEGdOnU+635ywt3LiYiICp7cvn5/dqFjbm6O/fv348svv/zPIfMDFjpEREQFT25fvz97jI6zszMLAiIiIioQPrvQmTVrFkaMGIF79+5pIA4RERFR3vnswcidOnVCamoqSpYsCTMzsyyDkZOSkvIsnCZxMDL9F2lpaWr7rWmSi4sLTExMtHJfRERy89ljdFauXPnJ4127dv1PgbSNY3To37h9+zZ69+6tlfv6888/Ubp0aa3cFxFRQaGxwchyw0KHMiUkJCA5OTlX56anp2dZyPKfxMXFYdmyZejRowccHBxy/XXFihXL9Wre1tbWXEyTiHRCnm7qmZKSorqRlJSUT57LYoEKooSEBHTs1Bnv3r7R+H0tW7ZMY7dtYGiENcGrWewQEf2/XBU6NjY2iIuLg52dHQoVKpRl7Rzgf/tPccwLFVRKGfzuyuExEBHlpVwVOocPH1btCL58+XI4OztDX19f7RylUqm1wZlEec3e3h4LFwblejf7zMtQ2vA5l7qcnZ3Zm0NE9IHPHqOjr6+v6t350NOnT2FnZ1fgenQ4Rof+Dc66IiKSVp6O0flQ5iWqj718+bJAPRlzejn9FyYmJpwJRURUAOS6R2fIkCEAgHnz5qFXr14wMzNTHcvIyMC5c+egr6+PU6dOaSaphrBHh4iIqODJ8x6dK1euAHjfo3P16lUYGRmpjhkZGcHHxwfDhg37D5GJiIiI8lauC50jR44AALp374558+ax94OIiIjyvc8eo7N8+XJN5CAiIiLKc5+9qScRERFRQcFCh4iIiGRLZwudoKAgeHp6olq1alJHISIiIg3hpp6cXk5ERFTg5Pb1W2d7dIiIiEj+WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSrc/e60ougoKCEBQUhIyMDKmjEBFRAZaRkYHw8HAkJSXB1tYW3t7e0NfXlzoW/T8uGMgFA4mI6F86fvw4Fi5ciPj4eFVbsWLF0K9fP9SpU0fCZPLHBQOJiIg06Pjx45gwYQLc3d0RFBSEPXv2ICgoCO7u7pgwYQKOHz8udUQCe3TYo0NERJ8tIyMDHTt2hLu7O6ZMmQI9vf/1GyiVSowdOxbR0dEIDg7mZSwNye3rt86O0SEiIspOWloaYmJiPnnOrVu3EB8fj27duiEyMjLL8dq1a+P06dPYs2cPypQpk+PtuLi4wMTE5D9nppyxR4c9OkREshcZGYno6OhcnRsbG4tVq1ZpONF7Xbp0gbOzc67OdXNzg4eHh4YTFRzs0SEiIvp/8+fPR1hYmNQxsvicgsrHxwfz5s3TYBp5YqFDRESy179//1z36Lx9+xZPnjz55DlCCGzatAk2NjZo1KhRluMhISF49uwZvv32WygUihxvp0iRIjA0NMxVLjc3t1ydR+pY6BARkex5eHjk+WUfNzc3TJgwATdv3kTHjh3h5uaG6OhorFmzBg8ePMCkSZM4xTwf4BgdjtEhIqJ/Kbt1dBwcHNC3b18WORrGMTr/gCsjExHRf1WnTh3UqlWLKyPnY+zRYY8OERFRgcOVkYmIiEjnsdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhkS2cLnaCgIHh6eqJatWpSRyEiIiIN4e7l3L2ciIiowOHu5URERKTzWOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2dLbQCQoKgqenJ6pVqyZ1FCIiItIQhRBCSB1CSikpKbC2tkZycjKsrKykjkNERES5kNvXbwMtZiIiKpDS0tIQExOjlftycXGBiYmJVu6LSBew0CEinZSQkIDk5ORcnXv//n1MnTpVw4neGzNmDFxdXXN1rrW1Nezt7TWciKhg46UrXroi0jkJCQno2Kkz3r19I3WU/8TA0Ahrglez2CGdlNvXb50djExEuk2ZkSF1hP9MDo+BSNN46YqIdI69vT0WLgxCbGxsrs5/+/Ytnjx58ln38eTJE+zYsQMtWrRAkSJFcv11RYoUgaGhYa7OdXZ2Zm8O0T/gpSteuiKif3D79m307t1bK/f1559/onTp0lq5L6KCjLOuiIjyiIuLC/7880+t3RcR5R0WOkRE/8DExIS9LEQFFAcjExERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZkk2hk5qaCldXVwwbNkzqKERERJRPyKbQmTp1KqpXry51DCIiIspHZFHo3LlzBzdv3kTTpk2ljkJERET5iOSFzvHjx9G8eXM4OjpCoVBg27ZtWc5ZuHAh3NzcYGJigipVquDEiRNqx4cNG4bAwEAtJSYiIqKCQvJC59WrV/Dx8cGCBQuyPb5hwwYMGjQIY8aMwZUrV1C7dm34+/sjJiYGALB9+3aULl0apUuX1mZsIiIiKgAUQgghdYhMCoUCW7duRcuWLVVt1atXR+XKlbFo0SJVW7ly5dCyZUsEBgbi559/RnBwMPT19fHy5Uu8ffsWQ4cOxfjx47O9j/T0dKSnp6s+T0lJgbOzM5KTk2FlZaWxx0ZERER5JyUlBdbW1v/4+i15j86nvHnzBpcuXYKfn59au5+fH06fPg0ACAwMRGxsLO7du4fffvsNvXr1yrHIyTzf2tpa9eHs7KzRx0BERETSydeFzpMnT5CRkQF7e3u1dnt7e8THx/+r2/z555+RnJys+oiNjc2LqERERJQPGUgdIDcUCoXa50KILG0A0K1bt3+8LWNjYxgbG+dVNCIiIsrH8nWPTpEiRaCvr5+l9yYxMTFLLw8RERHRx/J1oWNkZIQqVaogJCRErT0kJAQ1a9aUKBUREREVFJJfunr58iUiIyNVn0dHRyM0NBS2trZwcXHBkCFD0LlzZ1StWhW+vr74888/ERMTgz59+vyn+w0KCkJQUBAyMjL+60MgIiKifEry6eVHjx5FvXr1srR37doVK1asAPB+wcCZM2ciLi4OFSpUwJw5c1CnTp08uf/cTk8jIiKi/CO3r9+SFzpSY6FDRERU8MhiHR0iIiKi/4KFDhEREcmWzhY6QUFB8PT0RLVq1aSOQkRERBrCMToco0NERFTgcIwOERER6TwWOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZ0tlCh9PLiYiI5I/Tyzm9nIiIqMDh9HIiIiLSeSx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLKls4UOp5cTERHJH6eXc3o5ERFRgcPp5URERKTzWOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLZ0tdLhgIBERkfxxwUAuGEhERFTgcMFAIiIi0nksdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyZSB1ACKSr4yMDISHhyMpKQm2trbw9vaGvr6+1LGISIew0CEijTh+/DgWLlyI+Ph4VVuxYsXQr18/1KlTR8JkRKRLeOmKiPLc8ePHMWHCBLi7uyMoKAh79uxBUFAQ3N3dMWHCBBw/flzqiESkI3R2wcCgoCAEBQUhIyMDt2/f5oKBRHkkIyMDHTt2hLu7O6ZMmQI9vf+9n1IqlRg7diyio6MRHBzMy1hE9K9xwcB/8OOPP+LGjRu4cOGC1FGIZCU8PBzx8fHo2LGjWpEDAHp6eujYsSPi4uIQHh4uUUIi0iU6W+gQkWYkJSUBANzc3LI9ntmeeR4RkSZxMDIR5VpaWhpiYmI+eU5qaiqA9+N03N3dsxyPiopSnXf79u0cb8fFxQUmJib/IS0RkQ6P0cnETT2Jcu/27dvo3bu3Vu7rzz//ROnSpbVyX0RU8OT29Zs9OkQ6LiEhAcnJybk6Nz09HWPGjPnH827evIm///4bpUqVQpkyZbBr1y58/fXXuHXrFu7cuYNvvvkGZcuW/cf7+lSPz4esra1hb2+fq3OJSLewR4c9OqTDEhIS0LFTZ7x7+0bqKP+JgaER1gSvZrFDpEM464qI/lFycnKBL3IA4N3bN7nulSIi3cJLV0SENKfKEEYWUsf4VxRvXsLk4WWpYxBRPsVCh0iHWVtbw9DIGCjghYKhkTGsra2ljkFE+RALHSIdZm9vj+DVq3J92ef+/fuYOnWqhlO9N2bMGLi6uubqXA5GJqKccDAyByMT5Vpu1tHJK1xHh4g+hdPLiSjPmZiYcG0bIipQOOuKiIiIZEtnC52goCB4enqiWrVqUkchIiIiDeEYHY7RISIiKnC4YCARERHpPBY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLZ3f1DNzYeiUlBSJkxAREVFuZb5u/9MGDzpf6Lx48QIA4OzsLHESIiIi+lwvXryAtbV1jsd1fq8rpVKJR48ewdLSEgqFQqv3nZKSAmdnZ8TGxurUPlt83HzcuoCPm49bF0j5uIUQePHiBRwdHaGnl/NIHJ3v0dHT00Px4sUlzWBlZaVTfxiZ+Lh1Cx+3buHj1i1SPe5P9eRk4mBkIiIiki0WOkRERCRbLHQkZGxsjAkTJsDY2FjqKFrFx83HrQv4uPm4dUFBeNw6PxiZiIiI5Is9OkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIPsuOHTvw9u1bqWMQ5Qqnl5PWpKamIiYmBm/evFFr9/b2ligR5bWMjAzExMTA1dUVenp6SE9Px/bt26FUKlGvXj3Y29tLHVFjXr58iUuXLiE+Ph4KhQL29vaoUqUKLCwspI6W5/T19REfH4+iRYtCX18fcXFxsLOzkzoWUbZ0fq8rKdy/f1/tydDV1VXqSBr1+PFjdO/eHXv37s32eEZGhpYTkSaEhYWhSZMmSExMRIUKFbB79274+/sjOjoaCoUChoaG2L9/P6pVqyZ11Dz17t07DB06FH/99RfS0tJgZGQEIQTevn0LExMT9O7dG7/++isMDQ2ljppnihYtirNnz6J58+YQQmh9Q2TSrtatW+f63C1btmgwyb/DS1daNGfOHDg7O8Pd3R2+vr6oUaMG3N3d4ezsjLlz50odT2MGDRqEZ8+e4ezZszA1NcW+ffuwcuVKlCpVCjt27JA6nsbMnz8fXbt2xcaNGwEAq1evhqenJ8qWLYvRo0fj3bt3EifMWyNGjMCXX36JsLAw1KtXD40bN0a5cuXw7NkzPHv2DM2aNcPo0aOljpnnhg4dir///hvLly9HUlIS0tLSkJ6ejqSkJCxfvhxbtmzB8OHDpY6Zp/r06YOAgADo6+tDoVCgWLFi0NfXz/ZDriIiIrB8+XLcvHkTAHDz5k307dsXPXr0wOHDhyVOl7esra1z/ZEvCdKKyZMnCysrKzF9+nRx5coV8ejRI/Hw4UNx5coVMX36dGFtbS1++eUXqWNqRLFixcS5c+eEEEJYWlqKW7duCSGE2L59u6hVq5aU0TRm8uTJwtLSUnzzzTeiWLFiYvr06aJw4cJiypQpYtq0aaJo0aJi/PjxUsfMUzY2NuLGjRtCCCFSU1OFvr6+6ucuhBDXrl0ThQsXliqexhQpUkQcOnQox+MHDx4URYoU0WIi7YiIiBA7d+4UCoVCrFixQmzbti3bDznau3evMDIyEra2tsLExETs3btXFC1aVDRs2FA0aNBAGBgYfPJ3grSLhY6WFC9eXGzdujXH41u2bBGOjo7aC6RFlpaWIjo6WgghhKurqzh58qQQQoi7d+8KU1NTCZNpjru7u/j777+FEEKEhoYKfX19ERwcrDq+ZcsW4eHhIVU8jShUqJC4ffu2EEKIN2/eCH19fXHp0iXV8YiICGFjYyNVPI0xNzcXYWFhOR6/cuWKMDc312Ii7Zo4caJ49eqV1DG0ytfXV4wZM0YIIcS6deuEjY2NGD16tOr46NGjRaNGjaSKRx/hpSstefr0KcqUKZPj8dKlS+PZs2daTKQ9ZcqUwa1btwAAFStWxB9//IGHDx9i8eLFcHBwkDidZsTFxaFq1aoAAB8fH+jp6aFixYqq45UrV8ajR48kSqcZVapUwYwZM/Dw4UMEBgbCzc0NCxYsUB2fP38+KlSoIGFCzahXrx6GDBmChISELMcSEhIwYsQI1K9fX4Jk2pG5oWNCQgKePHkidRytuH79Orp16wYAaNu2LV68eIFvvvlGdbx9+/YIDw+XKJ3mbd68GW3btkWNGjVQuXJltY/8iIWOlnzxxReYOnVqtuMy3r17h2nTpuGLL76QIJnmDRo0CHFxcQDePynu27cPLi4u+P333zFt2jSJ02lGsWLFcOPGDQDAnTt3kJGRofoceP9EKbdZKoGBgdi6dSucnZ0RFBSE7du348aNG3BwcICTkxOWL1+OCRMmSB0zzy1cuBAJCQkoXrw4KlWqhCZNmsDf3x+VKlVC8eLFkZCQgIULF0odUyN2796NOnXqwNzcHI6OjrC3t0ehQoXQuXNnxMTESB1PK/T09GBiYoJChQqp2iwtLZGcnCxdKA36/fff0b17d9jZ2eHKlSv44osvULhwYdy9exf+/v5Sx8sWp5drydWrV+Hn54f09HTUrVsX9vb2UCgUiI+Px/Hjx2FsbIyQkBCUL19e6qgal5qaips3b8LFxQVFihSROo5GjB07Fn/++ScCAgJw6NAhtGvXDmvWrMHPP/8MhUKBqVOnok2bNpg9e7bUUfPUy5cvcevWLZQpUwYWFhZIS0vDmjVr8Pr1azRq1OiTvZoFmVKpxP79+3H27FnEx8cDeF/s+vr6ws/PD3p68ntPuXr1avz444/4/vvvYWJiguXLl6N79+5wdXXF+vXrcf36dZw+fRqlSpWSOmqe8/HxwYwZM9CkSRMAwLVr11C2bFkYGLyfyHzy5El06dIFd+/elTKmRpQtWxYTJkxA+/btYWlpibCwMLi7u2P8+PFISkpS68XNL1joaNGLFy8QHByc7ZNhhw4dYGVlJXFCyisZGRmYPn06zp49iy+//BIjR47E+vXrMWLECKSmpqJ58+ZYsGABzM3NpY6aJ1q3bo0VK1bAysoKq1atwnfffQdjY2OpY5EGlStXDhMnTsR3330HALh48SJatWqFmJgYKBQKtGvXDm/evMmX043/q8WLF8PZ2RnNmjXL9viYMWOQkJCAJUuWaDmZ5pmZmSEiIgKurq6ws7NDSEgIfHx8cOfOHdSoUQNPnz6VOmIWLHRIY/r374+2bduidu3aUkchDTMyMsL9+/fh4ODABeR0hJmZGW7cuIESJUqo2gwNDXH//n04Ojri/PnzaNy4sWzHHuoqd3d3bN68GZUrV0a1atXQs2dP/PDDDzhw4ADatWuHpKQkqSNmwQUDtUjXVo0NCgrCwoULUbJkSXz//ffo2rUrihUrJnUs0oCyZcvi559/Rr169SCEwMaNG3PsoezSpYuW02nW27dvMWbMGGzZsgW2trbo27cvunfvrjqekJAAR0dH2S2MWaJECVy8eFFV6Fy+fBl6enqq5zFbW1ud2ybi3bt3qstXclW/fn3s3LkTlStXxvfff4/Bgwdj8+bNuHjx4mctLKhN7NHREl1cNVZPTw8hISHYuXMn1qxZg+TkZPj7+6NXr15o2rSpLMctAAV/FdF/4/Tp0xgyZAiioqKQlJQES0vLbFfLVSgU+fId338xceJELF68GMOGDcPz58+xYMECfPfdd/jjjz8AvC90HBwcoFQqJU6at4KCgjBmzBj88MMPMDExwZIlS+Dv76+6XLNmzRrMmjULly9fljhp3tu3bx+cnJzg5eUFpVKJadOmYdGiRYiPj4eDgwN++uknjBw5UpYrRiuVSiiVSlVBt3HjRpw8eRIeHh7o06cPjIyMJE6YDckmtusYPz8/0aZNG3H16lUxcOBA4enpKb799lvx5s0b8fbtW9GpUyfRsGFDqWPmKYVCIRISEoQQ79dV2bBhg2jcuLHQ19cXjo6OYvTo0eLOnTsSp8x73bp1U3107dpVWFlZCWdnZ9GqVSvRqlUr4eLiIqysrES3bt2kjqoRH/7cdYGHh4fYuXOn6vPIyEhRqlQp0a1bN6FUKkV8fLzQ09OTMKHmLFy4UNSsWVNUqVJFjB49Wrx+/Vp17Pbt2yIiIkLCdJrj6ekpTp06JYQQYtq0aaJw4cJi9uzZYu/evWLu3LnC3t5eTJ8+XeKUmnH//n2hVCqztCuVSnH//n0JEv0zFjpaoourxub0gnf//n0xYcIE4erqKtsXgEwjRowQPXv2FO/evVO1vXv3TvTu3VsMGzZMwmSac+/evWyfCOXK1NRUtSBmpocPH4oyZcqIjh07iocPH8r+91zXmJiYiJiYGCGEEBUqVBAbNmxQO75r1y7ZLQiaSU9PL9vn9SdPnuTb33N5X0zMR4QQqq6+j/8F3u8GLLeu7Zy4uLhg4sSJmDBhAg4ePCh1HI1atmwZTp48qbbnj76+PoYMGYKaNWvi119/lTCdZrx58warVq1S27i2Zs2aspxmDLyfORkVFaU2KNfR0RGHDx9GvXr10LVrV+nCaYmubVRsY2ODhw8fwtnZGY8fP87yu126dGk8fPhQonSaJXLYxPXly5cwMTGRINE/Y6GjJZmrxk6aNAlLly5VrRq7bNkyAPJcNdbV1fWTm/opFAo0atRIi4m07927d4iIiMiyfkxERITsCtvk5GR06dIFO3fuhLW1Nezs7CCEwOPHj5GSkoLmzZtj1apVsltGoX79+li7di0aNGig1p5Z7Hz11VfSBNOCOXPmYPbs2Xj06BHE/w/3VCgUcHR0xNChQzFo0CBpA2pIq1atMHXqVGzbtg0BAQFYuHAh/vzzT1UBsGDBArWV0OVgyJAhAN7/fMeNGwczMzPVsYyMDJw7dy7fPmYWOloSGBiIJk2aYPny5ShSpAiOHDmCHj16wMHBAXp6enj27Bl27twpdcw8FR0dLXUEyXXv3h09evRAZGQkatSoAQA4e/Yspk+frjYzRw769++P6OhonDlzBtWrV1c7du7cOfTu3Rv9+/fHypUrJUqoGePGjVPtYP0xJycnHD9+HAcOHNByKs375Zdf8Ntvv2H06NFo3Lgx7O3tIYRAYmIi9u/fj4kTJ+Lly5cYO3as1FHz3LRp09CwYUOULVsWvr6+2LRpE0JCQlC6dGlERkbi6dOnsvuZX7lyBcD7Hp2rV6+qDTo2MjKCj48Phg0bJlW8T+KsKy3S1VVjdZlSqcRvv/2GefPmqbbBcHBwwMCBAzF06NBP9ngVNIUKFcL+/fuzFDmZzp49iyZNmuD58+faDUYa4ezsjPnz56Nly5bZHt+6dSt++ukn2V7Cefv2LZYuXYqdO3fi7t27UCqVcHBwQK1atdC3b18UL15c6oga0b17d8ybN69A9cyy0CGtuHDhAjZt2oSYmBi8efNG7Zhcplhn2rFjB/z9/WFoaKjWnpKSAgAF6gnicxQqVAgHDhzIcc+2c+fOoXHjxrItdAIDA2Fvb48ePXqotS9btgyPHz/GyJEjJUqmGWZmZrh06RLKlSuX7fHr16+jWrVqSE1N1XIy0pYHDx5AoVDAyclJ6iifJM+FTAqQ7t27y24X64+tX78etWrVwo0bN7B161a8ffsWN27cwOHDh2FtbS11vDzXqlUr1Yu5vr4+EhMTAbwvcORa5ABA8+bN0atXL1y8eDHLsYsXL6JPnz5o0aKFBMm0448//kDZsmWztJcvXx6LFy+WIJFm6fJGxZmio6Nx586dLO137tzBvXv3tB9IC5RKJSZPngxra2u4urrCxcUFhQoVwi+//JJvxx1yjI6WhIeHZ9u+Zs0aBAQEwN3dHQDg7e2tzVhaMW3aNMyZMwc//vgjLC0tMW/ePLi5ueGHH36Ag4OD1PHyXNGiRXH27Fk0b948xxkKcjR//ny0b98eX3zxBQoVKgQ7OzsoFAokJCQgOTkZjRs3xu+//y51TI3JXCzuY0WLFlVdtpST+fPnw8/PD3Z2dp/cqFjOunXrhh49emSZdXXu3DksWbIER48elSaYBo0ZMwZLly7F9OnTUatWLQghcOrUKUycOBFpaWmYOnWq1BGz4KUrLdHT04NCoUB23+7MdoVCIbtl4gHA3Nwc169fR4kSJVQDsb28vBAREYH69evL7kVg4sSJmDx5cq4KHDn+vCMiIrLduDa73g45KVWqFCZMmIBOnTqpta9evRoTJkyQ5U7Wur5RsZWVFS5fvgwPDw+19sjISFStWlWWl2kdHR2xePHiLL2z27dvR79+/fLlmCz26GiJt7c3ihcvjt9++w2mpqYA3o9eL1WqFPbu3SvbNUaA93vevHjxAsD7WSjXrl2Dl5cXnj9/Lsvr9xMnTkS7du0QGRmJFi1aYPny5ShUqJDUsbSmXLlyOY7bkLOePXti0KBBePv2LerXrw8AOHToEEaMGIGhQ4dKnE4zLC0t0bdvX/Tt21fqKJJQKBSq57YPJScny/JNDAAkJSVl+6albNmy+XZ7FxY6WnL+/HmMGDEC33zzDYKDg1GpUiXVMUdHR1kvsFW7dm2EhITAy8sLbdu2xcCBA3H48GGEhIRkWXtELsqWLYuyZctiwoQJ+Pbbb9XWnJCjHTt25PpcuY7TGTFiBJKSktCvXz/VgHsTExOMHDkSP//8s8TptO/t27eIi4uDi4uL1FE0pnbt2ggMDMS6detUMygzMjIQGBiIL7/8UuJ0muHj44MFCxZkuQy9YMEC+Pj4SJTq03jpSsv27t2L3r17o1+/fhg5ciSMjY0RFhYGT09PqaNpTFJSEtLS0uDo6Kiabp25Cdy4ceNgY2MjdUSNS0xMxK1bt6BQKFC6dGnY2dlJHSlPfbxB68eXaT+8jCfXd7qZXr58iYiICJiamqJUqVIwNjaWOpIkwsLCULlyZVn/vG/cuIE6deqgUKFCqF27NgDgxIkTSElJweHDh2W3CCwAHDt2DM2aNYOLiwt8fX2hUChw+vRpxMbGYs+eParvQ37CQkcCCQkJ6N69O168eIGzZ8/KvtDRZSkpKfjxxx+xfv161RO+vr4+vvvuOwQFBcly1tnBgwcxcuRITJs2Te2JcOzYsZg2bZrsV8Om93Sh0AGAR48eYcGCBQgLC4OpqSm8vb3x008/wdbWVupoGhETEwMDAwMEBQXh5s2bEELA09MT/fr1w7t37/JlDx4LHQn9/vvvOHLkCObPny/bxaUyZWRkYOvWrYiIiIBCoUC5cuUQEBCgtt+XHLVt2xahoaGYP3++2ov+wIED4e3tjY0bN0odMc9VqFABixcvztJ1f+LECfTu3RsRERESJdOM5s2bo23btmjTpo1q/J0uqFy58iePv379Grdv35Z9oaNr9PX1ERcXl6VX+unTp7Czs8uXP28WOqRx165dQ0BAAOLj41WrP9++fRtFixbFjh074OXlJXFCzTE3N8f+/fuzfdFv0qQJXr16JVEyzTE1NcX58+ez/FzDw8NRvXp1vH79WqJkmqGnpwd9fX2Ym5ujffv26NmzJ6pUqSJ1LI0zMTFBu3bt4Obmlu3xuLg4/PXXX/nyhU/TXr16hUuXLqFOnTpSR8lzenp6iI+Pz1Lo3L9/H56envnyOU3eb6fzkfT0dOjp6alWy42KisKyZcsQExMDV1dXfP/99zk+YRR0PXv2RPny5XHx4kXVeJxnz56hW7du6N27N86cOSNxQs0pXLhwtpenrK2tZTs2qVq1ahg0aBCCg4NV68rEx8dj6NChsl1ALiwsDAcOHMCyZcvw559/okKFCujVqxc6duwo259zhQoVUL169RxnXIWGhuKvv/7Scqr8ITIyEvXq1ZNVkffhpp7jx48vUJt6cmVkLfH391dt2nnq1CmUL18eu3btwtu3b7Fnzx5UqFBBti/4YWFhCAwMVHvCt7GxwdSpUxEaGipdMC0YO3YshgwZorZWUHx8PIYPH45x48ZJmExzli1bhsTERLi6usLDwwMeHh5wcXFBXFwcli5dKnU8jShSpAgGDRqE8PBwnDlzBjVq1MDYsWPh5OSEDh064PDhw1JHzHNffvklbt26leNxS0tLWfZo6KorV67gypUrqk09Mz+/cuUKbt68CR8fH6xYsULqmNnipSstsbGxwcWLF1GyZEl89dVXqFy5MmbPnq06Pm7cOBw5cgQnT56UMKVmVKxYEbNnz1atLZLp8OHDGDhwIK5evSpRMs2oVKmS2iyjO3fuID09XTVILyYmBsbGxihVqhQuX74sVUyNEkIgJCREbbBiw4YNZblKdE5d+a9fv8aGDRuwdOlSnD59Wlbv7nXdPw00zsjIwMuXL2X5M+emnpQjCwsLXLx4EWXLlkWxYsWwf/9+tTUHoqKiULFixWwXnyqIMjewBICTJ09ixIgRmDhxImrUqAHg/U7WkydPxvTp09G0aVOpYmrEpEmTcn3uhAkTNJiEtCGnQudDd+7ckfWioLrG3Nwcffv2zXF84f379zFp0iRZFjoFEcfoaEn16tWxc+dOlC1bFiVLlkRYWJhaoRMaGiqr6YiFChVSe/cuhEDbtm1VbZn1dfPmzWX3ZMDiRZ27uzv2798v2xf6unXrwsjI6JPnyPWxfyg1NRUxMTGqxRIzyXH/vooVK8LZ2Rldu3bN9nhYWNhnveEhzWKhoyVTpkyBv78/Xr16hfbt22Po0KG4c+cOypUrh1u3buH333+X1eqpR44ckToCaVlOG3bGxMRg+fLlKFasGABgwIAB2oylcbr+u/748WN0794de/fuzfa43N7IAECzZs0+uY+Vra0tunTpor1A9Em8dKVFZ86cwZAhQ3Du3Dm1dkdHRwwfPhwDBw6UKFnea926NVasWAErKyusWrUK3333nc6sEGtjY5PrsSj5dW+Yf0NPTw9OTk5Z1ka6f/8+HB0dYWhoCIVCIcvNLTO9e/cOR48eRVRUFDp06ABLS0s8evQIVlZWsLCwkDqeRnTs2BH37t3D3LlzUa9ePWzduhUJCQmYMmUKZs2ahWbNmkkdkXQcCx0JPH78GHfv3oVSqYSDgwNKlCghdaQ8Z2RkhPv378PBwSHHBabkauXKlar/P336FFOmTEHjxo3h6+sL4H3Bu3//fowbNw6DBw+WKmae++GHH3D+/HmsXbtWbVNPQ0NDnVj9+/79+2jSpAliYmKQnp6O27dvw93dHYMGDUJaWhoWL14sdUSNcHBwwPbt2/HFF1/AysoKFy9eROnSpbFjxw7MnDlTlhMsqGBhoUMa4e3tjcqVK6NevXro3r07fv/99xxH6cu5i/ebb75BvXr18NNPP6m1L1iwAAcPHsS2bdukCaYh27Ztw4ABAzBixAjVY9aVQqdly5awtLTE0qVLUbhwYYSFhcHd3R3Hjh1Dz549cefOHakjaoSVlRXCw8NRokQJlChRAmvWrEGtWrUQHR2N8uXLIzU1VeqIGnXr1i3Mnz9ftep72bJl0b9/f9XiqCQ9FjoSOHToEObMmaP2hzFo0CA0bNhQ6mh55vTp0xgyZAiioqKQlJQES0vLbC/nKBQKWV2++ZiFhQVCQ0Ph4eGh1n7nzh1UqlQJL1++lCiZ5jx8+BBdunSBkZERli9fDmdnZ50odIoUKYJTp06hTJkysLS0VBU69+7dg6enp2xf8KtVq6bqtWzZsiWsrKwQGBiI33//HZs3b0ZUVJTUETVm8+bNaN++PapWrarqsT179iwuXLiAtWvX4ttvv5U4IQEABGnV/PnzhYGBgWjXrp2YN2+emDdvnmjfvr0wNDQU8+fPlzqeRigUCpGQkCB1DEm4uLiImTNnZmmfOXOmcHFxkSCRdiiVSjFt2jRRrFgxoa+vL65fvy51JI2zsbFRPU4LCwsRFRUlhBDixIkTws7OTspoGhUcHCyWL18uhBDi8uXLomjRokJPT0+YmJiI9evXSxtOw9zc3MS4ceOytI8fP164ublJkIiywx4dLXNycsLPP/+c5VJGUFAQpk6dikePHkmUTHPu378PFxcXWS4W909WrFiB77//Hk2aNFF7x7dv3z4sWbIE3bp1kzaghl26dAknT55Ely5dZLsVQqbvvvsO1tbW+PPPP2FpaYnw8HAULVoUAQEBcHFxwfLly6WOqBWpqam4efMmXFxcUKRIEanjaJSZmRnCw8Oz7bH18fGRbS9eQcNCR8ssLS1x5coVnbqU8aFnz54hMjISDg4Ost+xPdO5c+fw+++/IyIiQrVK8IABA1C9enWpo1EeevToEerVqwd9fX3cuXMHVatWxZ07d1CkSBEcP35cZwbj65KmTZvi22+/Rffu3dXaly9fjvXr12P//v0SJaMPsdDRso4dO6JixYoYPny4Wvtvv/2GS5cuYd26dRIly3ujR4/G2LFjYWZmhrdv3+LHH3/E0qVLIYSAQqFAQEAA1q5dCxMTE6mjkhbExsZiwoQJWLZsmdRRNOb169dYv349Ll26BKVSicqVK6Njx44wNTWVOppGRERE4OzZs/D19UXZsmVx8+ZNzJs3D+np6ejUqVOWbV/kYMeOHar/P3r0COPHj0fbtm3VVn3ftGkTJk2ahD59+kgVkz7AQkcLPlxILSUlBb/99htq1aqldinj1KlTGDp0KMaOHStVzDz34bTyadOmYe7cuVi8eDFq1KiBy5cvo0+fPvjhhx9ku7klALx69QqXLl1CXFwc9PX14e7unmUvLF0RFhaGypUry3IBOV20b98+BAQEwMLCAqmpqdi6dSu6dOkCHx8fCCFw7Ngx7N+/X3bFjp5e7vbCVigU/F3PJ1joaIGbm1uuzpPbYmof7gFUqVIl9O/fHz169FAd37hxIyZOnIgbN25ImFIzlEolRo0ahaCgIKSlpQH437YXLi4umD9/Ppo3by5lxDz34Tvd7Ny9exdDhw7VmSf/+vXrY/ny5XB1dZU6ikbUrFkT9evXx5QpU7B+/Xr069cPffv2xdSpUwEAY8aMwYULF3DgwAGJk5KuY6FDGqOnp4eEhAQULVoURYoUwdGjR1GhQgXV8Xv37qF8+fJ49eqVhCk1Y9SoUdixYwcCAwNhYmKCqVOn4uuvv0aLFi2wdu1azJw5Ezt27ICfn5/UUfOMnp4eFAoFPvWUIsd3uTkVeK1bt8a8efPg7OwMAGjRooU2Y2mctbU1Ll26BA8PDyiVShgbG+PcuXOoXLkyAODatWto2LAh4uPjJU5Kuo57XZFG/fXXX7CwsICxsTGePXumdiw5OVm220KsXr0a69evR+3atQEAFSpUQNmyZTFw4EBMnjwZhoaGmDhxoqwKHQcHBwQFBaFly5bZHg8NDUWVKlW0G0oLWrZsmWOB179/fwDyLPA+pKenBxMTExQqVEjVZmlpieTkZOlCadjOnTtx8eJF1YzKw4cP47fffoNSqUTr1q3Ru3dvqSPS/2OhowVDhgzJ9bmzZ8/WYBLtcnFxwV9//QXg/ZYQly9fVr3wA+83Q5Tr6qEvXryAk5OT6nMHBwekpaXh2bNnKFasGL755htMnz5dwoR5r0qVKrh8+XKOhc4/9fYUVI0bN4a+vj6WLVumNrNK7itClyhRApGRkaoZpGfOnIGLi4vqeGxsLBwcHKSKp1GLFy9G//794ePjg7lz52LhwoXo27cvvvvuO+jr62PQoEF4/fq1rPYvLMhY6GjBlStX1D6/dOkSMjIyVC/yt2/fhr6+vuze7d67d++Tx2vUqIG6detqJ4yWeXl5Yd26dRgzZgyA9+ORLCwsVDt4Z3b1y8nw4cM/eRnSw8NDljt97927F3PmzEG1atUQFBSEr7/+WupIWtG3b1+1XqoPL0sD778vchuInOn333/HwoUL0atXLxw5cgRNmzbFrFmz0K9fPwDvn9tmzpzJQief4BgdLZs9ezaOHj2KlStXqhZQe/bsGbp3747atWtj6NChEiekvHDo0CE0a9YMPj4+MDExwenTp/Hrr79i0KBBAN4vJ7B3714cOnRI2qCUZ8LCwtChQwd8+eWXmDNnDqytrWXdo6PLzMzMVIsiAv/rsc4s9uQ8/rAgYqGjZU5OTjhw4ADKly+v1n7t2jX4+fnJcmXkTDdu3EBMTAzevHmj1i63QZqZwsPDsWHDBqSnp6Nx48Zo1KiR1JFIw16/fo3Bgwfj8OHDuHv3LsLDw1noyJCzszPWrl2L2rVr49GjRyhevDh27dqFpk2bAgCOHTuGTp06ITY2VuKkBPDSldalpKQgISEhS6GTmJiIFy9eSJRKs+7evYtWrVrh6tWrauM0MteSkesgTW9vb3h7e0sdQ6vCwsIwa9YsnDx5UrV2kJubG1q2bInhw4fnuIO9XJiammLx4sXYsWMHjhw5IvstEDJduHABmzZtyvaNzJYtWyRKpTkBAQH4/vvv0bVrV+zYsQNdunTB0KFDVTMPhw8fLquJBgVd7lY+ojzTqlUrdO/eHZs3b8aDBw/w4MEDbN68Gd9//z1at24tdTyNGDhwINzc3JCQkAAzMzNcv34dx48fR9WqVXH06FGp42lF5v4/4eHhah9ysn//fvj6+uLFixeoUaMG9PT00L17dzRr1gzr169H5cqVZTfV2NbWFk+ePAEA9OjRQ/VmpUWLFpgzZ45ObPuwfv161KpVCzdu3MDWrVvx9u1b3LhxA4cPH4a1tbXU8TRixowZqFu3rur3+q+//sL333+PgIAA+Pv7o3DhwggMDJQ6JmXS3v6hJIQQr169En379hXGxsZCT09P6OnpCSMjI9G3b1/x8uVLqeNpROHChUVYWJgQQggrKytx8+ZNIYQQhw4dEhUrVpQymsYlJiaKpk2bqn7WH3/IScWKFcWiRYtUnx84cECULVtWCCHEmzdvRIMGDUS3bt2kiqcR5ubmql3K9fT0RGJiosSJtM/Ly0ssWLBACPG/XduVSqXo1auXGD9+vMTptOv169ciJSVF6hj0EY7RkcirV68QFRUFIQQ8PDxgbm4udSSNsbGxwaVLl+Du7o6SJUtiyZIlqFevHqKiouDl5SXrHX47duyIe/fuYe7cuahXrx62bt2KhIQETJkyBbNmzUKzZs2kjphnTE1NERERgRIlSgB4vxK0sbEx7t+/DwcHB5w4cQLffPMNEhMTpQ2ahxo1aoSEhARUqVIFK1euxHfffZfjvlZy3ePL3Nwc169fR4kSJVCkSBEcOXIEXl5eiIiIQP369REXFyd1RNJxHKMjEXNzc9X4DbnXmhUqVEB4eDjc3d1RvXp1zJw5E0ZGRvjzzz/h7u4udTyNOnz4MLZv345q1apBT08Prq6uaNSoEaysrBAYGCirQsfJyQm3bt1SFTpRUVFQKpUoXLgwAKB48eJ4+fKlhAnzXnBwMObMmYOoqCgoFAokJyertvzQFba2tqpLdk5OTrh27Rq8vLzw/PlzWb6J0dV10QoyFjpakp6ejtGjR+PixYv4+uuvMXz4cEyZMgXTp0+HEAIBAQFYvHixLAdrjh07VjXNcsqUKfj6669Ru3ZtFC5cGBs2bJA4nWa9evVKNU7D1tYWjx8/RunSpeHl5YXLly9LnC5vdenSBT179sSYMWNgbGyM2bNno0WLFjAyMgLwfmXk3O77VlDY29urFn50c3PD6tWrVYWdrqhduzZCQkLg5eWFtm3bYuDAgTh8+DBCQkLQoEEDqePlOV1dF61Ak/K6mS4ZPHiwcHR0FEOHDhXlypUTP/74o3BxcRHBwcFi7dq1wsPDQ/Tv31/qmFrz9OlToVQqpY6hcVWrVhX79u0TQggREBAgOnfuLB48eCBGjBgh3N3dJU6Xt96+fStGjBghHB0dReHChUWHDh3E48ePVcfPnTsnjh07JmFC0oSnT5+Khw8fCiGEyMjIEDNmzBDNmzcXgwcPFklJSRKn06xZs2aJ5s2bqz3OpKQkERAQIH777TcJk9GHWOhoibOzswgJCRFCCBEVFSX09PTEtm3bVMcPHDggXF1dJUpHmhIcHCyWL18uhBDi8uXLomjRokJPT0+YmJiI9evXSxtOYidPnhRpaWlSx9AYNzc3cfv2baljkAY5OjqKa9euZWm/evWqcHBwkCARZYeXrrTkyZMnKF26NADA3d0d+vr6qj1iAKBUqVJ4/PixVPE05sKFC5g7dy5Onz6N+Ph4KBQK2Nvbo2bNmhg8eDCqVq0qdUSN6tixo+r/lSpVwr1791QrqurKGis58ff3R2hoaIEfp/X7779n2x4TE4Ply5ertv0YMGCANmNpzatXr3Dp0iW1dZMqV66sWidLznRxXbSCiIWOlri4uKg2vbtw4QIUCgXOnz+v+gM5d+6c2iaQcrBt2za0bdsWDRo0wMCBA2Fvbw8hBBITE3HgwAHUqlULGzduREBAgNRRtcbMzAyVK1eWOka+IGQyCH/QoEFwcnKCgYH606lSqcSqVatgaGgIhUIhu0JHqVRi1KhRCAoKUg3AzvyZuri4YP78+WjevLmUETUuc120WbNmoUaNGgCAs2fPYvjw4bJdF61AkrhHSWfMmTNHmJiYiIYNGwobGxsxf/58UaxYMTFixAgxatQoYW1tLSZPnix1zDxVvnx5ERgYmOPx6dOnC09PTy0m0p7Lly+Lu3fvqj5fvXq1qFmzpihevLioVauWWLdunYTp8ofMNVcKut69e4uKFSuKGzduqLUbGBiI69evS5RK80aOHCnKlSsntm3bJvbt2ydq164tZsyYISIiIsS4ceOEsbGx2L9/v9QxNUoX10UriFjoaFFwcLD46aefVGMzjhw5ImrXri2qVKkiJk6cKDIyMiROmLeMjY3FrVu3cjx+8+ZNYWxsrMVE2lOpUiVx+PBhIYQQf/31lzA1NRUDBgwQixYtEoMGDRIWFhZi6dKlEqeUllwKHSGE2Lp1q3B2dhbz589Xtcm90HF0dBTHjx9Xff7gwQNhYWGhGnc1efJk4evrK1U8rXr58qUICwsToaGh2RY4sbGxsnt+L0hY6ORTchio6enpKWbMmJHj8RkzZohy5cppMZH2mJmZifv37wsh3hc9f/zxh9rxNWvWyLY3K7fkVOgI8f6Fvn79+qJJkyYiLi5O9oWOpaWl2s8vIyNDGBgYiLi4OCGEENevXxdmZmZSxctXPv5ekXZxjE4+JYeBmpMnT0a7du1w7Ngx+Pn5wd7eHgqFAvHx8QgJCcGBAwewfv16qWNqhKmpKR4/fgwXFxc8fPgQ1atXVztevXp1REdHS5Quf5DbYFUnJyccPHgQ06dPR6VKlWQzBiknXl5eWLduHcaMGQMA2LhxIywsLFSDr5VKJYyNjaWMmG/I/Xchv2Ohk0/J4Q/jm2++wfHjxzFv3jzMnj1btaFjsWLF4Ovri2PHjsHX11filJrh7++PRYsWYcmSJahbty42b94MHx8f1fGNGzeqzbrTRXL4Hf+YQqHAzz//DD8/P5w8eRIODg5SR9KYyZMno1mzZtixYwdMTExw+vRp/Prrr6rj+/btQ6VKlSRMSPQe97rKpywtLREWFlage3Q+16lTp1C1alVZvAt89OgRatWqBRcXF1StWhWLFi1ClSpVUK5cOdy6dQtnz57F1q1b0bRpU6mj5rnXr19DCAEzMzMAwP3797F161Z4enrCz89P4nTSs7KyKvC9tZnCw8OxYcMGpKeno3HjxmjUqJHUkfIlXXw+z0/Yo0P5hhwu12VydHTElStXMH36dOzcuRNCCJw/fx6xsbGoVauWqqiTo4CAALRu3Rp9+vTB8+fPUb16dRgaGuLJkyeYPXs2+vbtK3VEScnpvaW3t7dqz75/0q9fP0yePFnn148i7dOTOgBRJjm9AABAoUKFMH36dFy/fh2vX79Geno67t27hzVr1mQpch48eAClUilR0rx1+fJl1K5dGwCwefNm2Nvb4/79+1i1alWOi+uR/AUHByMlJUXqGJKQ23i0goaFTj7FPwzd4unpiXv37kkdI0+kpqbC0tISAHDgwAG0bt0aenp6qFGjBu7fvy9xOpKK3N7IfA5dfuz5AQudfIp/GLpFTj9vDw8PbNu2DbGxsdi/f79qXE5iYiKsrKwkTkeU9yIjI7F//368fv0aQNa/5xs3bsDV1VWKaAQWOvnWixcvZDFWhXTP+PHjMWzYMJQoUQLVq1dXzaw7cOAAZ+GAvbVy8vTpUzRs2BClS5dG06ZNERcXBwDo2bMnhg4dqjrP2dkZ+vr6UsXUeRyMrAWVKlXK9ZPb5cuXNZwm/+ILgDy0adMGX375JeLi4tSm1Ddo0ID7/0BevXe6bvDgwTAwMEBMTAzKlSunav/uu+8wePBgzJo1S8J0lImFjha0bNlS6ggFAl8A5KFHjx6YN29elt6b8uXLo3///li2bJlEyTRr8uTJGDZsmGpafabXr1/j119/xfjx4wEAe/fuld0GvrrqwIED2L9/P4oXL67WXqpUKY5Hy0e4jg5pHNdV+WdyWltFX18fcXFxsLOzU2t/8uQJihUrhnfv3kmUTLNyetxPnz6FnZ0dMjIyJEqWP/Tt2xe//PKLrKaXW1pa4vLlyyhVqpTaWjkXLlxAkyZN8PTpU6kjEjhGRzKXLl1CcHAw1qxZgytXrkgdR6MCAgKwatUqAFCtqzJr1iwEBARg0aJFEqfLH+TwfiMlJQXJyckQQuDFixdISUlRfTx79gx79uzJUgTIiRAi28uvYWFhsLW1lSCRdowbNy7bIi45ORnt27dXfb5o0SJZFTkAUKdOHdVzG/D+8rtSqcSvv/6KevXqSZiM1GhxXy0SQiQkJIh69eoJhUIhbGxsRKFChYRCoRD169cXiYmJUsfTiMKFC4tr164JId7v5O3t7S0yMjLExo0bRdmyZSVOlz/ExMSId+/eSR3jP1EoFEJPTy/HD319fTFlyhSpY+a5QoUKCRsbG6Gnp6f6f+aHlZWV0NPTE/369ZM6psa4uLiI6tWri8jISFXbkSNHhLOzs6hRo4aEyTTv+vXromjRoqJJkybCyMhItGnTRpQrV07Y29urfT9IWhyjo2X9+/dHSkoKrl+/rhq8duPGDXTt2hUDBgzAunXrJE6Y93RtXZXPGXC7ZcsWAO9nZRR0R44cgRAC9evXx99//63Wi2FkZARXV1c4OjpKmFAz5s6dCyEEevTogUmTJsHa2lp1zMjICCVKlJDtnm7A+20gfvjhB1SsWBGzZ8/G7du3MW/ePIwaNQoTJkyQOp5GeXp6Ijw8HIsWLYK+vj5evXqF1q1b48cff5T1PmcFDcfoaJm1tTUOHjyIatWqqbWfP38efn5+eP78uTTBNMjb2xs9e/ZEq1atUKFCBezbtw++vr64dOkSmjVrptrsUy66d++e63OXL1+uwSTSuH//PlxcXHRqFt27d+8QHByMhg0bZhmYqivGjBmDwMBAGBgYYO/evWjQoIHUkTTq7du38PPzwx9//IHSpUtLHYc+gT06WqZUKmFoaJil3dDQUDZbAHxs/Pjx6NChAwYPHowGDRrIfl0VORYvn+Pw4cOwsLDAt99+q9a+adMmpKamomvXrhIl0xwDAwP069cPERERUkeRxPz58zFnzhy0b98ely5dwoABA7B27Vq15QXkxtDQENeuXdOpgr6g4mBkLatfvz4GDhyIR48eqdoePnyoKgLkqE2bNoiJicHFixexb98+VXuDBg0wd+5c6YJp0ePHj3Hy5EmcOnUKjx8/ljqORk2fPj3bQad2dnaYNm2aBIm0o3r16rKfWJAdf39/TJo0CatWrVJNrqhTpw5q1KiBmTNnSh1Po7p06YKlS5dKHYP+AS9daVlsbCwCAgJw7do1ODs7Q6FQICYmBl5eXti+fbssu70z11XJHKeT6dWrV7JeVwX432NctWqVqsdOX18fXbp0wfz587OsuSIHJiYmuHnzJkqUKKHWfu/ePZQrV061TL7cbNq0CaNGjcLgwYNRpUoVmJubqx3P7S7fBU2jRo2wcuXKLOOvdu/ejZ49e6pWC5ajzL9tDw8PVK1aNcvPfPbs2RIlow+x0JFISEgIbt68CSEEPD090bBhQ6kjaYyurqsCAD/88AMOHjyIBQsWoFatWgCAkydPYsCAAWjUqJEsp9e7uLhgwYIFaNGihVr79u3b8eOPP+LBgwcSJdMsPb2sHeQKhUI17VwX19F58uSJ7KaUf+hTU8gVCgUOHz6sxTSUE47RkUijRo3QqFEjqWNoVEpKCoQQqnVVTExMVMcyMjJkv64KAPz999/YvHkzvvrqK1Vb06ZNYWpqirZt28qy0GnXrh0GDBgAS0tL1KlTBwBw7NgxDBw4EO3atZM4neZER0dLHSHfkXORA7yfaUj5HwsdLRswYAA8PDwwYMAAtfYFCxYgMjJSVmNWChUqBIVCAYVCke2sBIVCgUmTJkmQTHtSU1Nhb2+fpd3Ozg6pqakSJNK8KVOm4P79+2jQoAEMDN4/xSiVSnTp0kXWY3R0aXdqW1tb3L59G0WKFIGNjc0nB+QmJSVpMZl0Hjx4AIVCwe098iFeutIyJycn7NixA1WqVFFrv3z5Mlq0aCGrbv1jx47p5LoqH2rQoAEKFy6MVatWqXq0Xr9+ja5duyIpKQkHDx6UOKHm3L59G2FhYTA1NYWXl5dOFAJRUVGYO3cuIiIioFAoUK5cOQwcOBAlS5aUOlqeWrlyJdq1awdjY2OsWLHik4WOHGfZZVIqlZgyZQpmzZqFly9fAni/LcTQoUMxZsyYbC9nkvax0NEyExMTXLt2DR4eHmrtkZGRqFChAtLS0iRKpjm6uK5KpmvXrqFJkyZIS0uDj48PFAoFQkNDYWJigv3796N8+fJSR6Q8sn//frRo0QIVK1ZErVq1IITA6dOnERYWhp07d8r+UrUu+vnnn7F06VJMmjRJ9TM/deoUJk6ciF69emHq1KlSRySw0NG6ChUqoE+fPvjpp5/U2ufPn49Fixbhxo0bEiXTnOXLl+vcuiofev36NYKDg9UGn3fs2BGmpqZSR9OYBw8eYMeOHYiJicGbN2/Ujsl1JkqlSpXQuHFjTJ8+Xa191KhROHDgAC5fvixRMs3S5c1MHR0dsXjx4mwH3vfr1w8PHz6UKBl9iGN0tGzIkCH46aef8PjxY9SvXx8AcOjQIcyaNUtW43M+NH36dCxevDhLu52dHXr37i37QsfU1BS9evWSOobWHDp0CC1atICbmxtu3bqFChUq4N69exBCoHLlylLH05iIiAhs3LgxS3uPHj1k+7cN5LwhbXp6OoyMjLScRruSkpJQtmzZLO1ly5bVmbFJBQELHS3r0aMH0tPTMXXqVPzyyy8AgBIlSmDRokXo0qWLxOk04/79+3Bzc8vS7urqipiYGAkSaZeujNvI9PPPP2Po0KGYPHkyLC0t8ffff8POzg4dO3ZEkyZNpI6nMUWLFkVoaChKlSql1h4aGirL2YW///47gPeTCpYsWQILCwvVsYyMDBw/fjzbIkBOfHx8sGDBAtX3ItOCBQtkvSp0QcNCRwJ9+/ZF37598fjxY5iamqo9QciRnZ0dwsPDsywgFxYWhsKFC0sTSktyGrdRvnx52Y7biIiIUG1Oa2BggNevX8PCwgKTJ09GQEAA+vbtK3FCzejVqxd69+6Nu3fvombNmlAoFDh58iRmzJiBoUOHSh0vz82ZMwfA+x6dxYsXQ19fX3UsczPT7Hpy5WTmzJlo1qwZDh48CF9fXygUCpw+fRqxsbHYs2eP1PEok7a2SSd1iYmJ4sSJE+LkyZPi8ePHUsfRqOHDhwtXV1dx+PBh8e7dO/Hu3Ttx6NAh4erqKoYOHSp1PI2qWLGiGDlyZJb2kSNHikqVKkmQSPPs7e3F9evXhRBCeHp6iu3btwshhAgNDRXm5uZSRtMopVIpZs+eLZycnIRCoRAKhUI4OTmJuXPnCqVSKXU8jfnqq69EUlKS1DEk8+DBAzF69GjRunVr0apVKzFmzBjx8OFDqWPRBzgYWct0cUuAN2/eoHPnzti0aVOWdVUWL14s6+v4JiYmuHr1apbLGbdv34a3t7csZ9m1bNkSzZo1Q69evTBixAhs3boV3bp1w5YtW2BjYyPrKfWZXrx4AQBZtj2Rszdv3iA6OholS5ZU/Z0T5Qec5K9lQ4YMwbFjx7Bz5048f/4cz58/x/bt23Hs2DFZdm8D77uxN2zYgJs3b2LNmjXYsmULoqKisGzZMlkXOcD/xm18TK7jNoD3s6qqV68OAJg4cSIaNWqEDRs2wNXVVSc2QExMTERoaCjCwsJkv4Er8H5W4ffffw8zMzOUL19eNe5uwIABWWagyc3y5cuxadOmLO2bNm3CypUrJUhE2ZK6S0nXFC5cWBw5ciRL++HDh0WRIkW0H4g0atKkSaJQoUJi+vTp4vjx4+LEiRMiMDBQFCpUSPzyyy9Sx8tz7969E0ePHtXJSxnJycmiU6dOQl9fX3XpysDAQHTs2FE8f/5c6ngaM2DAAFGlShVx4sQJYW5uLqKiooQQQmzfvl1UrFhR4nSaVbp0aXH48OEs7UePHhWlS5eWIBFlh/2LWqaLWwIAurmuCgCMGzcOlpaWmDVrFn7++WcA79femDhxYpZtQORAX18fjRs3RkREBGxsbKSOo1U9e/ZEaGgodu/erTYwdeDAgejVq1e2U8/lYNu2bdiwYQNq1Kihtiiop6cnoqKiJEymebo+o7SgYKGjZb6+vpgwYUKWLQEmTZoEX19fidNphq6uqwK8n3o7ePBgDB48WGfGbXh5eeHu3bvZvgDI2e7du7F//358+eWXqrbGjRvjr7/+kvW0+sePH2d7GfbVq1eyXw1dl2eUFiQco6Nlc+fOxenTp1G8eHE0aNAADRs2hLOzM06fPo158+ZJHU8jMtdVuXbtGkxMTPD3338jNjYWdevWzbJaslzp0riNqVOnYtiwYdi1axfi4uKQkpKi9iFXhQsXhrW1dZZ2a2trWfduVatWDbt371Z9nlnc/PXXX7J985apXbt2GDBgAI4cOYKMjAxkZGTg8OHDGDhwINq1ayd1PMok9bUzXZSamir+/PNPMWTIEDF48GDx119/idTUVKljaYyFhYWIjIwUQghRqFAhce3aNSHE++nGrq6uEibTPF0ct5H5OBUKhdDT01N9ZH4uV3/88Ydo2LChePTokaotLi5O+Pn5icWLF0uYTLNOnTolLC0tRZ8+fYSJiYkYOHCgaNiwoTA3NxcXL16UOp5Gpaeni7Zt2wqFQiEMDQ2FoaGh0NfXF927dxfp6elSx6P/x+nlWnb8+HHUrFkzy/TLd+/e4fTp06hTp45EyTSnWLFiOHz4MDw9PVG+fHkEBgaiRYsWCAsLQ61atVS7/spR27ZtERoaivnz52cZt+Ht7S3LcRvHjh375PG6detqKYl2VapUCZGRkUhPT4eLiwsAICYmBsbGxlmWF5DbvldXr17Fb7/9hkuXLkGpVKJy5coYOXIkvLy8pI6mFXfu3EFoaChMTU3h5eUFV1dXqSPRB1joaJkuboCny+uqmJubZxm3AQAnTpxAkyZN8OrVK4mSaU5MTAycnZ2zjM8QQiA2NlZVBMjNpEmTcn3uhAkTNJiEpHDq1ClUrVoVxsbGUkehj3AwspYJIbIdoPf06VOYm5tLkEjzZs+ereq1mThxIl6+fIkNGzbAw8NDtYy8XOniuA03N7dsi/mkpCS4ubnJspgHdLt4USqViIyMRGJiomoh1Exy7KXOjr+/P0JDQ+Hu7i51FPoICx0tad26NYD3A/W6deumVvVnZGQgPDwcNWvWlCqexmRkZCA2Nhbe3t4AADMzMyxcuFDiVNozduxYDBkyBKtWrYKDgwMAID4+HsOHD8e4ceMkTqcZORXzL1++VM00JPk4e/YsOnTogPv372fZyVyhUMi2sP0YL47kXyx0tCTzXb0QApaWljA1NVUdMzIyQo0aNdCrVy+p4mmMLq+rAgCLFi1CZGQkXF1ds4zbePz4Mf744w/VuQV93MaQIUMAvH9xGzdunNp2JhkZGTh37hwqVqwoUTrNy8jIwJw5c7Bx48Zs14tKSkqSKJlm9enTB1WrVsXu3bvh4OAg+ynlVPCw0NGS5cuXAwBKlCiBYcOGyfYyVXZ0dV0VAAgICNCZJ/4rV64AeF/MX716VW17DyMjI/j4+GDYsGFSxdO4SZMmYcmSJRgyZAjGjRuHMWPG4N69e9i2bRvGjx8vdTyNuXPnDjZv3gwPDw+po0jqjz/+yHYxWJIeByNL5PHjx7h16xYUCgVKly6NokWLSh1JYw4cOICRI0fil19+QZUqVbIUeVZWVhIlI03o3r075s2bp3M/15IlS+L3339Hs2bNYGlpidDQUFXb2bNnsXbtWqkjakT9+vUxYsQIWS+KSAUbCx0tS01NxU8//aRTu5fr6f1vXcoPezcyx3LI+Rq+u7s7Lly4kGWV1OfPn6Ny5cq4e/euRMkor5mbmyMiIgIuLi5wcHDA7t27VT/jSpUqITk5WeqIeSY8PFz1/6ioKIwdOxbDhw+Hl5cXDA0N1c7NHJ8nNyEhITh58iTq1q2L+vXr4/jx4wgMDER6ejo6d+6M7t27Sx2R/h8vXWnZ4MGDVbuX16pVCwBw8uRJDBgwAEOHDsWiRYskTpj3jhw5InUEydy7dy/bQi49PR0PHjyQIJHmvXr1CtOnT8ehQ4eynYUj1+KuePHiiIuLg4uLCzw8PHDgwAFUrlwZFy5ckN2U44oVK0KhUKgNwO3Ro4fq/5nH5PpGJjg4GN27d4e3tzdmz56N+fPnY/DgwWjTpg2EEOjTpw8sLS3Rpk0bqaMSWOho3d9//43Nmzfjq6++UrU1bdoUpqamaNu2rSwLHTc3t0+uqyJHO3bsUP1///79alPMMzIycOjQIdmOWerZsyeOHTuGzp0769Tg1FatWuHQoUOoXr06Bg4ciPbt22Pp0qWIiYnB4MGDpY6Xp6Kjo6WOIKlZs2Zh1qxZGDBgAA4dOoTmzZtj6tSpqp+zp6cn5s6dy0Inn+ClKy0zMzPDpUuXUK5cObX269ev44svvpDlAnK6uEhi5uW6j9/1AoChoSFKlCiBWbNm4euvv5YinkYVKlQIu3fvVvVY6qqzZ8/i9OnT8PDwQIsWLaSOozG6uNq7hYUFrl69qnqzYmRkhIsXL6ou0926dQu1atXCkydPpIxJ/489Olqmi7uX6+K6KpmXa9zc3HDhwgUUKVJE4kTaY2NjA1tbW6ljSK5GjRqoUaOG1DE0rl69etm+kUlOTka9evVk+UbG0NBQbfkAY2NjWFhYqD43MjLC69evpYhG2WCho2Vz586Fv78/ihcvDh8fHygUCoSGhsLExAT79++XOl6e0vV1VQD1Lv60tDTZFnYf+uWXXzB+/HisXLlSloPrP2X16tVYvHgxoqOjcebMGbi6umLu3Llwc3NDQECA1PE0QhdXe/fw8MDNmzdRpkwZAMDDhw9haWmpOh4VFYXixYtLFY8+wkJHy7y8vHDnzh0EBwfj5s2bEEKgXbt26Nixo9oignKg6+uqAO97dqZOnYrFixcjISEBt2/fhru7O8aNG4cSJUrg+++/lzpinps1axaioqJgb2+PEiVKZJmFU9AXRszJokWLMH78eAwaNAhTp05V9WQUKlQIc+fOlV2ho6urvQPA6NGj1RZA/XgphYsXL6Jt27bajkU5YKGjRW/fvkWZMmWwa9cuWa6C/LHM2Va6uq4KAEyZMgUrV67EzJkz1X7mXl5emDNnjiwLnZYtW0odQRLz58/HX3/9hZYtW2L69Omq9qpVq8qyoNfV1d6B9wPPP2XUqFFaSkK5wUJHiwwNDZGenq4zs1AyZa4KrYtWrVqFP//8Ew0aNECfPn1U7d7e3rh586aEyTRHVze3jI6ORqVKlbK0Gxsby3KSgS6v9p5p0qRJ6NSpE0qWLCl1FPoEvX8+hfJS//79MWPGDLx7907qKFrz6tUrjBs3DjVr1oSHhwfc3d3VPuTs4cOH2S6Nr1Qq8fbtWwkSac+lS5cQHByMNWvWqC5jypmbmxtCQ0OztO/duxeenp7aD6QlEyZM0MkiB3i/XEjp0qVRo0YNLFiwAI8fP5Y6EmWDPTpadu7cORw6dAgHDhyAl5dXlieILVu2SJRMc3R1XRUAKF++PE6cOAFXV1e19k2bNmX77l8OEhMT0a5dOxw9ehSFChWCEEI1A2f9+vWy3e5k+PDh+PHHH5GWlgYhBM6fP49169YhMDAQS5YskTqexiQkJGDYsGGqBSI/Xk5BjrOuMoWHh+P69etYs2YNZs+ejSFDhqBhw4bo1KkTWrZsqXOD8fMrrqOjZf+0LLgcL/Po8roqO3fuROfOnfHzzz9j8uTJmDRpEm7duoVVq1Zh165daNSokdQR89x3332HqKgorF69WrVe1I0bN9C1a1d4eHhg3bp1EifUnL/++gtTpkxRLYRZvHhxTJgwQZZjsTL5+/sjJiYGP/30U7ZvZOQ2CPtTTp06hbVr12LTpk1IS0tDSkqK1JEILHRIC9zc3LBnz54siyTqiv3792PatGm4dOkSlEolKleujPHjx8PPz0/qaBphbW2NgwcPolq1amrt58+fh5+fH54/fy5NMA17/fo1hBAwMzPDkydPcPfuXZw6dQqenp5o3Lix1PE0xtLSEidOnJD9UhG5ERoaiuDgYKxfvx5Pnz7lWjr5BMfoSCQxMREnTpzAyZMnkZiYKHUcjcpcVyU1NVXqKFoXGxuLxo0b49ixY3j58iVSU1Nx8uRJ+Pn54ezZs1LH0wilUpllSjnwfjD+x/teyUlAQABWrVoFADAwMECLFi0we/ZstGzZUpZbu2RydnbOcrlKl0RHR2Pq1Knw9PRE1apVcfnyZUycOBHx8fFSR6NMgrQqOTlZdOrUSRgYGAiFQiEUCoUwMDAQHTt2FM+fP5c6nkZUrFhRWFpaCgsLC1GhQgVRqVIltQ85K1OmjHjy5EmW9pMnTwpra2vtB9KCFi1aiDp16oiHDx+q2h48eCDq1q0rWrZsKWEyzSpcuLC4du2aEEKIv/76S3h7e4uMjAyxceNGUbZsWYnTac7+/fuFn5+fiI6OljqK1tWoUUPo6ekJHx8fMXPmTPHgwQOpI1E2OBhZy3r27InQ0FDs2rULvr6+UCgUOH36NAYOHIhevXph48aNUkfMc7q6rgoA1K5dG35+fjh69Khq5dTjx4+jefPmmDhxorThNGTBggUICAhAiRIlVJu5xsTEwMvLC8HBwVLH05jU1FTVz/jAgQNo3bo19PT0UKNGDdy/f1/idJrz3XffITU1FSVLloSZmVmW3rykpCSJkmlevXr1sGTJEpQvX17qKPQJHKOjZebm5ti/fz++/PJLtfYTJ06gSZMmslxvQ5cJIfDtt98iMTERBw4cwJkzZ9CiRQtMmTIFAwcOlDqeRoWEhKhW//b09ETDhg2ljqRR3t7e6NmzJ1q1aoUKFSpg37598PX1xaVLl9CsWTPZXspYsWLFJ2dSdu3aVYtppNOvXz9MnjxZp/a1KyhY6GiZi4sLdu/eDS8vL7X28PBwNG3aFA8ePJAomeZdunQJERERUCgU8PT0lO306o+9ffsWzZo1w6tXrxAeHo7AwED89NNPUseiPLZ582Z06NABGRkZaNCgAQ4cOAAACAwMxPHjx7F3716JE5ImWVlZITQ0VPZrgxVELHS07M8//8SmTZuwatUqODg4AADi4+PRtWtXtG7dGj/88IPECfOerq2rEh4enqXtxYsXaN++PZo1a4a+ffuq2r29vbUZTSsGDBgADw8PDBgwQK19wYIFiIyMxNy5c6UJpgXx8fGIi4uDj48P9PTez/U4f/48rKysULZsWYnTacZXX32FHj164Ntvv5Xdfn2fw9LSEmFhYSx08iEWOlpWqVIlREZGIj09HS4uLgCAmJgYGBsbo1SpUmrnymXzQ11bV0VPTw8KhUJtJsqHn2f+X6FQyHIxNScnJ+zYsQNVqlRRa798+TJatGgh615LXTR06FCsWbMGr1+/Rtu2bfH999+jRo0aUsfSOhY6+RcLHS2bNGlSrs+Vy55BurauyucMPP14xWQ5MDExwbVr17JsfREZGYkKFSogLS1NomSkKRkZGdi1axeWL1+OPXv2wMPDAz169EDnzp1hb28vdTzScSx0SONyWlDsypUrqFu3LlcPlZkKFSqgT58+WcYhzZ8/H4sWLcKNGzckSkba8PjxY/zxxx+YOnUqMjIy0LRpUwwYMAD169eXOppGZGRkYOvWrarxh2XLlkXLli1hYMBJzfkFfxIS0pVR+vXr18fAgQOxbt06ODo6Ani/2eXgwYPRoEEDidNpVmBgIOzt7dGjRw+19mXLluHx48cYOXKkRMk0Z8iQIfjpp5/w+PFj1YvboUOHMGvWLFmPz6H3vbTLly/HunXrYGdnh27duiEuLg7NmzdH37598dtvv0kdMU9du3YNAQEBiI+PR5kyZQAAt2/fRtGiRbFjx44sk05IItpeuIf+x9LSUkRFRUkdQ+NiYmJEpUqVhKGhoXB3dxclS5YUhoaGonLlyiI2NlbqeBrl6uoqTp06laX97NmzokSJEhIk0o6FCxcKJycn1aKYbm5uYuXKlVLHIg1ISEgQv/32myhfvrwwMjIS33zzjdi7d69QKpWqc0JCQoS5ubmEKTWjevXqonnz5iIpKUnVlpSUJFq0aCFq1KghYTL6EC9dSUjXBq/p2roqwPvxKhEREXBzc1Nrv3v3Ljw9PWU/XuXx48cwNTWFhYWF1FFIQ4yMjFCyZEn06NED3bp1y3YWZUpKCgICAnDkyBEJEmqOqakpLl68mGXBwGvXrqFatWrc6yqf4KUr0ppGjRrJcrfuT3F2dsapU6eyFDqnTp1SXcaTs6VLl6JPnz5SxyANOnjwIKpUqQJzc3MA7wfjb926FeXKlVNtZmplZSW7IgcAypQpg4SEhCyFTmJiYpbB+CQhiXuUSAf0799fzJs3L0v7/PnzxcCBA7UfSIumT58uChcuLJYtWybu3bsn7t27J5YuXSoKFy4spk2bJnU8jdOVy7O6rFGjRmLRokVCCCGePXsm7OzsRPHixYWJiYlYuHChxOk0a/fu3aJ8+fJi06ZNIjY2VsTGxopNmzYJLy8vsXv3bpGcnKz6IOmw0JFAZGSkGDNmjGjfvr1ISEgQQgixd+9e1YaAcuPo6CguXryYpf3SpUvCyclJgkTao1QqxYgRI4SJiYnQ09MTenp6wszMTEyaNEnqaFphYWHBQkfmdHUzUyGEagyaQqFQ/X1n97menp7UUXUaL11p2bFjx+Dv749atWrh+PHjmDJlCuzs7BAeHo4lS5Zg8+bNUkfMc0+fPoW1tXWWdisrKzx58kSCRNqjUCgwY8YMjBs3DhERETA1NUWpUqVgbGwsdTSiPKGrm5kCkOXlODlioaNlo0aNwpQpUzBkyBDVkwPwfhfcefPmSZhMczw8PLBv374s66rs3btXZwZiW1hYwMHBAQqFQqeKnBs3bsDJyUnqGKRBHh4e2LZtG1q1aoX9+/dj8ODBAN6PU7GyspI4nWbVrVtX6giUCyx0tOzq1atYu3ZtlvaiRYvi6dOnEiTSPF1eV0WpVGLKlCmYNWsWXr58CeD9bLuhQ4dizJgxqv2Q5Ob58+fYvHkzoqKiMHz4cNja2uLy5cuwt7dn4SMz48ePR4cOHVTrYvn6+gJ437ujKxv3pqamIiYmBm/evFFrl+NedgWS1NfOdI2Tk5NqXZUPxy9s2bJFuLu7SxlNo3R1XZVRo0aJokWLioULF4qwsDARGhoqgoKCRNGiRcXo0aOljqcRYWFhomjRosLDw0MYGBiofsfHjh0rOnfuLHE60oS4uDhx+fJlkZGRoWo7d+6ciIiIkDCV5iUmJopmzZqpxuN8/EH5AwsdLRs+fLj48ssvRVxcnLC0tBR37twRJ0+eFO7u7mLixIlSx9O4xMRE8eLFC6ljaI2Dg4PYvn17lvZt27YJR0dHCRJpXoMGDcTw4cOFEOrF/KlTp4Srq6uEyYjyVocOHUTNmjXF+fPnhbm5uThw4IBYvXq1KFOmjNi1a5fU8ej/ybPfPB+bOnUqXFxc4OTkhJcvX8LT0xN16tRBzZo1MXbsWKnjadzSpUvx7t07qWNoTVJSEsqWLZulvWzZskhKSpIgkeZduHABP/zwQ5Z2JycnxMfHS5CISDMOHz6MOXPmoFq1atDT04Orqys6deqEmTNnIjAwUOp49P9Y6GiZoaEh1qxZg9u3b2Pjxo0IDg7GzZs3sXr1aujr60sdT+OmTZsm2xf47Pj4+GDBggVZ2hcsWAAfHx8JEmmeiYlJthu13rp1K9tVc4kKqlevXsHOzg4AYGtri8ePHwMAvLy8cPnyZSmj0Qc4GFkiJUuWRMmSJaWOoXVCx3Yc+fXXX9G0aVMcPHgQvr6+UCgUOH36NGJjY7Fnzx6p42lEQEAAJk+ejI0bNwJ4P8U+JiYGo/6vvXsPi7LM3wB+z8goBznJQcGVkyihYohaCCZ4WDXSADutlUmolbbihrrlZSSyhYdUzLZLjTKTbc3WtDXFpEBAhNQRFFCEVBAPHDzhEIgCM78/XOfnCJnrMu+DL/fnuua6fJ93gHv4I749z/d9nnfewTPPPCM4HVHb8fLyQnFxMdzc3ODr64v169fDzc0N69atg5OTk+h49B8860pid59ifbcNGzZIlESMjnS+V2NjI8aOHYsPPvgAu3btMjjna9asWbI9AkKj0SAkJATHjh1DbW0tnJ2dUVlZiWHDhiE5OVl/VADRw+6rr75CY2MjIiIikJeXh3HjxuHy5cvo3LkzNm7ciBdeeEF0RAILHcmFh4cbXDc2NqKwsBA1NTUYNWoUtm3bJiiZNM6ePQtnZ+cOsUwH3No2IDs7G3369BEdRXJpaWnIzc2FVquFn59fhzjElTq2+vp6nDhxAi4uLrC3txcdh/6DhU47oNVqMWvWLHh4eOCvf/2r6DhGc/PmTVRXV0Or1RqMu7i4CEpkfHPnzoVKpcLSpUtFRzGqbt26oaSkBPb29oiMjMRHH31ksCEmkRz98ssvHfJ/Yh42LHTaieLiYgQHB6OiokJ0lDb3yy+/IDIyEtnZ2QbjOp0OCoUCzc3NgpIZ3+zZs7Fp0yZ4enpiyJAhLZZtVq1aJShZ2+ratSvy8/Ph4eGBTp06obKyko3HJHtKpRJOTk4ICgpCUFAQgoOD4eXlJToW3YXNyO3EqVOnZPvYdUREBExMTLBz5079MQgdRWFhIfz8/AAAJSUlBvfk9HsYNmwYwsLCMHjwYOh0OkRFRcHMzKzV98q9D406joqKCqSlpSEjIwMJCQmYOXMmunfvri963njjDdERCZzRkVx0dLTBtU6nQ0VFBXbt2oWpU6e2+ijyw87CwgKHDx9udT8ZkoeqqiokJCTg1KlT2LZtG8aNG/ebZ3pt375d4nRE0jh58iTef/99fPXVV9BqtbKerX6YsNCR2MiRIw2ulUolHBwcMGrUKERGRsLERH6TbEOHDkVCQgKGDx8uOgpJwN3dHWq1GnZ2dqKjEBnVr7/+iqysLKSnpyMjIwNHjhyBt7c3goODERQUhNDQUNERCSx0SAJpaWl49913ER8fDx8fH6hUKoP7cj/hmIjkSaVSoVu3bpgyZQpGjhyJ4cOHw9raWnQsugsLHTK62yd0392T0hGakTuquro6ZGRktHqic1RUlKBURG0rLCwMWVlZ6NSpE4KDg/Uvb29v0dHoDix0JDBo0KD7bjyV47bhGRkZ97wfFBQkURKSQl5eHkJCQlBfX4+6ujp069YNly5dgrm5ORwdHXH69GnREYnaVH5+PjIyMpCRkYF9+/ZBoVAgODgYX3/9tehoBD51JYmwsDDREYRiIdOxvPXWW5g4cSLWrl0LGxsb/Pzzz1CpVHj55ZcxZ84c0fGI2tzAgQPR3NyMxsZG3LhxAz/88IPsN399mHBGh4wiPz8fAwYMgFKpRH5+/j3fO3DgQIlSkRRsbGxw4MABeHl5wcbGBjk5OfD29saBAwcwdepUnDhxQnREojaRkJCA9PR07Nu3D7W1tfD19dU/Wj5ixAj2H7YTnNERRK1Wo6ioCAqFAt7e3hg8eLDoSG3K19cXlZWVcHR0hK+vLxQKRasHerJHR35UKpV+qbZ79+4oLy+Ht7c3rK2tUV5eLjgdUdv56quvEBwcjBkzZrCwacdY6Ejs3LlzmDx5Mvbv3w8bGxsAQE1NDQICArB582b06tVLbMA2Ulpaqt8Zt7S0VHAaktKgQYOgVqvRt29fjBw5Eu+99x4uXbqEpKQk+Pj4iI5H1GbUarXoCHQfuHQlsbFjx0Kj0eDLL7/UbxVeXFyMyMhIWFhYICUlRXBCov+NWq1GbW0tRo4ciYsXL2Lq1KnIyspCnz598Pnnn8PX11d0RKI28cMPP6Br1676PcI++eQTJCYmol+/fvjkk09ga2srOCEBLHQkZ2ZmhuzsbAwaNMhgPDc3F4GBgbh+/bqgZG1rx44d9/3ep59+2ohJSGrXr1+HTqeDubk5AKCsrAzbt29Hv379MG7cOMHpiNqOj48Pli1bhpCQEBQUFGDo0KGIjo5GWloavL298cUXX4iOSODSleRcXFzQ2NjYYrypqQk9e/YUkMg47vdJM/boyE9oaCgmTZqEN954AzU1NfD394dKpcKlS5ewatUqzJw5U3REojZRWlqKfv36AQC+/fZbTJgwAfHx8cjNzUVISIjgdHSbUnSAjmb58uWYPXs21Gq1vjlXrVZjzpw5WLFiheB0bUer1d7Xi0WO/OTm5uKJJ54AAGzduhXdu3fHmTNnsGnTJqxZs0ZwOqK207lzZ9TX1wMAfvrpJ4wdOxYA0K1bN2g0GpHR6A6c0ZGAra2twYaBdXV1ePzxx/XnWjU1NcHExASRkZGy33OnoaEBpqamomOQEdXX18PS0hIAkJKSgkmTJkGpVMLf3x9nzpwRnI6o7QwfPhzR0dEIDAzEwYMHsWXLFgBASUkJ/vCHPwhOR7ex0JHA6tWrRUcQqrm5GfHx8Vi3bh2qqqpQUlICDw8PxMTEwM3NDdOmTRMdkdqQp6cnvvvuO4SHh2PPnj146623AADV1dV8/JZk5e9//ztmzZqFrVu3Yu3atfr2g927d2P8+PGC09FtbEYmo4uLi8OXX36JuLg4zJgxA4WFhfDw8MA333yDhIQE5OTkiI5IbWjr1q148cUX0dzcjNGjR+ufJFyyZAkyMzOxe/duwQmJqCNhoSPQU089hc8++wxOTk6ioxiVp6cn1q9fj9GjR8PS0hJHjx6Fh4cHTpw4gWHDhuHq1auiI1Ibq6ysREVFBR599FH9oa4HDx6ElZUVHnnkEcHpiB6cRqPRz0z+Xh8OZzDbBy5dCZSZmSmbx8nv5fz58/D09GwxrtVqW30CjR5+PXr0QI8ePQzGHnvsMUFpiNqOra0tKioq4OjoCBsbm1YPbNbpdHyitB1hoUNG179/f+zbtw+urq4G4//6179a7CdERNSepaWloVu3bgCAvXv3Ck5D94OFjkCurq5QqVSiYxjdokWLMGXKFJw/fx5arRbbtm1DcXExNm3ahJ07d4qOR0R034KCglr9N7Vf7NEhSezZswfx8fE4fPgwtFot/Pz88N577+n3nSAiehjV1NTg4MGDqK6uhlarNbj3yiuvCEpFd2KhI4H8/Pz7fu/AgQONmISIiNrK999/j5deegl1dXWwtLQ06NdRKBS4cuWKwHR0GwsdCSiVSigUCvzWr/r2Pbk3r6nVahQVFUGhUMDb2xuDBw8WHYmI6IH17dsXISEhiI+P15/tRu0PCx0J/De7wd7dsCsH586dw+TJk7F//37Y2NgAuDXdGxAQgM2bN6NXr15iAxIRPQALCwsUFBTAw8NDdBS6BzYjS0COxct/IzIyEo2NjSgqKoKXlxcAoLi4GJGRkZg2bZp+QzkioofJuHHjoFarWei0c5zREeT48eMoLy/HzZs3DcaffvppQYmMx8zMDNnZ2S0eJc/NzUVgYGCH2EuIiOTn888/R1xcHF599VX4+Pi0eIpWjv89fxhxRkdip0+fRnh4OAoKCgz6dm43scmxR8fFxaXVjQGbmpr0Z8MQET1sZsyYAeDWMTd3k3vP5cNEKTpARzNnzhy4u7ujqqoK5ubmOHbsGDIzMzFkyBCkp6eLjmcUy5cvx+zZs6FWq/WFnVqtxpw5c7BixQrB6YiIHoxWq/3NF4uc9oNLVxKzt7dHWloaBg4cCGtraxw8eBBeXl5IS0vD3LlzkZeXJzpim7O1tUV9fT2amppgYnJrEvH2vy0sLAzey8cxiehh0dpMzm0KhQIxMTESpqHfwqUriTU3N6Nr164AbhU9Fy5cgJeXF1xdXVFcXCw4nXGsXr1adAQioja3fft2g+vGxkaUlpbCxMQEvXv3ZqHTTrDQkdiAAQOQn58PDw8PPP7441i+fDk6d+6MTz/9VLad+1OnThUdgYiozbU2A6/RaBAREYHw8HABiag1XLqS2J49e1BXV4dJkybh9OnTmDBhAk6cOAE7Ozts2bIFo0aNEh3RKJqbm7F9+3aDDQNDQ0P1S1lERHJRWFiICRMmoKysTHQUAgudduHKlSuwtbU12D5cTgoLCxEaGorKykr9PjolJSVwcHDAjh074OPjIzghEVHbycrKwsSJE3H16lXRUQgsdEgC/v7+cHR0xJdffglbW1sAwNWrVxEREYHq6mrk5OQITkhE9N9bs2aNwbVOp0NFRQWSkpIwYsQIbN68WVAyuhMLHYmNHDnynjM3aWlpEqaRhpmZGdRqNfr3728wXlhYiKFDh3LDQCJ6KLm7uxtcK5VKODg4YNSoUViwYAEsLS0FJaM7sUFCYr6+vgbXjY2NOHLkCAoLC2XbtOvl5YWqqqoWhU51dTU8PT0FpSIi+t+UlpaKjkD3gYWOxBISElodj42Nxa+//ipxGmnEx8cjKioKsbGx8Pf3BwD8/PPPiIuLw7Jly6DRaPTvtbKyEhWTiIhkiEtX7cTJkyfx2GOPyXLDPKXy/zfgvr1sd/fRFzqdjlumExFRm+OMTjuRk5MDU1NT0TGMYu/evaIjEBFRB8VCR2KTJk0yuL7dpa9Wq2W7i2ZQUJDoCERE1EHxUE+JWVlZwdraWv/q1q0bgoODkZycjEWLFomOZzT79u3Dyy+/jICAAJw/fx4AkJSUhKysLMHJiIhIzjijI7GNGzeKjiC5b7/9FlOmTMFLL72E3Nxc3LhxAwBQW1uL+Ph4JCcnC05IRERyxRkdiXl4eODy5cstxmtqamR71tX777+PdevWITExESqVSj8eEBCA3NxcgcmIiEjuWOhIrKysrNUni27cuKFf0pGb4uJijBgxosW4lZUVampqpA9EREQdBpeuJLJjxw79v/fs2QNra2v9dXNzM1JTU+Hm5iYgmfE5OTnh5MmTLT5fVlaWbGexiIiofWChI5GwsDAAt/aNuXsHZJVKBTc3N6xcuVJAMuN7/fXXMWfOHGzYsAEKhQIXLlxATk4O5s2bh/fee090PCIikjFuGCgxd3d3HDp0CPb29qKjSGrhwoVISEhAQ0MDAKBLly6YN28e/va3vwlORkREcsZChyRTX1+P48ePQ6vVol+/fujatavoSEREJHMsdCQWFxd3z/tyXMrZtGkThg4dCm9vb4PxhoYGfPPNN3jllVcEJSMiIrljoSOxQYMGGVw3NjaitLQUJiYm6N27tywft1YqlbCwsMDGjRvxzDPP6Merqqrg7OzM862IiMho2Iwssby8vBZjGo0GERERCA8PF5BIGosXL8aUKVNQUFCA2NhY0XGIiKiD4IxOO1FYWIgJEyagrKxMdJQ2p1QqUVlZidOnTyM8PByBgYFISkqCRqPhjA4RERkVNwxsJ2pqanDt2jXRMYxCoVAAAPz9/XHgwAGcPHkSAQEBsizqiIiofeHSlcTWrFljcH379PKkpCSMHz9eUCrjunPS0MXFBdnZ2XjppZfwxz/+UWAqIiLqCLh0JTF3d3eDa6VSCQcHB4waNQoLFiyApaWloGTGs3jxYsyfPx/m5uYG44sWLUJmZib27t0rKBkREckdCx0iIiKSLS5dkSRKSkqQnp6O6upqaLVa/bhCoUBMTIzAZEREJGec0ZFYQ0MDPv74Y+zdu7fFH30AstxHJzExETNnzoS9vT169Oihb04GbhU6cvzMRETUPrDQkdiLL76IH3/8Ec8++yy6d+9u8EcfuNW3Ijeurq6YNWsW3n77bdFRiIiog2GhIzFra2skJycjMDBQdBTJWFlZ4ciRI/Dw8BAdhYiIOhjuoyOxnj17yvLJqnt57rnnkJKSIjoGERF1QGxGltjKlSvx9ttvY926dXB1dRUdRxKenp6IiYnBzz//DB8fH6hUKoP7UVFRgpIREZHccelKYhcvXsTzzz+PzMxMmJubt/ijf+XKFUHJjOfuvYPupFAocPr0aQnTEBFRR8IZHYlNnjwZ58+fR3x8fKvNyHJUWloqOgIREXVQnNGRmLm5OXJycvDoo4+KjiK5mzdvorS0FL1794aJCWtsIiIyPjYjS+yRRx7B9evXRceQVH19PaZNmwZzc3P0798f5eXlAG715ixdulRwOiIikjMWOhJbunQp5s6di/T0dFy+fBkajcbgJUcLFizA0aNHkZ6eDlNTU/34mDFjsGXLFoHJiIhI7rh0JTGl8lZteXdvjk6ng0KhQHNzs4hYRuXq6ootW7bA398flpaWOHr0KDw8PHDy5En4+fnJtsAjIiLx2CghsY54UvfFixfh6OjYYryurq5DNGMTEZE4LHQkFhQUJDqC5IYOHYpdu3Zh9uzZAP5/NisxMRHDhg0TGY2IiGSOhY5APj4+SE5ORq9evURHMaolS5Zg/PjxOH78OJqamvDRRx/h2LFjyMnJQUZGhuh4REQkY2xGFqisrAyNjY2iYxhdQEAA9u/fj/r6evTu3RspKSno3r07cnJyMHjwYNHxiIhIxtiMLNCdjblERETU9rh0JdATTzwBMzMz0TEk0dzcjO3bt6OoqAgKhQLe3t4IDQ3lxoFERGRUnNEhoyssLERoaCgqKyvh5eUFACgpKYGDgwN27NgBHx8fwQmJiEiu2KMjQFJSEgIDA+Hs7IwzZ84AAFavXo1///vfgpMZx/Tp09G/f3+cO3cOubm5yM3NxdmzZzFw4EC89tprouMREZGMsdCR2Nq1axEdHY2QkBBcvXpVv0GgjY0NVq9eLTackRw9ehRLliyBra2tfszW1hYffPABjhw5Ii4YERHJHgsdiX388cdITEzEwoULDfpThgwZgoKCAoHJjMfLywtVVVUtxqurq+Hp6SkgERERdRQsdCRWWlqKQYMGtRjv0qUL6urqBCQyvvj4eERFRWHr1q04d+4czp07h61bt+Ivf/kLli1bJvuzvoiISBw+8iIxd3d3HDlyBK6urgbju3fvRr9+/QSlMq4JEyYAAJ5//nn9rsi3e+AnTpyov5brWV9ERCQOCx2JzZ8/H2+++SYaGhqg0+lw8OBBbN68GUuWLMFnn30mOp5RdMTzvYiIqH3g4+UCJCYm4v3338fZs2cBAD179kRsbCymTZsmOJnx1NTU4PPPPzfYR2fatGmwtrYWHY2IiGSMhY5Aly5dglarbfVkbzlRq9UYP348TE1N8dhjj0Gn00GtVuP69etISUmBn5+f6IhERCRTLHTI6J544gl4enoiMTFR/6RZU1MTpk+fjtOnTyMzM1NwQiIikisWOhKrqqrCvHnzkJqaiurqatz965djM66ZmRny8vLwyCOPGIwfP34cQ4YMQX19vaBkREQkd2xGllhERATKy8sRExMDJycn/VNIcmZlZYXy8vIWhc7Zs2dhaWkpKBUREXUELHQklpWVhX379sHX11d0FMm88MILmDZtGlasWIGAgAAoFApkZWVh/vz5mDx5suh4REQkYyx0JNarV68Wy1Vyt2LFCigUCrzyyitoamoCAKhUKsycORNLly4VnI6IiOSMPToSS0lJwcqVK7F+/Xq4ubmJjiOp+vp6nDp1CjqdDp6enjA3NxcdiYiIZI6FjsRsbW1RX1+PpqYmmJubQ6VSGdy/cuWKoGRERETyw6Uricn1hHIiIqL2iDM6REREJFuc0ZFYeXn5Pe+7uLhIlISIiEj+OKMjMaVSec+9c+S4YSAREZEonNGRWF5ensF1Y2Mj8vLysGrVKnzwwQeCUhEREckTZ3TaiV27duHDDz9Eenq66ChERESyoRQdgG7p27cvDh06JDoGERGRrHDpSmIajcbgWqfToaKiArGxsejTp4+gVERERPLEQkdiNjY2LZqRdTodevXqha+//lpQKiIiInlij47EMjIyDK6VSiUcHBzg6ekJExPWnURERG2Jf1klplAoEBAQ0KKoaWpqQmZmJkaMGCEoGRERkfxwRkdinTp1QkVFBRwdHQ3GL1++DEdHR+6jQ0RE1Ib41JXEdDpdqxsGXr58GRYWFgISERERyReXriQyadIkALeWriIiItClSxf9vebmZuTn5yMgIEBUPCIiIllioSMRa2trALdmdCwtLWFmZqa/17lzZ/j7+2PGjBmi4hEREckSe3QktnjxYsybN4/LVERERBJgoSNIdXU1iouLoVAo0Ldv3xbNyURERPS/YzOyxDQaDaZMmYKePXsiKCgII0aMQM+ePfHyyy/j2rVrouMRERHJCgsdiU2fPh0HDhzAzp07UVNTg2vXrmHnzp1Qq9Xs0SEiImpjXLqSmIWFBfbs2YPhw4cbjO/btw/jx49HXV2doGRERETywxkdidnZ2emfwLqTtbU1bG1tBSQiIiKSLxY6Env33XcRHR2NiooK/VhlZSXmz5+PmJgYgcmIiIjkh0tXEhs0aBBOnjyJGzduwMXFBQBQXl6OLl26oE+fPgbvzc3NFRGRiIhINrhhoMTCwsJERyAiIuowOKNDREREssUeHQFqamrw2WefYcGCBbhy5QqAW8tU58+fF5yMiIhIXjijI7H8/HyMGTMG1tbWKCsrQ3FxMTw8PBATE4MzZ85g06ZNoiMSERHJBmd0JBYdHY2IiAj88ssvMDU11Y8/+eSTyMzMFJiMiIhIfljoSOzQoUN4/fXXW4z37NkTlZWVAhIRERHJFwsdiZmamkKj0bQYLy4uhoODg4BERERE8sVCR2KhoaGIi4tDY2MjAEChUKC8vBzvvPMOnnnmGcHpiIiI5IXNyBLTaDQICQnBsWPHUFtbC2dnZ1RWVsLf3x+7d++GhYWF6IhERESywUJHkL179+Lw4cPQarXw8/PDmDFjREciIiKSHRY6AqSmpiI1NRXV1dXQarUG9zZs2CAoFRERkfzwCAiJLV68GHFxcRgyZAicnJygUChERyIiIpItzuhIzMnJCcuXL8eUKVNERyEiIpI9PnUlsZs3byIgIEB0DCIiog6BhY7Epk+fjn/+85+iYxAREXUI7NGRWENDAz799FP89NNPGDhwIFQqlcH9VatWCUpGREQkP+zRkdjIkSN/855CoUBaWpqEaYiIiOSNhQ4RERHJFnt0iIiISLZY6BAREZFssdAhIiIi2WKhQ0T0OzZu3AgbGxvRMYjoAbAZmYjod1y/fh21tbVwdHQUHYWI/kssdIiI7qGxsbHFfldE9PDg0hURSWrr1q3w8fGBmZkZ7OzsMGbMGNTV1QEANmzYgP79+6NLly5wcnLCn//8Z/3XXbt2Da+99hocHR1hZWWFUaNG4ejRo/r7sbGx8PX1RVJSEtzc3GBtbY0//elPqK2t1b/nhx9+wPDhw2FjYwM7OztMmDABp06d0t8vKyuDQqHAN998g+DgYJiamuIf//hHq0tXa9euRe/evdG5c2d4eXkhKSnJSL8xIvpfsNAhIslUVFRg8uTJiIyMRFFREdLT0zFp0iTodDqsXbsWb775Jl577TUUFBRgx44d8PT0BADodDo89dRTqKysRHJyMg4fPgw/Pz+MHj0aV65c0X//U6dO4bvvvsPOnTuxc+dOZGRkYOnSpfr7dXV1iI6OxqFDh5CamgqlUonw8HBotVqDnG+//TaioqJQVFSEcePGtfgc27dvx5w5czB37lwUFhbi9ddfx6uvvoq9e/ca6TdHRA9MR0QkkcOHD+sA6MrKylrcc3Z21i1cuLDVr0tNTdVZWVnpGhoaDMZ79+6tW79+vU6n0+kWLVqkMzc312k0Gv39+fPn6x5//PHfzFNdXa0DoCsoKNDpdDpdaWmpDoBu9erVBu/74osvdNbW1vrrgIAA3YwZMwze89xzz+lCQkJ+82cRkRic0SEiyTz66KMYPXo0fHx88NxzzyExMRFXr15FdXU1Lly4gNGjR7f6dYcPH8avv/4KOzs7dO3aVf8qLS01WHpyc3ODpaWl/trJyQnV1dX661OnTuHFF1+Eh4cHrKys4O7uDgAoLy83+HlDhgy55+coKipCYGCgwVhgYCCKioru7xdBRJLhoZ5EJJlOnTrhxx9/RHZ2NlJSUvDxxx9j4cKFSE1NvefXabVaODk5IT09vcW9O3tn7m4aVigUBstSEydORK9evZCYmAhnZ2dotVoMGDAAN2/eNPg6CwuL3/0sCoXC4Fqn07UYIyLxOKNDRJJSKBQIDAzE4sWLkZeXh86dO+PHH3+Em5vbbxY8fn5+qKyshImJCTw9PQ1e9vb29/VzL1++jKKiIrz77rsYPXo0vL29cfXq1Qf6DN7e3sjKyjIYy87Ohre39wN9PyIyHs7oEJFkDhw4gNTUVIwdOxaOjo44cOAALl68CG9vb8TGxuKNN96Ao6MjnnzySdTW1mL//v2YPXs2xowZg2HDhiEsLAzLli2Dl5cXLly4gOTkZISFhf3uUhMA2Nraws7ODp9++imcnJxQXl6Od95554E+x/z58/H888/rG6K///57bNu2DT/99NMDfT8iMh4WOkQkGSsrK2RmZmL16tXQaDRwdXXFypUr8eSTTwIAGhoakJCQgHnz5sHe3h7PPvssgFuzQMnJyVi4cCEiIyNx8eJF9OjRAyNGjED37t3v62crlUp8/fXXiIqKwoABA+Dl5YU1a9YgODj4v/4cYWFh+Oijj/Dhhx8iKioK7u7u+OKLLx7oexGRcXHDQCIiIpIt9ugQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZOv/AEnea9TC49mzAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "ax = sns.boxplot(x=\"scenario\", y=\"timeMs\", data=js_df)\n", - "ax.set(yscale=\"log\")\n", - "ax.tick_params(axis='x', rotation=90)\n", - "_ = ax.set_title(\"Logarithmic box plots for running time of JS scenarios\")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "9c6312af", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/markdown": [ - "Ratio of max/min time for each scenario in JS" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "scenario\n", - "neptune-mutual-blue-protocol_8db6480 1.375050\n", - "openzeppelin-contracts_0a5fba7a 1.022509\n", - "rocketpool_6a9dbfd8 1.088690\n", - "safe-contracts_914d0f8 1.167373\n", - "seaport_4f4e7c20 1.071644\n", - "synthetix_9a3a109f 1.010474\n", - "total 1.068472\n", - "uniswap-v3-core_d8b1c63 1.037027\n", - "Name: timeMs, dtype: float64" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "display(Markdown(\"Ratio of max/min time for each scenario in JS\"))\n", - "js_df.groupby(\"scenario\")[\"timeMs\"].max() / js_df.groupby(\"scenario\")[\"timeMs\"].min()" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "ec265d13", - "metadata": {}, - "outputs": [ - { - "data": { - "text/markdown": [ - "Ratio of 95% percentile over 5% percentile time for each scenario in JS" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "scenario\n", - "neptune-mutual-blue-protocol_8db6480 1.027905\n", - "openzeppelin-contracts_0a5fba7a 1.021787\n", - "rocketpool_6a9dbfd8 1.069994\n", - "safe-contracts_914d0f8 1.122767\n", - "seaport_4f4e7c20 1.058928\n", - "synthetix_9a3a109f 1.008429\n", - "total 1.008107\n", - "uniswap-v3-core_d8b1c63 1.020445\n", - "Name: timeMs, dtype: float64" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "display(Markdown(\"Ratio of 95% percentile over 5% percentile time for each scenario in JS\"))\n", - "js_df.groupby(\"scenario\")[\"timeMs\"].quantile(0.95) / js_df.groupby(\"scenario\")[\"timeMs\"].quantile(0.05)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "7da2e64e", - "metadata": {}, - "outputs": [ - { - "data": { - "text/markdown": [ - "Ratio of max/min time for each scenario in RS" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "scenario\n", - "synthetix_9a3a109f 1.051809\n", - "Name: timeMs, dtype: float64" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import re\n", - "\n", - "rs_data = defaultdict(list)\n", - "with open(RS_SYNTHETIX_RESULTS) as f:\n", - " for line in f.readlines():\n", - " m = re.match(\"Total time: (\\d+)s\", line)\n", - " if m:\n", - " rs_data[\"scenario\"].append(\"synthetix_9a3a109f\")\n", - " rs_data[\"timeMs\"].append(int(m[1]) * 1000)\n", - "rs_df = pd.DataFrame(rs_data)\n", - "display(Markdown(\"Ratio of max/min time for each scenario in RS\"))\n", - "rs_df.groupby(\"scenario\")[\"timeMs\"].max() / rs_df.groupby(\"scenario\")[\"timeMs\"].min()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "2cf1aa28", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
failureCount
countmeanstdmin25%50%75%max
scenario
neptune-mutual-blue-protocol_8db648023.0556.04347821.280547514.0544.0566.0575.0575.0
openzeppelin-contracts_0a5fba7a23.01646.04347826.1698621615.01628.01642.01662.01705.0
rocketpool_6a9dbfd823.0390.0000000.000000390.0390.0390.0390.0390.0
safe-contracts_914d0f823.0193.0000000.000000193.0193.0193.0193.0193.0
seaport_4f4e7c2023.0305.0000000.000000305.0305.0305.0305.0305.0
synthetix_9a3a109f23.010264.0000000.00000010264.010264.010264.010264.010264.0
uniswap-v3-core_d8b1c6323.0172.0000000.000000172.0172.0172.0172.0172.0
\n", - "
" - ], - "text/plain": [ - " failureCount \\\n", - " count mean std \n", - "scenario \n", - "neptune-mutual-blue-protocol_8db6480 23.0 556.043478 21.280547 \n", - "openzeppelin-contracts_0a5fba7a 23.0 1646.043478 26.169862 \n", - "rocketpool_6a9dbfd8 23.0 390.000000 0.000000 \n", - "safe-contracts_914d0f8 23.0 193.000000 0.000000 \n", - "seaport_4f4e7c20 23.0 305.000000 0.000000 \n", - "synthetix_9a3a109f 23.0 10264.000000 0.000000 \n", - "uniswap-v3-core_d8b1c63 23.0 172.000000 0.000000 \n", - "\n", - " \\\n", - " min 25% 50% 75% \n", - "scenario \n", - "neptune-mutual-blue-protocol_8db6480 514.0 544.0 566.0 575.0 \n", - "openzeppelin-contracts_0a5fba7a 1615.0 1628.0 1642.0 1662.0 \n", - "rocketpool_6a9dbfd8 390.0 390.0 390.0 390.0 \n", - "safe-contracts_914d0f8 193.0 193.0 193.0 193.0 \n", - "seaport_4f4e7c20 305.0 305.0 305.0 305.0 \n", - "synthetix_9a3a109f 10264.0 10264.0 10264.0 10264.0 \n", - "uniswap-v3-core_d8b1c63 172.0 172.0 172.0 172.0 \n", - "\n", - " \n", - " max \n", - "scenario \n", - "neptune-mutual-blue-protocol_8db6480 575.0 \n", - "openzeppelin-contracts_0a5fba7a 1705.0 \n", - "rocketpool_6a9dbfd8 390.0 \n", - "safe-contracts_914d0f8 193.0 \n", - "seaport_4f4e7c20 305.0 \n", - "synthetix_9a3a109f 10264.0 \n", - "uniswap-v3-core_d8b1c63 172.0 " - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "js_snapshot_data = defaultdict(list)\n", - "\n", - "for filepath in glob.iglob(os.path.join(JS_CALIBRATION_RESULTS, \"*.json\")):\n", - " with open(filepath) as f:\n", - " measurements = json.load(f)\n", - " for key, value in measurements.items():\n", - " js_snapshot_data[\"scenario\"].append(key)\n", - " js_snapshot_data[\"failureCount\"].append(len(value[\"failures\"]))\n", - "\n", - "js_snapshot_df = pd.DataFrame(js_snapshot_data)\n", - "js_snapshot_df.groupby(\"scenario\").describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "7a8219bf", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAALMCAYAAADtgxjEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAACkOklEQVR4nOzdd1iT198G8DtB9kYBQZniAAXEUUVr3QurqLVW67baqnVbR+u2Ko66qqit22pdrVr3xL1FgaK4cOBgOEFFEeG8f/iSnxFQqMAJyf25Li7NeZ4kNyHjm+c5QyGEECAiIiLSQkrZAYiIiIjyCwsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLnQKyfPlyKBQKnD17VnaUXOvatStcXV3V2iZPnozNmzdn2rcgf89x48ZBoVDk6W09ePAgT26voGQ83jdv3sz1dXfs2IFx48blaZ5Hjx6hXbt2sLOzg0KhQMuWLfP09guLj/m7fKzjx49j3LhxePLkSaZtderUQZ06dQo8U144f/48ateuDUtLSygUCsyePTvbfRUKBfr27avWdvv2bfTp0wdlypSBsbExbGxs4O3tjZ49e+L27dv5nF6z5eV7qSYqIjsAab7Ro0djwIABam2TJ09GmzZtpH6Q9ejRA02aNJF2/4Xdjh07EBwcnKfFzs8//4xNmzZh6dKlKFWqFGxsbPLstguTZs2a4cSJE3BwcCjw+z5+/DjGjx+Prl27wsrKSm3b/PnzCzxPXunevTueP3+OtWvXwtraOtOXr/e5c+cOKlWqBCsrKwwZMgRly5ZFYmIiLl68iPXr1+P69etwcnLKv/AaTtvfS1noULaSk5NhYmKCUqVKyY6SpZIlS6JkyZKyY9BbIiMjUapUKXTo0CFPbk8IgZcvX8LY2DjH13nx4kWu9s8Ptra2sLW1lZohK15eXrIj/GeRkZHo2bMnmjZtmuvrLlq0CA8ePMDp06fh5uamam/ZsiV++uknpKen52XUQiPjPV7b30t56krDHD16FPXr14e5uTlMTExQo0YNbN++Pcv9/P39YWRkhBIlSmD06NFYvHhxpsPl69atQ6NGjeDg4ABjY2N4enpixIgReP78udrtde3aFWZmZvj333/RqFEjmJubo379+qptb397UigUeP78OVasWAGFQgGFQpHpcPjTp0/Ru3dvFCtWDEWLFkXr1q1x7949tX1cXV3x+eefY9u2bfDz81Pl27ZtG4A3h/89PT1hamqKTz75JNPpsOwOt/7555/w9/eHmZkZzMzMULFiRSxZsuSDjz3w5vB269atYWFhAUtLS3Ts2BH3799X2yc9PR3Tpk1DuXLlYGhoCDs7O3Tu3Bl37txR7dOrVy8YGRkhNDRU7Xr169eHvb09YmNjs81w8+ZNKBQKTJs2DZMmTYKzszOMjIxQpUoV7N+/P0e/x9KlS+Hr6wsjIyPY2NigVatWiIqKUm3v2rUrgoODAUD1N3z7ubNhwwZUq1YNlpaWMDExgbu7O7p37/7BzPv27UNUVJTq9g4ePAjgzSmtPn36oESJEjAwMIC7uztGjhyJlJQUtdvJOOWwcOFCeHp6wtDQECtWrMj2fjOeQxs3boSfnx+MjIwwfvx4VZ7ly5dnuo5CoVA7ipXxPLpw4QLat28PS0tL2Nvbo3v37khMTMwy3x9//AFPT0+YmJjA19dX9ZzNkNWpqzp16qBChQo4c+YMatWqpXpcp0yZkumD9sKFC2jUqBFMTExga2uL77//Htu3b1d7TLMybtw4DB06FADg5uaW6e/w7qmrjMdp+vTpmDp1KlxdXWFsbIw6dergypUrSE1NxYgRI+Do6AhLS0u0atUKCQkJme533bp18Pf3h6mpKczMzNC4cWOcP38+25xvi4yMRGBgIKytrWFkZISKFSuq/c0zHsvXr19jwYIFqt8pNx4+fAilUgk7O7sstyuV7/8oTE5Oxg8//AA3NzfVa6pKlSpYs2aN2n6nTp1C8+bNUbRoURgZGaFUqVIYOHCg2j5Xr17F119/DTs7OxgaGsLT01P1Wsxw8OBBKBQKrFmzBiNHjoSjoyMsLCzQoEEDXL58WW3fvXv3IjAwECVLloSRkRE8PDzw3XffZToNn/E8P3fuHNq0aQNra2vVl9is3ktz8j4HvDml+Pnnn6t+H0dHRzRr1izTflIJKhDLli0TAMSZM2ey3efgwYNCX19fVK5cWaxbt05s3rxZNGrUSCgUCrF27VrVfuHh4cLIyEj4+PiItWvXii1btoiAgADh6uoqAIgbN26o9v3555/FrFmzxPbt28XBgwfFwoULhZubm6hbt67afXfp0kXo6+sLV1dXERQUJPbv3y92796t2ubi4qLa98SJE8LY2FgEBASIEydOiBMnTogLFy6o/Z7u7u6iX79+Yvfu3WLx4sXC2to60326uLiIkiVLigoVKog1a9aIHTt2iGrVqgl9fX0xZswYUbNmTbFx40axadMmUaZMGWFvby+Sk5NV1x87dqx49yk8evRoAUC0bt1abNiwQezZs0fMnDlTjB49+r1/n4zbcnFxEUOHDhW7d+8WM2fOFKampsLPz0+8evVKte+3334rAIi+ffuKXbt2iYULFwpbW1vh5OQk7t+/L4QQ4sWLF6JixYrC3d1dPH78WAghxJgxY4RSqRR79ux5b5YbN24IAMLJyUl8+umn4u+//xYbNmwQVatWFfr6+uL48eOqfTMe77f/5pMnTxYARPv27cX27dvFypUrhbu7u7C0tBRXrlwRQghx7do10aZNGwFA9Tc8ceKEePnypTh+/LhQKBSiXbt2YseOHSIkJEQsW7ZMdOrUKdvML1++FCdOnBB+fn7C3d1ddXuJiYnixYsXwsfHR5iamopffvlF7NmzR4wePVoUKVJEBAQEqN0OAFGiRAnh4+Mj/vzzTxESEiIiIyOzvV8XFxfh4OAg3N3dxdKlS8WBAwfE6dOnVY/hsmXLMl0HgBg7dqzqcsbfvmzZsmLMmDFi7969YubMmcLQ0FB069Yt03VdXV3FJ598ItavXy927Ngh6tSpI4oUKSKio6Pf+3epXbu2KFq0qChdurRYuHCh2Lt3r+jTp48AIFasWKHa7969e6Jo0aLC2dlZLF++XOzYsUN06tRJ9fo+cOBAto/H7du3Rb9+/QQAsXHjRrW/Q0aG2rVrq/bPeJxcXFxE8+bNxbZt28SqVauEvb29KFOmjOjUqZPo3r272Llzp1i4cKEwMzMTzZs3V7vPSZMmCYVCIbp37y62bdsmNm7cKPz9/YWpqanqfSE7ly5dEubm5qJUqVJi5cqVYvv27aJ9+/YCgJg6daoQQoiEhARx4sQJAUC0adNG9Tu9DwDx/fffqy6vWrVKABCNGjUSu3btUj0eOfXdd98JExMTMXPmTHHgwAGxbds2MWXKFDF37lzVPrt27RL6+vrCx8dHLF++XISEhIilS5eKdu3aqfa5cOGCsLS0FN7e3mLlypViz549YsiQIUKpVIpx48ap9jtw4IDqudahQwexfft2sWbNGuHs7CxKly4tXr9+rdp3wYIFIigoSGzZskUcOnRIrFixQvj6+oqyZcuqvW+9/R43fPhwsXfvXrF582a1bW/Lyfvcs2fPRNGiRUWVKlXE+vXrxaFDh8S6detEr169xMWLF3P1GOcnFjoFJCeFTvXq1YWdnZ14+vSpqu3169eiQoUKomTJkiI9PV0IIcSXX34pTE1NVU82IYRIS0sTXl5emd5c35aeni5SU1PFoUOHBAARHh6u2talSxcBQCxdujTT9d4tdIQQwtTUVHTp0iXb37NPnz5q7dOmTRMARGxsrKrNxcVFGBsbizt37qjawsLCBADh4OAgnj9/rmrfvHmzACC2bNmianv3xXn9+nWhp6cnOnTokOXv/z4ZtzVo0CC19tWrVwsAYtWqVUIIIaKiorL8/U6dOiUAiJ9++knVdvXqVWFhYSFatmwp9u3bJ5RKpRg1atQHs2R8+Dg6OooXL16o2pOSkoSNjY1o0KCBqu3dD9THjx+ritC3xcTECENDQ/H111+r2r7//vtMb25CCPHLL78IAOLJkycfzPqu2rVri/Lly6u1LVy4UAAQ69evV2ufOnWqAKBW+AEQlpaW4tGjRzm6PxcXF6GnpycuX76s1v5fCp1p06ap7denTx9hZGSket1lXNfe3l4kJSWp2uLi4oRSqRRBQUGqtuwKHQDi1KlTavfj5eUlGjdurLo8dOhQoVAoMhUJjRs3/mChI4QQ06dPz/Z9ILtCx9fXV6SlpanaZ8+eLQCIFi1aqF1/4MCBAoCqUIiJiRFFihQR/fr1U9vv6dOnonjx4qJt27bvzdquXTthaGgoYmJi1NqbNm0qTExM1J6D7xYv7/Puvunp6eK7774TSqVSABAKhUJ4enqKQYMGZft++bYKFSqIli1bvnefUqVKiVKlSqm9Zt/VuHFjUbJkyUyFVt++fYWRkZHqeZ9R6Lz7Ol6/fr3qy0lWMt7jb926JQCIf/75R7Ut43k+ZsyYTNd79700p+9zZ8+eFQBUBZOm4qkrDfH8+XOcOnUKbdq0gZmZmapdT08PnTp1wp07d1SHLA8dOoR69eqhWLFiqv2USiXatm2b6XavX7+Or7/+GsWLF4eenh709fVRu3ZtAFA7lZHhiy++yJPfp0WLFmqXfXx8AAC3bt1Sa69YsSJKlCihuuzp6QngzSF2ExOTTO3vXv9te/fuRVpaGr7//vv/nPvdviVt27ZFkSJFcODAAQBQ/du1a1e1/T755BN4enqqnVry8PDAokWLsHnzZnz++eeoVatWrjr+tm7dGkZGRqrL5ubmaN68OQ4fPoy0tLQsr3PixAm8ePEiUz4nJyfUq1cvR6e+qlatCuDN775+/XrcvXs3x5mzEhISAlNTU7Rp00atPSPju5nq1asHa2vrHN++j48PypQp81EZgayfsy9fvsx0qqZu3bowNzdXXba3t4ednd17n5sZihcvjk8++STT/bx93UOHDqFChQqZ+tO0b98+x79LbgUEBKidvsl4vTVr1kxtv4z2mJgYAMDu3bvx+vVrdO7cGa9fv1b9GBkZoXbt2u89zQa8eW7Ur18/U0fgrl27Ijk5GSdOnPjYXw3Am1OOCxcuxPXr1zF//nx069YNqampmDVrFsqXL49Dhw699/qffPIJdu7ciREjRuDgwYN48eKF2vYrV64gOjoa33zzjdpr9m0vX77E/v370apVK5iYmKg9XgEBAXj58iVOnjypdp2cvI8mJCSgV69ecHJyQpEiRaCvrw8XFxcA//09Pqfvcx4eHrC2tsbw4cOxcOFCXLx48YO3LQMLHQ3x+PFjCCGyHKXh6OgI4M155ox/7e3tM+33btuzZ89Qq1YtnDp1ChMnTsTBgwdx5swZbNy4EQAyvVhNTExgYWGRJ79P0aJF1S4bGhpmeZ/vjsoxMDB4b/vLly+zvc+MvjQf06muePHiapeLFCmCokWLqj32ALL9O2Vsz9CsWTPY29vj5cuXGDx4MPT09P5zloy2V69e4dmzZ1leJ7f5svLZZ59h8+bNqg+wkiVLokKFCpn6I+TUw4cPUbx48Ux9AOzs7FCkSJFMmXI7UimvRjbl9Dn77n4Z+767X07uI6vr5vT1nZf+6+swPj4ewJviWF9fX+1n3bp1H5yu4eHDhzl6z8srLi4u6N27N5YsWYKrV69i3bp1ePnypapfU3Z+/fVXDB8+HJs3b0bdunVhY2ODli1b4urVqwBy9t7z8OFDvH79GnPnzs30WAUEBABApsfrQ8/J9PR0NGrUCBs3bsSwYcOwf/9+nD59WlUwZfWczMnrJafvI5aWljh06BAqVqyIn376CeXLl4ejoyPGjh2L1NTUD95PQeGoKw1hbW0NpVKZZSfVjE68GUdwihYtqnqDeVtcXJza5ZCQENy7dw8HDx5UHcUBkOX8GgAK/TwKGaNc7ty585+HisbFxakdYXr9+jUePnyoesPJ+Dc2NjbTm9q9e/fUjrIBbzolP336FOXLl0f//v1Rq1atHB+tePfvmdFmYGCgdtTvbW/ne1dW+bITGBiIwMBApKSk4OTJkwgKCsLXX38NV1dX+Pv75+g23s506tQpCCHUnmMJCQl4/fp1pky5fR5mtX/Gt+p3Ozvn9Qdnfsjp61sTZPzt/vrrL9VRhNwoWrRojt7z8kvbtm0RFBSEyMjI9+5namqK8ePHY/z48YiPj1cd3WnevDkuXbqk9t6THWtra9UR+uyOOr89IiwnIiMjER4ejuXLl6NLly6q9mvXrmV7nZy8vnLzPuft7Y21a9dCCIGIiAgsX74cEyZMgLGxMUaMGJGr3ye/8IiOhjA1NUW1atWwceNGtSo8PT0dq1atQsmSJVWH52vXro2QkBC16j89PR0bNmxQu82MJ3TGt4AMv/3220fnzek32ILUqFEj6OnpYcGCBf/5NlavXq12ef369Xj9+rVqpEq9evUAAKtWrVLb78yZM4iKilKNVAOAxYsXY9WqVZg3bx62bNmCJ0+eoFu3bjnOsnHjRrUjWE+fPsXWrVtRq1atbI8M+fv7w9jYOFO+O3fuqE4TZMjuiMXbDA0NUbt2bUydOhUAcjyS5m3169fHs2fPMk0wuXLlStX2vGZvbw8jIyNERESotf/zzz95fl95rXbt2oiMjMx0GmDt2rU5un5O/q55pXHjxihSpAiio6NRpUqVLH/ep379+qovZG9buXIlTExMUL169TzJmd0ox2fPnuH27duqI0g5YW9vj65du6J9+/a4fPkykpOTUaZMGZQqVQpLly7NVFxnMDExQd26dXH+/Hn4+Phk+VhldcTvffLrPT4373NvZ/H19cWsWbNgZWWFc+fOfVSGvMQjOgUsJCQky9lSAwICEBQUhIYNG6Ju3br44YcfYGBggPnz5yMyMhJr1qxRPalHjhyJrVu3on79+hg5ciSMjY2xcOFC1ZDxjHPtNWrUgLW1NXr16oWxY8dCX18fq1evRnh4+Ef/Ht7e3jh48CC2bt0KBwcHmJubo2zZsh99ux/D1dUVP/30E37++We8ePFCNVT44sWLePDgAcaPH//B29i4cSOKFCmChg0b4sKFCxg9ejR8fX1V/Z/Kli2Lb7/9FnPnzoVSqUTTpk1x8+ZNjB49Gk5OThg0aBAA4N9//0X//v3RpUsXVXGzZMkStGnTBrNnz8405DQrenp6aNiwIQYPHoz09HRMnToVSUlJ7/09rKysMHr0aPz000/o3Lkz2rdvj4cPH2L8+PEwMjLC2LFjVft6e3sDAKZOnYqmTZtCT08PPj4+mDhxIu7cuYP69eujZMmSePLkCebMmaPWvys3OnfujODgYHTp0gU3b96Et7c3jh49ismTJyMgIAANGjTI9W1+iEKhQMeOHVUTF/r6+uL06dP4888/8/y+8trAgQOxdOlSNG3aFBMmTIC9vT3+/PNPXLp0CcCHh0Jn/F3nzJmDLl26QF9fH2XLllXrV5RXXF1dMWHCBIwcORLXr19HkyZNYG1tjfj4eJw+fVp1JCQ7Y8eOxbZt21C3bl2MGTMGNjY2WL16NbZv345p06bB0tLyP2d7+8jFpEmTcOzYMXz11VeoWLEijI2NcePGDcybNw8PHz7E9OnT33tb1apVw+effw4fHx9YW1sjKioKf/zxB/z9/VV9CYODg9G8eXNUr14dgwYNgrOzM2JiYrB7927VF6g5c+bg008/Ra1atdC7d2+4urri6dOnuHbtGrZu3YqQkJBc/Y7lypVDqVKlMGLECAghYGNjg61bt2Lv3r25fLTU5fR9btu2bZg/fz5atmwJd3d3CCGwceNGPHnyBA0bNvyoDHlKaldoHZIxCiO7n4ye/0eOHBH16tUTpqamwtjYWFSvXl1s3bo10+0dOXJEVKtWTRgaGorixYuLoUOHqkaxvD1S4fjx48Lf31+YmJgIW1tb0aNHD3Hu3LlMI1K6dOkiTE1Ns8ye1airsLAwUbNmTWFiYiIAqEZyZDe6LGMUwdsjRlxcXESzZs0y3R+yGF2RMTpk+vTpqrashkQKIcTKlStF1apVhZGRkTAzMxN+fn5Zjr55W8ZthYaGiubNmwszMzNhbm4u2rdvL+Lj49X2TUtLE1OnThVlypQR+vr6olixYqJjx47i9u3bQog3Qy7LlSsnvLy81EaOCfFmpJO+vn6mkTdZ/a5Tp04V48ePFyVLlhQGBgbCz89PNeQ/Q1aje4QQYvHixcLHx0cYGBgIS0tLERgYmGkUT0pKiujRo4ewtbUVCoVCdTvbtm0TTZs2FSVKlBAGBgbCzs5OBAQEiCNHjrz3MRQi61FXQgjx8OFD0atXL+Hg4CCKFCkiXFxcxI8//ihevnyptl9Wf/v3ye45JIQQiYmJokePHsLe3l6YmpqK5s2bi5s3b2Y76urtUYxCZP3YZpfPxcVFbRRidqOusnpssnp9RUZGigYNGggjIyNhY2MjvvnmG7FixYpMoyWz8+OPPwpHR0fVKKOM1112o67efl0J8b/X64YNG9Tas3t9b968WdStW1dYWFgIQ0ND4eLiItq0aSP27dv3waz//vuvaN68ubC0tBQGBgbC19c329FyOXluPH/+XAAQQ4YMUbWdPHlSfP/998LX11fY2NgIPT09YWtrK5o0aSJ27NjxwdscMWKEqFKlirC2thaGhobC3d1dDBo0SDx48EBtvxMnToimTZsKS0tLYWhoKEqVKpVpJOeNGzdE9+7dRYkSJYS+vr6wtbUVNWrUEBMnTlTtk93jn9VowosXL4qGDRsKc3NzYW1tLb788ksRExOT4+f529ve9qH3OSHeTA/Qvn17UapUKWFsbCwsLS3FJ598IpYvX/7Bx7QgKYQQIl8rKSowjRo1ws2bN3HlyhXZUegj3Lx5E25ubpg+fTp++OEH2XFIQ3z77bdYs2YNHj58qOoUTJmdP38elSpVQnBwMPr06SM7DmkAnroqpAYPHgw/Pz84OTnh0aNHWL16Nfbu3ZvjGYCJSHNNmDABjo6OcHd3x7Nnz7Bt2zYsXrwYo0aNYpGTjTt37iAsLAyTJk2CiYmJzi4oS5mx0Cmk0tLSMGbMGMTFxUGhUMDLywt//PEHOnbsKDsaEX0kfX19TJ8+HXfu3MHr169RunRpzJw5M9PiuvQ/ixcvxpQpU+Dj44MtW7bkqoMxaTeeuiIiIiKtxeHlREREpLVY6BAREZHWYqFDREREWkvnOyOnp6fj3r17MDc3L/RLIBAREekKIQSePn0KR0fH906kqfOFzr179/7zukhEREQk1+3bt9+7oKrOFzoZ06Lfvn07z1buJiIiovyVlJQEJyenDy5vovOFTsbpKgsLCxY6REREhcyHup2wMzIRERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktVjoEBERkdZioUNERERai4UOERERaS0WOkRERKS1tKbQSU5OhouLC3744QfZUYiIiEhDaE2hM2nSJFSrVk12DCIiItIgWlHoXL16FZcuXUJAQIDsKERERKRBpK9efvjwYUyfPh2hoaGIjY3Fpk2b0LJlS7V95s+fj+nTpyM2Nhbly5fH7NmzUatWLdX2H374AdOnT8fx48cLOD0REeW3a9eu4caNG7m6TnJyMqKjo/Mp0fuVKlUKJiYmubqOm5sbPDw88imRbpNe6Dx//hy+vr7o1q0bvvjii0zb161bh4EDB2L+/PmoWbMmfvvtNzRt2hQXL16Es7Mz/vnnH5QpUwZlypRhoUNEpIXmzp2L8PBw2THyla+vL+bMmSM7hlZSCCGE7BAZFApFpiM61apVQ6VKlbBgwQJVm6enJ1q2bImgoCD8+OOPWLVqFfT09PDs2TOkpqZiyJAhGDNmTJb3kZKSgpSUFNXlpKQkODk5ITExERYWFvn2uxER0X/DIzqUlaSkJFhaWn7w81v6EZ33efXqFUJDQzFixAi19kaNGqmO3gQFBSEoKAgAsHz5ckRGRmZb5GTsP378+PwLTUREecrDw4NFAP1nGt0Z+cGDB0hLS4O9vb1au729PeLi4v7Tbf74449ITExU/dy+fTsvohIREZEG0ugjOhkUCoXaZSFEpjYA6Nq16wdvy9DQEIaGhnkVjYiIiDSYRh/RKVasGPT09DIdvUlISMh0lIeIiIjoXRpd6BgYGKBy5crYu3evWvvevXtRo0YNSamIiIiosJB+6urZs2e4du2a6vKNGzcQFhYGGxsbODs7Y/DgwejUqROqVKkCf39//P7774iJiUGvXr0kpiYiIqLCQHqhc/bsWdStW1d1efDgwQCALl26YPny5fjqq6/w8OFDTJgwAbGxsahQoQJ27NgBFxcXWZGJiIiokNCoeXRkyOk4fCIiItIcOf381ug+OvkpODgYXl5eqFq1quwoRERElE94RIdHdIiIiAodHtEhIiIincdCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa+lsocOZkYmIiLQfZ0bmzMhERESFDmdGJiIiIp3HQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtpbOFDpeAICIi0n5cAoJLQBARERU6XAKCiIiIdB4LHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGvpbKHDRT2JiIi0Hxf15KKeREREhQ4X9SQiIiKdx0KHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtpbOFTnBwMLy8vFC1alXZUYiIiCifKIQQQnYImXK6zDsRERFpjpx+fuvsER0iIiLSfix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItJbOFjrBwcHw8vJC1apVZUchIiKifKIQQgjZIWRKSkqCpaUlEhMTYWFhITsOERER5UBOP7919ogOERERaT8WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktVjoEBERkdZioUNERERai4UOERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktXS20AkODoaXlxeqVq0qOwoRERHlE4UQQsgOIVNSUhIsLS2RmJgICwsL2XGIiIgoB3L6+a2zR3SIiIhI+7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa+W60NHT00NCQkKm9ocPH0JPTy9PQhERERHlhVwXOkKILNtTUlJgYGDw0YGIiIiI8kqRnO7466+/AgAUCgUWL14MMzMz1ba0tDQcPnwY5cqVy/uERERERP9RjgudWbNmAXhzRGfhwoVqp6kMDAzg6uqKhQsX5n1CIiIiov8ox4XOjRs3AAB169bFxo0bYW1tnW+hiIiIiPJCjgudDAcOHMiPHERERER5LteFTlpaGpYvX479+/cjISEB6enpattDQkLyLFx+Cg4ORnBwMNLS0mRHISIionyiENkNo8pG3759sXz5cjRr1gwODg5QKBRq2zP68hQWSUlJsLS0RGJiIiwsLGTHISIiohzI6ed3ro/orF27FuvXr0dAQMBHBSQiIiLKb7meR8fAwAAeHh75kYWIiIgoT+W60BkyZAjmzJmT7cSBRERERJoi16eujh49igMHDmDnzp0oX7489PX11bZv3Lgxz8IRERERfYxcFzpWVlZo1apVfmQhIiIiylO5LnSWLVuWHzmIiIiI8lyu++gQERERFRa5PqLj5uaWae6ct12/fv2jAhERERHllVwXOgMHDlS7nJqaivPnz2PXrl0YOnRoXuUiIiIi+mi5LnQGDBiQZXtwcDDOnj370YGIiIiI8kqul4DIzvXr11GxYkUkJSXlxc0VGC4BUbBevnyJmJiYAr9fZ2dnGBkZFfj9EhFR/si3JSCy89dff8HGxiavbo60VExMDL799tsCv9/ff/8dZcqUKfD7JSIiuXJd6Pj5+al1RhZCIC4uDvfv38f8+fPzNBxptvj4eCQmJubqOikpKRg5cmSu7ys2NhZLly5F9+7d4eDgkOvrp6Sk4MqVK7m6jqWlJezt7XN9X0REpDlyXei0bNlS7bJSqYStrS3q1KmDcuXK5VUu0nDx8fHo0LETXqe+KtD7Xbp0aYHdVxF9A6xe9QeLHSKiQizXhc7YsWPzIwcVMomJiQVe5BS016mvkJiYyEKHiKgQ+099dNLS0rB582ZERUVBoVDAy8sLLVq0gJ6eXl7nIw1laWmJIvoGWl3sFNE3gKWlpewYRET0EXJd6Fy7dg0BAQG4e/cuypYtCyEErly5AicnJ2zfvh2lSpXKj5ykYezt7bF61R+57qNz69YtTJo0KZ9SZW/kyJFwcXHJ1XXYR4eIqPDL9fDygIAACCGwevVq1Sirhw8fomPHjlAqldi+fXu+BM0vHF5esDi8nIiI8kJOP79zXeiYmpri5MmT8Pb2VmsPDw9HzZo18ezZs/+WWBIWOkRERIVPTj+/c72op6GhIZ4+fZqp/dmzZzAwMMjtzRERERHlm1wXOp9//jm+/fZbnDp1CkIICCFw8uRJ9OrVCy1atMiPjERERET/Sa4LnV9//RWlSpWCv78/jIyMYGRkhJo1a8LDwwNz5szJj4xERERE/0muR11ZWVnhn3/+wbVr1xAVFQUhBLy8vODh4ZEf+YiIiIj+s1wVOklJSTAzM4NSqYSHh4equElPT0dSUhI78xIREZFGyfGpq02bNqFKlSp4+fJlpm0vX75E1apVsXXr1jwNR0RERPQxclzoLFiwAMOGDYOJiUmmbSYmJhg+fDjmzZuXp+GIiIiIPkaOC53IyEjUqVMn2+2fffYZ/v3337zIRERERJQnclzoPH78GK9fv852e2pqKh4/fpwnoYiIiIjyQo4LHVdXV5w9ezbb7WfPns31WkJERERE+SnHhU7r1q0xcuRIxMfHZ9oWFxeHUaNG4YsvvsjTcEREREQfI8drXT19+hT+/v6IiYlBx44dUbZsWSgUCkRFRWH16tVwcnLCyZMnYW5unt+Z8xTXuiIiIip8cvr5neN5dMzNzXHs2DH8+OOPWLdunao/jrW1NTp27IjJkycXuiKHiIiItFuuVy8HACEEHjx4ACEEbG1toVAo8iNbgeARHSIiosIn31YvB4C0tDSEh4dj06ZNePbsGQDg3r17qv8TERERaYJcr3V169YtNGnSBDExMUhJSUHDhg1hbm6OadOm4eXLl1i4cGF+5CQiIiLKtVwf0RkwYACqVKmCx48fw9jYWNXeqlUr7N+/P0/DEREREX2MXB/ROXr0KI4dOwYDAwO1dhcXF9y9ezfPghERERF9rFwf0UlPT0daWlqm9jt37nDUFREREWmUXBc6DRs2xOzZs1WXFQoFnj17hrFjxyIgICAvsxERERF9lFwPL7979y7q1asHPT09XL16FVWqVMHVq1dRrFgxHD58GHZ2dvmVNV9weDkREVHhk+cTBmYoUaIEwsLCsHbtWoSGhiI9PR3ffPMNOnTooNY5mYiIiEi2XB3RSU1NRdmyZbFt2zZ4eXnlZ64CwyM6REREhU++TBior6+PlJSUQj0TMhEREemOXHdG7tevH6ZOnYrXr1/nRx4iIiKiPJPrPjqnTp3C/v37sWfPHnh7e8PU1FRt+8aNG/MsHBEREdHHyHWhY2VlhS+++CI/shARERHlqVwXOsuWLcuPHERERER57j+tXk5ERERUGOT6iI6bm9t7R11dv379owIRERER5ZVcFzoDBw5Uu5yamorz589j165dGDp0aF7lyrGnT5+iXr16SE1NRVpaGvr374+ePXsWeA4iIiLSPLkudAYMGJBle3BwMM6ePfvRgXLLxMQEhw4dgomJCZKTk1GhQgW0bt0aRYsWLfAsREREpFnyrI9O06ZN8ffff+fVzeWYnp4eTExMAAAvX75EWloacrl8FxEREWmpPCt0/vrrL9jY2OT6eocPH0bz5s3h6OgIhUKBzZs3Z9pn/vz5cHNzg5GRESpXrowjR46obX/y5Al8fX1RsmRJDBs2DMWKFfuvvwYRERFpkVyfuvLz81PrjCyEQFxcHO7fv4/58+fnOsDz58/h6+uLbt26ZTk/z7p16zBw4EDMnz8fNWvWxG+//YamTZvi4sWLcHZ2BvBmbp/w8HDEx8ejdevWaNOmDezt7XOdhYiIiLRLrhb1BIDx48erXVYqlbC1tUWdOnVQrly5jwujUGDTpk1o2bKlqq1atWqoVKkSFixYoGrz9PREy5YtERQUlOk2evfujXr16uHLL7/M8j5SUlKQkpKiupyUlAQnJycu6klERFSI5HRRz1wf0Rk7duxHBcuNV69eITQ0FCNGjFBrb9SoEY4fPw4AiI+Ph7GxMSwsLJCUlITDhw+jd+/e2d5mUFBQpmKNiIiItFOOCp2kpKQc32BeHhV58OAB0tLSMp2Gsre3R1xcHADgzp07+OabbyCEgBACffv2hY+PT7a3+eOPP2Lw4MGqyxlHdIiIiEj75KjQsbKyeu8kgcCbvjoKhQJpaWl5Euxt7953xn0BQOXKlREWFpbj2zI0NIShoWFexiMiIiINlaNC58CBA/mdI0vFihWDnp6e6uhNhoSEBHY2JiIiog/KUaFTu3bt/M6RJQMDA1SuXBl79+5Fq1atVO179+5FYGCglExERERUeOSo0ImIiECFChWgVCoRERHx3n3f1z8mK8+ePcO1a9dUl2/cuIGwsDDY2NjA2dkZgwcPRqdOnVClShX4+/vj999/R0xMDHr16pWr+yEiIiLdk6Ph5UqlEnFxcbCzs4NSqYRCochy9uH/0kfn4MGDqFu3bqb2Ll26YPny5QDeTBg4bdo0xMbGokKFCpg1axY+++yzXN1PdnI6PI2IiIg0R04/v3NU6Ny6dQvOzs5QKBS4devWe/d1cXHJfVqJWOgQEREVPnk6j87bxUthK2SIiIhId+V6wsAMFy9eRExMDF69eqXW3qJFi48OVRCCg4MRHBycL8PhiYiISDPkegmI69evo1WrVvj333/V+upkzGtT2AoHnroiIiIqfHL6+Z3r1csHDBgANzc3xMfHw8TEBBcuXMDhw4dRpUoVHDx48GMyExEREeWpXJ+6OnHiBEJCQmBrawulUgmlUolPP/0UQUFB6N+/P86fP58fOYmIiIhyLddHdNLS0mBmZgbgzczF9+7dA/Cmk/Lly5fzNh0RERHRR8j1EZ0KFSogIiIC7u7uqFatGqZNmwYDAwP8/vvvcHd3z4+MRERERP9Jjo7oREREID09HQAwatQoVQfkiRMn4tatW6hVqxZ27NiBX3/9Nf+SEhEREeVSjkZd6enpITY2FnZ2dnB3d8eZM2dQtGhR1fZHjx7B2tr6gyucayKOuiIiIip88nTUlZWVFW7cuAEAuHnzpuroTgYbG5tCWeQQERGRdstRH50vvvgCtWvXhoODAxQKBapUqQI9Pb0s971+/XqeBswvnDCQiIhI++V4wsBdu3bh2rVr6N+/PyZMmABzc/Ms9xswYECeBsxvPHVFRERU+OTpWlcA0KRJEwBAaGgoBgwYkG2hQ0RERKQpcj28fNmyZfmRg4iIiCjP5XrCQCIiIqLCgoUOERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLV0ttAJDg6Gl5cXqlatKjsKERER5ZMcLwGhrbgEBBERUeGTp6uXExERERVGLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtpbOFDhf1JCIi0n5c1JOLehIRERU6Of38LlKAmQql+Ph4JCYm5uo6KSkpiIuLy6dE2StevDgMDQ1zdR1LS0vY29vnUyIiIiK5WOi8R3x8PDp26ozUVymyo+QbfQNDrPpjJYsdIiLSSix03iMxMRGpr1LwskQlCAOznF9RpEHxKjn/gmV3twYmgEIvx/srXj0D7p5DYmIiCx0iItJKLHRywOjuOdkRiIiI6D9goZMDL9w+Q7qxlewYeU754gmMbxyWHYOIiCjf6Ozw8lxRKGQnyB/a+nsRERH9Px7ReQ9LS0voGxgC1w/JjpJv9A0MYWlpKTsGERFRvmCh8x729vZY9cfKXA8v/69u3bqFSZMmYeTIkXBxcSmQ++TwciIi0mYsdD7A3t6+wAsBFxcXlClTpkDvk4iISBuxjw4RERFpLR7RyQcvX75ETExMrq9369YttX9zy9nZGUZGRv/pukRERNqIhU4+iImJwbfffvufrz9p0qT/dL3ff/+dp7yIiIjewkInHzg7O+P333+Xcr9ERET0Pzpb6AQHByM4OBhpaWl5fttGRkY8skJERKQBFEIIITuETDld5p2IiIg0R04/vznqioiIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtpbOFTnBwMLy8vFC1alXZUYiIiCifKIQQQnYImZKSkmBpaYnExERYWFjIjkNa4Nq1a7hx40aur5ecnIzo6Oh8SPR+pUqVgomJSa6u4+bmBg8Pj3xKRET0YTn9/C5SgJmIdMLcuXMRHh4uO0a+8vX1xZw5c2THICL6IBY6RHmsX79+OnFEh4ioMGChQ5THPDw8eFqHiEhD6GxnZCIiItJ+LHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0losdIiIiEhrsdAhIiIircVCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiIi0FgsdIiIi0lpFZAcgIiLg2rVruHHjRq6uk5ycjOjo6HxK9H6lSpWCiYlJrq7j5uYGDw+PfEpElDUWOkREGmDu3LkIDw+XHSNf+fr6Ys6cObJjkI7R2UInODgYwcHBSEtLkx2FiAj9+vXTiSM6RAVNIYQQskPIlJSUBEtLSyQmJsLCwkJ2HCIiIsqBnH5+szMyERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktVjoEBERkdZioUNERERai4UOERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktVjoEBERkdZioUNERERai4UOERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFqLhQ4RERFpLRY6REREpLVY6BAREZHW0tlCJzg4GF5eXqhatarsKERERJRPFEIIITuETElJSbC0tERiYiIsLCxkxyEiIqIcyOnnd5ECzEREOu7atWu4ceNGrq6TnJyM6OjofEr0fqVKlYKJiUmuruPm5gYPD498SkREucVCh4gKzNy5cxEeHi47Rr7y9fXFnDlzZMcgov/HQoeICky/fv104ogOEWkOFjpEVGA8PDx4WoeICpTOjroiIiIi7cdCh4iIiLQWCx0iIiLSWix0iIiISGux0CEiIiKtxUKHiIiItBaHlxMRERVShWm28f8yLxXw8bONs9AhIiIqpDjb+Iex0CEiIiqkCtNs4x9zROdjsNAhIiIqpDjb+IexMzIRERFpLRY6REREpLVY6BAREZHWYqFDREREWouFDhEREWktFjpERESktVjoEBERkdZioUNERERai4UOERERaS0WOkRERKS1WOgQERGR1mKhQ0RERFpL5xf1FEIAAJKSkiQnISIiopzK+NzO+BzPjs4XOk+fPgUAODk5SU5CREREufX06VNYWlpmu10hPlQKabn09HTcu3cP5ubmUCgUUrMkJSXByckJt2/fhoWFhdQsmoaPTfb42GSPj032+NhkjY9L9jTtsRFC4OnTp3B0dIRSmX1PHJ0/oqNUKlGyZEnZMdRYWFhoxJNIE/GxyR4fm+zxsckeH5us8XHJniY9Nu87kpOBnZGJiIhIa7HQISIiIq3FQkeDGBoaYuzYsTA0NJQdRePwsckeH5vs8bHJHh+brPFxyV5hfWx0vjMyERERaS8e0SEiIiKtxUKHiIiItBYLHSIiItJaLHSIiIhIa7HQISIiIq3FQoeIiHTOli1bkJqaKjsGFQAOLyeNl5ycjJiYGLx69Uqt3cfHR1Ii0kRpaWmIiYmBi4sLlEolUlJS8M8//yA9PR1169aFvb297IhSPXv2DKGhoYiLi4NCoYC9vT0qV64MMzMz2dGk0NPTQ1xcHGxtbaGnp4fY2FjY2dnJjkX5QOfXutIEt27dUnvzcXFxkR1JI9y/fx/dunXDzp07s9yelpZWwIlIU4WHh6NJkyZISEhAhQoVsH37djRt2hQ3btyAQqGAvr4+du/ejapVq8qOWuBev36NIUOGYNGiRXj58iUMDAwghEBqaiqMjIzw7bffYvr06dDX15cdtUDZ2tri5MmTaN68OYQQ0hd1pvzDU1cSzZo1C05OTnB3d4e/vz+qV68Od3d3ODk5Yfbs2bLjSTdw4EA8fvwYJ0+ehLGxMXbt2oUVK1agdOnS2LJli+x40sydOxddunTB+vXrAQB//PEHvLy8UK5cOfz00094/fq15IQFb9iwYfj0008RHh6OunXronHjxvD09MTjx4/x+PFjNGvWDD/99JPsmFIMGTIEf//9N5YtW4ZHjx7h5cuXSElJwaNHj7Bs2TJs3LgRQ4cOlR2zwPXq1QuBgYHQ09ODQqFA8eLFoaenl+WProqKisKyZctw6dIlAMClS5fQu3dvdO/eHSEhIZLT5YIgKSZMmCAsLCzElClTxPnz58W9e/fE3bt3xfnz58WUKVOEpaWl+Pnnn2XHlKp48eLi1KlTQgghzM3NxeXLl4UQQvzzzz+iZs2aMqNJM2HCBGFubi6++OILUbx4cTFlyhRRtGhRMXHiRDF58mRha2srxowZIztmgbO2thYXL14UQgiRnJws9PT0VM8dIYSIjIwURYsWlRVPqmLFion9+/dnu33fvn2iWLFiBZhIc0RFRYmtW7cKhUIhli9fLjZv3pzljy7auXOnMDAwEDY2NsLIyEjs3LlT2NraigYNGoj69euLIkWKvPd5pUlY6EhSsmRJsWnTpmy3b9y4UTg6OhZcIA1kbm4ubty4IYQQwsXFRRw9elQIIcT169eFsbGxxGTyuLu7i7///lsIIURYWJjQ09MTq1atUm3fuHGj8PDwkBVPGisrK3HlyhUhhBCvXr0Senp6IjQ0VLU9KipKWFtby4onlampqQgPD892+/nz54WpqWkBJtI848aNE8+fP5cdQ6P4+/uLkSNHCiGEWLNmjbC2thY//fSTavtPP/0kGjZsKCtervDUlSQPHz5E2bJls91epkwZPH78uAATaZ6yZcvi8uXLAICKFSvit99+w927d7Fw4UI4ODhITidHbGwsqlSpAgDw9fWFUqlExYoVVdsrVaqEe/fuSUonT+XKlTF16lTcvXsXQUFBcHNzw7x581Tb586diwoVKkhMKE/dunUxePBgxMfHZ9oWHx+PYcOGoV69ehKSaY6MhSrj4+Px4MED2XE0woULF9C1a1cAQNu2bfH06VN88cUXqu3t27dHRESEpHS5w0JHkk8++QSTJk3Ksj/F69evMXnyZHzyyScSkmmOgQMHIjY2FsCbN6Jdu3bB2dkZv/76KyZPniw5nRzFixfHxYsXAQBXr15FWlqa6jLw5s1JF0eOBAUFYdOmTXByckJwcDD++ecfXLx4EQ4ODihRogSWLVuGsWPHyo4pxfz58xEfH4+SJUvCz88PTZo0QdOmTeHn54eSJUsiPj4e8+fPlx1Tmu3bt+Ozzz6DqakpHB0dYW9vDysrK3Tq1AkxMTGy42kEpVIJIyMjWFlZqdrMzc2RmJgoL1QucHi5JP/++y8aNWqElJQU1K5dG/b29lAoFIiLi8Phw4dhaGiIvXv3onz58rKjaozk5GRcunQJzs7OKFasmOw4UowaNQq///47AgMDsX//frRr1w6rV6/Gjz/+CIVCgUmTJqFNmzaYOXOm7KgF7tmzZ7h8+TLKli0LMzMzvHz5EqtXr8aLFy/QsGHD9x5B1Xbp6enYvXs3Tp48ibi4OABvimZ/f380atQISqVufuf9448/8P333+Obb76BkZERli1bhm7dusHFxQVr167FhQsXcPz4cZQuXVp21ALn6+uLqVOnokmTJgCAyMhIlCtXDkWKvBmsffToUXTu3BnXr1+XGTNHWOhI9PTpU6xatSrLN5+vv/4aFhYWkhOSpklLS8OUKVNw8uRJfPrppxg+fDjWrl2LYcOGITk5Gc2bN8e8efNgamoqO2qBad26NZYvXw4LCwusXLkSX331FQwNDWXHokLA09MT48aNw1dffQUAOHv2LFq1aoWYmBgoFAq0a9cOr169wsaNGyUnLXgLFy6Ek5MTmjVrluX2kSNHIj4+HosXLy7gZLnHQoc0Tr9+/dC2bVvUqlVLdhQqBAwMDHDr1i04ODhw4jfKFRMTE1y8eBGurq6qNn19fdy6dQuOjo44ffo0GjdurPP9JQs7ThgoEWdyzVpwcDDmz5+PUqVK4ZtvvkGXLl1QvHhx2bFIQ5UrVw4//vgj6tatCyEE1q9fn+3R0M6dOxdwOvlSU1MxcuRIbNy4ETY2Nujduze6deum2h4fHw9HR0ednIDT1dUVZ8+eVRU6586dg1KpVL332tjYcJmId7x+/Vp1+qqwKFxptQhncn2/PXv2YOvWrfjll18wevRoNG3aFD179kRAQIDO9ido3bp1jvfVpUPtCxcuxODBg7F9+3YoFAqMGjUqy1luFQqFThY6kyZNwsqVK/HDDz/gyZMnGDRoEE6ePInffvtNtY+uHtj//vvv0aNHD5w5cwZGRkZYvHgxOnXqpJok8NSpUyhTpozklHLs2rULJUqUgLe3N9LT0zF58mQsWLAAcXFxcHBwQN++fTF8+PBCMaM0T11J0rhxY1hYWGDs2LFYvHixquPx6tWroVAo0K1bN8TFxWHv3r2yoxY4pVKJuLg42NnZITU1FZs2bcLSpUuxb98+2Nvbo2vXrujWrRs8PDxkRy1Qb38LF0Jg06ZNsLS0VA03Dw0NxZMnT9C6dWssW7ZMVkyp3n7u0BulS5fGrFmz8PnnnwMAoqOj0bRpU9SsWRNLly5FQkKCzh7RAYAFCxZg1apVSElJQePGjTF69GgYGRkB+N/IxnLlyklOWfDKly+PRYsWoUaNGggKCsKMGTMwcuRIeHp64vLlywgKCsKgQYMwfPhw2VE/TNL8PTqPM7lmT6FQiPj4+Eztt27dEmPHjhUuLi5CqVRKSKY5hg0bJnr06CFev36tanv9+rX49ttvxQ8//CAxmVw3b94U6enpsmNoFGNjY9XEmxnu3r0rypYtKzp06CDu3r2r868nyszIyEjExMQIIYSoUKGCWLdundr2bdu2FZrJSXnqShIhhOo857v/Am9W1k1PT5eSTVM5Oztj3LhxGDt2LPbt2yc7jlRLly7F0aNH1dbh0dPTw+DBg1GjRg1Mnz5dYjp5Xr16hZUrV6otklujRg2dHB6coXjx4oiOjlbrcOvo6IiQkBDUrVsXXbp0kRdOg3BxZXXW1ta4e/cunJyccP/+/UyvoTJlyuDu3buS0uWObnZ20ACcyTV7Li4u711IT6FQoGHDhgWYSPO8fv0aUVFRmdqjoqJ0skBOTExEYGAgypYti4EDB2Lp0qVYvHgxBg4ciHLlyqFly5ZISkqSHVOKevXq4c8//8zUnlHs3Lx5s+BDaRAurpy1Vq1aYdKkSUhLS0NgYCDmz5+v1pdr3rx5arOyazTZh5R01enTp4WNjY1QKpXCzs5OXLhwQVSrVk0UL15cODo6CmNjY7Fv3z7ZMUlDDRo0SFhbW4vp06eLI0eOiCNHjojp06eLokWLikGDBsmOV+A6deokvL29xcmTJzNtO3nypPDx8RGdO3eWkEy+mzdvil27dmW7/d69e2L58uUFmEhzcHHl7D158kRUqVJFeHh4iE6dOgkjIyPh4uIiGjZsKNzc3ISFhUWWrzdNxM7IEnEmV/qv0tPT8csvv2DOnDmqZTIcHBwwYMAADBky5L1HxLSRlZUVdu/ejWrVqmW5/eTJk2jSpAmePHlSsMFIozk5OWHu3Llo2bJllts3bdqEvn37FppTNHktNTUVS5YswdatW3H9+nWkp6fDwcEBNWvWRO/evVGyZEnZEXOEhQ5ptDNnzmDDhg2IiYnBq1ev1Lbp0hBqANiyZQuaNm0KfX19tfaMUzK6PJO2lZUV9uzZk+36cKdOnULjxo11utAJCgqCvb09unfvrta+dOlS3L9/v3CMnsljJiYmCA0NhaenZ5bbL1y4gKpVqyI5ObmAk1FeYh8dDdOtWzedXH06K2vXrkXNmjVx8eJFbNq0Campqbh48SJCQkJgaWkpO16Ba9WqleqDWk9PDwkJCQDeFDi6XOQAQPPmzdGzZ0+cPXs207azZ8+iV69eaNGihYRkmuO3337Lcph0+fLlsXDhQgmJ5OPiyh9248YNXL16NVP71atXC03/Lo66kiS75e1Xr16NwMBAuLu7AwB8fHwKMpZGmTx5MmbNmoXvv/8e5ubmmDNnDtzc3PDdd9/BwcFBdrwCZ2tri5MnT6J58+YQQhSKiboKyty5c9G+fXt88sknsLKygp2dHRQKBeLj45GYmIjGjRvj119/lR1TqoyJ3t5la2urOv2pa+bOnYtGjRrBzs7uvYsr67KuXbuie/fumUZdnTp1CosXL8bBgwflBMsFnrqSRKlUQqFQZDkjaUa7QqHQ2Um8AMDU1BQXLlyAq6srihUrhgMHDsDb2xtRUVGoV6+ezr05jxs3DhMmTMhRgaOrz5uoqKgsF8nVxQnf3lW6dGmMHTsWHTt2VGv/448/MHbs2EKxCnV+4OLK72dhYYFz585lmqD12rVrqFKlSqE4HcwjOpL4+PigZMmS+OWXX2BsbAzgzdw6pUuXxs6dO3V63o8MNjY2ePr0KQCgRIkSiIyMhLe3N548eaKT58zHjRuHdu3a4dq1a2jRogWWLVsGKysr2bE0iqenZ7b9LXRdjx49MHDgQKSmpqJevXoAgP3792PYsGEYMmSI5HTymJubo3fv3ujdu7fsKBpJoVCo3offlpiYWGi+ULHQkeT06dMYNmwYvvjiC6xatQp+fn6qbY6Ojjo/WRUA1KpVC3v37oW3tzfatm2LAQMGICQkBHv37kX9+vVlx5OiXLlyKFeuHMaOHYsvv/wSJiYmsiNJt2XLlhzvq8v9dIYNG4ZHjx6hT58+qo79RkZGGD58OH788UfJ6TRTamoqYmNj4ezsLDuKNLVq1UJQUBDWrFmjGs2ZlpaGoKAgfPrpp5LT5QxPXUm2c+dOfPvtt+jTpw+GDx8OQ0NDhIeHw8vLS3Y06R49eoSXL1/C0dFRNZz66NGj8PDwwOjRo2FtbS07onQJCQm4fPkyFAoFypQpo5NrPL27yOu7p4TfPtVXWL6B5qdnz54hKioKxsbGKF26NAwNDWVH0ljh4eGoVKmSTj9vLl68iM8++wxWVlaoVasWAODIkSNISkpCSEhIoZjYloWOBoiPj0e3bt3w9OlTnDx5koUOfVBSUhK+//57rF27VvUmrKenh6+++grBwcE6OSoNAPbt24fhw4dj8uTJ8Pf3h0KhwPHjxzFq1ChMnjxZ52fUptxhofPGvXv3MG/ePISHh8PY2Bg+Pj7o27cvbGxsZEfLERY6GuTXX3/FgQMHMHfu3EIzEVN+S0tLw6ZNmxAVFQWFQgFPT08EBgaqrQumi9q2bYuwsDDMnTtX7QN9wIAB8PHxwfr162VHlKJChQpYuHBhpkPqR44cwbfffpvlshnarnnz5mjbti3atGmj6g9Ib1SqVOm921+8eIErV67ofKFT2LHQIY0VGRmJwMBAxMXFqWaJvnLlCmxtbbFlyxZ4e3tLTiiPqakpdu/eneUHepMmTfD8+XNJyeQyNjbG6dOnMz03IiIiUK1aNbx48UJSMnmUSiX09PRgamqK9u3bo0ePHqhcubLsWBrByMgI7dq1g5ubW5bbY2NjsWjRIhY6WXj+/DlCQ0Px2WefyY7yQSx0JElJSYFSqVTNchsdHY2lS5ciJiYGLi4u+Oabb7J98emK6tWrw87ODitWrFD1x3n8+DG6du2KhIQEnDhxQnJCeZydnbF9+/YsP9ADAgJw584dScnk+uyzz6Cvr49Vq1ap5oyJi4tDp06d8OrVKxw6dEhywoKnVCoRGRmJPXv2YOnSpbhw4QIqVKiAnj17okOHDjrd161KlSr45ptvsh1xFRYWhsqVK7PQyUJhOq3HmZEladq0KbZu3QoAOHbsGMqXL49t27YhNTUVO3bsQIUKFXT6gxx480IKCgpSeyO2trbGpEmTEBYWJi+YBhg1ahQGDx6sNpdQXFwchg4ditGjR0tMJtfSpUuRkJAAFxcXeHh4wMPDA87OzoiNjcWSJUtkx5OmWLFiGDhwICIiInDixAlUr14do0aNQokSJfD1118jJCREdkQpPv30U1y+fDnb7ebm5oXiiAW9H4/oSGJtbY2zZ8+iVKlSqFOnDipVqoSZM2eqto8ePRoHDhzA0aNHJaaUq2LFipg5c6Zqzo8MISEhGDBgAP79919JyeTw8/NTG0F09epVpKSkqIa+xsTEwNDQEKVLl8a5c+dkxZROCIG9e/fi0qVLEELAy8sLDRo00NmZpJVKJeLi4jKNyHvx4gXWrVuHJUuW4Pjx44XimzkVnA91NE5LS8OzZ88KxfOGhY4kZmZmOHv2LMqVK4fixYtj9+7d8PX1VW2Pjo5GxYoVs5yoSZtlLFAJAEePHsWwYcMwbtw4VK9eHcCbVagnTJiAKVOmICAgQFZMKcaPH5/jfceOHZuPSagwya7QedvVq1c5SSmpMTU1Re/evbPtC3nr1i2MHz++UBQ6uj10RaJq1aph69atKFeuHEqVKoXw8HC1QicsLKzQDN3LS1ZWVmrfvIUQaNu2raotoy5v3rx5oXiB5SUWL7nn7u6O3bt36/SHeO3atWFgYPDefXT58XlbcnIyYmJiVBMqZtDFNQcrVqwIJycndOnSJcvt4eHhufryJRMLHUkmTpyIpk2b4vnz52jfvj2GDBmCq1evwtPTE5cvX8avv/6qk7OVHjhwQHYEKoSyW7AzJiYGy5YtQ/HixQEA/fv3L8hYGoGvqQ+7f/8+unXrhp07d2a5Xde+VAFAs2bN3ruOlY2NDTp37lxwgT4CT11JdOLECQwePBinTp1Sa3d0dMTQoUMxYMAAScnkad26NZYvXw4LCwusXLkSX331FWdu/X/W1tY57mfy6NGjfE6jWZRKJUqUKJFpfqVbt27B0dER+vr6UCgUOrtwZYbXr1/j4MGDiI6Oxtdffw1zc3Pcu3cPFhYWMDMzkx1Pmg4dOuDmzZuYPXs26tati02bNiE+Ph4TJ07EjBkz0KxZM9kR6SOw0NEA9+/fx/Xr15Geng4HBwe4urrKjiSNgYEBbt26BQcHB+jp6SE2NlYnlzXIyooVK1T/f/jwISZOnIjGjRvD398fwJvCeffu3Rg9ejQGDRokK6YU3333HU6fPo0///xTbVFPfX19zjT+/27duoUmTZogJiYGKSkpuHLlCtzd3TFw4EC8fPkSCxculB1RGgcHB/zzzz/45JNPYGFhgbNnz6JMmTLYsmULpk2bptODQrQBCx3SKD4+PqhUqRLq1q2Lbt264ddff4WFhUWW+xaWw6b54YsvvkDdunXRt29ftfZ58+Zh37592Lx5s5xgEm3evBn9+/fHsGHDVI8LC53/admyJczNzbFkyRIULVoU4eHhcHd3x6FDh9CjRw9cvXpVdkRpLCwsEBERAVdXV7i6umL16tWoWbMmbty4gfLlyyM5OVl2RKkuX76MuXPnqmaoL1euHPr166eayFXTsdDRAPv378esWbPUnkQDBw5EgwYNZEcrcMePH8fgwYMRHR2NR48ewdzcPMvTNQqFQudOz7zNzMwMYWFh8PDwUGu/evUq/Pz88OzZM0nJ5Lp79y46d+4MAwMDLFu2DE5OTix0/l+xYsVw7NgxlC1bFubm5qpC5+bNm/Dy8tLpD/OqVauqjpC2bNkSFhYWCAoKwq+//oq//voL0dHRsiNK89dff6F9+/aoUqWK6ujxyZMncebMGfz555/48ssvJSfMAUFSzZ07VxQpUkS0a9dOzJkzR8yZM0e0b99e6Ovri7lz58qOJ5VCoRDx8fGyY2gkZ2dnMW3atEzt06ZNE87OzhISaY709HQxefJkUbx4caGnpycuXLggO5JGsLa2Vj0WZmZmIjo6WgghxJEjR4SdnZ3MaNKtWrVKLFu2TAghxLlz54Stra1QKpXCyMhIrF27Vm44ydzc3MTo0aMztY8ZM0a4ublJSJR7PKIjWYkSJfDjjz9mOgURHByMSZMm4d69e5KSyXfr1i04Ozvr7ERv77N8+XJ88803aNKkidq3rF27dmHx4sXo2rWr3IAaIDQ0FEePHkXnzp11epmDDF999RUsLS3x+++/w9zcHBEREbC1tUVgYCCcnZ2xbNky2RE1RnJyMi5dugRnZ2cUK1ZMdhypTExMEBERkeXRY19f30JxJJCFjmTm5uY4f/48T0F8wOPHj3Ht2jU4ODhwZff/d+rUKfz666+IiopSzQDcv39/VKtWTXY00kD37t1D3bp1oaenh6tXr6JKlSq4evUqihUrhsOHD7PTP2UpICAAX375Jbp166bWvmzZMqxduxa7d++WlCznWOhI1qFDB1SsWBFDhw5Va//ll18QGhqKNWvWSEomz08//YRRo0bBxMQEqamp+P7777FkyRIIIaBQKBAYGIg///wTRkZGsqNSIXH79m2MHTsWS5culR1FqhcvXmDt2rUIDQ1Feno6KlWqhA4dOsDY2Fh2NGmioqJw8uRJ+Pv7o1y5crh06RLmzJmDlJQUdOzYMdMSNLpgy5Ytqv/fu3cPY8aMQdu2bdVmqN+wYQPGjx+PXr16yYqZYyx0JHh7crOkpCT88ssvqFmzptopiGPHjmHIkCEYNWqUrJjSvD2sfPLkyZg9ezYWLlyI6tWr49y5c+jVqxe+++47nV688vnz5wgNDUVsbCz09PTg7u6eaS0s+p/CtNIyFZxdu3YhMDAQZmZmSE5OxqZNm9C5c2f4+vpCCIFDhw5h9+7dOlfsKJU5W+9boVAUitcUCx0J3NzccrSfrk5w9vbaPH5+fujXrx+6d++u2r5+/XqMGzcOFy9elJhSjvT0dIwYMQLBwcF4+fIlgP8ti+Hs7Iy5c+eiefPmMiNK8fY30Kxcv34dQ4YMKRRvygWlXr16WLZsGVxcXGRHkaZGjRqoV68eJk6ciLVr16JPnz7o3bs3Jk2aBAAYOXIkzpw5gz179khOSh+DhQ5pHKVSifj4eNja2qJYsWI4ePAgKlSooNp+8+ZNlC9fHs+fP5eYUo4RI0Zgy5YtCAoKgpGRESZNmoTPP/8cLVq0wJ9//olp06Zhy5YtaNSokeyoBUqpVEKhUOB9b2eF5dtnXsuuCGzdujXmzJkDJycnAECLFi0KMpZGsLS0RGhoKDw8PJCeng5DQ0OcOnUKlSpVAgBERkaiQYMGiIuLk5yUPgbXuiKNtGjRIpiZmcHQ0BCPHz9W25aYmKizy0L88ccfWLt2LWrVqgUAqFChAsqVK4cBAwZgwoQJ0NfXx7hx43Su0HFwcEBwcDBatmyZ5fawsDBUrly5YENpiJYtW2ZbBPbr1w+A7haBb1MqlTAyMoKVlZWqzdzcHImJifJCSbZ161acPXtWNbozJCQEv/zyC9LT09G6dWt8++23siPmCAsdCQYPHpzjfWfOnJmPSTSTs7MzFi1aBODNkhDnzp1TfbADbxYpLCwzcua1p0+fokSJEqrLDg4OePnyJR4/fozixYvjiy++wJQpUyQmlKNy5co4d+5ctoXOh472aLPGjRtDT08PS5cuVRtZxVmjAVdXV1y7dk016vXEiRNwdnZWbb99+zYcHBxkxZNq4cKF6NevH3x9fTF79mzMnz8fvXv3xldffQU9PT0MHDgQL168KBRrMrLQkeD8+fNql0NDQ5GWlqb68L5y5Qr09PR09hvozZs337u9evXqqF27dsGE0TDe3t5Ys2YNRo4cCeBNfyUzMzPV6twZh991zdChQ997KtPDw0NnV/HeuXMnZs2ahapVqyI4OBiff/657Egao3fv3mpHst4+RQ68eex0rSNyhl9//RXz589Hz549ceDAAQQEBGDGjBno06cPgDfvw9OmTSsUhQ776Eg2c+ZMHDx4ECtWrFBNavb48WN069YNtWrVwpAhQyQnJE2yf/9+NGvWDL6+vjAyMsLx48cxffp0DBw4EMCbaQl27tyJ/fv3yw1KGic8PBxff/01Pv30U8yaNQuWlpY6f0SHsmdiYqKaNBH439H1jGKwMPWVZKEjWYkSJbBnzx6UL19erT0yMhKNGjXS6ZmRM1y8eBExMTF49eqVWrsudp4EgIiICKxbtw4pKSlo3LgxGjZsKDsSFRIvXrzAoEGDEBISguvXryMiIoKFDmXJyckJf/75J2rVqoV79+6hZMmS2LZtGwICAgAAhw4dQseOHXH79m3JST+Mp64kS0pKQnx8fKZCJyEhAU+fPpWUSjNcv34drVq1wr///qvWxyJjrhhd7Tzp4+MDHx8f2TE0Tnh4OGbMmIGjR4+q5hdyc3NDy5YtMXToUFhYWMiOKJ2xsTEWLlyILVu24MCBAzq/vMHbzpw5gw0bNmT5pWrjxo2SUskTGBiIb775Bl26dMGWLVvQuXNnDBkyRDXCcejQoYVm0EPOZgWifNOqVSt069YNf/31F+7cuYM7d+7gr7/+wjfffIPWrVvLjifVgAED4Obmhvj4eJiYmODChQs4fPgwqlSpgoMHD8qOpxEy1uSJiIhQ+9E1u3fvhr+/P54+fYrq1atDqVSiW7duaNasGdauXYtKlSrp5BBhGxsbPHjwAADQvXt31ZenFi1aYNasWVz24f+tXbsWNWvWxMWLF7Fp0yakpqbi4sWLCAkJgaWlpex4UkydOhW1a9dWvX4WLVqEb775BoGBgWjatCmKFi2KoKAg2TFzpuDWD6WsPH/+XPTu3VsYGhoKpVIplEqlMDAwEL179xbPnj2THU+qokWLivDwcCGEEBYWFuLSpUtCCCH2798vKlasKDOadAkJCSIgIED1nHn3R9dUrFhRLFiwQHV5z549oly5ckIIIV69eiXq168vunbtKiueNKampqpVypVKpUhISJCcSDN5e3uLefPmCSH+t7J7enq66NmzpxgzZozkdJrlxYsXIikpSXaMXGEfHQ3x/PlzREdHQwgBDw8PmJqayo4knbW1NUJDQ+Hu7o5SpUph8eLFqFu3LqKjo+Ht7V0oVs3NLx06dMDNmzcxe/Zs1K1bF5s2bUJ8fDwmTpyIGTNmoFmzZrIjFihjY2NERUXB1dUVwJvZog0NDXHr1i04ODjgyJEj+OKLL5CQkCA3aAFr2LAh4uPjUblyZaxYsQJfffVVtuta6fI6YKamprhw4QJcXV1RrFgxHDhwAN7e3oiKikK9evUQGxsrOyJ9BPbR0RCmpqaqfhesPd+oUKECIiIi4O7ujmrVqmHatGkwMDDA77//Dnd3d9nxpAoJCcE///yDqlWrQqlUwsXFBQ0bNoSFhQWCgoJ0rtApUaIELl++rCp0oqOjkZ6ejqJFiwIASpYsiWfPnklMKMeqVaswa9YsREdHQ6FQIDExUbV0CP2PjY2N6rReiRIlEBkZCW9vbzx58kQnv1Bp21xvLHQkSUlJwU8//YSzZ8/i888/x9ChQzFx4kRMmTIFQggEBgZi4cKFOt2BctSoUaqhixMnTsTnn3+OWrVqoWjRoli3bp3kdHI9f/5c1b/CxsYG9+/fR5kyZeDt7Y1z585JTlfwOnfujB49emDkyJEwNDTEzJkz0aJFCxgYGAB4MzNyTteY0yb29vaqCSTd3Nzwxx9/qIo/+p9atWph79698Pb2Rtu2bTFgwACEhIRg7969qF+/vux4BU7r5nqTed5Mlw0aNEg4OjqKIUOGCE9PT/H9998LZ2dnsWrVKvHnn38KDw8P0a9fP9kxNc7Dhw9Fenq67BjSValSRezatUsIIURgYKDo1KmTuHPnjhg2bJhwd3eXnK7gpaamimHDhglHR0dRtGhR8fXXX4v79++rtp86dUocOnRIYkLSZA8fPhR3794VQgiRlpYmpk6dKpo3by4GDRokHj16JDmdXDNmzBDNmzdXexwePXokAgMDxS+//CIxWc6x0JHEyclJ7N27VwghRHR0tFAqlWLz5s2q7Xv27BEuLi6S0pGmW7VqlVi2bJkQQohz584JW1tboVQqhZGRkVi7dq3ccIXA0aNHxcuXL2XHkMrNzU1cuXJFdgzScI6OjiIyMjJT+7///iscHBwkJMo9nrqS5MGDByhTpgwAwN3dHXp6eqr1VgCgdOnSuH//vqx40p05cwazZ8/G8ePHERcXB4VCAXt7e9SoUQODBg1ClSpVZEeUqkOHDqr/+/n54ebNm6pZTDk3yoc1bdoUYWFhOtHX69dff82yPSYmBsuWLVMtH9K/f/+CjKVRnj9/jtDQULX5lypVqqSas0uXacNcbyx0JHF2dlYtIHfmzBkoFAqcPn1a9WQ6deqU2uKNumTz5s1o27Yt6tevjwEDBsDe3h5CCCQkJGDPnj2oWbMm1q9fj8DAQNlRNYaJiQkqVaokO0ahIXSow//AgQNRokQJFCmi/nafnp6OlStXQl9fHwqFQicLnfT0dIwYMQLBwcGqTtoZzw1nZ2fMnTsXzZs3lxlRuoy53mbMmIHq1asDAE6ePImhQ4cWnrneJB9R0lmzZs0SRkZGokGDBsLa2lrMnTtXFC9eXAwbNkyMGDFCWFpaigkTJsiOKUX58uVFUFBQttunTJkivLy8CjCR5jh37py4fv266vIff/whatSoIUqWLClq1qwp1qxZIzFd4ZExV4ou+Pbbb0XFihXFxYsX1dqLFCkiLly4ICmVZhg+fLjw9PQUmzdvFrt27RK1atUSU6dOFVFRUWL06NHC0NBQ7N69W3ZMqbRhrjcWOhKtWrVK9O3bV9Wn4sCBA6JWrVqicuXKYty4cSItLU1yQjkMDQ3F5cuXs91+6dIlYWhoWICJNIefn58ICQkRQgixaNEiYWxsLPr37y8WLFggBg4cKMzMzMSSJUskp9R8ulToCCHEpk2bhJOTk5g7d66qjYXOm/4nhw8fVl2+c+eOMDMzU/XfmjBhgvD395cVT6M8e/ZMhIeHi7CwsCwLnNu3b2vsZxYLnUJClzpPenl5ialTp2a7ferUqcLT07MAE2kOExMTcevWLSHEm6Lnt99+U9u+evVqnT3alRu6VugI8eZDvF69eqJJkyYiNjaWhY4QwtzcXO15kJaWJooUKSJiY2OFEEJcuHBBmJiYyIpXqLz7WGoS9tEpJHSp8+SECRPQrl07HDp0CI0aNYK9vT0UCgXi4uKwd+9e7NmzB2vXrpUdUwpjY2Pcv38fzs7OuHv3LqpVq6a2vVq1arhx44akdIWHLnYyLVGiBPbt24cpU6bAz89Pp/opZcfb2xtr1qzByJEjAQDr16+HmZmZqoN2eno6DA0NZUYsNDT5+cRCp5DQ5CdRXvviiy9w+PBhzJkzBzNnzlQtxli8eHH4+/vj0KFD8Pf3l5xSjqZNm2LBggVYvHgxateujb/++gu+vr6q7evXr1cbvUdZ06XX09sUCgV+/PFHNGrUCEePHoWDg4PsSFJNmDABzZo1w5YtW2BkZITjx49j+vTpqu27du2Cn5+fxISUF7jWVSFhbm6O8PBwnTiik1vHjh1DlSpVdOKb171791CzZk04OzujSpUqWLBgASpXrgxPT09cvnwZJ0+exKZNmxAQECA7qhQvXryAEAImJiYAgFu3bmHTpk3w8vJCo0aNJKcrHCwsLHTm6DEAREREYN26dUhJSUHjxo3RsGFD2ZEKJU3+jOIRHSr0dOm0nqOjI86fP48pU6Zg69atEELg9OnTuH37NmrWrKkq+nRVYGAgWrdujV69euHJkyeoVq0a9PX18eDBA8ycORO9e/eWHVHj6dp3Xx8fH9U6gx/Sp08fTJgwgXNVFTJK2QGIPpauvTFbWVlhypQpuHDhAl68eIGUlBTcvHkTq1evzlTk3LlzB+np6ZKSFrxz586hVq1aAIC//voL9vb2uHXrFlauXJntxHlEObVq1SokJSXJjqGRNLnfGwudQkKTn0Skuby8vHDz5k3ZMQpMcnIyzM3NAQB79uxB69atoVQqUb16ddy6dUtyOirsdO1LVW5o8mPDQqeQ0OQnEWkuXXveeHh4YPPmzbh9+zZ2796t6peTkJAACwsLyemICq9r165h9+7dePHiBYDM7y0XL16Ei4uLjGgfxEKnkHj69KlO9EEh+hhjxozBDz/8AFdXV1SrVk01Om/Pnj0cPZNDPHpMb3v48CEaNGiAMmXKICAgALGxsQCAHj16YMiQIar9nJycoKenJyvme7EzsgR+fn45fjM5d+5cPqcp/PjGTBnatGmDTz/9FLGxsWrD7uvXr1941uWRTNeOAtL7DRo0CEWKFEFMTAw8PT1V7V999RUGDRqEGTNmSEyXMyx0JGjZsqXsCFqFb8yUoXv37pgzZ06mozfly5dHv379sHTpUknJ5JswYQJ++OEH1dD7DC9evMD06dMxZswYAMDOnTt1dkFhymzPnj3YvXs3SpYsqdZeunTpQtPvjfPokMbinCgfT9fmRNHT00NsbCzs7OzU2h88eIDixYvj9evXkpLJl91j8/DhQ9jZ2SEtLU1SssKjd+/e+Pnnn3VqeLm5uTnOnTuH0qVLq82Vc+bMGTRp0gQPHz6UHfGD2EdHQ4SGhmLVqlVYvXo1zp8/LzuORggMDMTKlSsBQDUnyowZMxAYGIgFCxZITlc46Mr3mKSkJCQmJkIIgadPnyIpKUn18/jxY+zYsSPTB7yuEUJkeZo3PDwcNjY2EhJpjtGjR2dZ6CUmJqJ9+/aqywsWLNCpIgcAPvvsM9X7MPCmq0B6ejqmT5+OunXrSkyWCwW4rhZlIT4+XtStW1coFAphbW0trKyshEKhEPXq1RMJCQmy40lVtGhRERkZKYR4s1K3j4+PSEtLE+vXrxflypWTnK5wiImJEa9fv5YdI98pFAqhVCqz/dHT0xMTJ06UHVMKKysrYW1tLZRKper/GT8WFhZCqVSKPn36yI4plbOzs6hWrZq4du2aqu3AgQPCyclJVK9eXWIy+S5cuCBsbW1FkyZNhIGBgWjTpo3w9PQU9vb2ao+XJmMfHcn69euHpKQkXLhwQdXR6+LFi+jSpQv69++PNWvWSE4oD+dEUZebzrQbN24E8GYkhC44cOAAhBCoV68e/v77b7UjFAYGBnBxcYGjo6PEhPLMnj0bQgh0794d48ePh6WlpWqbgYEBXF1ddXbtuAwRERH47rvvULFiRcycORNXrlzBnDlzMGLECIwdO1Z2PKm8vLwQERGBBQsWQE9PD8+fP0fr1q3x/fffF5q10thHRzJLS0vs27cPVatWVWs/ffo0GjVqhCdPnsgJpgF8fHzQo0cPtGrVChUqVMCuXbvg7++P0NBQNGvWTLXYp67o1q1bjvddtmxZPibRXLdu3YKzszNH4r3j9evXWLVqFRo0aJCpUyn9z8iRIxEUFIQiRYpg586dqF+/vuxIUqWmpqJRo0b47bffUKZMGdlx/jMe0ZEsPT0d+vr6mdr19fV1aur+rIwZMwZff/01Bg0ahPr16+v8nCi6WrzkRkhICMzMzPDll1+qtW/YsAHJycno0qWLpGRyFSlSBH369EFUVJTsKBpr7ty5mDVrFtq3b4/Q0FD0798ff/75p9o0BbpGX18fkZGRhf6LAzsjS1avXj0MGDAA9+7dU7XdvXtX9eGuy9q0aYOYmBicPXsWu3btUrXXr18fs2fPlhdMg9y/fx9Hjx7FsWPHcP/+fdlxpJsyZUqWnUXt7OwwefJkCYk0R7Vq1TjQIRtNmzbF+PHjsXLlStWAkM8++wzVq1fHtGnTZMeTqnPnzliyZInsGB+Fp64ku337NgIDAxEZGQknJycoFArExMTA29sb//zzj04fZs6YEyWjn06G58+f6/ycKBmPwcqVK1VH/vT09NC5c2fMnTs301wpusLIyAiXLl2Cq6urWvvNmzfh6empmr5eF23YsAEjRozAoEGDULlyZZiamqptz+kK3tqoYcOGWLFiRaZ+XNu3b0ePHj1UswHrooz3GQ8PD1SpUiXT82bmzJmSkuUcCx0NsXfvXly6dAlCCHh5eaFBgwayI0nHOVGy991332Hfvn2YN28eatasCQA4evQo+vfvj4YNG+rs8HtnZ2fMmzcPLVq0UGv/559/8P333+POnTuSksmnVGY+gK9QKFTDzjmPTtYePHigc0PK3/a+IeQKhQIhISEFmOa/YR8dDdGwYUM0bNhQdgyNkJSUBCGEak4UIyMj1ba0tDTOiQLg77//xl9//YU6deqo2gICAmBsbIy2bdvqbKHTrl079O/fH+bm5vjss88AAIcOHcKAAQPQrl07yenkunHjhuwIhZIuFznAmxGNhR0LHcn69+8PDw8P9O/fX6193rx5uHbtmk72RbGysoJCoYBCociyp79CocD48eMlJNMcycnJsLe3z9RuZ2eH5ORkCYk0w8SJE3Hr1i3Ur18fRYq8eXtLT09H586ddb6PjqauLC2LjY0Nrly5gmLFisHa2vq9HW4fPXpUgMk01507d6BQKArdEiE8dSVZiRIlsGXLFlSuXFmt/dy5c2jRooVOHmo/dOgQ50T5gPr166No0aJYuXKl6ojXixcv0KVLFzx69Aj79u2TnFCuK1euIDw8HMbGxvD29uaH/P+Ljo7G7NmzERUVBYVCAU9PTwwYMAClSpWSHa3ArVixAu3atYOhoSGWL1/+3kJHV0frAW++KEycOBEzZszAs2fPALxZFmLIkCEYOXJklqdENQ0LHcmMjIwQGRkJDw8PtfZr166hQoUKePnypaRk8nFOlOxFRkaiSZMmePnyJXx9faFQKBAWFgYjIyPs3r0b5cuXlx2RNMzu3bvRokULVKxYETVr1oQQAsePH0d4eDi2bt3KU+eUpR9//BFLlizB+PHjVc+bY8eOYdy4cejZsycmTZokO+IHsdCRrEKFCujVqxf69u2r1j537lwsWLAAFy9elJRMvmXLlnFOlPd48eIFVq1apdaJvUOHDjA2NpYdTao7d+5gy5YtiImJwatXr9S2FYYRIvnFz88PjRs3xpQpU9TaR4wYgT179uDcuXOSksnHBU+z5+joiIULF2bZwb9Pnz64e/eupGQ5xz46kg0ePBh9+/bF/fv3Ua9ePQDA/v37MWPGDJ3sn/O2KVOmYOHChZna7ezs8O233+p8oWNsbIyePXvKjqFR9u/fjxYtWsDNzQ2XL19GhQoVcPPmTQghUKlSJdnxpIqKisL69esztXfv3l3n32uy+76fkpICAwODAk6jWR49eoRy5cplai9Xrlyh6bvEQkey7t27IyUlBZMmTcLPP/8MAHB1dcWCBQvQuXNnyenkunXrFtzc3DK1u7i4ICYmRkIizcL+Fpn9+OOPGDJkCCZMmABzc3P8/fffsLOzQ4cOHdCkSRPZ8aSytbVFWFgYSpcurdYeFhams6MYf/31VwBvBjgsXrwYZmZmqm1paWk4fPhwlh/yusTX1xfz5s1TPVYZ5s2bV2hmjWahowF69+6N3r174/79+zA2NlZ7sekyOzs7REREZJr8LTw8HEWLFpUTSkNk19+ifPnyOt3fIioqSrUQbpEiRfDixQuYmZlhwoQJCAwMRO/evSUnlKdnz5749ttvcf36ddSoUQMKhQJHjx7F1KlTMWTIENnxpJg1axaAN0d0Fi5cCD09PdW2jAVPszqqrEumTZuGZs2aYd++ffD394dCocDx48dx+/Zt7NixQ3a8nCmoZdLp/RISEsSRI0fE0aNHxf3792XH0QhDhw4VLi4uIiQkRLx+/Vq8fv1a7N+/X7i4uIghQ4bIjidVxYoVxfDhwzO1Dx8+XPj5+UlIpBns7e3FhQsXhBBCeHl5iX/++UcIIURYWJgwNTWVGU269PR0MXPmTFGiRAmhUCiEQqEQJUqUELNnzxbp6emy40lVp04d8ejRI9kxNNadO3fETz/9JFq3bi1atWolRo4cKe7evSs7Vo6xM7JknMo/e69evUKnTp2wYcOGTHOiLFy4UKfPnRsZGeHff//NdBriypUr8PHx0dnRei1btkSzZs3Qs2dPDBs2DJs2bULXrl2xceNGWFtb6/yw+wxPnz4FgEzLq+i6V69e4caNGyhVqpTqPYcKP80fAK/lBg8ejEOHDmHr1q148uQJnjx5gn/++QeHDh3S2cPJGQwMDLBu3TpcunQJq1evxsaNGxEdHY2lS5fqdJED/K+/xbt0ub8F8GZUVbVq1QAA48aNQ8OGDbFu3Tq4uLgU+oUJ80pCQgLCwsIQHh7OhWD/34sXL/DNN9/AxMQE5cuXV/UB7N+/f6ZRarpm2bJl2LBhQ6b2DRs2YMWKFRIS/QeyDynpuqJFi4oDBw5kag8JCRHFihUr+EBUKIwfP15YWVmJKVOmiMOHD4sjR46IoKAgYWVlJX7++WfZ8aR4/fq1OHjwIE9BZCMxMVF07NhR6OnpqU5dFSlSRHTo0EE8efJEdjyp+vfvLypXriyOHDkiTE1NRXR0tBBCiH/++UdUrFhRcjq5ypQpI0JCQjK1Hzx4UJQpU0ZCotzjsTnJOJX/+3FOlKyNHj0a5ubmmDFjBn788UcAb+a7GDduXKblRHSFnp4eGjdujKioKFhbW8uOo3F69OiBsLAwbN++Xa1T6YABA9CzZ88sh57ris2bN2PdunWoXr262gSlXl5eiI6OlphMPm0Y/cpCRzJ/f3+MHTs201T+48ePh7+/v+R0cnFOlOwpFAoMGjQIgwYNYn+Lt3h7e+P69etZvjHruu3bt2P37t349NNPVW2NGzfGokWLdH7o/f3797M85fv8+XOdn5ldG0a/so+OZLNnz8bx48dRsmRJ1K9fHw0aNICTkxOOHz+OOXPmyI4nVcacKJGRkTAyMsLff/+N27dvo3bt2plmS9ZV7G+hbtKkSfjhhx+wbds2xMbGIikpSe1HlxUtWhSWlpaZ2i0tLXX+CFjVqlWxfft21eWM4mbRokU6/4WzXbt26N+/Pw4cOIC0tDSkpaUhJCQEAwYMQLt27WTHyxnZ585IiOTkZPH777+LwYMHi0GDBolFixaJ5ORk2bGkMzMzE9euXRNCCGFlZSUiIyOFEG+GCru4uEhMJh/7W2Qt47FQKBRCqVSqfjIu67LffvtNNGjQQNy7d0/VFhsbKxo1aiQWLlwoMZl8x44dE+bm5qJXr17CyMhIDBgwQDRo0ECYmpqKs2fPyo4nVUpKimjbtq1QKBRCX19f6OvrCz09PdGtWzeRkpIiO16OcHi5ZIcPH0aNGjUyDWV8/fo1jh8/js8++0xSMvmKFy+OkJAQeHl5oXz58ggKCkKLFi0QHh6OmjVrqlbS1UVt27ZFWFgY5s6dm6m/hY+Pj872tzh06NB7t9euXbuAkmgePz8/XLt2DSkpKXB2dgYAxMTEwNDQMNM0Bbq47tW///6LX375BaGhoUhPT0elSpUwfPhweHt7y46mEa5evYqwsDAYGxvD29sbLi4usiPlGAsdybiYXPY4J0r2TE1NM/W3AIAjR46gSZMmeP78uaRkcsXExMDJySlTvwohBG7fvq36gNdF48ePz/G+Y8eOzcckVFgdO3YMVapUgaGhoewoucLOyJIJIbLs7Pbw4UOYmppKSKQ5Zs6cqTpqM27cODx79gzr1q2Dh4eHaup2XcX+Fllzc3PL8ovDo0eP4ObmptNfHFi8vF96ejquXbuGhIQE1eStGXT5yPrbmjZtirCwMLi7u8uOkissdCRp3bo1gDed3rp27apWIaelpSEiIgI1atSQFU+6tLQ03L59Gz4+PgAAExMTzJ8/X3IqzTFq1CgMHjwYK1euhIODAwAgLi4OQ4cOxejRoyWnkye7Lw7Pnj1TjWoketfJkyfx9ddf49atW5lWMlcoFDpdIL+tsJ4AYqEjSca3cSEEzM3NYWxsrNpmYGCA6tWro2fPnrLiScc5Ud5vwYIFuHbtGlxcXDL1t7h//z5+++031b660N9i8ODBAN58KI0ePVpt6ZS0tDScOnUKFStWlJROM6SlpWHWrFlYv359lvNSPXr0SFIy+Xr16oUqVapg+/btcHBw0Pkh5dqGhY4ky5YtAwC4urrihx9+0PnTVFnhnCjZCwwM5JvxW86fPw/gzReHf//9V22JEAMDA/j6+uKHH36QFU8jjB8/HosXL8bgwYMxevRojBw5Ejdv3sTmzZsxZswY2fGkunr1Kv766y94eHjIjqLRfvvttywnuNV07IysIe7fv4/Lly9DoVCgTJkysLW1lR1Juj179mD48OH4+eefUbly5UzFoIWFhaRkpKm6deuGOXPm8LmRhVKlSuHXX39Fs2bNYG5ujrCwMFXbyZMn8eeff8qOKE29evUwbNgwnZ84UVux0JEsOTkZffv25erlWVAq/zef5dtHLzL6YejyeXN3d3ecOXMm08ykT548QaVKlXD9+nVJyUhTmZqaIioqCs7OznBwcMD27dtVzxU/Pz8kJibKjligIiIiVP+Pjo7GqFGjMHToUHh7e0NfX19t34y+grpm7969OHr0KGrXro169erh8OHDCAoKQkpKCjp16oRu3brJjpgjPHUl2aBBg1Srl9esWRMAcPToUfTv3x9DhgzBggULJCeU58CBA7IjaKybN29mWeilpKTgzp07EhJphufPn2PKlCnYv39/lqNndLkALFmyJGJjY+Hs7AwPDw/s2bMHlSpVwpkzZwrdcOG8ULFiRSgUCrUOtt27d1f9P2Obrn6pWrVqFbp16wYfHx/MnDkTc+fOxaBBg9CmTRsIIdCrVy+Ym5ujTZs2sqN+EAsdyf7++2/89ddfqFOnjqotICAAxsbGaNu2rU4XOm5ubu+dE0UXbdmyRfX/3bt3qw0xT0tLw/79+3W6T1OPHj1w6NAhdOrUiZ1K39GqVSvs378f1apVw4ABA9C+fXssWbIEMTExGDRokOx4Be7GjRuyI2i0GTNmYMaMGejfvz/279+P5s2bY9KkSarnipeXF2bPnl0oCh2eupLMxMQEoaGh8PT0VGu/cOECPvnkE52d+A3gZIpZyTid9+43UQDQ19eHq6srZsyYgc8//1xGPOmsrKywfft21dFRyt7Jkydx/PhxeHh4oEWLFrLjSMUZ6jMzMzPDv//+q/riZGBggLNnz6pO412+fBk1a9bEgwcPZMbMER7RkYyrl2ePc6JklnEqxs3NDWfOnEGxYsUkJ9Is1tbWsLGxkR2jUKhevTqqV68uO4ZGqFu3bpZfqhITE1G3bl2d/FKlr6+vNgWBoaEhzMzMVJcNDAzw4sULGdFyjYWOZLNnz0bTpk1RsmRJ+Pr6QqFQICwsDEZGRti9e7fseFJwTpQPe/uw+8uXL3W28HvXzz//jDFjxmDFihU63ZE/O3/88QcWLlyIGzdu4MSJE3BxccHs2bPh5uaGwMBA2fGk4Qz1mXl4eODSpUsoW7YsAODu3bswNzdXbY+OjkbJkiVlxcsVFjqSeXt74+rVq1i1ahUuXboEIQTatWuHDh06qE0iqEs4J8qHpaenY9KkSVi4cCHi4+Nx5coVuLu7Y/To0XB1dcU333wjO6IUM2bMQHR0NOzt7eHq6ppp9IwuTJ6YnQULFmDMmDEYOHAgJk2apDpKYWVlhdmzZ+tkocMZ6rP3008/qU3W+u6UDWfPnkXbtm0LOtZ/wkJHotTUVJQtWxbbtm3T6VmQ35Ux2opzomRv4sSJWLFiBaZNm6b23PH29sasWbN0ttBp2bKl7Agaa+7cuVi0aBFatmyJKVOmqNqrVKmis18cOEN99lq1avXe7SNGjCigJB+PhY5E+vr6SElJ4ciQbGTMHk2ZrVy5Er///jvq16+PXr16qdp9fHxw6dIlicnk4sKV2btx4wb8/PwytRsaGursoAfOUP9h48ePR8eOHVGqVCnZUf4z5Yd3ofzUr18/TJ06Fa9fv5YdReM8f/4co0ePRo0aNeDh4QF3d3e1H1129+7dLKerT09PR2pqqoREmiU0NBSrVq3C6tWrVadCdZ2bmxvCwsIyte/cuRNeXl4FH0iDjB07lkVONv7++2+UKVMG1atXx7x583D//n3ZkXKNR3QkO3XqFPbv3489e/bA29s704tt48aNkpLJxzlRsle+fHkcOXIELi4uau0bNmzI8lu7rkhISEC7du1w8OBBWFlZQQihGjmzdu1anV5aZejQofj+++/x8uVLCCFw+vRprFmzBkFBQVi8eLHseFLFx8fjhx9+UE00+e7UDbo46ipDREQELly4gNWrV2PmzJkYPHgwGjRogI4dO6Jly5aFotM/59GR7ENTaOvy6RvOiZK9rVu3olOnTvjxxx8xYcIEjB8/HpcvX8bKlSuxbds2NGzYUHZEKb766itER0fjjz/+UM1NdfHiRXTp0gUeHh5Ys2aN5IRyLVq0CBMnTlRNuFmyZEmMHTtWZ/t0ZWjatCliYmLQt2/fLL9U6WJH7ewcO3YMf/75JzZs2ICXL18iKSlJdqQPYqFDGsvNzQ07duzINJkivbF7925MnjwZoaGhSE9PR6VKlTBmzBg0atRIdjRpLC0tsW/fPlStWlWt/fTp02jUqBGePHkiJ5gGePHiBYQQMDExwYMHD3D9+nUcO3YMXl5eaNy4sex4Upmbm+PIkSM6P21FToSFhWHVqlVYu3YtHj58WCjm0mEfHQ2RkJCAI0eO4OjRo0hISJAdRyNkzImSnJwsO4rGuX37Nho3boxDhw7h2bNnSE5OxtGjR9GoUSOcPHlSdjxp0tPTMw0pB950/H933StdExgYiJUrVwIAihQpghYtWmDmzJlo2bKlTi81AwBOTk6ZTlfR/9y4cQOTJk2Cl5cXqlSpgnPnzmHcuHGIi4uTHS1nBEmVmJgoOnbsKIoUKSIUCoVQKBSiSJEiokOHDuLJkyey40lVsWJFYW5uLszMzESFChWEn5+f2o8uK1u2rHjw4EGm9qNHjwpLS8uCD6QhWrRoIT777DNx9+5dVdudO3dE7dq1RcuWLSUmk69o0aIiMjJSCCHEokWLhI+Pj0hLSxPr168X5cqVk5xOrt27d4tGjRqJGzduyI6icapXry6USqXw9fUV06ZNE3fu3JEdKdfYGVmyHj16ICwsDNu2bYO/vz8UCgWOHz+OAQMGoGfPnli/fr3siNJwTpTs1apVC40aNcLBgwdVs5UePnwYzZs3x7hx4+SGk2jevHkIDAyEq6urakHYmJgYeHt7Y9WqVbLjSZWcnKx6ruzZswetW7eGUqlE9erVcevWLcnp5Prqq6+QnJyMUqVKwcTEJNNRwUePHklKJl/dunWxePFilC9fXnaU/4x9dCQzNTXF7t278emnn6q1HzlyBE2aNNHZ+S3o/YQQ+PLLL5GQkIA9e/bgxIkTaNGiBSZOnIgBAwbIjifd3r17VTONe3l5oUGDBrIjSefj44MePXqgVatWqFChAnbt2gV/f3+EhoaiWbNmhec0RD5Yvnz5e0d1dunSpQDTaK4+ffpgwoQJhW6NPRY6kjk7O2P79u3w9vZWa4+IiEBAQADu3LkjKZnmCA0NRVRUFBQKBby8vHR6+PTbUlNT0axZMzx//hwREREICgpC3759ZcciDfXXX3/h66+/RlpaGurXr489e/YAAIKCgnD48GHs3LlTckLSdBYWFggLCyt085ix0JHs999/x4YNG7By5Uo4ODgAAOLi4tClSxe0bt0a3333neSE8nBOFHURERGZ2p4+fYr27dujWbNm6N27t6rdx8enIKNpjP79+8PDwwP9+/dXa583bx6uXbuG2bNnywmmIeLi4hAbGwtfX18olW/Gopw+fRoWFhYoV66c5HTy1KlTB927d8eXX36ps2sM5oS5uTnCw8NZ6FDu+Pn54dq1a0hJSYGzszMAICYmBoaGhihdurTavrq2ICHnRFGnVCqhUCjURoe8fTnj/wqFQmcnOCtRogS2bNmCypUrq7WfO3cOLVq04BFSytKQIUOwevVqvHjxAm3btsU333yD6tWry46lcVjo0H8yfvz4HO+ra+v4cE4UdbnpMPrujMm6wsjICJGRkZmWx7h27RoqVKiAly9fSkpGmi4tLQ3btm3DsmXLsGPHDnh4eKB79+7o1KkT7O3tZcejj8BChzRWdpN4nT9/HrVr1y4UM3JSwapQoQJ69eqVqa/S3LlzsWDBAly8eFFSMipM7t+/j99++w2TJk1CWloaAgIC0L9/f9SrV092NCnS0tKwadMmVV/JcuXKoWXLlihSpHAM3C4cKXVEYe3Rnl/q1auHAQMGYM2aNXB0dATwZjHLQYMGoX79+pLTyRUUFAR7e3t0795drX3p0qW4f/8+hg8fLimZXIMHD0bfvn1x//591YfS/v37MWPGDJ3vn0M5c/r0aSxbtgxr1qyBnZ0dunbtitjYWDRv3hy9e/fGL7/8IjtigYqMjERgYCDi4uJQtmxZAMCVK1dga2uLLVu2ZBpIo5EKeuIeyp65ubmIjo6WHUNjxMTECD8/P6Gvry/c3d1FqVKlhL6+vqhUqZK4ffu27HhSubi4iGPHjmVqP3nypHB1dZWQSHPMnz9flChRQjUBp5ubm1ixYoXsWKTB4uPjxS+//CLKly8vDAwMxBdffCF27twp0tPTVfvs3btXmJqaSkwpR7Vq1UTz5s3Fo0ePVG2PHj0SLVq0ENWrV5eYLOd46kqDFNaOXvmNc6JkZmRkhKioKLi5uam1X79+HV5eXuyLgjenH4yNjWFmZiY7Cmk4AwMDlCpVCt27d0fXrl2zHNGZlJSEwMBAHDhwQEJCeYyNjXH27NlMEwZGRkaiatWqhWKtK566Io3XsGFDnV2NOztOTk44duxYpkLn2LFjqtN8um7JkiXo1auX7BhUCOzbtw+VK1eGqakpgDcd/zdt2gRPT0/VgqcWFhY6V+QAQNmyZREfH5+p0ElISMjU6V9jST6iRJStfv36iTlz5mRqnzt3rhgwYEDBB9IgU6ZMEUWLFhVLly4VN2/eFDdv3hRLliwRRYsWFZMnT5YdTyPwVDDlVMOGDcWCBQuEEEI8fvxY2NnZiZIlSwojIyMxf/58yenk2r59uyhfvrzYsGGDuH37trh9+7bYsGGD8Pb2Ftu3bxeJiYmqH03FQkcDXLt2TYwcOVK0b99exMfHCyGE2Llzp2oBPl3l6Ogozp49m6k9NDRUlChRQkIizZGeni6GDRsmjIyMhFKpFEqlUpiYmIjx48fLjqYxzMzMWOhQjnDB0+xl9HVTKBSq95qsLiuVStlRs8VTV5IdOnQITZs2Rc2aNXH48GFMnDgRdnZ2iIiIwOLFi/HXX3/JjijNw4cPYWlpmandwsICDx48kJBIcygUCkydOhWjR49GVFQUjI2NUbp0aRgaGsqORlTocMHT7GnD6ToWOpKNGDECEydOxODBg1UvNODNirFz5syRmEw+Dw8P7Nq1K9OcKDt37mSH7f9nZmYGBwcHKBQKFjnvuHjxIkqUKCE7BhUCHh4e2Lx5M1q1aoXdu3dj0KBBAN70Q7GwsJCcTq7atWvLjvDRWOhI9u+//+LPP//M1G5ra4uHDx9KSKQ5OCdK9tLT0zFx4kTMmDEDz549A/Bm1N6QIUMwcuRI1TpGuujJkyf466+/EB0djaFDh8LGxgbnzp2Dvb09Cx/K0pgxY/D111+r5ujy9/cH8OboDhcRfiM5ORkxMTF49eqVWnuhWFdP9rkzXVeiRAnVfChv9ynYuHGjcHd3lxlNI3BOlKyNGDFC2Nraivnz54vw8HARFhYmgoODha2trfjpp59kx5MmPDxc2NraCg8PD1GkSBHV62nUqFGiU6dOktORJouNjRXnzp0TaWlpqrZTp06JqKgoiankS0hIEM2aNVP1x3n3pzBgoSPZ0KFDxaeffipiY2OFubm5uHr1qjh69Khwd3cX48aNkx1PYyQkJIinT5/KjqExHBwcxD///JOpffPmzcLR0VFCIs1Qv359MXToUCGE+heHY8eOCRcXF4nJiAqnr7/+WtSoUUOcPn1amJqaij179og//vhDlC1bVmzbtk12vBzR3ePbGmLSpElwdnZGiRIl8OzZM3h5eeGzzz5DjRo1MGrUKNnxNMaSJUvw+vVr2TE0xqNHj1CuXLlM7eXKlcOjR48kJNIMZ86cwXfffZepvUSJEoiLi5OQiKhwCwkJwaxZs1C1alUolUq4uLigY8eOmDZtGoKCgmTHyxEWOpLp6+tj9erVuHLlCtavX49Vq1bh0qVL+OOPP6Cnpyc7nsaYPHmyTn+Av8vX1xfz5s3L1D5v3jz4+vpKSKQZjIyMslzs9fLly1nOdktE7/f8+XPY2dkBAGxsbHD//n0AgLe3N86dOyczWo6xM7KGKFWqFEqVKiU7hsYSXKlEzfTp0xEQEIB9+/bB398fCoUCx48fx+3bt7Fjxw7Z8aQJDAzEhAkTsH79egBvhuHHxMRgxIgR+OKLLySnIyp8ypYti8uXL8PV1RUVK1bEb7/9BldXVyxcuBAODg6y4+UI17qS7N3Vp9+1dOnSAkqi2bgO2P+kpqaiUaNGmDRpErZv3662DlifPn10egmIpKQkBAQE4MKFC3j69CkcHR0RFxcHf39/7NixQzXFPxHlzOrVq5GamoquXbvi/PnzaNy4MR4+fAgDAwMsX74cX331leyIH8RCR7JWrVqpXU5NTUVkZCSePHmCevXqYePGjZKSaZbbt2/D0dGRp/P+n62tLY4fP47SpUvLjqKRQkJCcO7cOaSnp6NSpUpcCJYojyQnJ+PSpUtwdnZGsWLFZMfJERY6Gig9PR19+vSBu7s7hg0bJjuOdK9evUJCQgLS09PV2p2dnSUlkm/IkCHQ19fHlClTZEeRzsbGBleuXEGxYsXQvXt3zJkzR23yTSL6765evVrov1Cx0NFQly9fRp06dRAbGys7ijRXr15F9+7dcfz4cbV2IQQUCgXS0tIkJZOvX79+WLlyJTw8PFClSpVMp2RmzpwpKVnBMzMzQ0REBNzd3aGnp4e4uDh2PCbKI0qlEg4ODqhduzZq166NOnXqoGzZsrJj5Qo7I2uo6OhonR9O3bVrVxQpUgTbtm1TLXNAb0RGRqJSpUoAgCtXrqht07XHyd/fHy1btkTlypUhhED//v1hbGyc5b7s80aUO7GxsQgJCcGhQ4cwa9Ys9O7dG/b29qqip1evXrIjfhCP6Eg2ePBgtctCCMTGxmL79u3o0qVLlkOIdYWpqSlCQ0OznC+GKEN8fDxmzZqF6OhobNy4EY0bN8523a9NmzYVcDoi7XLt2jVMnDgRq1evRnp6eqE4ss5CR7K6deuqXVYqlbC1tUW9evXQvXt3FCmiuwfdqlatilmzZuHTTz+VHYUKCTc3N5w9exZFixaVHYVIKzx79gxHjx7FwYMHcejQIYSFhcHT0xN16tRB7dq1ERgYKDviB7HQIY0VEhKCUaNGYfLkyfD29oa+vr7adl1fVZiIKL/p6+vDxsYGnTp1Qt26dfHpp5/C0tJSdqxcYaFDGitjBe53+5ywMzK9z/Pnz3Ho0KEsV1ru37+/pFREhVPLli1x9OhR6OnpoU6dOqofT09P2dFyjIWOBH5+fjnuMFpYptjOD4cOHXrv9tq1axdQEioszp8/j4CAACQnJ+P58+ewsbHBgwcPYGJiAjs7O1y/fl12RKJCKSIiAocOHcKhQ4dw5MgRKBQK1KlTB2vXrpUd7YN0twOIRC1btpQdoVBgIUO5NWjQIDRv3hwLFiyAlZUVTp48CX19fXTs2BEDBgyQHY+o0PLx8UFaWhpSU1ORkpKCXbt2FZoJbXlEhzRKREQEKlSoAKVSiYiIiPfu6+PjU0CpqLCwsrLCqVOnULZsWVhZWeHEiRPw9PTEqVOn0KVLF1y6dEl2RKJCZdasWTh48CCOHDmCp0+fomLFiqqh5Z999lmh6CvJIzoa4uzZs4iKioJCoYCnpycqV64sO5IUFStWRFxcHOzs7FCxYkUoFIosF/RkHx3Kir6+vuq0sL29PWJiYuDp6QlLS0vExMRITkdU+KxevRp16tRBz549C01h8y4WOpLduXMH7du3x7Fjx2BlZQUAePLkCWrUqIE1a9bAyclJbsACduPGDdWstjdu3JCchgobPz8/nD17FmXKlEHdunUxZswYPHjwAH/88Qe8vb1lxyMqdM6ePSs7wkfjqSvJGjVqhKSkJKxYsUI1rfbly5fRvXt3mJqaYs+ePZITEhUeZ8+exdOnT1G3bl3cv38fXbp0wdGjR1G6dGksWbIEFStWlB2RqFDZtWsXzMzMVPOZBQcHY9GiRfDy8kJwcDCsra0lJ/wwFjqSGRsb4/jx4/Dz81NrP3fuHGrWrIkXL15ISibHli1bcrxvixYt8jEJFUYvXryAEAImJiYAgJs3b2LTpk3w8vJC48aNJacjKny8vb0xdepUBAQE4N9//0XVqlUxePBghISEwNPTE8uWLZMd8YN46koyZ2dnpKamZmp//fo1SpQoISGRXDkdkcY+OpSVwMBAtG7dGr169cKTJ09QvXp16Ovr48GDB5g5cyZ69+4tOyJRoXLjxg14eXkBAP7++298/vnnmDx5Ms6dO4eAgADJ6XJGKTuArps2bRr69euHs2fPqjrdnj17FgMGDMAvv/wiOV3BS09Pz9EPi5z/a+/Og6K60jaAP7cDyiKbCIqOsnVEorgQFwS3iJOo0VFMdEaNDhGXSTLijEoZyxCRSXCJRqJT5YIxRqbG6DAxYwyOKIKIEhVBBSU4KogL0I6AbUAU6Pv94Zf+0oJK9JNzb/fzq+oq7rnd8HTzR791znvPpabk5ORg8ODBAICkpCS0b98eV65cwfbt27Fu3TrB6YjUp1WrVqipqQEAHDx4EK+++ioAoG3bttDr9SKjNRtndARwcXEx2TCwuroaAwYMMN7Xqr6+HlZWVpgxYwb33PlftbW1sLGxER2DFK6mpgYODg4AgJSUFEyYMAEajQZBQUG4cuWK4HRE6jNo0CDMnz8fISEhOHHiBHbu3AkAuHDhAn71q18JTtc8LHQEiI+PFx1BFRoaGhAXF4eNGzeivLwcFy5cgI+PD6Kjo+Hl5YWIiAjREUlhtFotvvnmG4SFhWH//v3485//DADQ6XSqvCyWSLS//vWvePfdd5GUlIQNGzYYWyr27duHkSNHCk7XPGxGJsWKjY3Fl19+idjYWMyaNQv5+fnw8fHBrl27sHbtWmRlZYmOSAqTlJSEKVOmoKGhAaGhocarFpcvX46MjAzs27dPcEIiamksdBTk9ddfx5YtW+Dh4SE6iiJotVps2rQJoaGhcHBwwJkzZ+Dj44MffvgBAwcORGVlpeiIpEBlZWUoLS1Fr169jDeGPXHiBBwdHdGtWzfB6YiUT6/XG2dAn9SHo4aZUi5dKUhGRobFXU7+ONevX4dWq200bjAYmrxSjQgAOnTogA4dOpiM9e/fX1AaIvVxcXFBaWkp3N3d4ezs3ORNqGVZVs3Vryx0SLG6d++OI0eOwNPT02T8H//4R6N9h4iI6P/HoUOH0LZtWwBAWlqa4DTPjoWOgnh6esLa2lp0DMVYunQppk2bhuvXr8NgMODrr79GYWEhtm/fjr1794qOR0RkloYOHdrkz2rFHh1StP379yMuLg6nTp2CwWBAYGAgPvzwQ+NeDkRE9HxVVVXhxIkT0Ol0MBgMJuemT58uKFXzsdAR4OzZs81+bs+ePZ9jEiIiokf79ttvMXXqVFRXV8PBwcGkX0eSJFRUVAhM1zwsdATQaDSQJAmP+uh/OqeWRq/nLTs7GwUFBZAkCf7+/nj55ZdFRyIisghdu3bF6NGjERcXZ7yHnNqw0BHgl+zQ+nAjriW5du0aJk+ejKNHj8LZ2RnAgynU4OBg7NixA507dxYbkIjIzNnb2yMvLw8+Pj6iozw1NiMLYMnFyy8xY8YM1NXVoaCgAH5+fgCAwsJCzJgxAxEREcbN4IiI6Pl47bXXkJ2drepChzM6CnH+/HmUlJTg/v37JuO/+c1vBCUSz9bWFseOHWt0KXlOTg5CQkK45xAR0XP2+eefIzY2Fm+//TYCAgIaXRmshu8ozugIdvnyZYSFhSEvL8+kb+enhi9L7tHp0qVLkxsD1tfXG++3QkREz8+sWbMAPLglz8PU0keqER3A0s2bNw/e3t4oLy+HnZ0dzp07h4yMDPTt2xfp6emi4wm1atUqzJ07F9nZ2cYCMDs7G/PmzcPq1asFpyMiMn8Gg+GRDzUUOQCXroRr164dDh06hJ49e8LJyQknTpyAn58fDh06hAULFiA3N1d0RGFcXFxQU1OD+vp6WFk9mHz86Wd7e3uT56rhEkciIrVpaibnJ5IkITo6ugXTPB0uXQnW0NCANm3aAHhQ9Ny4cQN+fn7w9PREYWGh4HRixcfHi45ARGTRdu/ebXJcV1eHoqIiWFlZwdfXl4UOPVmPHj1w9uxZ+Pj4YMCAAVi1ahVatWqFzZs3q7rL/f/D73//e9ERiIgsWlOrCnq9HuHh4QgLCxOQ6Jfj0pVg+/fvR3V1NSZMmIDLly9jzJgx+OGHH+Dq6oqdO3di+PDhoiMK1dDQgN27d5tsGDhu3DjjUhYREbW8/Px8jBkzBsXFxaKjPBELHQWqqKiAi4uLyVbblig/Px/jxo1DWVmZcR+dCxcuwM3NDXv27EFAQIDghERElikzMxNjx45FZWWl6ChPxEKHFCsoKAju7u748ssv4eLiAgCorKxEeHg4dDodsrKyBCckIjJv69atMzmWZRmlpaVITEzEkCFDsGPHDkHJmo+FjmCvvPLKY2duDh061IJplMXW1hbZ2dno3r27yXh+fj769evHDQOJiJ4zb29vk2ONRgM3NzcMHz4cixcvhoODg6BkzcdGB8F69+5tclxXV4fTp08jPz/f4ptx/fz8UF5e3qjQ0el00Gq1glIREVmOoqIi0RGeGQsdwdauXdvkeExMDH788ccWTqMscXFxiIyMRExMDIKCggAA33//PWJjY7Fy5Uro9Xrjcx0dHUXFJCIiBePSlUJdvHgR/fv3t+iN8DSa/9u4+6flvYdvkSHLsmq2ISciopbHGR2FysrKgo2NjegYQqWlpYmOQEREKsdCR7AJEyaYHP/U0Z6dna2KHSefp6FDh4qOQEREKsebegrm6OgIJycn46Nt27YYNmwYkpOTsXTpUtHxhDty5AjeeustBAcH4/r16wCAxMREZGZmCk5GRERqwBkdwbZt2yY6gmL985//xLRp0zB16lTk5OTg3r17AIA7d+4gLi4OycnJghMSEZHScUZHMB8fH9y6davReFVVlcXf6+qjjz7Cxo0bkZCQAGtra+N4cHAwcnJyBCYjIiK1YKEjWHFxcZNXDN27d8+4VGOpCgsLMWTIkEbjjo6OqKqqavlARESkOly6EmTPnj3Gn/fv3w8nJyfjcUNDA1JTU+Hl5SUgmXJ4eHjg4sWLjT6HzMxMi5/tIiKi5mGhI8j48eMBPNgP5uEdkK2treHl5YU1a9YISKYcc+bMwbx587B161ZIkoQbN24gKysLCxcuxIcffig6HhERqQA3DBTM29sbJ0+eRLt27URHUaQlS5Zg7dq1qK2tBQC0bt0aCxcuxF/+8hfByYiISA1Y6JDi1dTU4Pz58zAYDHjppZfQpk0b0ZGIiEglWOgIFhsb+9jzlrxEs337dvTr1w/+/v4m47W1tdi1axemT58uKBkREakFCx3B+vTpY3JcV1eHoqIiWFlZwdfX16Ivo9ZoNLC3t8e2bdvwxhtvGMfLy8vRsWNH3t+KiIieiM3IguXm5jYa0+v1CA8PR1hYmIBEyrJs2TJMmzYNeXl5iImJER2HiIhUhjM6CpWfn48xY8aguLhYdBRhNBoNysrKcPnyZYSFhSEkJASJiYnQ6/Wc0SEiombhhoEKVVVVhdu3b4uOIZQkSQCAoKAgHD9+HBcvXkRwcLBFF39ERPTLcOlKsHXr1pkc/3T38sTERIwcOVJQKmX4+WRjly5dcOzYMUydOhW//vWvBaYiIiI14dKVYN7e3ibHGo0Gbm5uGD58OBYvXgwHBwdBycRbtmwZoqKiYGdnZzK+dOlSZGRkIC0tTVAyIiJSCxY6REREZLa4dEWKduHCBaSnp0On08FgMBjHJUlCdHS0wGRERKQGnNERrLa2FuvXr0daWlqjL3MAFr2PTkJCAt555x20a9cOHTp0MDYnAw8KHUv+bIiIqHlY6Ag2ZcoUHDhwAG+++Sbat29v8mUOPOhHsVSenp549913sWjRItFRiIhIpVjoCObk5ITk5GSEhISIjqI4jo6OOH36NHx8fERHISIileI+OoJ16tTJoq+sepyJEyciJSVFdAwiIlIxNiMLtmbNGixatAgbN26Ep6en6DiKotVqER0dje+//x4BAQGwtrY2OR8ZGSkoGRERqQWXrgS7efMmJk2ahIyMDNjZ2TX6Mq+oqBCUTLyH9xj6OUmScPny5RZMQ0REasQZHcEmT56M69evIy4urslmZEtWVFQkOgIREakcZ3QEs7OzQ1ZWFnr16iU6imLdv38fRUVF8PX1hZUVa3MiImo+NiML1q1bN9y9e1d0DEWqqalBREQE7Ozs0L17d5SUlAB40JuzYsUKwemIiEgNWOgItmLFCixYsADp6em4desW9Hq9ycOSLV68GGfOnEF6ejpsbGyM4yNGjMDOnTsFJiMiIrXg0pVgGs2DWvPh3hxZliFJEhoaGkTEUgRPT0/s3LkTQUFBcHBwwJkzZ+Dj44OLFy8iMDDQ4gtBIiJ6MjY8CMY7cD/azZs34e7u3mi8urqaTdtERNQsLHQEGzp0qOgIitWvXz989913mDt3LoD/m/VKSEjAwIEDRUYjIiKVYKGjIAEBAUhOTkbnzp1FR1GE5cuXY+TIkTh//jzq6+vx2Wef4dy5c8jKysLhw4dFxyMiIhVgM7KCFBcXo66uTnQMxQgODsbRo0dRU1MDX19fpKSkoH379sjKysLLL78sOh4REakAm5EV5OcNt0RERPTsuHSlIIMHD4atra3oGIrS0NCA3bt3o6CgAJIkwd/fH+PGjePGgURE1Cyc0SHFys/Px7hx41BWVgY/Pz8AwIULF+Dm5oY9e/YgICBAcEIiIlI69ugoQGJiIkJCQtCxY0dcuXIFABAfH49//etfgpOJNXPmTHTv3h3Xrl1DTk4OcnJycPXqVfTs2ROzZ88WHY+IiFSAhY5gGzZswPz58zF69GhUVlYaNwh0dnZGfHy82HCCnTlzBsuXL4eLi4txzMXFBR9//DFOnz4tLhgREakGCx3B1q9fj4SEBCxZssSk76Rv377Iy8sTmEw8Pz8/lJeXNxrX6XTQarUCEhERkdqw0BGsqKgIffr0aTTeunVrVFdXC0ikHHFxcYiMjERSUhKuXbuGa9euISkpCX/605+wcuVK3hOMiIieiJeuCObt7Y3Tp0/D09PTZHzfvn146aWXBKVShjFjxgAAJk2aZNwV+afe+bFjxxqPLf2eYERE9GgsdASLiorCe++9h9raWsiyjBMnTmDHjh1Yvnw5tmzZIjqeULwPGBERPSteXq4ACQkJ+Oijj3D16lUAQKdOnRATE4OIiAjBycSrqqrC559/brKPTkREBJycnERHIyIiFWChoyD//e9/YTAYmrxjtyXKzs7GyJEjYWNjg/79+0OWZWRnZ+Pu3btISUlBYGCg6IhERKRwLHRIsQYPHgytVouEhATjFWn19fWYOXMmLl++jIyMDMEJiYhI6VjoCFZeXo6FCxciNTUVOp0OD/87LLnJ1tbWFrm5uejWrZvJ+Pnz59G3b1/U1NQISkZERGrBZmTBwsPDUVJSgujoaHh4eBivLiLA0dERJSUljQqdq1evwsHBQVAqIiJSExY6gmVmZuLIkSPo3bu36CiK89vf/hYRERFYvXo1goODIUkSMjMzERUVhcmTJ4uOR0REKsBCR7DOnTs3Wq6iB1avXg1JkjB9+nTU19cDAKytrfHOO+9gxYoVgtMREZEasEdHsJSUFKxZswabNm2Cl5eX6DiKVFNTg0uXLkGWZWi1WtjZ2YmOREREKsFCRzAXFxfU1NSgvr4ednZ2sLa2NjlfUVEhKBkREZH6celKMEu/QzkREdHzxBkdIiIiMluc0RGspKTksee7dOnSQkmIiIjMD2d0BNNoNI/dO8eSNwwkIiJ6VpzRESw3N9fkuK6uDrm5ufj000/x8ccfC0pFRERkHjijo1DfffcdPvnkE6Snp4uOQkREpFoa0QGoaV27dsXJkydFxyAiIlI1Ll0JptfrTY5lWUZpaSliYmLw4osvCkpFRERkHljoCObs7NyoGVmWZXTu3BlfffWVoFRERETmgT06gh0+fNjkWKPRwM3NDVqtFlZWrEOJiIieBb9JBZMkCcHBwY2Kmvr6emRkZGDIkCGCkhEREakfZ3QEe+GFF1BaWgp3d3eT8Vu3bsHd3Z376BARET0DXnUlmCzLTW4YeOvWLdjb2wtIREREZD64dCXIhAkTADxYugoPD0fr1q2N5xoaGnD27FkEBweLikdERGQWWOgI4uTkBODBjI6DgwNsbW2N51q1aoWgoCDMmjVLVDwiIiKzwB4dwZYtW4aFCxdymYqIiOg5YKGjEDqdDoWFhZAkCV27dm3UnExERES/HJuRBdPr9Zg2bRo6deqEoUOHYsiQIejUqRPeeust3L59W3Q8IiIiVWOhI9jMmTNx/Phx7N27F1VVVbh9+zb27t2L7Oxs9ugQERE9Iy5dCWZvb4/9+/dj0KBBJuNHjhzByJEjUV1dLSgZERGR+nFGRzBXV1fjFVg/5+TkBBcXFwGJiIiIzAcLHcE++OADzJ8/H6WlpcaxsrIyREVFITo6WmAyIiIi9ePSlWB9+vTBxYsXce/ePXTp0gUAUFJSgtatW+PFF180eW5OTo6IiERERKrFDQMFGz9+vOgIREREZoszOkRERGS22KOjAFVVVdiyZQsWL16MiooKAA+Wqa5fvy44GRERkbpxRkews2fPYsSIEXByckJxcTEKCwvh4+OD6OhoXLlyBdu3bxcdkYiISLU4oyPY/PnzER4ejv/85z+wsbExjo8aNQoZGRkCkxEREakfCx3BTp48iTlz5jQa79SpE8rKygQkIiIiMh8sdASzsbGBXq9vNF5YWAg3NzcBiYiIiMwHCx3Bxo0bh9jYWNTV1QEAJElCSUkJ3n//fbzxxhuC0xEREakbm5EF0+v1GD16NM6dO4c7d+6gY8eOKCsrQ1BQEPbt2wd7e3vREYmIiFSLhY5CpKWl4dSpUzAYDAgMDMSIESNERyIiIlI9FjoKkJqaitTUVOh0OhgMBpNzW7duFZSKiIhI/XgLCMGWLVuG2NhY9O3bFx4eHpAkSXQkIiIis8EZHcE8PDywatUqTJs2TXQUIiIis8OrrgS7f/8+goODRccgIiIySyx0BJs5cyb+/ve/i45BRERkltijI1htbS02b96MgwcPomfPnrC2tjY5/+mnnwpKRkREpH7s0RHslVdeeeQ5SZJw6NChFkxDRERkXljoEBERkdlijw4RERGZLRY6REREZLZY6BAREZHZYqFDRPQE27Ztg7Ozs+gYRPQU2IxMRPQEd+/exZ07d+Du7i46ChH9Qix0iIgeo66urtH+VkSkHly6IqIWlZSUhICAANja2sLV1RUjRoxAdXU1AGDr1q3o3r07WrduDQ8PD/zxj380vu727duYPXs23N3d4ejoiOHDh+PMmTPG8zExMejduzcSExPh5eUFJycn/O53v8OdO3eMz/n3v/+NQYMGwdnZGa6urhgzZgwuXbpkPF9cXAxJkrBr1y4MGzYMNjY2+Nvf/tbk0tWGDRvg6+uLVq1awc/PD4mJic/pEyOiZ8FCh4haTGlpKSZPnowZM2agoKAA6enpmDBhAmRZxoYNG/Dee+9h9uzZyMvLw549e6DVagEAsizj9ddfR1lZGZKTk3Hq1CkEBgYiNDQUFRUVxt9/6dIlfPPNN9i7dy/27t2Lw4cPY8WKFcbz1dXVmD9/Pk6ePInU1FRoNBqEhYXBYDCY5Fy0aBEiIyNRUFCA1157rdH72L17N+bNm4cFCxYgPz8fc+bMwdtvv420tLTn9MkR0VOTiYhayKlTp2QAcnFxcaNzHTt2lJcsWdLk61JTU2VHR0e5trbWZNzX11fetGmTLMuyvHTpUtnOzk7W6/XG81FRUfKAAQMemUen08kA5Ly8PFmWZbmoqEgGIMfHx5s874svvpCdnJyMx8HBwfKsWbNMnjNx4kR59OjRj/xbRCQGZ3SIqMX06tULoaGhCAgIwMSJE5GQkIDKykrodDrcuHEDoaGhTb7u1KlT+PHHH+Hq6oo2bdoYH0VFRSZLT15eXnBwcDAee3h4QKfTGY8vXbqEKVOmwMfHB46OjvD29gYAlJSUmPy9vn37PvZ9FBQUICQkxGQsJCQEBQUFzfsgiKjF8KaeRNRiXnjhBRw4cADHjh1DSkoK1q9fjyVLliA1NfWxrzMYDPDw8EB6enqjcz/vnXm4aViSJJNlqbFjx6Jz585ISEhAx44dYTAY0KNHD9y/f9/kdfb29k98L5IkmRzLstxojIjE44wOEbUoSZIQEhKCZcuWITc3F61atcKBAwfg5eX1yIInMDAQZWVlsLKyglarNXm0a9euWX/31q1bKCgowAcffIDQ0FD4+/ujsrLyqd6Dv78/MjMzTcaOHTsGf3//p/p9RPT8cEaHiFrM8ePHkZqaildffRXu7u44fvw4bt68CX9/f8TExOAPf/gD3N3dMWrUKNy5cwdHjx7F3LlzMWLECAwcOBDjx4/HypUr4efnhxs3biA5ORnjx49/4lITALi4uMDV1RWbN2+Gh4cHSkpK8P777z/V+4iKisKkSZOMDdHffvstvv76axw8ePCpfh8RPT8sdIioxTg6OiIjIwPx8fHQ6/Xw9PTEmjVrMGrUKABAbW0t1q5di4ULF6Jdu3Z48803ATyYBUpOTsaSJUswY8YM3Lx5Ex06dMCQIUPQvn37Zv1tjUaDr776CpGRkejRowf8/Pywbt06DBs27Be/j/Hjx+Ozzz7DJ598gsjISHh7e+OLL754qt9FRM8XNwwkIiIis8UeHSIiIjJbLHSIiIjIbLHQISIiIrPFQoeIiIjMFgsdIiIiMlssdIiIiMhssdAhIiIis8VCh4iIiMwWCx0iIiIyWyx0iIiIyGyx0CEiIiKzxUKHiIiIzNb/ADwHfsEqdDrbAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "ax = sns.boxplot(x=\"scenario\", y=\"failureCount\", data=js_snapshot_df)\n", - "ax.set(yscale=\"log\")\n", - "ax.tick_params(axis='x', rotation=90)\n", - "_ = ax.set_title(\"Logarithmic box plots for running time of JS scenarios\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/crates/tools/python/ejs-baseline.ipynb b/crates/tools/python/ejs-baseline.ipynb deleted file mode 100644 index 94a1453438..0000000000 --- a/crates/tools/python/ejs-baseline.ipynb +++ /dev/null @@ -1,364 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "ba2c800a", - "metadata": {}, - "outputs": [], - "source": [ - "# Load scenarios\n", - "\n", - "%matplotlib inline\n", - "\n", - "from collections import Counter, defaultdict\n", - "import glob\n", - "import gzip\n", - "import json\n", - "import math\n", - "from operator import itemgetter\n", - "import os\n", - "from pathlib import Path\n", - "\n", - "from IPython.display import display, Markdown\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "import nltk\n", - "import numpy as np\n", - "import pandas as pd\n", - "from pygtrie import StringTrie\n", - "import seaborn as sns\n", - "\n", - "EDR_CALIBRATION_RESULTS = Path(\"./js-benchmark-variance\")\n", - "EJS_BENCHMARK = Path(\"./ejs-benchmark\")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "8ae49305", - "metadata": {}, - "outputs": [], - "source": [ - "data = defaultdict(list)\n", - "\n", - "def load_results(dir_path, engine):\n", - " for filepath in glob.iglob(os.path.join(dir_path, \"*.json\")):\n", - " total = 0\n", - " failure_count = 0\n", - " with open(filepath) as f:\n", - " measurements = json.load(f)\n", - " for key, value in measurements.items():\n", - " data[\"engine\"].append(engine)\n", - " data[\"scenario\"].append(key)\n", - " data[\"timeS\"].append(value[\"timeMs\"] / 1000)\n", - " data[\"failureCount\"].append(len(value[\"failures\"]))\n", - " total += value[\"timeMs\"] / 1000\n", - " failure_count += len(value[\"failures\"])\n", - " data[\"engine\"].append(engine)\n", - " data[\"scenario\"].append(\"total\")\n", - " data[\"timeS\"].append(total)\n", - " data[\"failureCount\"].append(failure_count)\n", - "\n", - "load_results(EDR_CALIBRATION_RESULTS, \"edr\")\n", - "load_results(EJS_BENCHMARK, \"ejs\")\n", - "\n", - "df = pd.DataFrame(data)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "44185934", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
timeSfailureCount
scenarioengine
neptune-mutual-blue-protocol_8db6480edr844.932633566.0
ejs405.027118553.0
openzeppelin-contracts_0a5fba7aedr116.8626251642.0
ejs71.8944572185.0
rocketpool_6a9dbfd8edr74.486140390.0
ejs153.5910121141.0
safe-contracts_914d0f8edr3.449961193.0
ejs6.933748366.0
seaport_4f4e7c20edr18.217772305.0
ejs33.0465011584.0
synthetix_9a3a109fedr2609.16088610264.0
ejs383.95911021317.0
totaledr3707.23311213532.0
ejs1073.99227427405.0
uniswap-v3-core_d8b1c63edr44.042083172.0
ejs17.686641259.0
\n", - "
" - ], - "text/plain": [ - " timeS failureCount\n", - "scenario engine \n", - "neptune-mutual-blue-protocol_8db6480 edr 844.932633 566.0\n", - " ejs 405.027118 553.0\n", - "openzeppelin-contracts_0a5fba7a edr 116.862625 1642.0\n", - " ejs 71.894457 2185.0\n", - "rocketpool_6a9dbfd8 edr 74.486140 390.0\n", - " ejs 153.591012 1141.0\n", - "safe-contracts_914d0f8 edr 3.449961 193.0\n", - " ejs 6.933748 366.0\n", - "seaport_4f4e7c20 edr 18.217772 305.0\n", - " ejs 33.046501 1584.0\n", - "synthetix_9a3a109f edr 2609.160886 10264.0\n", - " ejs 383.959110 21317.0\n", - "total edr 3707.233112 13532.0\n", - " ejs 1073.992274 27405.0\n", - "uniswap-v3-core_d8b1c63 edr 44.042083 172.0\n", - " ejs 17.686641 259.0" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df.groupby([\"scenario\", \"engine\"]).median()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "a9f8362a", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6UAAATDCAYAAACOK5OPAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdeVhV5f7//9d2YIMKKDKJoGJh4YyaimlOiROSWlnpMedKrY6CQ9YpxTyQfnM4TVpWYppZaWlqmUNqg5pT2DHNY4mmCY4IJgiK6/eHP/anzUZFZLkFno/r2tflute91v1ey8W+eXOvdS+LYRiGAAAAAABwgjLODgAAAAAAUHqRlAIAAAAAnIakFAAAAADgNCSlAAAAAACnISkFAAAAADgNSSkAAAAAwGlISgEAAAAATkNSCgAAAABwGpJSAAAAAIDTkJQCt0hGRoYmTZqkjRs3OjsU0x07dkyTJk1SYmKiw7pJkybJYrHc+qAAoBQoTX2NJP30009q27atPD09ZbFYNGvWrBva3mKxaNKkSbbljRs3ymKxlJrzB9wuyjk7AKC0yMjIUGxsrCSpXbt2zg3GZMeOHVNsbKxq1aqlxo0b260bOnSounTp4pzAAKCEK019jSQNHjxY58+f1+LFi1WlShXVqlXrhrbfsmWLAgMDzQkOQIGRlAK4pQIDA/kFAABQJPbs2aNhw4apa9euhdq+ZcuWRRyRvZycHF26dElWq9XUdoDijtt3Uark3jr6yy+/6LHHHpOnp6f8/Pw0ePBgpaWl2dU1DENvvfWWGjduLDc3N1WpUkUPPfSQDh48aFevXbt2ql+/vr777ju1bNlSbm5uql69ul588UXl5ORIkg4dOiQfHx9JUmxsrCwWiywWiwYOHChJGjhwYL5/3c3vVleLxaKnn35aCxYsUGhoqCpUqKBGjRpp5cqVDtsfOHBAffv2la+vr6xWq0JDQ/Xmm28W9vQVyMaNG3XPPfdIkgYNGmQ71tzbo/I7plq1aikyMlIrV65UWFiY3NzcFBoaajumhIQEhYaGqmLFimrevLl27Njh0O6OHTsUFRUlLy8vubq6KiwsTJ988ompxwoA+aGvMb+vSUhIkMVi0aVLlzR79mzbsUrSyZMnNWLECNWtW1eVKlWSr6+vOnTooO+++85hP3lv381Pu3bt8h11zns+Dx06JIvFomnTpmnKlCkKDg6W1WrVhg0bJBWsn8rIyNCYMWMUHBwsV1dXeXl5qVmzZvroo49u7AQBxQxJKUqlBx98UHXq1NHSpUv13HPPadGiRRo9erRdnSeffFKjRo3S/fffr2XLlumtt97SL7/8olatWun48eN2dVNSUvToo4+qX79+Wr58uR566CFNmTJF//znPyVJ1apV0+rVqyVJQ4YM0ZYtW7Rlyxa9+OKLhYp/1apVeuONNzR58mQtXbpUXl5e6tWrl90vMXv37tU999yjPXv2aPr06Vq5cqW6d++uZ5991nZrlxmaNGmiefPmSZL+9a9/2Y516NCh19xu9+7dmjBhgsaPH6/PPvtMnp6e6t27tyZOnKh3331XcXFx+vDDD5WWlqbIyEhlZmbatt2wYYPuvfdenT17VnPmzNHy5cvVuHFjPfLII0pISDDtWAHgWuhrzOtrunfvri1btkiSHnroIduxStKZM2ckSRMnTtSqVas0b9481a5dW+3atbslz4q+9tpr+uabb/Tqq6/qq6++0t13313gfio6OlqzZ8/Ws88+q9WrV2vBggV6+OGHdfr0adPjBpzKAEqRiRMnGpKMadOm2ZWPGDHCcHV1NS5fvmwYhmFs2bLFkGRMnz7drt6RI0cMNzc3Y9y4cbaytm3bGpKM5cuX29UdNmyYUaZMGePw4cOGYRjGyZMnDUnGxIkTHeIaMGCAUbNmzavG+3eSDD8/PyM9Pd1WlpKSYpQpU8aIj4+3lXXu3NkIDAw00tLS7LZ/+umnDVdXV+PMmTMO7RWV7du3G5KMefPmOazL75hq1qxpuLm5GUePHrWVJSYmGpKMatWqGefPn7eVL1u2zJBkfPHFF7ayu+++2wgLCzMuXrxot9/IyEijWrVqRk5OThEdGQBcH33NrelrcuMcOXLkNetcunTJuHjxotGxY0ejV69eDtv//Vxt2LDBkGRs2LDBVta2bVujbdu2DvvNez6TkpIMScYdd9xhZGdn29UtaD9Vv359o2fPntc8HqAkYqQUpVJUVJTdcsOGDXXhwgWdOHFCkrRy5UpZLBb94x//0KVLl2wff39/NWrUyOEvre7u7g777Nu3ry5fvqxvv/22yONv37693N3dbct+fn7y9fXV4cOHJUkXLlzQ+vXr1atXL1WoUMHuGLp166YLFy5o69atRR7XzWjcuLGqV69uWw4NDZV05bapChUqOJTnHutvv/2mX3/9Vf369ZMkh2NNTk7W/v37b9VhAIANfY3z+po5c+aoSZMmcnV1Vbly5VS+fHmtX79e+/btM73tqKgolS9f3rZ8I/1U8+bN9dVXX+m5557Txo0b7e4KAkoyklKUSlWrVrVbzp2AIPfL//jx4zIMQ35+fipfvrzdZ+vWrTp16pTd9n5+fg5t+Pv7S5Ipt9zkjV+6cgy58Z8+fVqXLl3S66+/7hB/t27dJMnhGJzNy8vLbtnFxeWa5RcuXJAk2+1tY8aMcTjWESNGSLr9jhVA6UBf45zv3xkzZmj48OFq0aKFli5dqq1bt2r79u3q0qXLLUnyqlWrZrd8I/3Ua6+9pvHjx2vZsmVq3769vLy81LNnTx04cMD0uAFnYvZdIB/e3t6yWCz67rvv8p0xL29Z3ud+pCvP/kj5d+p5ubq6Kisry6G8sJ15lSpVVLZsWfXv318jR47Mt05wcHCh9n278fb2liRNmDBBvXv3zrfOXXfddStDAoACoa8xx8KFC9WuXTvNnj3brvzcuXOF2p+rq6vDBFXS1c9b3kmjbqSfqlixomJjYxUbG6vjx4/bRk179OihX3/9tVDxA8UBSSmQj8jISL3yyiv6888/1adPn+vWP3funL744gu726oWLVqkMmXK6L777pPk+Bfyv6tVq5ZOnDih48eP2/4Snp2dra+//rpQ8VeoUEHt27fXTz/9pIYNG9pGF2+Vax1rUbvrrrsUEhKi3bt3Ky4uzvT2AKCo0NeYw2KxOCT0P//8s7Zs2aKgoKAb3l+tWrX06aefKisry7bf06dPa/PmzfLw8Lju9oXtp/z8/DRw4EDt3r1bs2bNUkZGht3jLEBJQlIK5OPee+/VE088oUGDBmnHjh267777VLFiRSUnJ+v7779XgwYNNHz4cFv9qlWravjw4frjjz9Up04dffnll5o7d66GDx+uGjVqSLryLFDNmjW1fPlydezYUV5eXvL29latWrX0yCOP6KWXXtKjjz6qsWPH6sKFC3rttdds0/wXxn/+8x+1bt1abdq00fDhw1WrVi2dO3dOv/32m1asWKFvvvnGVrdcuXJq27at1q9fbyvr2LGjNm3apEuXLtnKJk+erMmTJ2v9+vVq27btVdu+44475Obmpg8//FChoaGqVKmSAgICFBAQUOjjuZa3335bXbt2VefOnTVw4EBVr15dZ86c0b59+7Rr1y59+umnprQLADeDvubm+pqriYyM1Msvv6yJEyeqbdu22r9/vyZPnqzg4GC7dgqqf//+evvtt/WPf/xDw4YN0+nTpzVt2rQCJaS5CtpPtWjRQpGRkWrYsKGqVKmiffv2acGCBQoPDychRYnGM6XAVbz99tt644039O233+rRRx9V9+7d9dJLL+n8+fNq3ry5XV1/f38tWrRI8+fPV1RUlD755BM9//zzeu211+zqvffee6pQoYKioqJ0zz332N6NFhwcrOXLl+vs2bN66KGHNHbsWD388MN6/PHHCx1/3bp1tWvXLtWvX1//+te/FBERoSFDhmjJkiXq2LGjXd2cnByHX0ryK7t8+bJycnJkGMY1265QoYLef/99nT59WhEREbrnnnv0zjvvFPpYrqd9+/batm2bKleubHu1wvDhw7Vu3Trdf//9prULADeLvqbwfc3VvPDCC4qJidF7772n7t27691339WcOXPUunXrQu3v3nvv1fz58/XLL7/ogQce0JQpUzRhwoR83116NQXtpzp06KAvvvhCgwYNUkREhKZNm6bHH39cK1asKFTsQHFhMQr7Ew9A0pXZYU+dOqU9e/Y4OxQAQAlFXwOgJGOkFAAAAADgNCSlAAAAAACn4fZdAAAAAIDTMFIKAAAAAHAaklIAAAAAgNOQlAIAAAAAnKacswMoLi5fvqxjx47J3d1dFovF2eEAQKlhGIbOnTungIAAlSnD31L/jr4JAJyDvqlokZQW0LFjxxQUFOTsMACg1Dpy5IgCAwOdHcZthb4JAJyLvqlokJQWkLu7u6QrF56Hh4eTowGA0iM9PV1BQUG272H8H/omAHAO+qaiRVJaQLm3RXl4eNDxA4ATcHuqI/omAHAu+qaiwQ3QAAAAAACnISkFAAAAADgNt+/eSgzvozAMw9kRACjJFtE3oRD60jcBKDqMlAIAAAAAnIaRUgAAABRbllhG+1E4xkRG/G8XjJQCAAAAAJyGpBQAAAAA4DQkpQAAAAAApyEpBQAAAAA4DUkpAAAAAMBpSEoBAAAAAE5DUgoAAAAAcBqSUgAAAACA05CUAgAAAACchqQUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaUhKAQAAAABOQ1IKAAAAAHAaklIAAAAAgNOQlAIAAAAAnMa0pHT16tX6/vvvbctvvvmmGjdurL59+yo1NdWsZgEAAAAAxYhpSenYsWOVnp4uSfrvf/+rmJgYdevWTQcPHlR0dLRZzQIAAAAAipFyZu04KSlJdevWlSQtXbpUkZGRiouL065du9StWzezmgUAAAAAFCOmjZS6uLgoIyNDkrRu3TpFRERIkry8vGwjqAAAAACA0s20pLR169aKjo7Wyy+/rG3btql79+6SpP/9738KDAw0q1kAAAAAuG3Fx8fLYrFo1KhRtjLDMDRp0iQFBATIzc1N7dq10y+//GK3XVZWlp555hl5e3urYsWKioqK0tGjR29x9OYwLSl94403VK5cOS1ZskSzZ89W9erVJUlfffWVunTpYlazAAAAAHBb2r59u9555x01bNjQrnzatGmaMWOG3njjDW3fvl3+/v7q1KmTzp07Z6szatQoff7551q8eLG+//57/fXXX4qMjFROTs6tPowiZ9ozpTVq1NDKlSsdymfOnGlWkwAAAABwW/rrr7/Ur18/zZ07V1OmTLGVG4ahWbNm6YUXXlDv3r0lSfPnz5efn58WLVqkJ598UmlpaXrvvfe0YMEC3X///ZKkhQsXKigoSOvWrVPnzp2dckxFpUhHStPT0wv8AQAAAIDiLG+Ok5WVddW6I0eOVPfu3W1JZa6kpCSlpKTY5uCRJKvVqrZt22rz5s2SpJ07d+rixYt2dQICAlS/fn1bneKsSJPSypUrq0qVKgX6AAAAAEBxFhQUJE9PT9snPj4+33qLFy/Wrl278l2fkpIiSfLz87Mr9/Pzs61LSUmRi4uLQx719zrX06FDB509e9ahPD09XR06dCjQPsxSpLfvbtiwwfbvQ4cO6bnnntPAgQMVHh4uSdqyZYvmz59/1f8sAAAAACgujhw5Ig8PD9uy1WrNt84///lPrVmzRq6urlfdl8VisVs2DMOhLK+C1Mm1ceNGZWdnO5RfuHBB3333XYH2YZYiTUrbtm1r+/fkyZM1Y8YMPfbYY7ayqKgoNWjQQO+8844GDBhQlE0DAAAAwC3l4eFhl5TmZ+fOnTpx4oSaNm1qK8vJydG3336rN954Q/v375d0ZTS0WrVqtjonTpywjZ76+/srOztbqampdqOlJ06cUKtWra7Z/s8//2z79969e+1GVnNycrR69WrbpLTOYtpER1u2bNGcOXMcyps1a6ahQ4ea1SwAAAAA3DY6duyo//73v3ZlgwYN0t13363x48erdu3a8vf319q1axUWFiZJys7O1qZNmzR16lRJUtOmTVW+fHmtXbtWffr0kSQlJydrz549mjZt2jXbb9y4sSwWiywWS7636bq5uen1118vikMtNNOS0qCgIM2ZM0fTp0+3K3/77bcVFBRkVrMAAAAAcNtwd3dX/fr17coqVqyoqlWr2spHjRqluLg4hYSEKCQkRHFxcapQoYL69u0rSfL09NSQIUMUExOjqlWrysvLS2PGjFGDBg0cJk7KKykpSYZhqHbt2tq2bZt8fHxs61xcXOTr66uyZcsW8VHfGNOS0pkzZ+rBBx/U119/rZYtW0qStm7dqt9//11Lly41q1kAAAAAKFbGjRunzMxMjRgxQqmpqWrRooXWrFkjd3d3W52ZM2eqXLly6tOnjzIzM9WxY0clJCRcN6GsWbOmJOny5cumHsPNsBiGYZi186NHj+qtt97Sr7/+KsMwVLduXT311FPFcqQ0PT1dnp6eSktLu+5941dVwIeQATvm/YgCxUKRfP+WUEVybhbRN6EQ+t4+fZMllmsYhWNMLPx1XFz7pv/973/auHGjTpw44ZCkvvTSS06KysSRUkkKDAxUXFxcobefNGmSYmNj7cr+Pu2xYRiKjY3VO++8Y/uLwptvvql69erZ6mdlZWnMmDH66KOPbH9ReOuttxQYGFjouAAAAACgOJk7d66GDx8ub29v+fv7283aa7FYSm5SevbsWW3bti3fTPzxxx8v0D7q1aundevW2Zb/Pjw9bdo0zZgxQwkJCapTp46mTJmiTp06af/+/bah7lGjRmnFihVavHixqlatqpiYGEVGRmrnzp1Ov3caAAAAAG6FKVOm6N///rfGjx/v7FAcmJaUrlixQv369dP58+fl7u7ukIkXNCktV66c/P39HcoNw9CsWbP0wgsvqHfv3pKk+fPny8/PT4sWLdKTTz6ptLQ0vffee1qwYIHtAeCFCxcqKChI69atU+fOnYvgSAEAAADg9paamqqHH37Y2WHkq4xZO46JidHgwYN17tw5nT17VqmpqbbPmTNnCryfAwcOKCAgQMHBwXr00Ud18OBBSVdmkUpJSVFERIStrtVqVdu2bbV582ZJV94JdPHiRbs6AQEBql+/vq3O1WRlZSk9Pd3uAwAAAADF0cMPP6w1a9Y4O4x8mTZS+ueff+rZZ59VhQoVCr2PFi1a6IMPPlCdOnV0/PhxTZkyRa1atdIvv/xie64094Wyufz8/HT48GFJV15A6+LiYveC2dw6f39pbH7i4+MdnmcFAAAAgOLozjvv1IsvvqitW7eqQYMGKl++vN36Z5991kmRmZiUdu7cWTt27FDt2rULvY+uXbva/t2gQQOFh4frjjvu0Pz5822vmbHkmdHWMAyHsrwKUmfChAmKjo62LaenpxfLWYMBAAAA4J133lGlSpW0adMmbdq0yW6dxWIpmUlp9+7dNXbsWO3duzffTDwqKuqG91mxYkU1aNBABw4cUM+ePSVdGQ2tVq2arc6JEydso6f+/v7Kzs5Wamqq3WjpiRMn1KpVq2u2ZbVaZbVabzhGAAAAALjdJCUlOTuEqzItKR02bJgkafLkyQ7rLBaLcnJybnifWVlZ2rdvn9q0aaPg4GD5+/tr7dq1CgsLkyRlZ2dr06ZNmjp1qiSpadOmKl++vNauXas+ffpIkpKTk7Vnzx5NmzatsIcGAAAAACgipiWleV8BUxhjxoxRjx49VKNGDZ04cUJTpkxRenq6BgwYIIvFolGjRikuLk4hISEKCQlRXFycKlSooL59+0qSPD09NWTIEMXExKhq1ary8vLSmDFj1KBBA9tsvAAAAABQ0g0ePPia699///1bFIkjU99TerOOHj2qxx57TKdOnZKPj49atmyprVu3qmbNmpKkcePGKTMzUyNGjFBqaqpatGihNWvW2N5RKkkzZ85UuXLl1KdPH2VmZqpjx45KSEjgHaUAAAAASo3U1FS75YsXL2rPnj06e/asOnTo4KSorrAYhmGYtfNNmzbp1Vdf1b59+2SxWBQaGqqxY8eqTZs2ZjVpmvT0dHl6eiotLU0eHh6F28l1JlcC8mXejyhQLBTJ928JVSTnZhF9Ewqh7+3TN1liuYZROMbEwl/HJaVvunz5skaMGKHatWtr3LhxTovDtPeULly4UPfff78qVKigZ599Vk8//bTc3NzUsWNHLVq0yKxmAQAAAAAFUKZMGY0ePVozZ850ahym3b7773//W9OmTdPo0aNtZf/85z81Y8YMvfzyy7bnPgEAAAAAzvH777/r0qVLTo3BtKT04MGD6tGjh0N5VFSUnn/+ebOaBQAAAADkER0dbbdsGIaSk5O1atUqDRgwwElRXWFaUhoUFKT169frzjvvtCtfv369goKCzGoWAAAAAJDHTz/9ZLdcpkwZ+fj4aPr06dedmddspiWlMTExevbZZ5WYmKhWrVrJYrHo+++/V0JCgv7zn/+Y1SwAkzFfFwqD+boAAHCuDRs2ODuEqzItKR0+fLj8/f01ffp0ffLJJ5Kk0NBQffzxx3rggQfMahYAAAAAcBUnT57U/v37ZbFYVKdOHfn4+Dg7JHPfU9qrVy/16tXLzCYAAAAAANdx/vx5PfPMM/rggw90+fJlSVLZsmX1+OOP6/XXX1eFChWcFptpr4TZvn27fvzxR4fyH3/8UTt27DCrWQAAAABAHtHR0dq0aZNWrFihs2fP6uzZs1q+fLk2bdqkmJgYp8ZmWlI6cuRIHTlyxKH8zz//1MiRI81qFgAAAACQx9KlS/Xee++pa9eu8vDwkIeHh7p166a5c+dqyZIlTo3NtKR07969atKkiUN5WFiY9u7da1azAAAAAIA8MjIy5Ofn51Du6+urjIwMJ0T0f0xLSq1Wq44fP+5QnpycrHLlTH2UFQAAAADwN+Hh4Zo4caIuXLhgK8vMzFRsbKzCw8OdGJmJSWmnTp00YcIEpaWl2crOnj2r559/Xp06dTKrWQAAAAC4bcTHx+uee+6Ru7u7fH191bNnT+3fv9+ujmEYmjRpkgICAuTm5qZ27drpl19+sauTlZWlZ555Rt7e3qpYsaKioqJ09OjRAscxa9Ysbd68WYGBgerYsaPuv/9+BQUF6YcffnD6KztNS0qnT5+uI0eOqGbNmmrfvr3at2+v4OBgpaSkaPr06WY1CwAAAAC3jU2bNmnkyJHaunWr1q5dq0uXLikiIkLnz5+31Zk2bZpmzJihN954Q9u3b5e/v786deqkc+fO2eqMGjVKn3/+uRYvXqzvv/9ef/31lyIjI5WTk1OgOBo0aKADBw4oPj5ejRs3VsOGDfXKK6/ot99+U7169Yr8uG+ExTDMe6X5+fPn9eGHH2r37t1yc3NTw4YN9dhjj6l8+fJmNWma9PR0eXp6Ki0tTR4eHoXbicVStEGhdDDvR7RQuIxRGDdzGRfJ928JVSTnZhE/1CiEvrdP32SJ5RpG4RgTC38d38z378mTJ+Xr66tNmzbpvvvuk2EYCggI0KhRozR+/HhJV0ZF/fz8NHXqVD355JNKS0uTj4+PFixYoEceeUSSdOzYMQUFBenLL79U586dr9tufHy8/Pz8NHjwYLvy999/XydPnrS17QymjZRKUsWKFfXEE0/ozTff1KuvvqrHH3+8WCakAAAAAFAUch9v9PLykiQlJSUpJSVFERERtjpWq1Vt27bV5s2bJUk7d+7UxYsX7eoEBASofv36tjrX8/bbb+vuu+92KK9Xr57mzJlT6OMpCqYmpQsWLFDr1q0VEBCgw4cPS5Jmzpyp5cuXm9ksAAAAAJguPT3d7pOVlXXN+oZhKDo6Wq1bt1b9+vUlSSkpKZLkMDOun5+fbV1KSopcXFxUpUqVq9a5npSUFFWrVs2h3MfHR8nJyQXah1lMS0pnz56t6Ohode3aVampqbZ7natUqaJZs2aZ1SwAAAAA3BJBQUHy9PS0feLj469Z/+mnn9bPP/+sjz76yGGdJc8zUoZhOJTlVZA6f4/1hx9+cCj/4YcfFBAQUKB9mMW0d7O8/vrrmjt3rnr27KlXXnnFVt6sWTONGTPGrGYBAAAA4JY4cuSI3TOlVqv1qnWfeeYZffHFF/r2228VGBhoK/f395fkOJJ54sQJ2+ipv7+/srOzlZqaajdaeuLECbVq1apAsQ4dOlSjRo3SxYsX1aFDB0nS+vXrNW7cOMXExBRoH2YxLSlNSkpSWFiYQ7nVarWbaQoAAAAAiiMPD4/rTnRkGIaeeeYZff7559q4caOCg4Pt1gcHB8vf319r16615U/Z2dnatGmTpk6dKklq2rSpypcvr7Vr16pPnz6SpOTkZO3Zs0fTpk0rUKzjxo3TmTNnNGLECGVnZ0uSXF1dNX78eE2YMOGGjruomZaUBgcHKzExUTVr1rQr/+qrr1S3bl2zmgUAAACA28bIkSO1aNEiLV++XO7u7rZnQD09PeXm5iaLxaJRo0YpLi5OISEhCgkJUVxcnCpUqKC+ffva6g4ZMkQxMTGqWrWqvLy8NGbMGDVo0ED3339/geKwWCyaOnWqXnzxRe3bt09ubm4KCQm55ujurWJaUjp27FiNHDlSFy5ckGEY2rZtmz766CPFx8fr3XffNatZAAAAALhtzJ49W5LUrl07u/J58+Zp4MCBkq6MYmZmZmrEiBFKTU1VixYttGbNGrm7u9vqz5w5U+XKlVOfPn2UmZmpjh07KiEhQWXLlr2heCpVqqR77rnnpo6pqJn6ntK5c+dqypQpOnLkiCQpMDBQEydO1JAhQ8xq0jS8pxROw3tKUQLwnlJz8J5SOA3vKUUJ4Kz3lMKRaSOlmZmZ6tevn4YNG6ZTp07p4MGD+uGHH+we6gUAAAAAlG6mvRLmgQce0AcffCBJKleunKKiojRjxgz17NnTNoQNAAAAACjdTEtKd+3apTZt2kiSlixZIj8/Px0+fFgffPCBXnvtNbOaBQAAAAAUI6YlpRkZGbYHc9esWaPevXurTJkyatmypQ4fPmxWswAAAACAYsS0pPTOO+/UsmXLdOTIEX399deKiIiQdOUFrzwMDAAAAACQTExKX3rpJY0ZM0a1atVSixYtFB4eLunKqGnuS2EBAAAAAKWbabPvPvTQQ2rdurWSk5PVqFEjW3nHjh3Vq1cvs5oFAAAAABQjpiWlkuTv7y9/f3+7subNm5vZJAAAAACgGDHt9l0AAAAAAK6HpBQAAAAA4DQkpQAAAAAApyEpBQAAAAA4DUkpAAAAAMBpSEoBAAAAAE5DUgoAAAAAcBqSUgAAAACA05CUAgAAAACchqQUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaUhKAQAAAABOQ1IKAAAAAHCaUpWUvvXWWwoODparq6uaNm2q7777ztkhAQAAACgFyEWurtQkpR9//LFGjRqlF154QT/99JPatGmjrl276o8//nB2aAAAAABKMHKRays1SemMGTM0ZMgQDR06VKGhoZo1a5aCgoI0e/ZsZ4cGAAAAoAQjF7m2UpGUZmdna+fOnYqIiLArj4iI0ObNm50UFQAAAICSjlzk+so5O4Bb4dSpU8rJyZGfn59duZ+fn1JSUvLdJisrS1lZWbbltLQ0SVJ6erp5gQL54ZpDCXAzl3Hu965hGEUUTcmRe05uqm/KKKJgULrcTn3TBWcHgOLqZr47c7fNzRFyWa1WWa1Wu7LC5CKlTalISnNZLBa7ZcMwHMpyxcfHKzY21qE8KCjIlNiAq/L0dHYEwE0risv43Llz8uTnwc65c+ck0TfBCYbxs4jiz/OVm7+Oa9SoYbc8ceJETZo0Kd+6N5KLlDalIin19vZW2bJlHf4SceLECYe/WOSaMGGCoqOjbcuXL1/WmTNnVLVqVS6eIpaenq6goCAdOXJEHh4ezg4HKBSuY/MYhqFz584pICDA2aHcdgICAnTkyBG5u7vTNxUxfqZREnAdm8cwDJ0+fVpeXl4qU+b/nojMO0oqFS4XKW1KRVLq4uKipk2bau3aterVq5etfO3atXrggQfy3Sa/offKlSubGWap5+HhwRcmij2uY3MwQpq/MmXKKDAw0NlhlGj8TKMk4Do2R0H7psLkIqVNqUhKJSk6Olr9+/dXs2bNFB4ernfeeUd//PGHnnrqKWeHBgAAAKAEIxe5tlKTlD7yyCM6ffq0Jk+erOTkZNWvX19ffvmlatas6ezQAAAAAJRg5CLXVmqSUkkaMWKERowY4ewwkIfVatXEiRPzvQcfKC64joGShZ9plARcx7cXcpGrsxjMsQ8AAAAAcJIy168CAAAAAIA5SEoBAAAAAE5DUorbysaNG2WxWHT27FlnhwLckEOHDslisSgxMdHZoQAoYvRNKK7om1BclKqJjgDALEFBQUpOTpa3t7ezQwEAQBJ9E4oPklIUKzk5ObJYLCpThkF+3F7Kli0rf39/Z4cBwAnom3C7om9CccG3J0xlGIamTZum2rVry83NTY0aNdKSJUts67/88kvVqVNHbm5uat++vQ4dOmS3fUJCgipXrqyVK1eqbt26slqtOnz48C0+CuCKa13PeW+RSk1NVb9+/eTj4yM3NzeFhIRo3rx5ToweQC76JpQk9E0oCRgphan+9a9/6bPPPtPs2bMVEhKib7/9Vv/4xz/k4+Oj2rVrq3fv3nrqqac0fPhw7dixQzExMQ77yMjIUHx8vN59911VrVpVvr6+TjgS4NrXc96XX7/44ovau3evvvrqK3l7e+u3335TZmamkyIH8Hf0TShJ6JtQEvCeUpjm/Pnz8vb21jfffKPw8HBb+dChQ5WRkaFatWpp2bJl+uWXX2SxWCRJzz33nKZOnarU1FRVrlxZCQkJGjRokBITE9WoUSNnHQpw3es5Li5OwcHB+umnn9S4cWNFRUXJ29tb77//vhOjBpAXfRNKEvomlBSMlMI0e/fu1YULF9SpUye78uzsbIWFhSkzM1MtW7a0dfqS7L5Qc7m4uKhhw4amxwtcy/Wu57yGDx+uBx98ULt27VJERIR69uypVq1a3apwAVwFfRNKEvomlBQkpTDN5cuXJUmrVq1S9erV7dZZrVY988wzBdqPm5ub3S8HgDNc73rOycmxK+vatasOHz6sVatWad26derYsaNGjhypV1999ZbFDMARfRNKEvomlBQkpTBN7uQPf/zxh9q2bZvv+mXLltmVbd269RZFB9yY613PeSdCkSQfHx8NHDhQAwcOVJs2bTR27Fg6fsDJ6JtQktA3oaQgKYVp3N3dNWbMGI0ePVqXL19W69atlZ6ers2bN6tSpUp66qmnNH36dEVHR+vJJ5/Uzp07lZCQ4OywgXxd73rO+8vASy+9pKZNm6pevXrKysrSypUrFRoa6qToAeSib0JJQt+EkoKkFKZ6+eWX5evrq/j4eB08eFCVK1dWkyZN9Pzzz6tGjRpaunSpRo8erbfeekvNmzdXXFycBg8e7OywgXxd63rOy8XFRRMmTNChQ4fk5uamNm3aaPHixU6IGkBe9E0oSeibUBIw+y4AFIH9+/fr7rvv1oEDB3TnnXc6OxwAAOibUGyUcXYAAFDcnTlzRkuWLJGHh4eCgoKcHQ4AAPRNKFa4fRcAbtKQIUO0c+dOzZ49W1ar1dnhAABA34Rihdt3AQAAAABOw+27AAAAAACnISkFAAAAADgNSSkAAAAAwGlISgEAAAAATkNSCgAAAABwGpJSAAAAAIDTkJQCMMWxY8c0adIkJSYmOqybNGmSLBbLrQ8KAFDi/PTTT2rbtq08PT1lsVg0a9asG9reYrFo0qRJtuWNGzfKYrFo48aNRRongKsr5+wAAJRMx44dU2xsrGrVqqXGjRvbrRs6dKi6dOninMAAACXK4MGDdf78eS1evFhVqlRRrVq1bmj7LVu2KDAw0JzgABQISSmAWy4wMJBfAAAARWLPnj0aNmyYunbtWqjtW7ZsWcQR2cvJydGlS5dktVpNbQcozrh9F6XK999/r44dO8rd3V0VKlRQq1attGrVKrs6CQkJslgsWrt2rQYNGiQvLy9VrFhRPXr00MGDBx32uW7dOnXs2FEeHh6qUKGC7r33Xq1fv96uTu7tqr/88osee+wxeXp6ys/PT4MHD1ZaWppDvfw+AwcOtNXLzs7WlClTdPfdd8tqtcrHx0eDBg3SyZMn7dqtVauWIiMj9fnnn6thw4ZydXVV7dq19dprrxXB2by6jRs36p577pEkDRo0yHYMubdH5Xf7bm6sK1euVFhYmNzc3BQaGqqVK1dKuvL/EhoaqooVK6p58+basWOHQ7s7duxQVFSUvLy85OrqqrCwMH3yySemHisA5EVfc2v6mtxzeOnSJc2ePdt2DJJ08uRJjRgxQnXr1lWlSpXk6+urDh066LvvvnPYT97bd/PTrl07tWvXzqF84MCBdiOzhw4dksVi0bRp0zRlyhQFBwfLarVqw4YNkgrWT2VkZGjMmDEKDg6Wq6urvLy81KxZM3300Uc3doKAYoSkFKXGpk2b1KFDB6Wlpem9997TRx99JHd3d/Xo0UMff/yxQ/0hQ4aoTJkyWrRokWbNmqVt27apXbt2Onv2rK3OwoULFRERIQ8PD82fP1+ffPKJvLy81LlzZ4dfFiTpwQcfVJ06dbR06VI999xzWrRokUaPHm1bP3ToUG3ZssXuM3bsWElSvXr1JEmXL1/WAw88oFdeeUV9+/bVqlWr9Morr2jt2rVq166dMjMz7dpMTEzUqFGjNHr0aH3++edq1aqV/vnPf+rVV18titOaryZNmmjevHmSpH/961+2Yxk6dOg1t9u9e7cmTJig8ePH67PPPpOnp6d69+6tiRMn6t1331VcXJw+/PBDpaWlKTIy0u5YN2zYoHvvvVdnz57VnDlztHz5cjVu3FiPPPKIEhISTDtWAPg7+ppb19d0795dW7ZskSQ99NBDtmORpDNnzkiSJk6cqFWrVmnevHmqXbu22rVrd0ueFX3ttdf0zTff6NVXX9VXX32lu+++u8D9VHR0tGbPnq1nn31Wq1ev1oIFC/Twww/r9OnTpscNOI0BlBItW7Y0fH19jXPnztnKLl26ZNSvX98IDAw0Ll++bBiGYcybN8+QZPTq1ctu+x9++MGQZEyZMsUwDMM4f/684eXlZfTo0cOuXk5OjtGoUSOjefPmtrKJEycakoxp06bZ1R0xYoTh6upqazuv7777znB1dTX69etnq/PRRx8ZkoylS5fa1d2+fbshyXjrrbdsZTVr1jQsFouRmJhoV7dTp06Gh4eHcf78+aufsJuUG8+8efMc1uWej7+rWbOm4ebmZhw9etRWlpiYaEgyqlWrZhfrsmXLDEnGF198YSu7++67jbCwMOPixYt2+42MjDSqVatm5OTkFNGRAcDV0df8n1vR1xiGYUgyRo4cec06ly5dMi5evGh07NjR4ZxLMiZOnGhb3rBhgyHJ2LBhg62sbdu2Rtu2bR32O2DAAKNmzZq25aSkJEOScccddxjZ2dl2dQvaT9WvX9/o2bPnNY8HKGkYKUWpcP78ef3444966KGHVKlSJVt52bJl1b9/fx09elT79++326Zfv352y61atVLNmjVtt+Bs3rxZZ86c0YABA3Tp0iXb5/Lly+rSpYu2b9+u8+fP2+0jKirKbrlhw4a6cOGCTpw44RDzvn37FBUVpVatWun999+33ZK0cuVKVa5cWT169LBrt3HjxvL393f4C3C9evXUqFEju7K+ffsqPT1du3btKsDZu3UaN26s6tWr25ZDQ0MlXbltqkKFCg7lhw8fliT99ttv+vXXX23/Z38/L926dVNycrLD/y8AFDX6mturr5kzZ46aNGkiV1dXlStXTuXLl9f69eu1b98+09uOiopS+fLlbcs30k81b95cX331lZ577jlt3LjRYVQaKImY6AilQmpqqgzDULVq1RzWBQQESJLDbTH+/v4Odf39/W31jh8/LunKLUNXc+bMGVWsWNG2XLVqVbv1uZMe5O1wjh07pi5duigwMFCfffaZXFxcbOuOHz+us2fP2pX93alTpwp0HJLjMTubl5eX3XLuMV6t/MKFC5L+7/9izJgxGjNmTL77znteAKCo0dc4HofknL5mxowZiomJ0VNPPaWXX35Z3t7eKlu2rF588cVbkpTmvQZupJ967bXXFBgYqI8//lhTp06Vq6urOnfurP/3//6fQkJCzA0ccBKSUpQKVapUUZkyZZScnOyw7tixY5Ikb29vu/KUlBSHuikpKbrzzjvt6r/++utXnbnPz8/vhmNNT09Xt27ddPnyZX355Zfy9PS0W+/t7a2qVatq9erV+W7v7u5eoOOQHH9xKa5y/y8mTJig3r1751vnrrvuupUhASiF6Gscj0NyTl+zcOFCtWvXTrNnz7YrP3fuXKH25+rqajdZVK6r/cEz72R+N9JPVaxYUbGxsYqNjdXx48dto6Y9evTQr7/+Wqj4gdsdSSlKhYoVK6pFixb67LPP9Oqrr8rNzU3SlYkcFi5cqMDAQNWpU8dumw8//FAPPvigbXnz5s06fPiwbbKee++9V5UrV9bevXv19NNPF0mc2dnZ6tWrlw4dOqTvv/8+39emREZGavHixcrJyVGLFi2uu89ffvlFu3fvtrutatGiRXJ3d1eTJk2KJO78XO0v82a46667FBISot27dysuLs709gAgP/Q1t76vuRqLxeLwCpaff/5ZW7ZsUVBQ0A3vr1atWvr000+VlZVl2+/p06e1efNmeXh4XHf7wvZTfn5+GjhwoHbv3q1Zs2YpIyPD7nEWoKQgKUWpER8fr06dOql9+/YaM2aMXFxc9NZbb2nPnj366KOPHP6quWPHDg0dOlQPP/ywjhw5ohdeeEHVq1fXiBEjJEmVKlXS66+/rgEDBujMmTN66KGH5Ovrq5MnT2r37t06efKkw19or2f06NH65ptvFBcXp7/++ktbt261rfPx8dEdd9yhRx99VB9++KG6deumf/7zn2revLnKly+vo0ePasOGDXrggQfUq1cv23YBAQGKiorSpEmTVK1aNS1cuFBr167V1KlT7Tq2cuXKqW3btnYzOXbs2FGbNm3SpUuXbGWTJ0/W5MmTtX79erVt2/aqx3LHHXfIzc1NH374oUJDQ1WpUiUFBATYbmEram+//ba6du2qzp07a+DAgapevbrOnDmjffv2adeuXfr0009NaRcA/o6+5tb2NVcTGRmpl19+WRMnTlTbtm21f/9+TZ48WcHBwXbtFFT//v319ttv6x//+IeGDRum06dPa9q0aQVKSHMVtJ9q0aKFIiMj1bBhQ1WpUkX79u3TggULFB4eTkKKksvZMy0Bt9J3331ndOjQwahYsaLh5uZmtGzZ0lixYoVdndwZEdesWWP079/fqFy5suHm5mZ069bNOHDggMM+N23aZHTv3t3w8vIyypcvb1SvXt3o3r278emnn9rq5M6IePLkyXzbSkpKMgzjyux+kvL9DBgwwLbdxYsXjVdffdVo1KiR4erqalSqVMm4++67jSeffNIuxpo1axrdu3c3lixZYtSrV89wcXExatWqZcyYMcPhOCQ5zCyYG8/f5R7L32clvJqPPvrIuPvuu43y5cvbzW54tdl3u3fvnm9ceWdVzJ3d8P/9v/9nV757926jT58+hq+vr1G+fHnD39/f6NChgzFnzpzrxgoARYW+5tb2Nfn1E1lZWcaYMWOM6tWrG66urkaTJk2MZcuWOcyWm7v99WbfNQzDmD9/vhEaGmq4uroadevWNT7++OOrzr6bt3/KVZB+6rnnnjOaNWtmVKlSxbBarUbt2rWN0aNHG6dOnbruuQCKK4thGIb5qS9QfCQkJGjQoEHavn27mjVr5uxwbkqtWrVUv359rVy50tmhAAD+hr4GAP4Pr4QBAAAAADgNSSkAAAAAwGm4fRcAAAAA4DSMlAIAAAAAnIakFAAAAADgNCSlAAAAAACnKefsAIqLy5cv69ixY3J3d3d48TUAwDyGYejcuXMKCAhQmTL8LfXv6JsAwDnom4oWSWkBHTt2TEFBQc4OAwBKrSNHjigwMNDZYdxW6JsAwLnom4oGSWkBubu7S7py4Xl4eDg5GgAoPdLT0xUUFGT7Hsb/oW8CAOegbypaJKUFlHtblIeHBx0/ADgBt6c6om8CAOeibyoa3AANAAAAAHAaklIAAAAAgNNw++6txPA+CsMwnB0BAAC3LUssv1+hcIyJ/I51u2CkFAAAAADgNCSlAAAAAACnISkFAAAAAJPEx8frnnvukbu7u3x9fdWzZ0/t37/fro5hGJo0aZICAgLk5uamdu3a6ZdffrGrk5WVpWeeeUbe3t6qWLGioqKidPToUbs6qamp6t+/vzw9PeXp6an+/fvr7NmzZh/iTSMpBQAAAACTbNq0SSNHjtTWrVu1du1aXbp0SRERETp//rytzrRp0zRjxgy98cYb2r59u/z9/dWpUyedO3fOVmfUqFH6/PPPtXjxYn3//ff666+/FBkZqZycHFudvn37KjExUatXr9bq1auVmJio/v3739LjLQyLYTCLSkGkp6fL09NTaWlphX8XHBMdoTD4EUUpVyTfvyUU5wZgoiMU3s1MdHQz378nT56Ur6+vNm3apPvuu0+GYSggIECjRo3S+PHjJV0ZFfXz89PUqVP15JNPKi0tTT4+PlqwYIEeeeQRSdKxY8cUFBSkL7/8Up07d9a+fftUt25dbd26VS1atJAkbd26VeHh4fr111911113Ffp4zcZIKQAAAADcImlpaZIkLy8vSVJSUpJSUlIUERFhq2O1WtW2bVtt3rxZkrRz505dvHjRrk5AQIDq169vq7NlyxZ5enraElJJatmypTw9PW11ble8EgYAAAAACiE9Pd1u2Wq1ymq1XrW+YRiKjo5W69atVb9+fUlSSkqKJMnPz8+urp+fnw4fPmyr4+LioipVqjjUyd0+JSVFvr6+Dm36+vra6tyuGCkFAAAAgEIICgqyTSrk6emp+Pj4a9Z/+umn9fPPP+ujjz5yWGfJ86ifYRgOZXnlrZNf/YLsx9lu+6T022+/VY8ePRQQECCLxaJly5bZrS+qmaoAAAAA4EYcOXJEaWlpts+ECROuWveZZ57RF198oQ0bNigwMNBW7u/vL0kOo5knTpywjZ76+/srOztbqamp16xz/Phxh3ZPnjzpMAp7u7ntk9Lz58+rUaNGeuONN/JdX1QzVQEAAADAjfDw8LD75HfrrmEYevrpp/XZZ5/pm2++UXBwsN364OBg+fv7a+3atbay7Oxsbdq0Sa1atZIkNW3aVOXLl7erk5ycrD179tjqhIeHKy0tTdu2bbPV+fHHH5WWlmarc7u67Z8p7dq1q7p27ZrvOsMwNGvWLL3wwgvq3bu3JGn+/Pny8/PTokWLbDNVvffee1qwYIHuv/9+SdLChQsVFBSkdevWqXPnzrfsWAAAAACULiNHjtSiRYu0fPlyubu720ZEPT095ebmJovFolGjRikuLk4hISEKCQlRXFycKlSooL59+9rqDhkyRDExMapataq8vLw0ZswYNWjQwJbjhIaGqkuXLho2bJjefvttSdITTzyhyMjI23rmXakYjJReS1HNVAUAAAAAZpg9e7bS0tLUrl07VatWzfb5+OOPbXXGjRunUaNGacSIEWrWrJn+/PNPrVmzRu7u7rY6M2fOVM+ePdWnTx/de++9qlChglasWKGyZcva6nz44Ydq0KCBIiIiFBERoYYNG2rBggW39HgL47YfKb2WopqpKj9ZWVnKysqyLeedWQsAAAAArscowDvnLRaLJk2apEmTJl21jqurq15//XW9/vrrV63j5eWlhQsXFiZMpyrWI6W5imKmqrzi4+PtZtIKCgoqklgBAAAAAP+nWCelRTVTVX4mTJhgN5PWkSNHijh6AAAAAECxTkqLaqaq/FitVofZtAAAAAAAReu2f6b0r7/+0m+//WZbTkpKUmJiory8vFSjRo0imakKAAAAAOAct31SumPHDrVv3962HB0dLUkaMGCAEhISNG7cOGVmZmrEiBFKTU1VixYt8p2pqly5curTp48yMzPVsWNHJSQk2M1UBQAAAAC49SxGQaaDKoTVq1erUqVKat26tSTpzTff1Ny5c1W3bl29+eabDrPh3u7S09Pl6emptLS0wt/Ke53Jl4B8mfMjChQbRfL9W0JxbgDJEsvvVygcY2Lhf8fi+7domfZM6dixY22vUfnvf/+rmJgYdevWTQcPHrSNdgIAAAAASjfTbt9NSkpS3bp1JUlLly5VZGSk4uLitGvXLnXr1s2sZgEAAAAAxYhpI6UuLi7KyMiQJK1bt04RERGSrrzQNXcEFQAAAABQupk2Utq6dWtFR0fr3nvv1bZt2/Txxx9Lkv73v/8pMDDQrGYBAMCNWMTzeCiEvsx3AKDomDZS+sYbb6hcuXJasmSJZs+ererVq0uSvvrqK3Xp0sWsZgEAAAAAxYhpI6U1atTQypUrHcpnzpxpVpMAAAAAgGKmSJPSG3lWlKmTAQAAAABFmpRWrlxZlgK+izMnJ6comwYAAAAAFENFmpRu2LDB9u9Dhw7pueee08CBAxUeHi5J2rJli+bPn6/4+PiibBYAAAAAcJM6dOigzz77TJUrV7YrT09PV8+ePfXNN9+Y0m6RJqVt27a1/Xvy5MmaMWOGHnvsMVtZVFSUGjRooHfeeUcDBgwoyqYBAAAAADdh48aNys7Odii/cOGCvvvuO9PaNW2ioy1btmjOnDkO5c2aNdPQoUPNahYAAAAAcAN+/vln27/37t2rlJQU23JOTo5Wr15te5uKGUxLSoOCgjRnzhxNnz7drvztt99WUFCQWc0CAAAAAG5A48aNZbFYZLFY1KFDB4f1bm5uev31101r37SkdObMmXrwwQf19ddfq2XLlpKkrVu36vfff9fSpUvNahYAAAAAcAOSkpJkGIZq166tbdu2ycfHx7bOxcVFvr6+Klu2rGntm5aUduvWTQcOHNBbb72lX3/9VYZh6IEHHtBTTz3FSCkAAAAA3CZq1qwpSbp8+bJT2jctKZWkwMBAxcXFmdkEAAAAAKCI/O9//9PGjRt14sQJhyT1pZdeMqVNU5PSs2fPatu2bfke0OOPP25m0wAAAACAGzB37lwNHz5c3t7e8vf3l8Visa2zWCzFLyldsWKF+vXrp/Pnz8vd3d3hgEhKAQAAAOD2MWXKFP373//W+PHjb2m7piWlMTExGjx4sOLi4lShQgWzmgFwi/3t70tAgRmGsyMAAADXk5qaqocffviWt1vGrB3/+eefevbZZ0lIAQAAAKAYePjhh7VmzZpb3q5pI6WdO3fWjh07VLt2bbOaAAAAAAAUkTvvvFMvvviitm7dqgYNGqh8+fJ265999llT2jUtKe3evbvGjh2rvXv35ntAUVFRZjUNAAAAALhB77zzjipVqqRNmzZp06ZNdussFkvxS0qHDRsmSZo8ebLDOovFopycHLOaBgAAAADcoKSkJKe0a1pS6qwXrwIAAAAAig9T31MKAAAAACgeBg8efM3177//vintmpqUbtq0Sa+++qr27dsni8Wi0NBQjR07Vm3atDGzWQAAAADADUpNTbVbvnjxovbs2aOzZ8+qQ4cOprVrWlK6cOFCDRo0SL1799azzz4rwzC0efNmdezYUQkJCerbt69ZTQMAAAAAbtDnn3/uUHb58mWNGDHC1LeqWAzDnFeah4aG6oknntDo0aPtymfMmKG5c+dq3759ZjRrmvT0dHl6eiotLU0eHh6F24nFUrRBoXQw50e00LiMURg3cxkXyfdvCVUk52YRP9QohL63T99kieUaRuEYEwt/HZe2vmn//v1q166dkpOTTdl/GVP2KungwYPq0aOHQ3lUVJTTZnUCAAAAgFvt22+/VY8ePRQQECCLxaJly5bZrTcMQ5MmTVJAQIDc3NzUrl07/fLLL3Z1srKy9Mwzz8jb21sVK1ZUVFSUjh49alcnNTVV/fv3l6enpzw9PdW/f3+dPXv2puP//fffdenSpZvez9WYdvtuUFCQ1q9frzvvvNOufP369QoKCjKrWQAAAAC4rZw/f16NGjXSoEGD9OCDDzqsnzZtmmbMmKGEhATVqVNHU6ZMUadOnbR//365u7tLkkaNGqUVK1Zo8eLFqlq1qmJiYhQZGamdO3eqbNmykqS+ffvq6NGjWr16tSTpiSeeUP/+/bVixYoCxRkdHW23bBiGkpOTtWrVKg0YMOBmTsE1mZaUxsTE6Nlnn1ViYqJatWoli8Wi77//XgkJCfrPf/5jVrMAAAAAcFvp2rWrunbtmu86wzA0a9YsvfDCC+rdu7ckaf78+fLz89OiRYv05JNPKi0tTe+9954WLFig+++/X9KVOXyCgoK0bt06de7cWfv27dPq1au1detWtWjRQpI0d+5chYeHa//+/brrrruuG+dPP/1kt1ymTBn5+Pho+vTp152Z92aYlpQOHz5c/v7+mj59uj755BNJV54z/fjjj/XAAw8UWTuTJk1SbGysXZmfn59SUlIkXflPjo2N1TvvvKPU1FS1aNFCb775purVq1dkMQAAAABAYSQlJSklJUURERG2MqvVqrZt22rz5s168skntXPnTl28eNGuTkBAgOrXr6/Nmzerc+fO2rJlizw9PW0JqSS1bNlSnp6e2rx5c4GS0g0bNhTtwRWQqa+E6dWrl3r16mVmE5KkevXqad26dbbl3OFrqWBD4QAAAABwo9LT0+2WrVarrFbrDe0jdzDNz8/PrtzPz0+HDx+21XFxcVGVKlUc6uRun5KSIl9fX4f9+/r62uoU1MmTJ7V//35ZLBbVqVNHPj4+N7T9jTJtoqPt27frxx9/dCj/8ccftWPHjiJtq1y5cvL397d9ck9a3qHw+vXra/78+crIyNCiRYuKNAYAAAAApUtQUJBtUiFPT0/Fx8cXel+WPK84MAzDoSyvvHXyq1+Q/eQ6f/68Bg8erGrVqum+++5TmzZtFBAQoCFDhigjI6NA+ygM05LSkSNH6siRIw7lf/75p0aOHFmkbR04cEABAQEKDg7Wo48+qoMHD0q6/lD4tWRlZSk9Pd3uAwAAAAC5jhw5orS0NNtnwoQJN7wPf39/SXIYzTxx4oRt9NTf31/Z2dlKTU29Zp3jx4877P/kyZMOo7BXEx0drU2bNmnFihU6e/aszp49q+XLl2vTpk2KiYm54WMrKNOS0r1796pJkyYO5WFhYdq7d2+RtdOiRQt98MEH+vrrrzV37lylpKSoVatWOn369DWHwq83hB0fH2/3Vw9mDAYAAADwdx4eHnafG711V5KCg4Pl7++vtWvX2sqys7O1adMmtWrVSpLUtGlTlS9f3q5OcnKy9uzZY6sTHh6utLQ0bdu2zVbnxx9/VFpamq3O9SxdulTvvfeeunbtajumbt26ae7cuVqyZMkNH1tBmfZMqdVq1fHjx1W7dm278uTkZJUrV3TN/n0WqwYNGig8PFx33HGH5s+fr5YtW0oq3FD4hAkT7KZETk9PJzEFAAAAcMP++usv/fbbb7blpKQkJSYmysvLSzVq1NCoUaMUFxenkJAQhYSEKC4uThUqVFDfvn0lSZ6enhoyZIhiYmJUtWpVeXl5acyYMWrQoIFtNt7Q0FB16dJFw4YN09tvvy3pyithIiMjCzTJkSRlZGTkO6rq6+tbPG/f7dSpkyZMmKC0tDRb2dmzZ/X888+rU6dOZjWrihUrqkGDBjpw4ECBhsKvxmq1OvzlAwAAAABu1I4dOxQWFqawsDBJV26TDQsL00svvSRJGjdunEaNGqURI0aoWbNm+vPPP7VmzRq7iVlnzpypnj17qk+fPrr33ntVoUIFrVixwm6S1w8//FANGjRQRESEIiIi1LBhQy1YsKDAcYaHh2vixIm6cOGCrSwzM1OxsbEKDw+/2dNwVRbDMAwzdvznn3/qvvvu0+nTp20nPzExUX5+flq7dq1po45ZWVm644479MQTT+jFF19UQECARo8erXHjxkm6MhTu6+urqVOn6sknnyzwftPT0+Xp6am0tLTCJ6gFfMAYsGPOj2ihcRmjMG7mMi6S798SqkjOzSJ+qFEIfW+fvskSyzWMwjEmFv46Lql903//+1917dpVFy5cUKNGjWSxWJSYmCir1ao1a9aY9lpN027frV69un7++Wd9+OGH2r17t9zc3DRo0CA99thjKl++fJG1M2bMGPXo0UM1atTQiRMnNGXKFKWnp2vAgAGyWCzXHQoHAAAAAMh2x+nChQv166+/yjAMPfroo+rXr5/c3NxMa9fU95RWrFhRTzzxhJlN6OjRo3rsscd06tQp+fj4qGXLltq6datq1qwp6cpQeGZmpkaMGKHU1FS1aNHCYSgcAAAAAEq7+Ph4+fn5adiwYXbl77//vk6ePKnx48eb0q5pz5RK0oIFC9S6dWsFBATYXvw6c+ZMLV++vMjaWLx4sY4dO6bs7Gz9+eefWrp0qerWrWtbb7FYNGnSJCUnJ+vChQvatGmT6tevX2TtAwAAAEBJ8Pbbb+vuu+92KK9Xr57mzJljWrumJaWzZ89WdHS0unbtqtTUVOXk5EiSqlSpolmzZpnVLAAAAACgEFJSUlStWjWHch8fHyUnJ5vWrmlJ6euvv665c+fqhRdesHsFTLNmzfTf//7XrGYBAAAAAIUQFBSkH374waH8hx9+UEBAgGntmvZMaVJSkm3W3b+zWq06f/68Wc0CAAAAAAph6NChGjVqlC5evKgOHTpIktavX69x48YpJibGtHZNS0qDg4OVmJhom3Ao11dffWX3zCcAAAAAwPnGjRunM2fOaMSIEcrOzpYkubq6avz48ZowYYJp7ZqWlI4dO1YjR47UhQsXZBiGtm3bpo8++kjx8fF69913zWoWAAAAAFAIFotFU6dO1Ysvvqh9+/bJzc1NISEhslqtprZrWlI6aNAgXbp0SePGjVNGRob69u2rwMBA/ec//9Gjjz5qVrMAAAAAgJtQqVIl3XPPPbesPdOS0szMTPXr10/Dhg3TqVOndPDgQf3www8KDAw0q0kAAAAAQDFj2uy7DzzwgD744ANJUrly5RQVFaUZM2aoZ8+emj17tlnNAgAAAACKEdOS0l27dqlNmzaSpCVLlsjPz0+HDx/WBx98oNdee82sZgEAAAAAxYhpSWlGRobc3d0lSWvWrFHv3r1VpkwZtWzZUocPHzarWQAAAABAMWJaUnrnnXdq2bJlOnLkiL7++mtFRERIkk6cOCEPDw+zmgUAAAAAFCOmJaUvvfSSxowZo1q1aqlFixYKDw+XdGXUNCwszKxmAQAAAADFiGmz7z700ENq3bq1kpOT1ahRI1t5x44d1atXL7OaBQAAAAAUI6YlpZLk7+8vf39/u7LmzZub2SQAAAAAoBgx7fZdAAAAAACuh6QUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaUhKAQAAAABOQ1IKAAAAAHAaklIAAAAAgNOQlAIAAAAAnIakFAAAAADgNCSlAAAAAACnISkFAAAAADgNSSkAAAAAwGlISgEAAAAATkNSCgAAAABwGpJSAAAAAIDTlKqk9K233lJwcLBcXV3VtGlTfffdd84OCQAAAEApQC5ydaUmKf344481atQovfDCC/rpp5/Upk0bde3aVX/88YezQwMAAABQgpGLXFupSUpnzJihIUOGaOjQoQoNDdWsWbMUFBSk2bNnOzs0AAAAACUYuci1lXN2ALdCdna2du7cqeeee86uPCIiQps3b853m6ysLGVlZdmW09LSJEnp6enmBQrkh2sOJcDNXMa537uGYRRRNCVH7jm5qb4po4iCQelyO/VNF5wdAIqrm/nuzN02N0fIZbVaZbVa7coKk4uUNqUiKT116pRycnLk5+dnV+7n56eUlJR8t4mPj1dsbKxDeVBQkCkxAlfl6ensCICbVhSX8blz5+TJz4Odc+fOSaJvghMM42cRxZ/nKzd/HdeoUcNueeLEiZo0aZJdWWFykdKmVCSluSwWi92yYRgOZbkmTJig6Oho2/Lly5d15swZVa1a9arboHDS09MVFBSkI0eOyMPDw9nhAIXCdWwewzB07tw5BQQEODuU205AQICOHDkid3d3+qYixs80SgKuY/MYhqHTp0/Ly8tLZcr83xOReUdJ/+5GcpHSplQkpd7e3ipbtqzDXyJOnDjh8BeLXPkNvVeuXNmsECHJw8ODL0wUe1zH5mCENH9lypRRYGCgs8Mo0fiZRknAdWyOgvZNhclFSptSMdGRi4uLmjZtqrVr19qVr127Vq1atXJSVAAAAABKOnKR6ysVI6WSFB0drf79+6tZs2YKDw/XO++8oz/++ENPPfWUs0MDAAAAUIKRi1xbqUlKH3nkEZ0+fVqTJ09WcnKy6tevry+//FI1a9Z0dmilntVq1cSJE695Dz5wu+M6BkoWfqZREnAd3z7IRa7NYjDHPgAAAADASUrFM6UAAAAAgNsTSSkAAAAAwGlISgEAAAAATkNSitvKxo0bZbFYdPbsWWeHAtyQQ4cOyWKxKDEx0dmhAChi9E0oruibUFyUmtl3AcBMQUFBSk5Olre3t7NDAQBAEn0Tig+SUhQrOTk5slgsKlOGQX7cXsqWLSt/f39nhwHACeibcLuib0JxwbcnTGUYhqZNm6batWvLzc1NjRo10pIlS2zrv/zyS9WpU0dubm5q3769Dh06ZLd9QkKCKleurJUrV6pu3bqyWq06fPjwLT4K4IprXc95b5FKTU1Vv3795OPjIzc3N4WEhGjevHlOjB5ALvomlCT0TSgJGCmFqf71r3/ps88+0+zZsxUSEqJvv/1W//jHP+Tj46PatWurd+/eeuqppzR8+HDt2LFDMTExDvvIyMhQfHy83n33XVWtWlW+vr5OOBLg2tdz3pdfv/jii9q7d6+++uoreXt767ffflNmZqaTIgfwd/RNKEnom1ASWAzDMJwdBEqm8+fPy9vbW998843Cw8Nt5UOHDlVGRoZq1aqlZcuW6ZdffpHFYpEkPffcc5o6dapSU1NVuXJlJSQkaNCgQUpMTFSjRo2cdSjAda/nuLg4BQcH66efflLjxo0VFRUlb29vvf/++06MGkBe9E0oSeibUFIwUgrT7N27VxcuXFCnTp3syrOzsxUWFqbMzEy1bNnS1ulLsvtCzeXi4qKGDRuaHi9wLde7nvMaPny4HnzwQe3atUsRERHq2bOnWrVqdavCBXAV9E0oSeibUFKQlMI0ly9fliStWrVK1atXt1tntVr1zDPPFGg/bm5udr8cAM5wves5JyfHrqxr1646fPiwVq1apXXr1qljx44aOXKkXn311VsWMwBH9E0oSeibUFKQlMI0uZM//PHHH2rbtm2+65ctW2ZXtnXr1lsUHXBjrnc9550IRZJ8fHw0cOBADRw4UG3atNHYsWPp+AEno29CSULfhJKCpBSmcXd315gxYzR69GhdvnxZrVu3Vnp6ujZv3qxKlSrpqaee0vTp0xUdHa0nn3xSO3fuVEJCgrPDBvJ1ves57y8DL730kpo2bap69eopKytLK1euVGhoqJOiB5CLvgklCX0TSgqSUpjq5Zdflq+vr+Lj43Xw4EFVrlxZTZo00fPPP68aNWpo6dKlGj16tN566y01b95ccXFxGjx4sLPDBvJ1res5LxcXF02YMEGHDh2Sm5ub2rRpo8WLFzshagB50TehJKFvQknA7LsAUAT279+vu+++WwcOHNCdd97p7HAAAKBvQrFRxtkBAEBxd+bMGS1ZskQeHh4KCgpydjgAANA3oVjh9l0AuElDhgzRzp07NXv2bFmtVmeHAwAAfROKFW7fBQAAAAA4DbfvAgAAAACchqQUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaUhKAZO1a9dO9evXL5J97d27V5MmTdKhQ4eKZH9FJSMjQ5MmTdLGjRsd1iUkJMhisdx2MQNASVIa+hpJOnTokLp37y4vLy9ZLBaNGjXqhravVauWBg4caLc/i8WihISEIo0TwI3hPaVAMbJ3717FxsaqXbt2qlWrlrPDscnIyFBsbKykK78Y/V337t21ZcsWVatWzQmRAQBu1O3a10jS6NGj9eOPP+r999+Xv7//Dfctn3/+uTw8PEyKDkBhkZQCf5ORkaEKFSo4O4wSxcfHRz4+Ps4OAwBuG/Q1hbdnzx41b95cPXv2LNT2YWFhRRtQHoZh6MKFC3JzczO1HaCk4fZdlFqTJk2SxWLRrl279NBDD6lKlSq64447JEkXLlzQhAkTFBwcLBcXF1WvXl0jR47U2bNnHfazaNEihYeHq1KlSqpUqZIaN26s995775ptf/7556pQoYKGDh2qS5cuSZJ27NihqKgoeXl5ydXVVWFhYfrkk09s2yQkJOjhhx+WJLVv314Wi8XulqPcW7e+++47tWzZUm5ubqpevbpefPFF5eTkFMEZy9+hQ4dsSWdsbKwtrtzbo/K7fTc31i1btqhVq1Zyc3NTrVq1NG/ePEnSqlWr1KRJE1WoUEENGjTQ6tWrHdo9cOCA+vbtK19fX1mtVoWGhurNN9807TgBoDDoa4rGxo0bZbFY9Ntvv+mrr76yxXXo0CFduHBBMTExaty4sTw9PeXl5aXw8HAtX77cYT95b9/Nz8CBA/MdIc79v/w7i8Wip59+WnPmzFFoaKisVqvmz58vqWD91OXLlzVlyhTdddddcnNzU+XKldWwYUP95z//ubETBBRzjJSi1Ovdu7ceffRRPfXUUzp//rwMw1DPnj21fv16TZgwQW3atNHPP/+siRMnasuWLdqyZYusVqsk6aWXXtLLL7+s3r17KyYmRp6entqzZ48OHz581fZmzpypsWPHatKkSfrXv/4lSdqwYYO6dOmiFi1aaM6cOfL09NTixYv1yCOPKCMjQwMHDlT37t0VFxen559/Xm+++aaaNGkiSbZfbiQpJSVFjz76qJ577jlNnjxZq1at0pQpU5Samqo33njDlPNXrVo1rV69Wl26dNGQIUM0dOhQSbru6GhKSooGDRqkcePGKTAwUK+//roGDx6sI0eOaMmSJXr++efl6empyZMnq2fPnjp48KACAgIkXbm1rFWrVqpRo4amT58uf39/ff3113r22Wd16tQpTZw40ZRjBYDCoq+5OU2aNNGWLVvUq1cv3XHHHXr11VclXemDLly4oDNnzmjMmDGqXr26srOztW7dOvXu3Vvz5s3T448/bkpMuZYtW6bvvvtOL730kvz9/eXr61vgfmratGm2/6P77rtPFy9e1K+//prvHyaAEs0ASqmJEycakoyXXnrJrnz16tWGJGPatGl25R9//LEhyXjnnXcMwzCMgwcPGmXLljX69et3zXbatm1r1KtXz8jJyTGefvppw8XFxVi4cKFdnbvvvtsICwszLl68aFceGRlpVKtWzcjJyTEMwzA+/fRTQ5KxYcOGfNuRZCxfvtyufNiwYUaZMmWMw4cPXzPOm3Hy5ElDkjFx4kSHdfPmzTMkGUlJSQ6x7tixw1Z2+vRpo2zZsoabm5vx559/2soTExMNScZrr71mK+vcubMRGBhopKWl2bX19NNPG66ursaZM2eK7uAA4CbQ1xStmjVrGt27d79mnUuXLhkXL140hgwZYoSFhTlsP2DAANtyUlKSIcmYN2+erWzAgAFGzZo1Hfab+3/5d5IMT09Ph36noP1UZGSk0bhx42seD1AacPsuSr0HH3zQbvmbb76RJIfbex5++GFVrFhR69evlyStXbtWOTk5Gjly5HXbuHDhgnr27KkPP/xQa9asUb9+/WzrfvvtN/3666+2skuXLtk+3bp1U3Jysvbv31+gY3F3d1dUVJRdWd++fXX58mV9++23BdrHrVKtWjU1bdrUtuzl5SVfX181btzYNiIqSaGhoZJkGxG4cOGC1q9fr169eqlChQoO5+vChQvaunXrrT0YALgO+hpzffrpp7r33ntVqVIllStXTuXLl9d7772nffv2md52hw4dVKVKFdvyjfRTzZs31+7duzVixAh9/fXXSk9PNz1e4HZEUopSL+/MfadPn1a5cuUcbj+1WCzy9/fX6dOnJUknT56UJAUGBl63jRMnTujrr79WeHi4WrVqZbfu+PHjkqQxY8aofPnydp8RI0ZIkk6dOlWgY/Hz83Mo8/f3tx3X7cTLy8uhzMXFxaHcxcVF0pVOXrpyHJcuXdLrr7/ucL66desmqeDnCwBuFfoa83z22Wfq06ePqlevroULF2rLli3avn27Bg8ebOs7zJTf/21B+6kJEybo1Vdf1datW9W1a1dVrVpVHTt21I4dO0yPG7id8EwpSr28kxZUrVpVly5d0smTJ+1+WTAMQykpKbrnnnsk/d8zk0ePHlVQUNA126hRo4ZmzJihXr16qXfv3vr000/l6uoqSfL29pZ0pWPq3bt3vtvfddddBTqW3F86/i4lJcV2XCVBlSpVVLZsWfXv3/+qIwfBwcG3OCoAuDb6GvMsXLhQwcHB+vjjj+3Oc1ZWVqH25+rqmu+2V0va8/7f3kg/Va5cOUVHRys6Olpnz57VunXr9Pzzz6tz5846cuQIszSj1GCkFMijY8eOkq50cn+3dOlSnT9/3rY+IiJCZcuW1ezZswu034iICH399df69ttvFRkZqfPnz0u68ktASEiIdu/erWbNmuX7cXd3lyTbpBeZmZn5tnHu3Dl98cUXdmWLFi1SmTJldN999xXwDNy468VVlCpUqKD27dvrp59+UsOGDfM9XyUlAQdQctHXFB2LxSIXFxe75DAlJSXf2XcLolatWjpx4oRd8p2dna2vv/66QNsXtp+qXLmyHnroIY0cOVJnzpyxm7UeKOkYKQXy6NSpkzp37qzx48crPT1d9957r21GxLCwMPXv31/SlU7r+eef18svv6zMzEw99thj8vT01N69e3Xq1CnFxsY67Lt169Zav369unTpooiICH355Zfy9PTU22+/ra5du6pz584aOHCgqlevrjNnzmjfvn3atWuXPv30U0lS/fr1JUnvvPOO3N3d5erqquDgYFvnVrVqVQ0fPlx//PGH6tSpoy+//FJz587V8OHDVaNGDVscd955p6QrzxjlGjJkiObPn6/ff/9dNWvWlCR98MEHGjx4sN5///1rzl7o7u6umjVravny5erYsaO8vLzk7e1t2kvX//Of/6h169Zq06aNhg8frlq1auncuXP67bfftGLFCtuzWgBwu6KvufG+5moiIyP12WefacSIEXrooYd05MgRvfzyy6pWrZoOHDhww/t75JFH9NJLL+nRRx/V2LFjdeHCBb322ms39MqbgvZTPXr0UP369dWsWTP5+Pjo8OHDmjVrlmrWrKmQkJAbjh0otpw90xLgLLmz6J08edJhXWZmpjF+/HijZs2aRvny5Y1q1aoZw4cPN1JTUx3qfvDBB8Y999xjuLq6GpUqVTLCwsLsZvHLnRHx7/bs2WP4+/sbTZo0sbW/e/duo0+fPoavr69Rvnx5w9/f3+jQoYMxZ84cu21nzZplBAcHG2XLlrWbMTC3nY0bNxrNmjUzrFarUa1aNeP55593mGmxZs2aDjMLDhgwwGGW3NyZc/9+PFezbt06IywszLBarYYk2+yGV5t9N+85yY0rv1kVJRkjR460K0tKSjIGDx5sVK9e3Shfvrzh4+NjtGrVypgyZcp1YwWAW4W+pqZd2c32NVfrJ1555RWjVq1ahtVqNUJDQ425c+fmO1tuQWbfNQzD+PLLL43GjRsbbm5uRu3atY033njjqrPv5u2f/r7v6/VT06dPN1q1amV4e3sbLi4uRo0aNYwhQ4YYhw4duu65AEoSi2EYhhNyYQBFrF27djp16pT27Nnj7FAAACUUfQ0AM/BMKQAAAADAaUhKAQAAAABOw+27AAAAAACnYaQUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaco5O4Di4vLlyzp27Jjc3d1lsVicHQ4AlBqGYejcuXMKCAhQmTL8LfXv6JsAwDnom4oWSWkBHTt2TEFBQc4OAwBKrSNHjigwMNDZYdxW6JsAwLnom4oGSWkBubu7S7py4Xl4eDg5GgAoPdLT0xUUFGT7Hsb/oW8CAOegbypaJKUFlHtblIeHBx0/ADgBt6c6om8CAOeibyoa3AANAAAAAHAaRkoB3BD+IIjCMAxnRwCgpLLE0jGhcIyJdE63C0ZKAQAAAABOQ1IKAAAAAHAaklIAAAAAgNOQlAIAAAAAnIakFAAAAADgNCSlAAAAAACnISkFAAAAADgNSSkAAAAAmOjbb79Vjx49FBAQIIvFomXLltmtNwxDkyZNUkBAgNzc3NSuXTv98ssvdnWysrL0zDPPyNvbWxUrVlRUVJSOHj1qVyc1NVX9+/eXp6enPD091b9/f509e9bko7t5JKUAAAAAYKLz58+rUaNGeuONN/JdP23aNM2YMUNvvPGGtm/fLn9/f3Xq1Ennzp2z1Rk1apQ+//xzLV68WN9//73++usvRUZGKicnx1anb9++SkxM1OrVq7V69WolJiaqf//+ph/fzSrn7AAAAAAAoCTr2rWrunbtmu86wzA0a9YsvfDCC+rdu7ckaf78+fLz89OiRYv05JNPKi0tTe+9954WLFig+++/X5K0cOFCBQUFad26dercubP27dun1atXa+vWrWrRooUkae7cuQoPD9f+/ft111133ZqDLQRGSgEAAACgENLT0+0+WVlZN7yPpKQkpaSkKCIiwlZmtVrVtm1bbd68WZK0c+dOXbx40a5OQECA6tevb6uzZcsWeXp62hJSSWrZsqU8PT1tdW5XJKUAAAAAUAhBQUG25zc9PT0VHx9/w/tISUmRJPn5+dmV+/n52dalpKTIxcVFVapUuWYdX19fh/37+vra6tyuuH0XAAAAAArhyJEj8vDwsC1brdZC78tisdgtG4bhUJZX3jr51S/IfpyNkVIAAAAAKAQPDw+7T2GSUn9/f0lyGM08ceKEbfTU399f2dnZSk1NvWad48ePO+z/5MmTDqOwtxuSUgAAAABwkuDgYPn7+2vt2rW2suzsbG3atEmtWrWSJDVt2lTly5e3q5OcnKw9e/bY6oSHhystLU3btm2z1fnxxx+VlpZmq3O74vZdAAAAADDRX3/9pd9++822nJSUpMTERHl5ealGjRoaNWqU4uLiFBISopCQEMXFxalChQrq27evJMnT01NDhgxRTEyMqlatKi8vL40ZM0YNGjSwzcYbGhqqLl26aNiwYXr77bclSU888YQiIyNv65l3JZJSAAAAADDVjh071L59e9tydHS0JGnAgAFKSEjQuHHjlJmZqREjRig1NVUtWrTQmjVr5O7ubttm5syZKleunPr06aPMzEx17NhRCQkJKlu2rK3Ohx9+qGeffdY2S29UVNRV3416O7EYhmE4O4jiID09XZ6enkpLS7N7mBkobW7z5+Rxm7qZnobv36vj3ACSJZaOCYVjTCx858T3b9HimVIAAAAAgNOYlpSuXr1a33//vW35zTffVOPGjdW3b1+HWaMAAAAAAKWTaUnp2LFjlZ6eLkn673//q5iYGHXr1k0HDx603UMNAAAAACjdTJvoKCkpSXXr1pUkLV26VJGRkYqLi9OuXbvUrVs3s5oFAAAAABQjpo2Uuri4KCMjQ5K0bt062wxQXl5ethFUAAAAAEDpZtpIaevWrRUdHa17771X27Zt08cffyxJ+t///qfAwECzmgUAAAAAFCOmjZS+8cYbKleunJYsWaLZs2erevXqkqSvvvpKXbp0MatZAAAAAEAxYtpIaY0aNbRy5UqH8pkzZ5rVJAAAAACgmCnSpPRGnhXlJbMAAAAAgCJNSitXriyLxVKgujk5OUXZNAAAAADgJnTo0EGfffaZKleubFeenp6unj176ptvvjGl3SJ9pnTDhg365ptv9M033+j999+Xr6+vxo0bp88//1yff/65xo0bJz8/P73//vsF3ue3336rHj16KCAgQBaLRcuWLbNbbxiGJk2apICAALm5ualdu3b65Zdf7OpkZWXpmWeekbe3typWrKioqCgdPXq0KA4ZAAAAAEqEjRs3Kjs726H8woUL+u6770xrt0hHStu2bWv79+TJkzVjxgw99thjtrKoqCg1aNBA77zzjgYMGFCgfZ4/f16NGjXSoEGD9OCDDzqsnzZtmmbMmKGEhATVqVNHU6ZMUadOnbR//365u7tLkkaNGqUVK1Zo8eLFqlq1qmJiYhQZGamdO3eqbNmyN3nUAAAAAFB8/fzzz7Z/7927VykpKbblnJwcrV692jZxrRkshmEYZuy4QoUK2r17t0JCQuzK//e//6lx48a2d5jeCIvFos8//1w9e/aUdGWUNCAgQKNGjdL48eMlXRkV9fPz09SpU/Xkk08qLS1NPj4+WrBggR555BFJ0rFjxxQUFKQvv/xSnTt3LlDb6enp8vT0VFpaGs/DolQr4B36gJ2b6Wn4/r06zg0gWWLpmFA4xsTCd04l7fu3TJkytscw80sP3dzc9Prrr2vw4MHmtG/KXiUFBQVpzpw5DuVvv/22goKCiqSNpKQkpaSkKCIiwlZmtVrVtm1bbd68WZK0c+dOXbx40a5OQECA6tevb6sDAAAAAKVVUlKSfv/9dxmGoW3btikpKcn2+fPPP5Wenm5aQiqZ+EqYmTNn6sEHH9TXX3+tli1bSpK2bt2q33//XUuXLi2SNnKHlf38/OzK/fz8dPjwYVsdFxcXValSxaHO34el88rKylJWVpZt+UZmFgYAAACA4qJmzZqSpMuXLzulfdOS0m7duunAgQN666239Ouvv8owDD3wwAN66qmnimykNFfeGX8Nw7juLMDXqxMfH6/Y2NgiiQ8AAAAAioP//e9/2rhxo06cOOGQpL700kumtGlaUipJgYGBiouLM23//v7+kq6MhlarVs1WfuLECdvoqb+/v7Kzs5Wammo3WnrixAm1atXqqvueMGGCoqOjbcvp6elFnkwDAAAAwO1i7ty5Gj58uLy9veXv7283iGexWIpnUnr27Flt27Yt3yz78ccfv+n9BwcHy9/fX2vXrlVYWJgkKTs7W5s2bdLUqVMlSU2bNlX58uW1du1a9enTR5KUnJysPXv2aNq0aVfdt9VqldVqvekYAQAAAKA4mDJliv7973/bJpG9VUxLSlesWKF+/frp/Pnzcnd3d8iyC5qU/vXXX/rtt99sy0lJSUpMTJSXl5dq1KihUaNGKS4uTiEhIQoJCVFcXJwqVKigvn37SpI8PT01ZMgQxcTEqGrVqvLy8tKYMWPUoEED3X///UV70AAAAABQTKWmpurhhx++5e2alpTGxMRo8ODBtiSxsHbs2KH27dvblnNvqR0wYIASEhI0btw4ZWZmasSIEUpNTVWLFi20Zs0a2ztKpSuTLpUrV059+vRRZmamOnbsqISEBN5RCgAAAAD/v4cfflhr1qzRU089dUvbNe09pRUrVtR///tf1a5d24zd33Il7V1EQGHxnlIUBu8pNQfnBuA9pSg83lPqKD4+XjNmzFD37t3VoEEDlS9f3m79s88+a0q7po2Udu7cWTt27CgxSSkAAAAAlGTvvPOOKlWqpE2bNmnTpk126ywWS/FLSrt3766xY8dq7969+WbZUVFRZjUNAAAAALhBSUlJTmnXtKR02LBhkqTJkyc7rLNYLMrJyTGraQAAAABAMWFaUpr3FTAAAAAAgNvX4MGDr7n+/fffN6VdU99TCgAAAAAoHlJTU+2WL168qD179ujs2bPq0KGDae2ampRu2rRJr776qvbt2yeLxaLQ0FCNHTtWbdq0MbNZAAAAAMAN+vzzzx3KLl++rBEjRpg6gW0Zs3a8cOFC3X///apQoYKeffZZPf3003Jzc1PHjh21aNEis5oFAAAAABSRMmXKaPTo0Zo5c6ZpbZg2Uvrvf/9b06ZN0+jRo21l//znPzVjxgy9/PLL6tu3r1lNAwAAAACKyO+//65Lly6Ztn/TktKDBw+qR48eDuVRUVF6/vnnzWoWAAAAAFAI0dHRdsuGYSg5OVmrVq3SgAEDTGvXtKQ0KChI69ev15133mlXvn79egUFBZnVLAAAAACgEH766Se75TJlysjHx0fTp0+/7sy8N8O0pDQmJkbPPvusEhMT1apVK1ksFn3//fdKSEjQf/7zH7Oavb1ZLM6OAMWRYTg7AgAAANyESZMmKTY21q7Mz89PKSkpkq6MSMbGxuqdd95RamqqWrRooTfffFP16tWz1c/KytKYMWP00UcfKTMzUx07dtRbb72lwMDAIotzw4YNRbavG2FaUjp8+HD5+/tr+vTp+uSTTyRJoaGh+vjjj/XAAw+Y1SwAAAAA3Hbq1aundevW2ZbLli1r+/e0adM0Y8YMJSQkqE6dOpoyZYo6deqk/fv3y93dXZI0atQorVixQosXL1bVqlUVExOjyMhI7dy5025fReHkyZPav3+/LBaL6tSpIx8fnyLdf16mvhKmV69e6tWrl5lNAAAAAMBtr1y5cvL393coNwxDs2bN0gsvvKDevXtLkubPny8/Pz8tWrRITz75pNLS0vTee+9pwYIFuv/++yVdedtJUFCQ1q1bp86dOxdJjOfPn9czzzyjDz74QJcvX5Z0JXl+/PHH9frrr6tChQpF0k5epr0SZvv27frxxx8dyn/88Uft2LHDrGYBAAAA4JZIT0+3+2RlZV217oEDBxQQEKDg4GA9+uijOnjwoCQpKSlJKSkpioiIsNW1Wq1q27atNm/eLEnauXOnLl68aFcnICBA9evXt9UpCtHR0dq0aZNWrFihs2fP6uzZs1q+fLk2bdqkmJiYImsnL9OS0pEjR+rIkSMO5X/++adGjhxpVrMAAAAAcEsEBQXJ09PT9omPj8+3XosWLfTBBx/o66+/1ty5c5WSkqJWrVrp9OnTtudK/fz87Lb5+zOnKSkpcnFxUZUqVa5apygsXbpU7733nrp27SoPDw95eHioW7dumjt3rpYsWVJk7eRl2u27e/fuVZMmTRzKw8LCtHfvXrOaBQAAAIBb4siRI/Lw8LAtW63WfOt17drV9u8GDRooPDxcd9xxh+bPn6+WLVtKkix5JkU1DMOhLK+C1LkRGRkZDsmxJPn6+iojI6PI2snLtJFSq9Wq48ePO5QnJyerXDlTH2UFAAAAANPljibmfq6WlOZVsWJFNWjQQAcOHLA9Z5p3xPPEiRO2BNHf31/Z2dlKTU29ap2iEB4erokTJ+rChQu2sszMTMXGxio8PLzI2snLtKS0U6dOmjBhgtLS0mxlZ8+e1fPPP69OnTqZ1SwAAAAA3NaysrK0b98+VatWTcHBwfL399fatWtt67Ozs7Vp0ya1atVKktS0aVOVL1/erk5ycrL27Nljq1MUZs2apc2bNyswMFAdO3bU/fffr6CgIP3www+mvtbTtCHL6dOn67777lPNmjUVFhYmSUpMTJSfn58WLFhgVrMAAAAAcFsZM2aMevTooRo1aujEiROaMmWK0tPTNWDAAFksFo0aNUpxcXEKCQlRSEiI4uLiVKFCBfXt21eS5OnpqSFDhigmJkZVq1aVl5eXxowZowYNGthm4y0KuaO3Cxcu1K+//irDMPToo4+qX79+cnNzK7J28jItKa1evbp+/vlnffjhh9q9e7fc3Nw0aNAgPfbYYypfvrxZzQIAAADAbeXo0aN67LHHdOrUKfn4+Khly5baunWratasKUkaN26cMjMzNWLECKWmpqpFixZas2aN7R2lkjRz5kyVK1dOffr0UWZmpjp27KiEhIQifUdpfHy8/Pz8NGzYMLvy999/XydPntT48eOLrK2/sxiGYZiy5xImPT1dnp6eSktLs3uY+YYU4UPIKEVusx9RLmMUxs1cxkXy/VtCcW4AyRJLx4TCMSYWvnMqqd+/tWrV0qJFixxuCf7xxx/16KOPKikpyZR2TXumVJIWLFig1q1bKyAgQIcPH5Z0JcNfvny5mc0CAAAAAG5QSkqKqlWr5lDu4+Oj5ORk09o1LSmdPXu2oqOj1bVrV6WmpionJ0eSVKVKFc2aNcusZgEAAAAAhZA7qVFeP/zwgwICAkxr17RnSl9//XXNnTtXPXv21CuvvGIrb9asmcaMGWNWswAA4EYs4tZHFELf2+vREgBFY+jQoRo1apQuXryoDh06SJLWr1+vcePGKSYmxrR2TUtKk5KSbLPu/p3VatX58+fNahYAAAAAUAjjxo3TmTNnNGLECGVnZ0uSXF1dNX78eE2YMMG0dk1LSoODg5WYmGibUSrXV199pbp165rVLAAAAACgECwWi6ZOnaoXX3xR+/btk5ubm0JCQmS1Wk1t17SkdOzYsRo5cqQuXLggwzC0bds2ffTRR4qPj9e7775rVrMAAAAAgJtQqVIl3XPPPbesPdOS0kGDBunSpUsaN26cMjIy1LdvXwUGBuo///mPHn30UbOaBQAAAAAUI6YlpZmZmerXr5+GDRumU6dO6eDBg/rhhx8UGBhoVpMAAAAAgGLGtFfCPPDAA/rggw8kSeXKlVNUVJRmzJihnj17avbs2WY1CwAAAAAoRkxLSnft2qU2bdpIkpYsWSI/Pz8dPnxYH3zwgV577TWzmgUAAAAAFCOmJaUZGRlyd3eXJK1Zs0a9e/dWmTJl1LJlSx0+fNisZgEAAAAAxYhpSemdd96pZcuW6ciRI/r6668VEREhSTpx4oQ8PDzMahYAAAAAUIyYlpS+9NJLGjNmjGrVqqUWLVooPDxc0pVR07CwMLOaBQAAAAAUI6bNvvvQQw+pdevWSk5OVqNGjWzlHTt2VK9evcxqFgAAAABQjJiWlEqSv7+//P397cqaN29uZpMAAAAAgGLEtNt3AQAAAAC4HpJSAAAAAIDTkJQCAAAAAJyGpBQAAAAA4DQkpQAAAAAApyEpBQAAAAA4DUkpAAAAAMBpSEoBAAAAAE5DUgoAAAAAcBqSUgAAAACA05CUAgAAAACchqQUAAAAAOA0JKUAAAAAAKchKQUAAAAAOA1JKQAAAADAaUhKAQAAAABOU6qS0rfeekvBwcFydXVV06ZN9d133zk7JAAAAAClALnI1ZWapPTjjz/WqFGj9MILL+inn35SmzZt1LVrV/3xxx/ODg0AAABACUYucm2lJimdMWOGhgwZoqFDhyo0NFSzZs1SUFCQZs+e7ezQAAAAAJRg5CLXVs7ZAdwK2dnZ2rlzp5577jm78oiICG3evDnfbbKyspSVlWVbTktLkySlp6ebFyiQH645lAA3cxnnfu8ahlFE0ZQcuefkpvqmjCIKBqXL7dQ3XXB2ACiubua7M3fb3Bwhl9VqldVqtSsrTC5S2pSKpPTUqVPKycmRn5+fXbmfn59SUlLy3SY+Pl6xsbEO5UFBQabECFyVp6ezIwBuWlFcxufOnZMnPw92zp07J4m+CU4wjJ9FFH+er9z8dVyjRg275YkTJ2rSpEl2ZYXJRUqbUpGU5rJYLHbLhmE4lOWaMGGCoqOjbcuXL1/WmTNnVLVq1atug8JJT09XUFCQjhw5Ig8PD2eHAxQK17F5DMPQuXPnFBAQ4OxQbjsBAQE6cuSI3N3d6ZuKGD/TKAm4js1jGIZOnz4tLy8vlSnzf09E5h0l/bsbyUVKm1KRlHp7e6ts2bIOf4k4ceKEw18scuU39F65cmWzQoQkDw8PvjBR7HEdm4MR0vyVKVNGgYGBzg6jRONnGiUB17E5Cto3FSYXKW1KxURHLi4uatq0qdauXWtXvnbtWrVq1cpJUQEAAAAo6chFrq9UjJRKUnR0tPr3769mzZopPDxc77zzjv744w899dRTzg4NAAAAQAlGLnJtpSYpfeSRR3T69GlNnjxZycnJql+/vr788kvVrFnT2aGVelarVRMnTrzmPfjA7Y7rGChZ+JlGScB1fPsgF7k2i8Ec+wAAAAAAJykVz5QCAAAAAG5PJKUAAAAAAKchKQUAAAAAOA1JKW4rGzdulMVi0dmzZ50dCnBDDh06JIvFosTERGeHAqCI0TehuKJvQnFRambfBQAzBQUFKTk5Wd7e3s4OBQAASfRNKD5ISlGs5OTkyGKxqEwZBvlxeylbtqz8/f2dHQYAJ6Bvwu2KvgnFBd+eMJVhGJo2bZpq164tNzc3NWrUSEuWLLGt//LLL1WnTh25ubmpffv2OnTokN32CQkJqly5slauXKm6devKarXq8OHDt/gogCuudT3nvUUqNTVV/fr1k4+Pj9zc3BQSEqJ58+Y5MXoAueibUJLQN6EkYKQUpvrXv/6lzz77TLNnz1ZISIi+/fZb/eMf/5CPj49q166t3r1766mnntLw4cO1Y8cOxcTEOOwjIyND8fHxevfdd1W1alX5+vo64UiAa1/PeV9+/eKLL2rv3r366quv5O3trd9++02ZmZlOihzA39E3oSShb0JJYDEMw3B2ECiZzp8/L29vb33zzTcKDw+3lQ8dOlQZGRmqVauWli1bpl9++UUWi0WS9Nxzz2nq1KlKTU1V5cqVlZCQoEGDBikxMVGNGjVy1qEA172e4+LiFBwcrJ9++kmNGzdWVFSUvL299f777zsxagB50TehJKFvQknBSClMs3fvXl24cEGdOnWyK8/OzlZYWJgyMzPVsmVLW6cvye4LNZeLi4saNmxoerzAtVzves5r+PDhevDBB7Vr1y5FRESoZ8+eatWq1a0KF8BV0DehJKFvQklBUgrTXL58WZK0atUqVa9e3W6d1WrVM888U6D9uLm52f1yADjD9a7nnJwcu7KuXbvq8OHDWrVqldatW6eOHTtq5MiRevXVV29ZzAAc0TehJKFvQklBUgrT5E7+8Mcff6ht27b5rl+2bJld2datW29RdMCNud71nHciFEny8fHRwIEDNXDgQLVp00Zjx46l4wecjL4JJQl9E0oKklKYxt3dXWPGjNHo0aN1+fJltW7dWunp6dq8ebMqVaqkp556StOnT1d0dLSefPJJ7dy5UwkJCc4OG8jX9a7nvL8MvPTSS2ratKnq1aunrKwsrVy5UqGhoU6KHkAu+iaUJPRNKClISmGql19+Wb6+voqPj9fBgwdVuXJlNWnSRM8//7xq1KihpUuXavTo0XrrrbfUvHlzxcXFafDgwc4OG8jXta7nvFxcXDRhwgQdOnRIbm5uatOmjRYvXuyEqAHkRd+EkoS+CSUBs+8CQBHYv3+/7r77bh04cEB33nmns8MBAIC+CcVGGWcHAADF3ZkzZ7RkyRJ5eHgoKCjI2eEAAEDfhGKF23cB4CYNGTJEO3fu1OzZs2W1Wp0dDgAA9E0oVrh9FwAAAADgNNy+CwAAAABwGpJSAAAAAIDTkJQCAAAAAJyGpBQAAAAA4DQkpQAAAAAApyEpBYrQxx9/rHr16snNzU0Wi0WJiYnODsl0x44d06RJk/I91kmTJslisdz6oACgBCuNfY0k/fTTT2rbtq08PT1lsVg0a9asG9reYrFo0qRJtuWNGzfKYrFo48aNRRongBvHe0qBInLy5En1799fXbp00VtvvSWr1ao6deo4OyzTHTt2TLGxsapVq5YaN25st27o0KHq0qWLcwIDgBKotPY1kjR48GCdP39eixcvVpUqVVSrVq0b2n7Lli0KDAw0JzgAN4WkFCgi//vf/3Tx4kX94x//UNu2bZ0dzm0hMDCQXwAAoAiV5r5mz549GjZsmLp27Vqo7Vu2bFnEEdnLycnRpUuXZLVaTW0HKIm4fRel2smTJ/XEE08oKChIVqtVPj4+uvfee7Vu3TpbnbVr1+qBBx5QYGCgXF1ddeedd+rJJ5/UqVOnbHUGDhyo1q1bS5IeeeQRWSwWtWvXzrZ+x44dioqKkpeXl1xdXRUWFqZPPvmkwHGePXtWMTExql27tqxWq3x9fdWtWzf9+uuvtjpnzpzRiBEjVL16dbm4uKh27dp64YUXlJWVdRNn6No2btyoe+65R5I0aNAgWSwWu9uj8rt9t1atWoqMjNTKlSsVFhYmNzc3hYaGauXKlZKkhIQEhYaGqmLFimrevLl27Njh0O7Nnk8AuJXoa25OQkKCLBaLLl26pNmzZ9v6GunKuR0xYoTq1q2rSpUqydfXVx06dNB3333nsJ+8t+/mp127dnbnNNfAgQPtRmYPHToki8WiadOmacqUKQoODpbVatWGDRskFez/IiMjQ2PGjFFwcLBcXV3l5eWlZs2a6aOPPrqxEwSUAIyUolTr37+/du3apX//+9+qU6eOzp49q127dun06dO2Or///rvCw8M1dOhQeXp66tChQ5oxY4Zat26t//73vypfvrxefPFFNW/eXCNHjlRcXJzat28vDw8PSdKGDRvUpUsXtWjRQnPmzJGnp6cWL16sRx55RBkZGRo4cOA1Yzx37pxat26tQ4cOafz48WrRooX++usvffvtt0pOTtbdd9+tCxcuqH379vr9998VGxurhg0b6rvvvlN8fLwSExO1atUqU85fkyZNNG/ePA0aNEj/+te/1L17d0m67ujo7t27NWHCBL3wwgvy9PRUbGysevfurQkTJmj9+vWKi4uTxWLR+PHjFRkZqaSkJLm5uUm6+fMJALcafc3N6d69u7Zs2aLw8HA99NBDiomJsa07c+aMJGnixIny9/fXX3/9pc8//1zt2rXT+vXr800wi9Jrr72mOnXq6NVXX5WHh4dCQkIK/H8RHR2tBQsWaMqUKQoLC9P58+e1Z88eu+sCKDUMoBSrVKmSMWrUqALXv3z5snHx4kXj8OHDhiRj+fLltnUbNmwwJBmffvqp3TZ33323ERYWZly8eNGuPDIy0qhWrZqRk5NzzTYnT55sSDLWrl171Tpz5swxJBmffPKJXfnUqVMNScaaNWsKeog3bPv27YYkY968eQ7rJk6caOT9mqlZs6bh5uZmHD161FaWmJhoSDKqVatmnD9/3la+bNkyQ5LxxRdf2Mpu9nwCwK1GX1M0JBkjR468Zp1Lly4ZFy9eNDp27Gj06tXLYfuJEyfalnPP5YYNG2xlbdu2Ndq2beuw3wEDBhg1a9a0LSclJRmSjDvuuMPIzs62q1vQ/4v69esbPXv2vObxAKUFt++iVGvevLkSEhI0ZcoUbd26VRcvXnSoc+LECT311FMKCgpSuXLlVL58edWsWVOStG/fvmvu/7ffftOvv/6qfv36SZIuXbpk+3Tr1k3Jycnav3+/w7pLly7JMAxJ0ldffaU6dero/vvvv2o733zzjSpWrKiHHnrIrjz3r7Hr168v2Am5RRo3bqzq1avblkNDQyVduW2qQoUKDuWHDx+WdGPnEwBuF/Q15pozZ46aNGkiV1dX27lbv379dc9bUYiKilL58uVtyzfyf9G8eXN99dVXeu6557Rx40ZlZmaaHi9wuyIpRan28ccfa8CAAXr33XcVHh4uLy8vPf7440pJSZEkXb58WREREfrss880btw4rV+/Xtu2bdPWrVsl6bodyPHjxyVJY8aMUfny5e0+I0aMkCTb80J518+fP1/Sledlrnc77OnTp+Xv7+/w/Kavr6/KlSt3290K5OXlZbfs4uJyzfILFy5IurHzCQC3C/oa88yYMUPDhw9XixYttHTpUm3dulXbt29Xly5dbkmSV61aNbvlG/m/eO211zR+/HgtW7ZM7du3l5eXl3r27KkDBw6YHjdwu+GZUpRq3t7emjVrlmbNmqU//vhDX3zxhZ577jmdOHFCq1ev1p49e7R7924lJCRowIABtu1+++23Au9fkiZMmKDevXvnW+euu+6SJG3fvt2uPDg4WJLk4+Ojo0ePXrOdqlWr6scff5RhGHa/LJw4cUKXLl2yxVHc3cj5BIDbBX2NeRYuXKh27dpp9uzZduXnzp0r1P5cXV2VlpbmUH61P3jmTdBv5P+iYsWKio2NVWxsrI4fP24bNe3Ro4fd5FJAaUBSCvz/atSooaefflrr16/XDz/8IOn/Opu807u//fbbBdrnXXfdpZCQ/4+9O4+rqtr/P/4+yCAqoMgkgoo5pDlrKqbhkJhDajZTKlamOX0VHLJuThWUOXU1qSzFLLN7ncohc0gpc54y02xSNIWcGEwRFPbvD3+c2xFUOAJb4fV8PM4j99prr/3Zp81ZfFj7rFVTP/zwg6Kiom5Yt1mzZrmWd+7cWePGjdM333yj9u3b51qnQ4cO+s9//qPly5fr4YcftpZ//PHH1v2FJfu9KYq/SOfn/QSA2xF9TcGyWCw53rf9+/dr69atCgwMzHd71apV03//+1+lp6db2z179qy2bNlinVTqRuztp3x9fRUeHq4ffvhBM2bM0MWLF22+zgIUdySlKLFSUlLUrl07hYWF6e6775abm5t27typNWvWWP+6effdd+uuu+7SSy+9JMMw5OnpqRUrVmjdunV5Ps/777+vzp07q1OnTgoPD1flypV17tw5HTp0SHv27NF///vfGx4/fPhwff755+rRo4deeuklNW/eXGlpaYqLi1O3bt3Url079enTR++++6769u2ro0ePqn79+tq8ebOioqLUpUsXm+8IOTo6KiQkxOa7Px06dFBcXJyuXLliLZs0aZImTZqkDRs23HAtvLvuukuurq769NNPVadOHZUrV07+/v7y9/fP83uUH7f6fgJAUaKvKZi+5nq6deum1157TePHj1dISIgOHz6sSZMmKSgoyOY8edW7d2+9//77euaZZ9S/f3+dPXtWkydPzlNCmi2v/y9atGihbt26qUGDBqpQoYIOHTqkBQsWKDg4mIQUJY+ZsywBZrp06ZIxcOBAo0GDBoa7u7vh6upq1K5d2xg/frzNDLAHDx40OnbsaLi5uRkVKlQwHnvsMePYsWPXncXv2hkRDcMwfvjhB+Pxxx83fHx8DCcnJ8PPz89o37698d577+Up1qSkJOP//u//jCpVqhhOTk6Gj4+P0bVrV+Pnn3+21jl79qwxcOBAo1KlSoajo6NRtWpVY+zYscalS5ds2pKUY2bBkJCQHLPkZs+c+89ZCa/ns88+M+6++27DycnJ5n253uy7Xbt2zdGGcplVMXt2w7ffftum/FbfTwAoKvQ1/3OrfU1u/UR6eroxcuRIo3Llykbp0qWNJk2aGMuXL88xW2728TebfdcwDGP+/PlGnTp1jNKlSxt169Y1Pv/88+vOvntt/5QtL/8vXnrpJaNZs2ZGhQoVDBcXF6N69erGiBEjjDNnztz0vQCKG4th/P9p1wAAAAAAKGLMvgsAAAAAMA1JKQAAAADANCSlAAAAAADTkJQCAAAAAExDUgoAAAAAMA1JKQAAAADANI5mB3CnyMrK0smTJ+Xm5iaLxWJ2OABQYhiGofPnz8vf318ODvwt9Z/omwDAHPRNBYukNI9OnjypwMBAs8MAgBLr+PHjCggIMDuM2wp9EwCYi76pYJCU5pGbm5ukqzeeu7u7ydEAQMmRmpqqwMBA6+cw/oe+CQDMQd9UsEhK8yj7sSh3d3c6fgAwAY+n5kTfBADmom8qGDwADQAAAAAwDUkpAAAAAMA0PL4LIF94SgX2MAyzIwBQXFkm0jHBPsZ4OqfbBSOlAAAAAADTkJQCAAAAAExDUgoAAAAAMA1JKQAAAADANCSlAAAAAADTkJQCAAAAAExDUgoAAAAAMA1JKQAAAADANCSlAAAAAADTkJQCAAAAAExDUgoAAAAAMA1JKQAAAADANCSlAAAAAADTkJQCAAAAAExDUgoAAAAAMA1JKQAAAADANCSlAAAAAADTkJQCAAAAAExDUgoAAAAAME2RJaVr1qzR5s2brdvvvvuuGjVqpLCwMCUlJRVVGAAAAACA20iRJaWjRo1SamqqJOnHH39UZGSkunTpoj/++EMRERFFFQYAAAAA4DZSZEnpkSNHVLduXUnSkiVL1K1bN0VFRWn27Nn66quv8tzOhAkTZLFYbF5+fn43PCYuLk5NmzZV6dKlVb16db333nu3dC0AAAAAgIJRZEmps7OzLl68KElav369QkNDJUmenp7WEdS8uueee5SQkGB9/fjjj9ete+TIEXXp0kVt2rTR3r179fLLL2vYsGFasmSJ/RcDAAAAACgQjkV1otatWysiIkL33XefduzYoc8//1yS9MsvvyggICBfbTk6Ot50dDTbe++9pypVqmjGjBmSpDp16mjXrl2aMmWKHnnkkXydFwAAAABQsIpspHTWrFlydHTU4sWLFRMTo8qVK0uSvvrqKz344IP5auvXX3+Vv7+/goKC9OSTT+qPP/64bt2tW7daR2WzderUSbt27dLly5fzfyEAAAAAgAJTZCOlVapU0cqVK3OUT58+PV/ttGjRQh9//LFq1aqlv/76S6+//rpatWqln376SRUrVsxRPzExUb6+vjZlvr6+unLlis6cOaNKlSrlep709HSlp6dbt/P7iDEAAAAA4OYKNSnNTyLn7u6ep3qdO3e2/rt+/foKDg7WXXfdpfnz5193Fl+LxWKzbRhGruX/FB0drYkTJ+YpJgAAAACAfQr18d3y5curQoUKeXrZq2zZsqpfv75+/fXXXPf7+fkpMTHRpuzUqVNydHTMdWQ129ixY5WSkmJ9HT9+3O4YAQAAAMBM7du3V3Jyco7y1NRUtW/fvugD+odCHSnduHGj9d9Hjx7VSy+9pPDwcAUHB0u6+n3P+fPnKzo62u5zpKen69ChQ2rTpk2u+4ODg7VixQqbsrVr16pZs2ZycnK6brsuLi5ycXGxOy4AAAAAuF1s2rRJGRkZOcovXbqk7777zoSI/qdQk9KQkBDrvydNmqRp06bpqaeespZ1795d9evX1wcffKC+ffvmqc2RI0fqoYceUpUqVXTq1Cm9/vrrSk1NtR4/duxYnThxQh9//LEkaeDAgZo1a5YiIiLUv39/bd26VR999JE+++yzArxSAAAAALj97N+/3/rvgwcP2jxFmpmZqTVr1lgnoTVLkU10tHXrVr333ns5yps1a6bnn38+z+38+eefeuqpp3TmzBl5e3urZcuW2rZtm6pWrSpJSkhI0LFjx6z1g4KCtHr1ao0YMULvvvuu/P399e9//5vlYAAAAAAUe40aNZLFYpHFYsn1MV1XV1fNnDnThMj+p8iS0sDAQL333nuaOnWqTfn777+vwMDAPLezaNGiG+6PjY3NURYSEqI9e/bk+RwAAAAAUBwcOXJEhmGoevXq2rFjh7y9va37nJ2d5ePjo1KlSpkYYREmpdOnT9cjjzyir7/+Wi1btpQkbdu2Tb///ruWLFlSVGEAAAAAQImR/URpVlaWyZFcX5ElpV26dNGvv/6q2bNn6+eff5ZhGOrRo4cGDhyYr5FSAAAAAED+/fLLL9q0aZNOnTqVI0kdN26cSVEVYVIqSQEBAYqKiirKUwIAAABAiTdnzhy9+OKL8vLykp+fnywWi3WfxWIpOUlpcnKyduzYkWtm3qdPn6IMBQAAAABKjNdff11vvPGGxowZY3YoORRZUrpixQo9/fTTunDhgtzc3HJk5iSlAAAAAFA4kpKS9Nhjj5kdRq4ciupEkZGRevbZZ3X+/HklJycrKSnJ+jp37lxRhQEAAAAAJc5jjz2mtWvXmh1GroosKT1x4oSGDRumMmXKFNUpAQAAAMBU0dHRuvfee+Xm5iYfHx/17NlThw8ftqljGIYmTJggf39/ubq6qm3btvrpp59s6qSnp2vo0KHy8vJS2bJl1b17d/355595jqNGjRp69dVXFR4erqlTp+rf//63zctMRfb4bqdOnbRr1y5Vr169qE4JAAAAAKaKi4vT4MGDde+99+rKlSt65ZVXFBoaqoMHD6ps2bKSpMmTJ2vatGmKjY1VrVq19Prrr6tjx446fPiw3NzcJEnDhw/XihUrtGjRIlWsWFGRkZHq1q2bdu/enad1Rj/44AOVK1dOcXFxiouLs9lnsVg0bNiwgr/4PCqypLRr164aNWqUDh48qPr168vJyclmf/fu3YsqFAAAAAAoEmvWrLHZnjdvnnx8fLR7927df//9MgxDM2bM0CuvvKJevXpJkubPny9fX18tXLhQAwYMUEpKij766CMtWLBADzzwgCTpk08+UWBgoNavX69OnTrdNI4jR44U/MUVkCJLSvv37y9JmjRpUo59FotFmZmZRRUKAAAAANyy1NRUm20XFxe5uLjc8JiUlBRJkqenp6SryWJiYqJCQ0Nt2gkJCdGWLVs0YMAA7d69W5cvX7ap4+/vr3r16mnLli15SkpvZ0WWlF67BAwAAAAA3MkCAwNttsePH68JEyZct75hGIqIiFDr1q1Vr149SVJiYqIkydfX16aur6+v4uPjrXWcnZ1VoUKFHHWyj7+ZZ5999ob7586dm6d2CkORrlMKAAAAAMXF8ePH5e7ubt2+2SjpkCFDtH//fm3evDnHvn8umSldTWCvLbtWXupkS0pKstm+fPmyDhw4oOTkZLVv3z5PbRSWIk1K4+LiNGXKFB06dEgWi0V16tTRqFGj1KZNm6IMAwAAZFuYt19mABthhtkRALcFd3d3m6T0RoYOHaovv/xS3377rQICAqzlfn5+kq6OhlaqVMlafurUKevoqZ+fnzIyMpSUlGQzWnrq1Cm1atUqT+dftmxZjrKsrCwNGjTI9Mloi2xJmE8++UQPPPCAypQpo2HDhmnIkCFydXVVhw4dtHDhwqIKAwAAAACKjGEYGjJkiJYuXapvvvlGQUFBNvuDgoLk5+endevWWcsyMjIUFxdnTTibNm0qJycnmzoJCQk6cOBAnpPS3Dg4OGjEiBGaPn263W0UhCIbKX3jjTc0efJkjRgxwlr2f//3f5o2bZpee+01hYWFFVUoAAAAAFAkBg8erIULF+qLL76Qm5ub9TugHh4ecnV1lcVi0fDhwxUVFaWaNWuqZs2aioqKUpkyZaw5koeHh5577jlFRkaqYsWK8vT01MiRI1W/fn3rbLz2+v3333XlypVbvs5bUWRJ6R9//KGHHnooR3n37t318ssvF1UY5srj896ADYNHpAAAAO5UMTExkqS2bdvalM+bN0/h4eGSpNGjRystLU2DBg1SUlKSWrRoobVr11rXKJWk6dOny9HRUY8//rjS0tLUoUMHxcbG5mmNUkmKiIiw2TYMQwkJCVq1apX69u1r/wUWgCJLSgMDA7VhwwbVqFHDpnzDhg05Zq0CAAAAgOLAyMMAg8Vi0YQJE244c2/p0qU1c+ZMzZw506449u7da7Pt4OAgb29vTZ069aYz8xa2IktKIyMjNWzYMO3bt0+tWrWSxWLR5s2bFRsbq3feeaeowgAAAACAEmfjxo1mh3BdRZaUvvjii/Lz89PUqVP1n//8R5JUp04dff755+rRo0dRhQEAAAAAJdbp06d1+PBhWSwW1apVS97e3maHVLRLwjz88MN6+OGHi/KUAAAAAFDiXbhwQUOHDtXHH3+srKwsSVKpUqXUp08fzZw5U2XKlDEttiJbEmbnzp3avn17jvLt27dr165dRRUGAAAAAJQ4ERERiouL04oVK5ScnKzk5GR98cUXiouLU2RkpKmxFVlSOnjwYB0/fjxH+YkTJzR48OCiCgMAAAAASpwlS5boo48+UufOneXu7i53d3d16dJFc+bM0eLFi02NrciS0oMHD6pJkyY5yhs3bqyDBw8WVRgAAAAAUOJcvHhRvr6+Ocp9fHx08eJFEyL6nyJLSl1cXPTXX3/lKE9ISJCjY5F+tRUAAAAASpTg4GCNHz9ely5dspalpaVp4sSJCg4ONjGyIkxKO3bsqLFjxyolJcValpycrJdfflkdO3bMczvR0dG699575ebmJh8fH/Xs2VOHDx++4TGbNm2SxWLJ8fr555/tvh4AAAAAuFPMmDFDW7ZsUUBAgDp06KAHHnhAgYGB+v77701forPIhiinTp2q+++/X1WrVlXjxo0lSfv27ZOvr68WLFiQ53bi4uI0ePBg3Xvvvbpy5YpeeeUVhYaG6uDBgypbtuwNjz18+LDc3d2t27fD9McAAAAAUNjq16+vX3/9VZ988ol+/vlnGYahJ598Uk8//bRcXV1Nja3IktLKlStr//79+vTTT/XDDz/I1dVV/fr101NPPSUnJ6c8t7NmzRqb7Xnz5snHx0e7d+/W/ffff8NjfXx8VL58eXvCBwAAAIA7VnR0tHx9fdW/f3+b8rlz5+r06dMaM2aMSZEV8TqlZcuW1QsvvFCgbWY/Duzp6XnTuo0bN9alS5dUt25d/etf/1K7du2uWzc9PV3p6enW7dTU1FsPFgAAAABM8P7772vhwoU5yu+55x49+eSTpialRfadUklasGCBWrduLX9/f8XHx0uSpk+fri+++MKu9gzDUEREhFq3bq169epdt16lSpX0wQcfaMmSJVq6dKlq166tDh066Ntvv73uMdHR0fLw8LC+AgMD7YoRAAAAAMyWmJioSpUq5Sj39vZWQkKCCRH9T5ElpTExMYqIiFDnzp2VlJSkzMxMSVKFChU0Y8YMu9ocMmSI9u/fr88+++yG9WrXrq3+/furSZMmCg4O1uzZs9W1a1dNmTLlusdkT8qU/cptjVUAAAAAuBNkT2p0re+//17+/v4mRPQ/RZaUzpw5U3PmzNErr7xiswRMs2bN9OOPP+a7vaFDh+rLL7/Uxo0bFRAQkO/jW7ZsqV9//fW6+11cXKyLyma/AAAAAOBO9Pzzz2v48OGaN2+e4uPjFR8fr7lz52rEiBE5vmda1IrsO6VHjhyxzrr7Ty4uLrpw4UKe2zEMQ0OHDtWyZcu0adMmBQUF2RXP3r17cx2+BgAAAIDiZvTo0Tp37pwGDRqkjIwMSVLp0qU1ZswYjR071tTYiiwpDQoK0r59+1S1alWb8q+++kp169bNczuDBw/WwoUL9cUXX8jNzU2JiYmSJA8PD+tUxmPHjtWJEyf08ccfS7q6Jk+1atV0zz33KCMjQ5988omWLFmiJUuWFNDVAQAAAMDty2Kx6K233tKrr76qQ4cOydXVVTVr1pSLi4vZoRVdUjpq1CgNHjxYly5dkmEY2rFjhz777DNFR0frww8/zHM7MTExkqS2bdvalM+bN0/h4eGSpISEBB07dsy6LyMjQyNHjtSJEyfk6uqqe+65R6tWrVKXLl1u+boAAAAA4E5Rrlw53XvvvWaHYaPIktJ+/frpypUrGj16tC5evKiwsDAFBATonXfe0ZNPPpnndgzDuGmd2NhYm+3Ro0dr9OjR+Q0ZAAAAAFDIiiwpTUtL09NPP63+/fvrzJkz+uOPP/T999/bNUkRAAAAAKB4KLLZd3v06GH9jqejo6O6d++uadOmqWfPntZHcgEAAAAAJUuRJaV79uxRmzZtJEmLFy+Wr6+v4uPj9fHHH+vf//53UYUBAAAAALiNFFlSevHiRbm5uUmS1q5dq169esnBwUEtW7ZUfHx8UYUBAAAAALiNFFlSWqNGDS1fvlzHjx/X119/rdDQUEnSqVOn5O7uXlRhAAAAAABuI0WWlI4bN04jR45UtWrV1KJFCwUHB0u6OmrauHHjogoDAAAAAHAbKbLZdx999FG1bt1aCQkJatiwobW8Q4cOevjhh4sqDAAAAADAbaTIklJJ8vPzk5+fn01Z8+bNizIEAAAAAMBtpMge3wUAAAAA4FokpQAAAAAA05CUAgAAAABMQ1IKAAAAADANSSkAAAAAwDQkpQAAAAAA05CUAgAAAABMQ1IKAAAAADANSSkAAAAAwDQkpQAAAAAA05CUAgAAAABMQ1IKAAAAADANSSkAAAAAwDQkpQAAAAAA05CUAgAAAABMc8cmpbNnz1ZQUJBKly6tpk2b6rvvvrth/bi4ODVt2lSlS5dW9erV9d577xVRpAAAAABKuvzmLyXJHZmUfv755xo+fLheeeUV7d27V23atFHnzp117NixXOsfOXJEXbp0UZs2bbR37169/PLLGjZsmJYsWVLEkQMAAAAoafKbv5Q0FsMwDLODyK8WLVqoSZMmiomJsZbVqVNHPXv2VHR0dI76Y8aM0ZdffqlDhw5ZywYOHKgffvhBW7duzdM5U1NT5eHhoZSUFLm7u9sXuMVi33Eo2W6zH1FuY9jjVm7jAvn8LaYK5L1ZyA817BB2+/RNloncw7CPMd7++zi/n7/5zV9KmjtupDQjI0O7d+9WaGioTXloaKi2bNmS6zFbt27NUb9Tp07atWuXLl++XGixAgAAACjZ7MlfShpHswPIrzNnzigzM1O+vr425b6+vkpMTMz1mMTExFzrX7lyRWfOnFGlSpVyHJOenq709HTrdkpKiqSrfxUBihT3HIqBW7mNsz9378AHewpd9ntyS33TxQIKBiXL7dQ3XTI7ANypbuWzM/vY7Bwhm4uLi1xcXGzK7MlfSpo7LinNZrnmGULDMHKU3ax+buXZoqOjNXHixBzlgYGB+Q0VuDUeHmZHANyygriNz58/Lw9+HmycP39eEn0TTNCfn0Xc+TzevPX7uEqVKjbb48eP14QJE3Ktm9/8pSS545JSLy8vlSpVKsdfFU6dOpXjrw/Z/Pz8cq3v6OioihUr5nrM2LFjFRERYd3OysrSuXPnVLFiRW6eApaamqrAwEAdP36c74vhjsV9XHgMw9D58+fl7+9vdii3HX9/fx0/flxubm70TQWMn2kUB9zHhccwDJ09e1aenp5ycPjfNyKvHSWV7MtfSpo7Lil1dnZW06ZNtW7dOj388MPW8nXr1qlHjx65HhMcHKwVK1bYlK1du1bNmjWTk5NTrsfkNvRevnz5WwseN+Tu7s4HJu543MeFgxHS3Dk4OCggIMDsMIo1fqZRHHAfF4689k325C8lzR030ZEkRURE6MMPP9TcuXN16NAhjRgxQseOHdPAgQMlXR3l7NOnj7X+wIEDFR8fr4iICB06dEhz587VRx99pJEjR5p1CQAAAABKiJvlLyXdHTdSKklPPPGEzp49q0mTJikhIUH16tXT6tWrVbVqVUlSQkKCzZo/QUFBWr16tUaMGKF3331X/v7++ve//61HHnnErEsAAAAAUELcLH8p6e7IdUpRvKSnpys6Olpjx47N9Tl84E7AfQwUL/xMozjgPsadgqQUAAAAAGCaO/I7pQAAAACA4oGkFAAAAABgGpJS3FY2bdoki8Wi5ORks0MB8uXo0aOyWCzat2+f2aEAKGD0TbhT0TfhTnFHzr4LALebwMBAJSQkyMvLy+xQAACQRN+EOwdJKe4omZmZslgscnBgkB+3l1KlSsnPz8/sMACYgL4Jtyv6Jtwp+PREoTIMQ5MnT1b16tXl6uqqhg0bavHixdb9q1evVq1ateTq6qp27drp6NGjNsfHxsaqfPnyWrlyperWrSsXFxfFx8cX8VUAV93ofr72EamkpCQ9/fTT8vb2lqurq2rWrKl58+aZGD2AbPRNKE7om1AcMFKKQvWvf/1LS5cuVUxMjGrWrKlvv/1WzzzzjLy9vVW9enX16tVLAwcO1Isvvqhdu3YpMjIyRxsXL15UdHS0PvzwQ1WsWFE+Pj4mXAlw4/v52sWvX331VR08eFBfffWVvLy89NtvvyktLc2kyAH8E30TihP6JhQHrFOKQnPhwgV5eXnpm2++UXBwsLX8+eef18WLF1WtWjUtX75cP/30kywWiyTppZde0ltvvaWkpCSVL19esbGx6tevn/bt26eGDRuadSnATe/nqKgoBQUFae/evWrUqJG6d+8uLy8vzZ0718SoAVyLvgnFCX0TigtGSlFoDh48qEuXLqljx4425RkZGWrcuLHS0tLUsmVLa6cvyeYDNZuzs7MaNGhQ6PECN3Kz+/laL774oh555BHt2bNHoaGh6tmzp1q1alVU4QK4DvomFCf0TSguSEpRaLKysiRJq1atUuXKlW32ubi4aOjQoXlqx9XV1eaXA8AMN7ufMzMzbco6d+6s+Ph4rVq1SuvXr1eHDh00ePBgTZkypchiBpATfROKE/omFBckpSg02ZM/HDt2TCEhIbnuX758uU3Ztm3biig6IH9udj9fOxGKJHl7eys8PFzh4eFq06aNRo0aRccPmIy+CcUJfROKC5JSFBo3NzeNHDlSI0aMUFZWllq3bq3U1FRt2bJF5cqV08CBAzV16lRFRERowIAB2r17t2JjY80OG8jVze7na38ZGDdunJo2bap77rlH6enpWrlyperUqWNS9ACy0TehOKFvQnFBUopC9dprr8nHx0fR0dH6448/VL58eTVp0kQvv/yyqlSpoiVLlmjEiBGaPXu2mjdvrqioKD377LNmhw3k6kb387WcnZ01duxYHT16VK6urmrTpo0WLVpkQtQArkXfhOKEvgnFAbPvAkABOHz4sO6++279+uuvqlGjhtnhAABA34Q7hoPZAQDAne7cuXNavHix3N3dFRgYaHY4AADQN+GOwuO7AHCLnnvuOe3evVsxMTFycXExOxwAAOibcEfh8V0AAAAAgGl4fBcAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKgWJs9erVmjBhQpGdLyoqSsuXL89RvmnTJlksFm3atKnIYgEAFI2i7mvOnTunJ598Uj4+PrJYLOrZs2e+jm/btq3atm1rU2axWIr0GgDYIikFirHVq1dr4sSJRXa+6yWlTZo00datW9WkSZMiiwUAUDSKuq957bXXtGzZMk2fPl1bt27V5MmT83X87NmzNXv27EKKDoA9HM0OAEDBu3jxosqUKWN2GFbu7u5q2bKl2WEAAAqQWX3NgQMHdNddd+npp5+26/i6desWcEQ5paWlydXVtdDPAxQXjJSixDp9+rReeOEFBQYGysXFRd7e3rrvvvu0fv16m3rr169Xhw4d5O7urjJlyui+++7Thg0bbOr89ttv6tevn2rWrKkyZcqocuXKeuihh/Tjjz/a1Mt+jPWTTz5RRESE/Pz85OrqqpCQEO3duzdHjF9++aWCg4NVpkwZubm5qWPHjtq6datNnQkTJshisWjPnj169NFHVaFCBd11110KDw/Xu+++K+nqY0nZr6NHjxbAu5eTxWLRhQsXNH/+fOu5sh+Pyu3x3fDwcJUrV04///yzOnXqpLJly6pSpUp68803JUnbtm1T69atVbZsWdWqVUvz58/Pcc7ExEQNGDBAAQEBcnZ2VlBQkCZOnKgrV64UyjUCQH7R1xSco0ePymKxaP369Tp06JD1XNl9y8SJE9WiRQt5enrK3d1dTZo00UcffSTDMGzaye3x3WtlX++1YmNjc1xftWrV1K1bNy1dulSNGzdW6dKlrSPHee2nYmJi1LBhQ5UrV05ubm66++679fLLL+f/TQLuUIyUosTq3bu39uzZozfeeEO1atVScnKy9uzZo7Nnz1rrfPLJJ+rTp4969Oih+fPny8nJSe+//746deqkr7/+Wh06dJAknTx5UhUrVtSbb74pb29vnTt3TvPnz1eLFi20d+9e1a5d2+bcL7/8spo0aaIPP/xQKSkpmjBhgtq2bau9e/eqevXqkqSFCxfq6aefVmhoqD777DOlp6dr8uTJatu2rTZs2KDWrVvbtNmrVy89+eSTGjhwoC5cuKB69erpwoULWrx4sc0vF5UqVSqU93Pr1q1q37692rVrp1dffVXS1RHSG7l8+bJ69eqlgQMHatSoUVq4cKHGjh2r1NRULVmyRGPGjFFAQIBmzpyp8PBw1atXT02bNpV0taNv3ry5HBwcNG7cON11113aunWrXn/9dR09elTz5s0rlOsEgPygryk4lSpV0tatWzVo0CClpKTo008/lfS/kc+jR49qwIABqlKliqSrf9wcOnSoTpw4oXHjxhV4PP+0Z88eHTp0SP/6178UFBSksmXL5rmfWrRokQYNGqShQ4dqypQpcnBw0G+//aaDBw8WaszAbcUASqhy5coZw4cPv+7+CxcuGJ6ensZDDz1kU56ZmWk0bNjQaN68+XWPvXLlipGRkWHUrFnTGDFihLV848aNhiSjSZMmRlZWlrX86NGjhpOTk/H8889bz+Hv72/Ur1/fyMzMtNY7f/684ePjY7Rq1cpaNn78eEOSMW7cuBxxDB482CjKH/OyZcsaffv2zVGefd0bN260lvXt29eQZCxZssRadvnyZcPb29uQZOzZs8dafvbsWaNUqVJGRESEtWzAgAFGuXLljPj4eJtzTZkyxZBk/PTTTwV3YQBgJ/qaghcSEmLcc889N6yTmZlpXL582Zg0aZJRsWJFm/chJCTECAkJsakvyRg/frx1O/t6rzVv3jxDknHkyBFrWdWqVY1SpUoZhw8ftqmb135qyJAhRvny5W94PUBxx+O7KLGaN2+u2NhYvf7669q2bZsuX75ss3/Lli06d+6c+vbtqytXrlhfWVlZevDBB7Vz505duHBBknTlyhVFRUWpbt26cnZ2lqOjo5ydnfXrr7/q0KFDOc4dFhZm81hQ1apV1apVK23cuFGSdPjwYZ08eVK9e/eWg8P/fkzLlSunRx55RNu2bdPFixdt2nzkkUcK7L0pKhaLRV26dLFuOzo6qkaNGqpUqZIaN25sLff09JSPj4/i4+OtZStXrlS7du3k7+9v8/+nc+fOkqS4uLiiuxAAuA76mqLzzTff6IEHHpCHh4dKlSolJycnjRs3TmfPntWpU6cK9dwNGjRQrVq1bMry2k81b95cycnJeuqpp/TFF1/ozJkzhRorcDsiKUWJ9fnnn6tv37768MMPFRwcLE9PT/Xp00eJiYmSpL/++kuS9Oijj8rJycnm9dZbb8kwDJ07d06SFBERoVdffVU9e/bUihUrtH37du3cuVMNGzZUWlpajnP7+fnlWpb9OFf2f3N7/Mnf319ZWVlKSkqyKS+sx3ILU5kyZVS6dGmbMmdnZ3l6euao6+zsrEuXLlm3//rrL61YsSLH/5t77rlHkujUAdwW6GuKxo4dOxQaGipJmjNnjr7//nvt3LlTr7zyiiTl+v4UpNzel7z2U71799bcuXMVHx+vRx55RD4+PmrRooXWrVtXqDEDtxO+U4oSy8vLSzNmzNCMGTN07Ngxffnll3rppZd06tQprVmzRl5eXpKkmTNnXnfmWF9fX0n/+z5QVFSUzf4zZ86ofPnyOY7L/mXk2rKKFStKkvW/CQkJOeqdPHlSDg4OqlChgk15bhMyFGdeXl5q0KCB3njjjVz3+/v7F3FEAJATfU3RWLRokZycnLRy5UqbP3bmtkxZXmS3kZ6eLhcXF2v59f7gmdv7kp9+ql+/furXr58uXLigb7/9VuPHj1e3bt30yy+/qGrVqnZdA3AnISkFJFWpUkVDhgzRhg0b9P3330uS7rvvPpUvX14HDx7UkCFDbni8xWKx6bQkadWqVTpx4oRq1KiRo/5nn32miIgIaycWHx+vLVu2qE+fPpKk2rVrq3Llylq4cKFGjhxprXfhwgUtWbLEOkvizWTHVFRT07u4uBT6X6OzdevWTatXr9Zdd92V45cmALgd0dcUHovFIkdHR5UqVcpalpaWpgULFtjVXrVq1SRJ+/fv17333mstX7FiRZ7bsKefKlu2rDp37qyMjAz17NlTP/30E0kpSgSSUpRIKSkpateuncLCwnT33XfLzc1NO3fu1Jo1a9SrVy9JV79TM3PmTPXt21fnzp3To48+Kh8fH50+fVo//PCDTp8+rZiYGElXO57Y2FjdfffdatCggXbv3q23335bAQEBuZ7/1KlTevjhh9W/f3+lpKRo/PjxKl26tMaOHStJcnBw0OTJk/X000+rW7duGjBggNLT0/X2228rOTnZumzKzdSvX1+S9NZbb6lz584qVaqUGjRoIGdnZ3Xo0EFxcXE209JPmjRJkyZN0oYNGxQSEiLp6ndeOnTooHHjxt109sL69etr06ZNWrFihSpVqiQ3N7ccs0EWlEmTJmndunVq1aqVhg0bptq1a+vSpUs6evSoVq9erffee++67z8AFAX6msLpa3LTtWtXTZs2TWFhYXrhhRd09uxZTZkyJUcSn1ddunSRp6ennnvuOU2aNEmOjo6KjY3V8ePH89xGXvup/v37y9XVVffdd58qVaqkxMRERUdHy8PDwyYhBoozklKUSKVLl1aLFi20YMECHT16VJcvX1aVKlU0ZswYjR492lrvmWeeUZUqVTR58mQNGDBA58+fl4+Pjxo1aqTw8HBrvXfeeUdOTk6Kjo7W33//rSZNmmjp0qX617/+lev5o6KitHPnTvXr10+pqalq3ry5Fi1apLvuustaJywsTGXLllV0dLSeeOIJlSpVSi1bttTGjRvVqlWrPF1nWFiYvv/+e82ePVuTJk2SYRg6cuSIqlWrpszMTGVmZtrUz8rKUmZmps2aboZhKDMzU1lZWTc93zvvvKPBgwfrySef1MWLFxUSEmKzNmlBqlSpknbt2qXXXntNb7/9tv7880+5ubkpKChIDz74IKOnAExHX1M4fU1u2rdvr7lz5+qtt97SQw89pMqVK6t///7y8fHRc889l+/23N3dtWbNGg0fPlzPPPOMypcvr+eff16dO3fW888/n6c28tpPtWnTRrGxsfrPf/6jpKQkeXl5qXXr1vr444/l7e2d79iBO5HFMK5ZURhAodm0aZPatWun//73v3r00UfNDgcAUAzR1wC40zD7LgAAAADANCSlAAAAAADT8PguAAAAAMA0jJQCAAAAAExDUgoAAAAAMA1JKQAAAADANKxTmkdZWVk6efKk3NzcZLFYzA4HAEoMwzB0/vx5+fv7y8GBv6X+E30TAJiDvqlgkZTm0cmTJxUYGGh2GABQYh0/flwBAQFmh3FboW8CAHPRNxUMktI8cnNzk3T1xnN3dzc5GgAoOVJTUxUYGGj9HMb/0DcBgDnomwoWSWkeZT8W5e7uTscPACbg8dSc6JsAwFz0TQWDB6ABAAAAAKYhKQUAAAAAmIbHdwHkC0+pwB6GYXYEAIory0Q6JtjHGE/ndLtgpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUxLStesWaPNmzdbt9999101atRIYWFhSkpKMissAAAAAEARMi0pHTVqlFJTUyVJP/74oyIjI9WlSxf98ccfioiIMCssAAAAAEARcjTrxEeOHFHdunUlSUuWLFG3bt0UFRWlPXv2qEuXLmaFBQAAAAAoQqaNlDo7O+vixYuSpPXr1ys0NFSS5OnpaR1BBQAAAAAUb6aNlLZu3VoRERG67777tGPHDn3++eeSpF9++UUBAQFmhQUAAAAAKEKmjZTOmjVLjo6OWrx4sWJiYlS5cmVJ0ldffaUHH3zQrLAAAAAAAEXItJHSKlWqaOXKlTnKp0+fbkI0AAAAAAAzFGlSmp/virq7uxdiJAAAAACA20GRJqXly5eXxWLJU93MzMxCjgYAAAAAYLYiTUo3btxo/ffRo0f10ksvKTw8XMHBwZKkrVu3av78+YqOji7KsAAAAACgxGvfvr2WLl2q8uXL25SnpqaqZ8+e+uabbwrlvEWalIaEhFj/PWnSJE2bNk1PPfWUtax79+6qX7++PvjgA/Xt27coQwMAAACAEm3Tpk3KyMjIUX7p0iV99913hXZe02bf3bp1q5o1a5ajvFmzZtqxY4cJEQEAAABAwfv222/10EMPyd/fXxaLRcuXL7fZbxiGJkyYIH9/f7m6uqpt27b66aefbOqkp6dr6NCh8vLyUtmyZdW9e3f9+eefNnWSkpLUu3dveXh4yMPDQ71791ZycvJN49u/f7/2798vSTp48KB1e//+/dq7d68++ugj62ophcG0pDQwMFDvvfdejvL3339fgYGBJkQEAAAAAAXvwoULatiwoWbNmpXr/smTJ2vatGmaNWuWdu7cKT8/P3Xs2FHnz5+31hk+fLiWLVumRYsWafPmzfr777/VrVs3m7l4wsLCtG/fPq1Zs0Zr1qzRvn371Lt375vG16hRIzVu3FgWi0Xt27dXo0aNrK+mTZvq9ddf17hx4279jbgO05aEmT59uh555BF9/fXXatmypSRp27Zt+v3337VkyRKzwgIAAACAAtW5c2d17tw5132GYWjGjBl65ZVX1KtXL0nS/Pnz5evrq4ULF2rAgAFKSUnRRx99pAULFuiBBx6QJH3yyScKDAzU+vXr1alTJx06dEhr1qzRtm3b1KJFC0nSnDlzFBwcrMOHD6t27drXje/IkSMyDEPVq1fXjh075O3tbd3n7OwsHx8flSpVqqDejhxMGynt0qWLfv31V3Xv3l3nzp3T2bNn1aNHD/3yyy/q0qVLntuJjo7WvffeKzc3N/n4+Khnz546fPiwTZ28DIcDAAAAQFE7cuSIEhMTFRoaai1zcXFRSEiItmzZIknavXu3Ll++bFPH399f9erVs9bZunWrPDw8rAmpJLVs2VIeHh7WOtdTtWpVVatWTVlZWWrWrJmqVq1qfVWqVKlQE1LJxJFSSQoICFBUVNQttREXF6fBgwfr3nvv1ZUrV/TKK68oNDRUBw8eVNmyZSX9bzg8NjZWtWrV0uuvv66OHTvq8OHDcnNzK4hLAQAAAFDCpKam2my7uLjIxcUlX20kJiZKknx9fW3KfX19FR8fb63j7OysChUq5KiTfXxiYqJ8fHxytO/j42Otkxe//PKLNm3apFOnTikrK8tmX2E9wmtqUpqcnKwdO3bkesF9+vTJUxtr1qyx2Z43b558fHy0e/du3X///XkaDgcAAACA/Lp2Lpzx48drwoQJdrVlsVhstg3DyFF2rWvr5FY/L+1kmzNnjl588UV5eXnJz88vR9vFLildsWKFnn76aV24cEFubm45LjivSem1UlJSJEmenp6Sbj4cfr2kND09Xenp6dbta/8KAgAAAKBkO378uNzd3a3b+R0llSQ/Pz9JV0c6K1WqZC0/deqUdfTUz89PGRkZSkpKshktPXXqlFq1amWt89dff+Vo//Tp0zlGYa/n9ddf1xtvvKExY8bk+zpuhWnfKY2MjNSzzz6r8+fPKzk5WUlJSdbXuXPn7GrTMAxFRESodevWqlevnqQbD4ffaBg7OjraOpWyh4cHMwIDAAAAsOHu7m7zsicpDQoKkp+fn9atW2cty8jIUFxcnDXhbNq0qZycnGzqJCQk6MCBA9Y6wcHBSklJsVlec/v27UpJSbHWuZmkpCQ99thj+b6GW2VaUnrixAkNGzZMZcqUKbA2hwwZov379+uzzz7LsS+/w+Fjx45VSkqK9XX8+PECixMAAABAyfH3339r37592rdvn6SrT3Pu27dPx44dk8Vi0fDhwxUVFaVly5bpwIEDCg8PV5kyZRQWFiZJ8vDw0HPPPafIyEht2LBBe/fu1TPPPKP69etbZ+OtU6eOHnzwQfXv31/btm3Ttm3b1L9/f3Xr1u2GM+/+02OPPaa1a9cWyntwI6Y9vtupUyft2rVL1atXL5D2hg4dqi+//FLffvutAgICrOV5GQ7PjT1fUgYAAACAa+3atUvt2rWzbkdEREiS+vbtq9jYWI0ePVppaWkaNGiQkpKS1KJFC61du9ZmUtbp06fL0dFRjz/+uNLS0tShQwfFxsbazIz76aefatiwYdavLnbv3v26a6PmpkaNGnr11Ve1bds21a9fX05OTjb7hw0bZtf134zFMAyjUFq+iY8++kiTJk1Sv379cr3g7t2756kdwzA0dOhQLVu2TJs2bVLNmjVz7Pf399eIESM0evRoSVeHw318fPTWW2/leaKj1NRUeXh4KCUlxea5caCkyeP35AEbt9LT8Pl7fbw3gGSZSMcE+xjj7e+ciuvnb1BQ0HX3WSwW/fHHH4VyXtNGSvv37y9JmjRpUo59FotFmZmZeWpn8ODBWrhwob744gu5ublZvyfq4eEhV1dXm+HwmjVrqmbNmoqKirIZDgcAAACAku7IkSOmnNe0pPTaJWDsFRMTI0lq27atTfm8efMUHh4uSXkaDgcAAAAAFD1T1yktCHl5+thisWjChAl2rxlUYHjuEfYw5wl7AAAAlDDPPvvsDffPnTu3UM5ralIaFxenKVOm6NChQ7JYLKpTp45GjRqlNm3amBkWAAAAAJQ4SUlJNtuXL1/WgQMHlJycrPbt2xfaeU1LSj/55BP169dPvXr10rBhw2QYhrZs2WKdRYrvewIAAABA0Vm2bFmOsqysLA0aNKjAVk3JjWmz79apU0cvvPCCRowYYVM+bdo0zZkzR4cOHTIjrOsqkBm2eHwX9rjNHt/lNoY9mH23cPDeAMy+C/sx+27eHT58WG3btlVCQkKhtO9QKK3mwR9//KGHHnooR3n37t1Nm/UJAAAAAGDr999/15UrVwqtfdMe3w0MDNSGDRtUo0YNm/INGzYoMDDQpKgAAAAAoGSKiIiw2TYMQwkJCVq1apX69u1baOc1LSmNjIzUsGHDtG/fPrVq1UoWi0WbN29WbGys3nnnHbPCAgAAAIASae/evTbbDg4O8vb21tSpU286M++tMC0pffHFF+Xn56epU6fqP//5j6Sr3zP9/PPP1aNHD7PCAgAAAIASaePGjaac19QlYR5++GE9/PDDZoYAAAAAAPiH06dP6/Dhw7JYLKpVq5a8vb0L9XymTXS0c+dObd++PUf59u3btWvXLhMiAgAAAICS68KFC3r22WdVqVIl3X///WrTpo38/f313HPP6eLFi4V2XtOS0sGDB+v48eM5yk+cOKHBgwebEBEAAAAAlFwRERGKi4vTihUrlJycrOTkZH3xxReKi4tTZGRkoZ3XtMd3Dx48qCZNmuQob9y4sQ4ePGhCRAAAAABQci1ZskSLFy9W27ZtrWVdunSRq6urHn/8ccXExBTKeU0bKXVxcdFff/2VozwhIUGOjqZ+1RUAAAAASpyLFy/K19c3R7mPj0/xfHy3Y8eOGjt2rFJSUqxlycnJevnll9WxY0ezwgIAAACAEik4OFjjx4/XpUuXrGVpaWmaOHGigoODC+28pg1JTp06Vffff7+qVq2qxo0bS5L27dsnX19fLViwwKywAAAAAKBEmjFjhjp37qyAgAA1bNhQFotF+/btk4uLi9auXVto5zUtKa1cubL279+vTz/9VD/88INcXV3Vr18/PfXUU3JycjIrLAAAAAAokerXr69ff/1Vn3zyiX7++WcZhqEnn3xSTz/9tFxdXQvtvKZ+ebNs2bJ64YUXzAwBAAAAACApOjpavr6+6t+/v0353Llzdfr0aY0ZM6ZQzmvad0olacGCBWrdurX8/f0VHx8vSZo+fbq++OILM8MCAAAAgBLn/fff1913352j/J577tF7771XaOc1LSmNiYlRRESEOnfurKSkJGVmZkqSKlSooBkzZpgVFgAAAACUSImJiapUqVKOcm9vbyUkJBTaeU1LSmfOnKk5c+bolVdesVkCplmzZvrxxx/NCgsAAAAASqTAwEB9//33Ocq///57+fv7F9p5TftO6ZEjR6yz7v6Ti4uLLly4YEJEAAAAAFByPf/88xo+fLguX76s9u3bS5I2bNig0aNHKzIystDOa1pSGhQUpH379qlq1ao25V999ZXq1q1rUlQAAAAAUDKNHj1a586d06BBg5SRkSFJKl26tMaMGaOxY8cW2nlNS0pHjRqlwYMH69KlSzIMQzt27NBnn32m6Ohoffjhh2aFBQAAAAAlksVi0VtvvaVXX31Vhw4dkqurq2rWrCkXF5dCPa9pSWm/fv105coVjR49WhcvXlRYWJgCAgL0zjvv6MknnzQrLAAAAAAo0cqVK6d77723yM5nWlKalpamp59+Wv3799eZM2f0xx9/6Pvvv1dAQIBZIQEAAAAAiphps+/26NFDH3/8sSTJ0dFR3bt317Rp09SzZ0/FxMSYFRYAAAAAoAiZlpTu2bNHbdq0kSQtXrxYvr6+io+P18cff6x///vfZoUFAAAAAChCpiWlFy9elJubmyRp7dq16tWrlxwcHNSyZUvFx8ebFRYAAAAAoAiZlpTWqFFDy5cv1/Hjx/X1118rNDRUknTq1Cm5u7ubFRYAAAAAoAiZlpSOGzdOI0eOVLVq1dSiRQsFBwdLujpq2rhxY7PCAgAAAAAUIdNm33300UfVunVrJSQkqGHDhtbyDh066OGHHzYrLAAAAABAETItKZUkPz8/+fn52ZQ1b97cpGgAAAAAAEXNtMd3AQAAAAAgKQUAAAAAmMbUx3cBAIDJFlrMjgB3ojDD7AgAFCOMlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATFOiktLZs2crKChIpUuXVtOmTfXdd9+ZHRIAAACAEoBc5PpKTFL6+eefa/jw4XrllVe0d+9etWnTRp07d9axY8fMDg0AAABAMUYucmMlJimdNm2annvuOT3//POqU6eOZsyYocDAQMXExJgdGgAAAIBijFzkxhzNDqAoZGRkaPfu3XrppZdsykNDQ7Vly5Zcj0lPT1d6erp1OyUlRZKUmppaeIECueGeQzFwK7dx9ueuYRgFFE3xkf2e3FLfdLGAgkHJcjv1TZfMDgB3qlv57Mw+NjtHyObi4iIXFxebMntykZKmRCSlZ86cUWZmpnx9fW3KfX19lZiYmOsx0dHRmjhxYo7ywMDAQokRuC4PD7MjAG5ZQdzG58+flwc/DzbOnz8vib4JJujPzyLufB5v3vp9XKVKFZvt8ePHa8KECTZl9uQiJU2JSEqzWSwWm23DMHKUZRs7dqwiIiKs21lZWTp37pwqVqx43WNgn9TUVAUGBur48eNyd3c3OxzALtzHhccwDJ0/f17+/v5mh3Lb8ff31/Hjx+Xm5kbfVMD4mUZxwH1ceAzD0NmzZ+Xp6SkHh/99I/LaUdJ/yk8uUtKUiKTUy8tLpUqVyvGXiFOnTuX4i0W23Ibey5cvX1ghQpK7uzsfmLjjcR8XDkZIc+fg4KCAgACzwyjW+JlGccB9XDjy2jfZk4uUNCVioiNnZ2c1bdpU69atsylft26dWrVqZVJUAAAAAIo7cpGbKxEjpZIUERGh3r17q1mzZgoODtYHH3ygY8eOaeDAgWaHBgAAAKAYIxe5sRKTlD7xxBM6e/asJk2apISEBNWrV0+rV69W1apVzQ6txHNxcdH48eNv+Aw+cLvjPgaKF36mURxwH98+yEVuzGIwxz4AAAAAwCQl4julAAAAAIDbE0kpAAAAAMA0JKUAAAAAANOQlOK2smnTJlksFiUnJ5sdCpAvR48elcVi0b59+8wOBUABo2/CnYq+CXeKEjP7LgAUpsDAQCUkJMjLy8vsUAAAkETfhDsHSSnuKJmZmbJYLHJwYJAft5dSpUrJz8/P7DAAmIC+Cbcr+ibcKfj0RKEyDEOTJ09W9erV5erqqoYNG2rx4sXW/atXr1atWrXk6uqqdu3a6ejRozbHx8bGqnz58lq5cqXq1q0rFxcXxcfHF/FVAFfd6H6+9hGppKQkPf300/L29parq6tq1qypefPmmRg9gGz0TShO6JtQHDBSikL1r3/9S0uXLlVMTIxq1qypb7/9Vs8884y8vb1VvXp19erVSwMHDtSLL76oXbt2KTIyMkcbFy9eVHR0tD788ENVrFhRPj4+JlwJcOP7+drFr1999VUdPHhQX331lby8vPTbb78pLS3NpMgB/BN9E4oT+iYUBxbDMAyzg0DxdOHCBXl5eembb75RcHCwtfz555/XxYsXVa1aNS1fvlw//fSTLBaLJOmll17SW2+9paSkJJUvX16xsbHq16+f9u3bp4YNG5p1KcBN7+eoqCgFBQVp7969atSokbp37y4vLy/NnTvXxKgBXIu+CcUJfROKC0ZKUWgOHjyoS5cuqWPHjjblGRkZaty4sdLS0tSyZUtrpy/J5gM1m7Ozsxo0aFDo8QI3crP7+VovvviiHnnkEe3Zs0ehoaHq2bOnWrVqVVThArgO+iYUJ/RNKC5ISlFosrKyJEmrVq1S5cqVbfa5uLho6NCheWrH1dXV5pcDwAw3u58zMzNtyjp37qz4+HitWrVK69evV4cOHTR48GBNmTKlyGIGkBN9E4oT+iYUFySlKDTZkz8cO3ZMISEhue5fvny5Tdm2bduKKDogf252P187EYokeXt7Kzw8XOHh4WrTpo1GjRpFxw+YjL4JxQl9E4oLklIUGjc3N40cOVIjRoxQVlaWWrdurdTUVG3ZskXlypXTwIEDNXXqVEVERGjAgAHavXu3YmNjzQ4byNXN7udrfxkYN26cmjZtqnvuuUfp6elauXKl6tSpY1L0ALLRN6E4oW9CcUFSikL12muvycfHR9HR0frjjz9Uvnx5NWnSRC+//LKqVKmiJUuWaMSIEZo9e7aaN2+uqKgoPfvss2aHDeTqRvfztZydnTV27FgdPXpUrq6uatOmjRYtWmRC1ACuRd+E4oS+CcUBs+8CQAE4fPiw7r77bv3666+qUaOG2eEAAEDfhDuGg9kBAMCd7ty5c1q8eLHc3d0VGBhodjgAANA34Y7C47sAcIuee+457d69WzExMXJxcTE7HAAA6JtwR+HxXQAAAACAaXh8FwAAAABgGpJSAAAAAIBpSEoBAAAAAKYhKQUAAAAAmIakFAAAAABgGpJSoAgdPHhQEyZM0NGjR3Psa9u2rerVq1eg54uKitLy5csLtM3rudG1hYeHq1q1akUSBwCUdMW5r5GkDRs2qFmzZipbtqwsFku+zn306FFZLBbFxsZay2JjY2WxWHJ9vwAUDZJSoAgdPHhQEydOLLKOr6iT0utd26uvvqply5YVSRwAUNIV577GMAw9/vjjcnJy0pdffqmtW7cqJCQkz8dXqlRJW7duVdeuXQsxSgD55Wh2AACKv7vuusvsEAAAxcDJkyd17tw5Pfzww+rQoUO+j3dxcVHLli0LIbL/uXz5siwWixwd+TUbyCtGSlFinT59Wi+88IICAwPl4uIib29v3XfffVq/fr0k6bXXXpOjo6OOHz+e49hnn31WFStW1KVLlyRJ1apVU7du3bRmzRo1adJErq6uuvvuuzV37lzrMbGxsXrsscckSe3atZPFYsnxCJEk7dy5U23atFGZMmVUvXp1vfnmm8rKyrKpk5qaqpEjRyooKEjOzs6qXLmyhg8frgsXLljrWCwWXbhwQfPnz7eeq23btgXx1uVws2vL7fFdi8WiIUOGaN68eapdu7ZcXV3VrFkzbdu2TYZh6O2331ZQUJDKlSun9u3b67fffstx3vXr16tDhw5yd3dXmTJldN9992nDhg2Fco0AYA/6moIzYcIEBQQESJLGjBkji8Vi7Vt+++039evXTzVr1lSZMmVUuXJlPfTQQ/rxxx9t2sjt8d3cVKtWTeHh4TnK27Zta3N9mzZtksVi0YIFCxQZGanKlSvLxcXF2mflpZ+62T0ClAgGUEJ16tTJ8Pb2Nj744ANj06ZNxvLly41x48YZixYtMgzDMP766y/DxcXFeOWVV2yOO3v2rOHq6mqMGjXKWla1alUjICDAqFu3rvHxxx8bX3/9tfHYY48Zkoy4uDjDMAzj1KlTRlRUlCHJePfdd42tW7caW7duNU6dOmUYhmGEhIQYFStWNGrWrGm89957xrp164xBgwYZkoz58+dbz3XhwgWjUaNGhpeXlzFt2jRj/fr1xjvvvGN4eHgY7du3N7KysgzDMIytW7carq6uRpcuXazn+umnnwrlvbzZtfXt29eoWrWqzTGSjKpVqxqtWrUyli5daixbtsyoVauW4enpaYwYMcLo0aOHsXLlSuPTTz81fH19jQYNGlivzTAMY8GCBYbFYjF69uxpLF261FixYoXRrVs3o1SpUsb69esL5ToBIL/oawrO8ePHjaVLlxqSjKFDhxpbt2419uzZYxiGYcTFxRmRkZHG4sWLjbi4OGPZsmVGz549DVdXV+Pnn3+2tnHkyBFDkjFv3jxr2bx58wxJxpEjR2ze6759++aIISQkxAgJCbFub9y40ZBkVK5c2Xj00UeNL7/80li5cqVx9uzZPPdTN7tHgJKApBQlVrly5Yzhw4ffsE7fvn0NHx8fIz093Vr21ltvGQ4ODjk6r9KlSxvx8fHWsrS0NMPT09MYMGCAtey///2vIcnYuHFjjnOFhIQYkozt27fblNetW9fo1KmTdTs6OtpwcHAwdu7caVNv8eLFhiRj9erV1rKyZcvm2qkWhhtd2/WSUj8/P+Pvv/+2li1fvtyQZDRq1MgmAZ0xY4Yhydi/f79hGFd/WfL09DQeeughmzYzMzONhg0bGs2bNy+4CwOAW0BfU7Cyk8q33377hvWuXLliZGRkGDVr1jRGjBiR4/iCTkrvv/9+m3r56afyco8AxR2P76LEat68uWJjY/X6669r27Ztunz5co46//d//6dTp07pv//9ryQpKytLMTEx6tq1a47HURs1aqQqVapYt0uXLq1atWopPj4+zzH5+fmpefPmNmUNGjSwaWPlypWqV6+eGjVqpCtXrlhfnTp1ksVi0aZNm/J8PrO1a9dOZcuWtW7XqVNHktS5c2dZLJYc5dnvw5YtW3Tu3Dn17dvX5j3IysrSgw8+qJ07d9o8XgYAZqGvKRpXrlxRVFSU6tatK2dnZzk6OsrZ2Vm//vqrDh06VOjnf+SRR2y289NP5eUeAYo7klKUWJ9//rn69u2rDz/8UMHBwfL09FSfPn2UmJhordO4cWO1adNG7777rqSrnfTRo0c1ZMiQHO1VrFgxR5mLi4vS0tLyHFNe2vjrr7+0f/9+OTk52bzc3NxkGIbOnDmT5/OZzdPT02bb2dn5huXZ36v666+/JEmPPvpojvfhrbfekmEYOnfuXGGHDwA3RV9TNCIiIvTqq6+qZ8+eWrFihbZv366dO3eqYcOG+Xpv7FWpUiWb7fz0U3m5R4DijmnBUGJ5eXlpxowZmjFjho4dO6Yvv/xSL730kk6dOqU1a9ZY6w0bNkyPPfaY9uzZo1mzZqlWrVrq2LGjqXG7urraTGxx7f7iLvsaZ86ced1ZFH19fYsyJADIFX1N0fjkk0/Up08fRUVF2ZSfOXNG5cuXz3d7pUuXVnp6eo7yM2fO5Hrt/3y6R8pfP5XXewQozkhKAUlVqlTRkCFDtGHDBn3//fc2+x5++GFVqVJFkZGRiouL0/Tp03N0Pnnl4uIiSbf0V9tu3bopKipKFStWVFBQ0E3PVxR/Ic4+l3Rr15ZX9913n8qXL6+DBw/mOpIAALcj+prCY7FYrNedbdWqVTpx4oRq1KiR7/aqVaum/fv325T98ssvOnz4cJ4Scnv7qRvdI0BxRlKKEiklJUXt2rVTWFiY7r77brm5uWnnzp1as2aNevXqZVO3VKlSGjx4sMaMGaOyZcvmOkV8XtWrV0+S9MEHH8jNzU2lS5dWUFBQro9SXc/w4cO1ZMkS3X///RoxYoQaNGigrKwsHTt2TGvXrlVkZKRatGghSapfv742bdqkFStWqFKlSnJzc1Pt2rUVHx+vu+66S3379tVHH31kbTu74/7n8ivPPfec5s+fr99//11Vq1Yt1GvLq3LlymnmzJnq27evzp07p0cffVQ+Pj46ffq0fvjhB50+fVoxMTEFfl4AyA/6moLva66nW7duio2N1d13360GDRpo9+7devvtt61LyORX79699cwzz2jQoEF65JFHFB8fr8mTJ8vb2ztPx+e1n8rPPQIUZySlKJFKly6tFi1aaMGCBTp69KguX76sKlWqaMyYMRo9enSO+k888YTGjBmj3r17y8PDw+7zBgUFacaMGXrnnXfUtm1bZWZmat68efn65aNs2bL67rvv9Oabb+qDDz7QkSNH5OrqqipVquiBBx6wmRTjnXfe0eDBg/Xkk0/q4sWLCgkJ0aZNm2QYhjIzM5WZmWnT9pUrV3KcL7ueYRiFfm358cwzz6hKlSqaPHmyBgwYoPPnz8vHx0eNGjUqtHMCQH7Q1xR8X3M977zzjpycnBQdHa2///5bTZo00dKlS/Wvf/3LrvbCwsJ08uRJvffee5o3b57q1aunmJgYTZw4Mc9t5KWfyu89AhRXFsPen36gBJk5c6aGDRumAwcO6J577jE7HABAMURfA6CkIikFbmDv3r06cuSIBgwYoPvuu0/Lly83OyQAQDFDXwOgpCMpBW6gWrVqSkxMVJs2bbRgwQL5+fmZHRIAoJihrwFQ0pGUAgAAAABM42B2AAAAAACAkoukFAAAAABgGpJSAAAAAIBpSEoBAAAAAKZxNDuAO0VWVpZOnjwpNzc3WSwWs8MBgBLDMAydP39e/v7+cnDgb6n/RN8EAOagbypYJKV5dPLkSQUGBpodBgCUWMePH1dAQIDZYdxW6JsAwFz0TQWDpDSP3NzcJF298dzd3U2OBgBKjtTUVAUGBlo/h/E/9E0AYA76poJFUppH2Y9Fubu70/EDgAl4PDUn+iYAMBd9U8HgAWgAAAAAgGkYKS1K/CUF9jAMsyMAAOC2ZZnI71ewjzGe37FuF4yUAgAAAABMQ1IKAAAAAIUkOjpa9957r9zc3OTj46OePXvq8OHDNnUMw9CECRPk7+8vV1dXtW3bVj/99JNNnfT0dA0dOlReXl4qW7asunfvrj///NOmTlJSknr37i0PDw95eHiod+/eSk5Otqlz7NgxPfTQQypbtqy8vLw0bNgwZWRkFMq15xVJKQAAAAAUkri4OA0ePFjbtm3TunXrdOXKFYWGhurChQvWOpMnT9a0adM0a9Ys7dy5U35+furYsaPOnz9vrTN8+HAtW7ZMixYt0ubNm/X333+rW7duyszMtNYJCwvTvn37tGbNGq1Zs0b79u1T7969rfszMzPVtWtXXbhwQZs3b9aiRYu0ZMkSRUZGFs2bcR0Ww+ALa3mRmpoqDw8PpaSk2D/DId8phT34EUUJVyCfv8UU7w3Ad0phv1v5TumtfP6ePn1aPj4+iouL0/333y/DMOTv76/hw4drzJgxkq6Oivr6+uqtt97SgAEDlJKSIm9vby1YsEBPPPGEpP+tVb169Wp16tRJhw4dUt26dbVt2za1aNFCkrRt2zYFBwfr559/Vu3atfXVV1+pW7duOn78uPz9/SVJixYtUnh4uE6dOmVaX8JIKQAAAADYITU11eaVnp5+02NSUlIkSZ6enpKkI0eOKDExUaGhodY6Li4uCgkJ0ZYtWyRJu3fv1uXLl23q+Pv7q169etY6W7dulYeHhzUhlaSWLVvKw8PDpk69evWsCakkderUSenp6dq9e7e9b8MtIykFAAAAADsEBgZav7/p4eGh6OjoG9Y3DEMRERFq3bq16tWrJ0lKTEyUJPn6+trU9fX1te5LTEyUs7OzKlSocMM6Pj4+Oc7p4+NjU+fa81SoUEHOzs7WOmZgSRgAAAAAsMPx48dtHnl1cXG5Yf0hQ4Zo//792rx5c459lmu+6mcYRo6ya11bJ7f69tQpaoyUAgAAAIAd3N3dbV43SkqHDh2qL7/8Uhs3blRAQIC13M/PT5JyjFSeOnXKOqrp5+enjIwMJSUl3bDOX3/9leO8p0+ftqlz7XmSkpJ0+fLlHCOoRYmkFAAAAAAKiWEYGjJkiJYuXapvvvlGQUFBNvuDgoLk5+endevWWcsyMjIUFxenVq1aSZKaNm0qJycnmzoJCQk6cOCAtU5wcLBSUlK0Y8cOa53t27crJSXFps6BAweUkJBgrbN27Vq5uLioadOmBX/xecTjuwAAAABQSAYPHqyFCxfqiy++kJubm3Wk0sPDQ66urrJYLBo+fLiioqJUs2ZN1axZU1FRUSpTpozCwsKsdZ977jlFRkaqYsWK8vT01MiRI1W/fn098MADkqQ6derowQcfVP/+/fX+++9Lkl544QV169ZNtWvXliSFhoaqbt266t27t95++22dO3dOI0eOVP/+/U2dxZ2kFAAAAAAKSUxMjCSpbdu2NuXz5s1TeHi4JGn06NFKS0vToEGDlJSUpBYtWmjt2rVyc3Oz1p8+fbocHR31+OOPKy0tTR06dFBsbKxKlSplrfPpp59q2LBh1ll6u3fvrlmzZln3lypVSqtWrdKgQYN03333ydXVVWFhYZoyZUohXX3esE5pHrFOKUzDjyhKONbivD7eG4B1SmE/s9YpRU58pxQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBpTk9Lo6Gjde++9cnNzk4+Pj3r27KnDhw/b1DEMQxMmTJC/v79cXV3Vtm1b/fTTTzZ10tPTNXToUHl5eals2bLq3r27/vzzT5s6SUlJ6t27tzw8POTh4aHevXsrOTm5sC8RAAAAAHADpialcXFxGjx4sLZt26Z169bpypUrCg0N1YULF6x1Jk+erGnTpmnWrFnauXOn/Pz81LFjR50/f95aZ/jw4Vq2bJkWLVqkzZs36++//1a3bt2UmZlprRMWFqZ9+/ZpzZo1WrNmjfbt26fevXsX6fUCAAAAAGzZtU7pmjVrVK5cObVu3VqS9O6772rOnDmqW7eu3n33XVWoUMGuYE6fPi0fHx/FxcXp/vvvl2EY8vf31/DhwzVmzBhJV0dFfX199dZbb2nAgAFKSUmRt7e3FixYoCeeeEKSdPLkSQUGBmr16tXq1KmTDh06pLp162rbtm1q0aKFJGnbtm0KDg7Wzz//rNq1a980NtYphWlYpxQlHGvBXR/vDcA6pbAf65TePuwaKR01apRSU1MlST/++KMiIyPVpUsX/fHHH4qIiLA7mJSUFEmSp6enJOnIkSNKTExUaGiotY6Li4tCQkK0ZcsWSdLu3bt1+fJlmzr+/v6qV6+etc7WrVvl4eFhTUglqWXLlvLw8LDWAQAAAAAUPUd7Djpy5Ijq1q0rSVqyZIm6deumqKgo7dmzR126dLErEMMwFBERodatW6tevXqSpMTEREmSr6+vTV1fX1/Fx8db6zg7O+cYnfX19bUen5iYKB8fnxzn9PHxsda5Vnp6utLT063b2Uk4AAAAAKDg2DVS6uzsrIsXL0qS1q9fbx2l9PT0tDt5GzJkiPbv36/PPvssxz7LNY+9GoaRo+xa19bJrf6N2omOjrZOiuTh4aHAwMC8XAYAAAAAIB/sSkpbt26tiIgIvfbaa9qxY4e6du0qSfrll18UEBCQ7/aGDh2qL7/8Uhs3brQ53s/PT5JyjGaeOnXKOnrq5+enjIwMJSUl3bDOX3/9leO8p0+fzjEKm23s2LFKSUmxvo4fP57v6wIAAAAA3JhdSemsWbPk6OioxYsXKyYmRpUrV5YkffXVV3rwwQfz3I5hGBoyZIiWLl2qb775RkFBQTb7g4KC5Ofnp3Xr1lnLMjIyFBcXp1atWkmSmjZtKicnJ5s6CQkJOnDggLVOcHCwUlJStGPHDmud7du3KyUlxVrnWi4uLnJ3d7d5AQAAAAAKll3fKa1SpYpWrlyZo3z69On5amfw4MFauHChvvjiC7m5uVlHRD08POTq6iqLxaLhw4crKipKNWvWVM2aNRUVFaUyZcooLCzMWve5555TZGSkKlasKE9PT40cOVL169fXAw88IEmqU6eOHnzwQfXv31/vv/++JOmFF15Qt27d8jTzLgAAAACgcOQ5Kc3Pd0XzOqoYExMjSWrbtq1N+bx58xQeHi5JGj16tNLS0jRo0CAlJSWpRYsWWrt2rdzc3Kz1p0+fLkdHRz3++ONKS0tThw4dFBsbq1KlSlnrfPrppxo2bJj1+6/du3fXrFmz8nxNAAAAAICCl+d1Sh0cHG46uVC2zMzMWwrqdsQ6pTAN65SihGMtuOvjvQFYpxT2Y51S+7Rv315Lly5V+fLlbcpTU1PVs2dPffPNN/luM88jpRs3brT+++jRo3rppZcUHh6u4OBgSVfXAp0/f76io6PzHQQAAAAA4Pa3adMmZWRk5Ci/dOmSvvvuO7vazHNSGhISYv33pEmTNG3aND311FPWsu7du6t+/fr64IMP1LdvX7uCAQAAAADcfvbv32/998GDB21WSMnMzNSaNWusE+Dml10THW3dulXvvfdejvJmzZrp+eeftysQAAAAAMDtqVGjRrJYLLJYLGrfvn2O/a6urpo5c6ZdbduVlAYGBuq9997T1KlTbcrff/99BQYG2hUIAAAAAOD2dOTIERmGoerVq2vHjh3y9va27nN2dpaPj4/NRLP5YVdSOn36dD3yyCP6+uuv1bJlS0nStm3b9Pvvv2vJkiV2BQIAAAAAuD1VrVpVkpSVlVXgbduVlHbp0kW//vqrZs+erZ9//lmGYahHjx4aOHAgI6UAAAAAUIz98ssv2rRpk06dOpUjSR03bly+27MrKZWkgIAARUVF2Xs4AAAAAOAOM2fOHL344ovy8vKSn5+fzbKhFoulaJPS5ORk7dixI9fsuE+fPvY2CwAAAAC4Tb3++ut64403NGbMmAJr066kdMWKFXr66ad14cIFubm55ciOSUoBAAAAoPhJSkrSY489VqBtOthzUGRkpJ599lmdP39eycnJSkpKsr7OnTtXoAECAAAAAG4Pjz32mNauXVugbdo1UnrixAkNGzZMZcqUKdBgAAAAAAC3rxo1aujVV1/Vtm3bVL9+fTk5OdnsHzZsWL7btCsp7dSpk3bt2qXq1avbczgAAAAA4A70wQcfqFy5coqLi1NcXJzNPovFUnRJadeuXTVq1CgdPHgw1+y4e/fu9jQLAAAAALiNHTlypMDbtCsp7d+/vyRp0qRJOfZZLBZlZmbeWlQAAAAAgBLBrqT02iVgAAAAAADF37PPPnvD/XPnzs13m3avUwoAAAAAKFmSkpJsti9fvqwDBw4oOTlZ7du3t6tNu5PSuLg4TZkyRYcOHZLFYlGdOnU0atQotWnTxt4mAQAAAAC3sWXLluUoy8rK0qBBg+yeCNeudUo/+eQTPfDAAypTpoyGDRumIUOGyNXVVR06dNDChQvtCgQAAAAAcOdxcHDQiBEjNH36dPuOt+egN954Q5MnT9bnn3+uYcOG6f/+7//0+eef680339Rrr71mVyAAAAAAUBx9++23euihh+Tv7y+LxaLly5fb7DcMQxMmTJC/v79cXV3Vtm1b/fTTTzZ10tPTNXToUHl5eals2bLq3r27/vzzT5s6SUlJ6t27tzw8POTh4aHevXsrOTnZps6xY8f00EMPqWzZsvLy8tKwYcOUkZFxy9f4+++/68qVK3Yda9fju3/88YceeuihHOXdu3fXyy+/bFcgAAAAAFAcXbhwQQ0bNlS/fv30yCOP5Ng/efJkTZs2TbGxsapVq5Zef/11dezYUYcPH5abm5skafjw4VqxYoUWLVqkihUrKjIyUt26ddPu3btVqlQpSVJYWJj+/PNPrVmzRpL0wgsvqHfv3lqxYoUkKTMzU127dpW3t7c2b96ss2fPqm/fvjIMQzNnzszTtURERNhsG4ahhIQErVq1Sn379rXr/bErKQ0MDNSGDRtUo0YNm/INGzYoMDDQrkAAAAAAoDjq3LmzOnfunOs+wzA0Y8YMvfLKK+rVq5ckaf78+fL19dXChQs1YMAApaSk6KOPPtKCBQv0wAMPSLr6lcrAwECtX79enTp10qFDh7RmzRpt27ZNLVq0kCTNmTNHwcHBOnz4sGrXrq21a9fq4MGDOn78uPz9/SVJU6dOVXh4uN544w25u7vf9Fr27t1rs+3g4CBvb29NnTr1pjPzXo9dSWlkZKSGDRumffv2qVWrVrJYLNq8ebNiY2P1zjvv2BUIAAAwwUKL2RHgThRmmB0BcFtITU212XZxcZGLi0u+2jhy5IgSExMVGhpq005ISIi2bNmiAQMGaPfu3bp8+bJNHX9/f9WrV09btmxRp06dtHXrVnl4eFgTUklq2bKlPDw8tGXLFtWuXVtbt25VvXr1rAmpJHXq1Enp6enavXu32rVrd9N4N27cmK/rywu7ktIXX3xRfn5+mjp1qv7zn/9IkurUqaPPP/9cPXr0KNAAAQAAAOB2dO1TouPHj9eECRPy1UZiYqIkydfX16bc19dX8fHx1jrOzs6qUKFCjjrZxycmJsrHxydH+z4+PjZ1rj1PhQoV5OzsbK2TV6dPn9bhw4dlsVhUq1YteXt75+v4f7J7SZiHH35YDz/8sN0nBgAAAIA72fHjx20eec3vKOk/WSy2T64YhpGj7FrX1smtvj11buTChQsaOnSoPv74Y2VlZUmSSpUqpT59+mjmzJkqU6ZMntr5J7tm3925c6e2b9+eo3z79u3atWuXPU0CAAAAwB3F3d3d5mVPUurn5ydJOUYqT506ZR3V9PPzU0ZGhpKSkm5Y56+//srR/unTp23qXHuepKQkXb58OccI6vVEREQoLi5OK1asUHJyspKTk/XFF18oLi5OkZGReWrjWnYlpYMHD9bx48dzlJ84cUKDBw+2KxAAAAAAKGmCgoLk5+endevWWcsyMjIUFxenVq1aSZKaNm0qJycnmzoJCQk6cOCAtU5wcLBSUlK0Y8cOa53t27crJSXFps6BAweUkJBgrbN27Vq5uLioadOmeYp3yZIl+uijj9S5c2drMt6lSxfNmTNHixcvtus9sCspPXjwoJo0aZKjvHHjxjp48GCe27md1usBAAAAgMLw999/a9++fdq3b5+kq5Mb7du3T8eOHZPFYtHw4cMVFRWlZcuW6cCBAwoPD1eZMmUUFhYmSfLw8NBzzz2nyMhIbdiwQXv37tUzzzyj+vXrW2fjrVOnjh588EH1799f27Zt07Zt29S/f39169ZNtWvXliSFhoaqbt266t27t/bu3asNGzZo5MiR6t+/f55m3pWkixcv5jqq6uPjo4sXL9r1/tiVlLq4uOQ6NJyQkCBHx7x/TTV7vZ5Zs2bluj97vZ5Zs2Zp586d8vPzU8eOHXX+/HlrneHDh2vZsmVatGiRNm/erL///lvdunVTZmamtU5YWJj27dunNWvWaM2aNdq3b5969+6djysGAAAAAPvs2rVLjRs3VuPGjSVdfQS2cePGGjdunCRp9OjRGj58uAYNGqRmzZrpxIkTWrt2rXWNUkmaPn26evbsqccff1z33XefypQpoxUrVljXKJWkTz/9VPXr11doaKhCQ0PVoEEDLViwwLq/VKlSWrVqlUqXLq377rtPjz/+uHr27KkpU6bk+VqCg4M1fvx4Xbp0yVqWlpamiRMnKjg42K73x2IYRr7n9H7yySeVmJioL774Qh4eHpKk5ORk9ezZUz4+PtYZefMViMWiZcuWqWfPnpKujpL6+/tr+PDhGjNmjKSro6K+vr566623rOv1eHt7a8GCBXriiSckSSdPnlRgYKBWr15tXa+nbt26Nuv1bNu2TcHBwfr555+tfzW4mdTUVHl4eCglJSXPf0XI5SLtOw4lW/5/RIFipUA+f4upAnlvWBIG9riNloSxTOQehn2M8fbfxyW5b/rxxx/VuXNnXbp0SQ0bNpTFYtG+ffvk4uKitWvX6p577sl3m3aNlE6dOlXHjx9X1apV1a5dO7Vr105BQUFKTEzU1KlT7Wkyh5ut1yPppuv1SLrpej3Xk56ertTUVJsXAAAAAJRk9evX16+//qro6Gg1atRIDRo00JtvvqnffvvNroRUsnNJmMqVK2v//v369NNP9cMPP8jV1VX9+vXTU089JScnJ7sCuVZRrteTm+joaE2cOPGWrgEAAAAAipPo6Gj5+vqqf//+NuVz587V6dOnrU+55ofd65SWLVtWL7zwgr2H51lRrddzrbFjxyoiIsK6nZqammNxXAAAAAAoSd5//30tXLgwR/k999yjJ5980q6k1K7HdyVpwYIFat26tfz9/a0jl9OnT9cXX3xhb5M2inK9nty4uLjkWHcIAAAAAEqyxMREVapUKUe5t7e3zVIz+WFXUhoTE6OIiAh17txZSUlJ1pluK1SooBkzZtgVyLWKcr0eAAAAAMDNBQYG6vvvv89R/v3338vf39+uNu16fHfmzJmaM2eOevbsqTfffNNa3qxZM40cOTLP7fz999/67bffrNvZ6/V4enqqSpUq1vV6atasqZo1ayoqKuq66/VUrFhRnp6eGjly5HXX63n//fclSS+88ILNej0AAAAAgJt7/vnnNXz4cF2+fFnt27eXJG3YsEGjR49WZGSkXW3alZQeOXLEusbOP7m4uOjChQt5bmfXrl1q166ddTv7O5x9+/ZVbGysRo8erbS0NA0aNEhJSUlq0aJFruv1ODo66vHHH1daWpo6dOig2NjYHOv1DBs2zDpLb/fu3a+7NioAAAAAIHejR4/WuXPnNGjQIGVkZEiSSpcurTFjxmjs2LF2tWnXOqV169ZVdHS0evToITc3N/3www+qXr26/v3vf2v+/PnavXu3XcHczlinFKZhnVKUcCV5LbibYZ1SmIZ1SlEMsE7prfn777916NAhubq6qmbNmnJxcbG7LbtGSkeNGqXBgwfr0qVLMgxDO3bs0Geffabo6Gh9+OGHdgcDAAAAALj9lStXTvfee2+BtGVXUtqvXz9duXJFo0eP1sWLFxUWFqaAgAC98847evLJJwskMAAAAABA8WdXUpqWlqann35a/fv315kzZ/THH3/o+++/V0BAQEHHBwAAAAAoxuxaEqZHjx76+OOPJUmOjo7q3r27pk2bpp49eyomJqZAAwQAAAAAFF92JaV79uxRmzZtJEmLFy+Wr6+v4uPj9fHHH+vf//53gQYIAAAAACi+7EpKL168aF2WZe3aterVq5ccHBzUsmVLxcfHF2iAAAAAAIDiy66ktEaNGlq+fLmOHz+ur7/+2rr+56lTp0rslMgAAAAAgPyzKykdN26cRo4cqWrVqqlFixYKDg6WdHXUtHHjxgUaIAAAAACg+LJr9t1HH31UrVu3VkJCgho2bGgt79Chgx5++OECCw4AAAAAULzZlZRKkp+fn/z8/GzKmjdvfssBAQAAAABKDrse3wUAAAAAoCCQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATGP3kjAASiaLxewIcCcyDLMjAAAAtytGSgEAAAAApiEpBQAAAACYhqQUAAAAAGAaklIAAAAAgGlISgEAAAAApiEpBQAAAACYhqQUAAAAAGAaklIAAAAAgGlISgEAAAAApilRSens2bMVFBSk0qVLq2nTpvruu+/MDgkAAABACUAucn0lJin9/PPPNXz4cL3yyivau3ev2rRpo86dO+vYsWNmhwYAAACgGCMXubESk5ROmzZNzz33nJ5//nnVqVNHM2bMUGBgoGJiYswODQAAAEAxRi5yY45mB1AUMjIytHv3br300ks25aGhodqyZUuux6Snpys9Pd26nZKSIklKTU0tvECB3HDPoRi4lds4+3PXMIwCiqb4yH5PbqlvulhAwaBkuZ36pktmB4A71a18dmYfm50jZHNxcZGLi4tNmT25SElTIpLSM2fOKDMzU76+vjblvr6+SkxMzPWY6OhoTZw4MUd5YGBgocQIXJeHh9kRALesIG7j8+fPy4OfBxvnz5+XRN8EE/TnZxF3Po83b/0+rlKlis32+PHjNWHCBJsye3KRkqZEJKXZLBaLzbZhGDnKso0dO1YRERHW7aysLJ07d04VK1a87jGwT2pqqgIDA3X8+HG5u7ubHQ5gF+7jwmMYhs6fPy9/f3+zQ7nt+Pv76/jx43Jzc6NvKmD8TKM44D4uPIZh6OzZs/L09JSDw/++EXntKOk/5ScXKWlKRFLq5eWlUqVK5fhLxKlTp3L8xSJbbkPv5cuXL6wQIcnd3Z0PTNzxuI8LByOkuXNwcFBAQIDZYRRr/EyjOOA+Lhx57ZvsyUVKmhIx0ZGzs7OaNm2qdevW2ZSvW7dOrVq1MikqAAAAAMUducjNlYiRUkmKiIhQ79691axZMwUHB+uDDz7QsWPHNHDgQLNDAwAAAFCMkYvcWIlJSp944gmdPXtWkyZNUkJCgurVq6fVq1eratWqZodW4rm4uGj8+PE3fAYfuN1xHwPFCz/TKA64j28f5CI3ZjGYYx8AAAAAYJIS8Z1SAAAAAMDtiaQUAAAAAGAaklIAAAAAgGlISnFb2bRpkywWi5KTk80OBciXo0ePymKxaN++fWaHAqCA0TfhTkXfhDtFiZl9FwAKU2BgoBISEuTl5WV2KAAASKJvwp2DpBR3lMzMTFksFjk4MMiP20upUqXk5+dndhgATEDfhNsVfRPuFHx6olAZhqHJkyerevXqcnV1VcOGDbV48WLr/tWrV6tWrVpydXVVu3btdPToUZvjY2NjVb58ea1cuVJ169aVi4uL4uPji/gqgKtudD9f+4hUUlKSnn76aXl7e8vV1VU1a9bUvHnzTIweQDb6JhQn9E0oDhgpRaH617/+paVLlyomJkY1a9bUt99+q2eeeUbe3t6qXr26evXqpYEDB+rFF1/Url27FBkZmaONixcvKjo6Wh9++KEqVqwoHx8fE64EuPH9fO3i16+++qoOHjyor776Sl5eXvrtt9+UlpZmUuQA/om+CcUJfROKA4thGIbZQaB4unDhgry8vPTNN98oODjYWv7888/r4sWLqlatmpYvX66ffvpJFotFkvTSSy/prbfeUlJSksqXL6/Y2Fj169dP+/btU8OGDc26FOCm93NUVJSCgoK0d+9eNWrUSN27d5eXl5fmzp1rYtQArkXfhOKEvgnFBSOlKDQHDx7UpUuX1LFjR5vyjIwMNW7cWGlpaWrZsqW105dk84GazdnZWQ0aNCj0eIEbudn9fK0XX3xRjzzyiPbs2aPQ0FD17NlTrVq1KqpwAVwHfROKE/omFBckpSg0WVlZkqRVq1apcuXKNvtcXFw0dOjQPLXj6upq88sBYIab3c+ZmZk2ZZ07d1Z8fLxWrVql9evXq0OHDho8eLCmTJlSZDEDyIm+CcUJfROKC5JSFJrsyR+OHTumkJCQXPcvX77cpmzbtm1FFB2QPze7n6+dCEWSvL29FR4ervDwcLVp00ajRo2i4wdMRt+E4oS+CcUFSSkKjZubm0aOHKkRI0YoKytLrVu3VmpqqrZs2aJy5cpp4MCBmjp1qiIiIjRgwADt3r1bsbGxZocN5Opm9/O1vwyMGzdOTZs21T333KP09HStXLlSderUMSl6ANnom1Cc0DehuCApRaF67bXX5OPjo+joaP3xxx8qX768mjRpopdffllVqlTRkiVLNGLECM2ePVvNmzdXVFSUnn32WbPDBnJ1o/v5Ws7Ozho7dqyOHj0qV1dXtWnTRosWLTIhagDXom9CcULfhOKA2XcBoAAcPnxYd999t3799VfVqFHD7HAAAKBvwh3DwewAAOBOd+7cOS1evFju7u4KDAw0OxwAAOibcEfh8V0AuEXPPfecdu/erZiYGLm4uJgdDgAA9E24o/D4LgAAAADANDy+CwAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpUEC2bNmiCRMmKDk52e42Fi5cqBkzZtxSHG3btlXbtm1vWm/27NmKjY3NUX706FFZLJZc9wEAzHWn9TUZGRkaOHCgKlWqpFKlSqlRo0b5Ok94eLiqVatmU1atWjWFh4fnqx0AtzeSUqCAbNmyRRMnTjT9F4W8ul5SWqlSJW3dulVdu3YtkjgAAHl3p/U1MTExev/99/XKK69o8+bNWrBgQb6Of/XVV7Vs2bJCig7A7cLR7AAA3F5cXFzUsmVLs8MAABQDBw4ckKurq4YMGWLX8XfddVcBR5TTxYsXVaZMmUI/D4DrY6QUKAATJkzQqFGjJElBQUGyWCyyWCzatGmTJCkrK0uTJ0/W3XffLRcXF/n4+KhPnz76888/rW20bdtWq1atUnx8vPV4i8Vi3T9x4kS1aNFCnp6ecnd3V5MmTfTRRx/JMIx8x1utWjX99NNPiouLs54n+/Go3B7fnTBhgiwWi/bv36/HHntMHh4e8vT0VEREhK5cuaLDhw/rwQcflJubm6pVq6bJkyfnOGdqaqpGjhypoKAgOTs7q3Llyho+fLguXLiQ7/gBoCS60/oai8WiDz/8UGlpadbzZPct7777ru6//375+PiobNmyql+/viZPnqzLly/btJHb47vXio2NlcVi0dGjR23KN23aZPP+ZF9/vXr19O2336pVq1YqU6aMnn32WUl576f++9//qkWLFvLw8FCZMmVUvXp1axsA7MNIKVAAnn/+eZ07d04zZ87U0qVLValSJUlS3bp1JUkvvviiPvjgAw0ZMkTdunXT0aNH9eqrr2rTpk3as2ePvLy8NHv2bL3wwgv6/fffc31U6ejRoxowYICqVKkiSdq2bZuGDh2qEydOaNy4cfmKd9myZXr00Ufl4eGh2bNnS7o6Qnozjz/+uJ555hkNGDBA69ats/4CsX79eg0aNEgjR47UwoULNWbMGNWoUUO9evWSdPWv0CEhIfrzzz/18ssvq0GDBvrpp580btw4/fjjj1q/fr3NL0UAgJzutL5m69ateu2117Rx40Z98803kv438vn7778rLCzMmgD+8MMPeuONN/Tzzz9r7ty5dr9HeZGQkKBnnnlGo0ePVlRUlBwcHPLcT23dulVPPPGEnnjiCU2YMEGlS5dWfHy89foA2MkAUCDefvttQ5Jx5MgRm/JDhw4ZkoxBgwbZlG/fvt2QZLz88svWsq5duxpVq1a96bkyMzONy5cvG5MmTTIqVqxoZGVlWfeFhIQYISEhN23jnnvuybXekSNHDEnGvHnzrGXjx483JBlTp061qduoUSNDkrF06VJr2eXLlw1vb2+jV69e1rLo6GjDwcHB2Llzp83xixcvNiQZq1evvmm8AIA7r6/p27evUbZs2Tyd5+OPPzZKlSplnDt3zub4a2OtWrWq0bdvX+v2vHnzcn1PNm7caEgyNm7caBO3JGPDhg02dfPaT02ZMsWQZCQnJ9/kygHkB4/vAoVs48aNkpRjpsDmzZurTp062rBhQ57a+eabb/TAAw/Iw8NDpUqVkpOTk8aNG6ezZ8/q1KlTBR12rrp162azXadOHVksFnXu3Nla5ujoqBo1aig+Pt5atnLlStWrV0+NGjXSlStXrK9OnTrleLQKAJB/d1pfs3fvXnXv3l0VK1a0nqdPnz7KzMzUL7/8UmDnyU2FChXUvn17m7K89lP33nuvpKtPDv3nP//RiRMnCjVWoKQgKQUK2dmzZyXJ+pjVP/n7+1v338iOHTsUGhoqSZozZ46+//577dy5U6+88ookKS0trQAjvj5PT0+bbWdnZ5UpU0alS5fOUX7p0iXr9l9//aX9+/fLycnJ5uXm5ibDMHTmzJkiiR8Aiqs7qa85duyY2rRpoxMnTuidd97Rd999p507d+rdd98t0PNcT27vUV77qfvvv1/Lly/XlStX1KdPHwUEBKhevXr67LPPCjVmoLjjO6VAIatYsaKkq99hCQgIsNl38uRJeXl53bSNRYsWycnJSStXrrRJAJcvX16gsRYWLy8vubq6Xvd7Qnl5DwAA13cn9TXLly/XhQsXtHTpUlWtWtVavm/fPrvay441PT3dpvx6f/DMbQ6D/PRTPXr0UI8ePZSenq5t27YpOjpaYWFhqlatmoKDg+26BqCkIykFCkj2REHX/oU3+xGhTz75xPrYjyTt3LlThw4dsv4FOruN3P5CbLFY5OjoqFKlSlnL0tLS8r3e27XxFtUIa7du3RQVFaWKFSsqKCioSM4JAMXRndbX5CY7KfznBHuGYWjOnDl2tZc9O+/+/ftVu3Zta/mXX36Z5zbs6adcXFwUEhKi8uXL6+uvv9bevXtJSgE7kZQCBaR+/fqSpHfeeUd9+/aVk5OTateurdq1a+uFF17QzJkz5eDgoM6dO1tnRAwMDNSIESNs2li6dKliYmLUtGlTOTg4qFmzZurataumTZumsLAwvfDCCzp79qymTJmSpxlzbxTvokWL9Pnnn6t69eoqXbq09RoK2vDhw7VkyRLdf//9GjFihBo0aKCsrCwdO3ZMa9euVWRkpFq0aFEo5waA4uRO62ty07FjRzk7O+upp57S6NGjdenSJcXExCgpKcmu9u69917Vrl1bI0eO1JUrV1ShQgUtW7ZMmzdvznMbee2nxo0bpz///FMdOnRQQECAkpOT9c4778jJyUkhISF2xQ9AzL4LFKSxY8ca/v7+hoODg82Mf5mZmcZbb71l1KpVy3BycjK8vLyMZ555xjh+/LjN8efOnTMeffRRo3z58obFYjH++SM6d+5co3bt2oaLi4tRvXp1Izo62vjoo49yzDiY1xkRjx49aoSGhhpubm6GJOvshjeafff06dM2bVxvVsWQkBDjnnvusSn7+++/jX/9619G7dq1DWdnZ8PDw8OoX7++MWLECCMxMfGm8QIArrqT+prr9RMrVqwwGjZsaJQuXdqoXLmyMWrUKOOrr77KMVtuXmbfNQzD+OWXX4zQ0FDD3d3d8Pb2NoYOHWqsWrUq19l3r+2fsuWln1q5cqXRuXNno3Llyoazs7Ph4+NjdOnSxfjuu+9u+l4AuD6LYdixGjIAAAAAAAWA2XcBAAAAAKYhKQUAAAAAmIakFAAAAABgGpJSAAAAAIBpSEoBAAAAAKYhKQUAAAAAmMbR7ADuFFlZWTp58qTc3NxksVjMDgcASgzDMHT+/Hn5+/vLwYG/pf4TfRMAmIO+qWCRlObRyZMnFRgYaHYYAFBiHT9+XAEBAWaHcVuhbwIAc9E3FQyS0jxyc3OTdPXGc3d3NzkaACg5UlNTFRgYaP0cxv/QNwGAOeibChZJaR5lPxbl7u5Oxw8AJuDx1JzomwDAXPRNBYMHoAEAAAAApiEpBQAAAACYhsd3ixLD+7CHYZgdAQAAty3LRH6/gn2M8fyOdbtgpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmISkFAAAAAJiGpBQAAAAAYBqSUgAAAACAaUhKAQAAAACmsSspXbNmjTZv3mzdfvfdd9WoUSOFhYUpKSmpwIIDAAAAABRvdiWlo0aNUmpqqiTpxx9/VGRkpLp06aI//vhDERERBRogAAAAANypoqOjde+998rNzU0+Pj7q2bOnDh8+bFPHMAxNmDBB/v7+cnV1Vdu2bfXTTz/Z1ElPT9fQoUPl5eWlsmXLqnv37vrzzz9t6iQlJal3797y8PCQh4eHevfureTkZJs6x44d00MPPaSyZcvKy8tLw4YNU0ZGRqFce17ZlZQeOXJEdevWlSQtWbJE3bp1U1RUlGbPnq2vvvqqQAMEAAAAgDtVXFycBg8erG3btmndunW6cuWKQkNDdeHCBWudyZMna9q0aZo1a5Z27twpPz8/dezYUefPn7fWGT58uJYtW6ZFixZp8+bN+vvvv9WtWzdlZmZa64SFhWnfvn1as2aN1qxZo3379ql3797W/ZmZmeratasuXLigzZs3a9GiRVqyZIkiIyOL5s24Dkd7DnJ2dtbFixclSevXr1efPn0kSZ6entYRVAAAAAAo6dasWWOzPW/ePPn4+Gj37t26//77ZRiGZsyYoVdeeUW9evWSJM2fP1++vr5auHChBgwYoJSUFH300UdasGCBHnjgAUnSJ598osDAQK1fv16dOnXSoUOHtGbNGm3btk0tWrSQJM2ZM0fBwcE6fPiwateurbVr1+rgwYM6fvy4/P39JUlTp05VeHi43njjDbm7uxfhO/M/do2Utm7dWhEREXrttde0Y8cOde3aVZL0yy+/KCAgoEADBAAAAIDiIiUlRdLVAT3p6lOoiYmJCg0NtdZxcXFRSEiItmzZIknavXu3Ll++bFPH399f9erVs9bZunWrPDw8rAmpJLVs2VIeHh42derVq2dNSCWpU6dOSk9P1+7duwvpim/OrqR01qxZcnR01OLFixUTE6PKlStLkr766is9+OCDBRogAAAAANyOUlNTbV7p6ek3rG8YhiIiItS6dWvVq1dPkpSYmChJ8vX1tanr6+tr3ZeYmChnZ2dVqFDhhnV8fHxynNPHx8emzrXnqVChgpydna11zGDX47tVqlTRypUrc5RPnz79lgMCAAAAgDtBYGCgzfb48eM1YcKE69YfMmSI9u/fb7OSSTaLxWKzbRhGjrJrXVsnt/r21ClqeU5K8/NdUbOeRQYAAACAonL8+HGb3MfFxeW6dYcOHaovv/xS3377rc1XHv38/CRdHcWsVKmStfzUqVPWUU0/Pz9lZGQoKSnJZrT01KlTatWqlbXOX3/9leO8p0+ftmln+/btNvuTkpJ0+fLlHCOoRSnPj++WL19eFSpUyNMLAAAAAIo7d3d3m1duSalhGBoyZIiWLl2qb775RkFBQTb7g4KC5Ofnp3Xr1lnLMjIyFBcXZ004mzZtKicnJ5s6CQkJOnDggLVOcHCwUlJStGPHDmud7du3KyUlxabOgQMHlJCQYK2zdu1aubi4qGnTpnm65vbt2+dYZka6OojZvn37PLVxrTyPlG7cuNH676NHj+qll15SeHi4goODJV390uz8+fMVHR1tVyAAAAAAUNwMHjxYCxcu1BdffCE3Nzfrdzc9PDzk6uoqi8Wi4cOHKyoqSjVr1lTNmjUVFRWlMmXKKCwszFr3ueeeU2RkpCpWrChPT0+NHDlS9evXt87GW6dOHT344IPq37+/3n//fUnSCy+8oG7duql27dqSpNDQUNWtW1e9e/fW22+/rXPnzmnkyJHq379/np923bRpU67rml66dEnfffedXe9RnpPSkJAQ678nTZqkadOm6amnnrKWde/eXfXr19cHH3ygvn372hUMAAAAABQnMTExkqS2bdvalM+bN0/h4eGSpNGjRystLU2DBg1SUlKSWrRoobVr18rNzc1af/r06XJ0dNTjjz+utLQ0dejQQbGxsSpVqpS1zqeffqphw4ZZZ+nt3r27Zs2aZd1fqlQprVq1SoMGDdJ9990nV1dXhYWFacqUKTe9jv3791v/ffDgQZuJkTIzM7VmzRrrBLj5ZTEMw8jvQWXKlNEPP/ygmjVr2pT/8ssvatSokXUN0+IkNTVVHh4eSklJsf87syZ+eRh3sPz/iALFSoF8/hZTvDeAZJnI71ewjzHe/t+xSuLnr4ODg3UypNxSSFdXV82cOVPPPvtsvtu2a/bdwMBAvffee5o6dapN+fvvv59jBioAAAAAwJ3tyJEjMgxD1atX144dO+Tt7W3d5+zsLB8fH5tR2/ywKymdPn26HnnkEX399ddq2bKlJGnbtm36/ffftWTJErsCXb41gQAAPylJREFUAQAAAADcnqpWrSpJysrKKvC27UpKu3Tpol9//VWzZ8/Wzz//LMMw1KNHDw0c+P/au/O4KMv9/+PvQWREBVzYIlExteN2zC2X3ArFLCW1U5pmmkvuHsItM3M5BV8tt6NJpSmlebTjelwTlyhFc0mOmWaLilQQliwuBIr37w9/zmkEFUfwluH1fDzm8XCu+7qv+dzjPXPNh+u+r2swI6UAAAAA4MS+++47ffbZZ0pJScmVpL7++uu33Z5DSakkVapUSREREY7uDgAAAAAoYhYsWKAhQ4bI29tb/v7+tvtMJclisdzdpDQtLU379u3LMzt+4YUXHG0WAAAAAHCPeuONN/Tmm29q3LhxBdamQ0np+vXr1atXL124cEEeHh65smOSUgAAAABwPqmpqXrmmWcKtE0XR3YaNWqU+vXrp3PnziktLU2pqam2x9mzZws0QAAAAADAveGZZ57R1q1bC7RNh0ZKf/75Z40cOVKlS5cu0GAAAAAAAPeu6tWra+LEidq7d6/q1aunkiVL2m0fOXLkbbfp0Ehphw4ddODAAUd2tRMZGakmTZrIw8NDvr6+6tKli44fP25XxzAMTZ48WQEBAXJ3d1fbtm31zTff2NXJysrSiBEj5O3trTJlyig0NFQ//fSTXZ3U1FT17t1bXl5e8vLyUu/evZWWlnbHxwAAAAAAxcX777+vsmXLKjY2VvPmzdOsWbNsj9mzZzvUpkMjpU8++aTGjBmjo0eP5pkdh4aG5qud2NhYDRs2TE2aNNHly5c1YcIEhYSE6OjRoypTpowkafr06Zo5c6aio6NVs2ZNvfHGG2rfvr2OHz8uDw8PSVJYWJjWr1+v5cuXq2LFiho1apQ6deqkgwcP2hZw7dmzp3766Sdt2bJFkvTSSy+pd+/eWr9+vSNvAQAAAAAUOydPnizwNi2GYRi3u5OLy40HWC0Wi3JychwK5syZM/L19VVsbKxat24twzAUEBCgsLAw2+xOWVlZ8vPz07Rp0zRo0CClp6fLx8dHS5YsUffu3SVJv/zyiwIDA7Vp0yZ16NBBx44dU+3atbV37141bdpUkrR37141b95c3377rR588MFbxpaRkSEvLy+lp6fL09PToePTnyaEAvLt9j+igFMpkO9fJ8V7A0iWKfy+gmOMSY7/xuL7t2A5NFJ6/RIwBSU9PV2SVKFCBUlXs/Dk5GSFhITY6litVrVp00ZxcXEaNGiQDh48qEuXLtnVCQgIUN26dRUXF6cOHTpoz5498vLysiWkktSsWTN5eXkpLi4uz6Q0KytLWVlZtucZGRkFfrwAAAAAUJT069fvptsXLVp02206vE5pQTMMQ+Hh4WrZsqXq1q0rSUpOTpYk+fn52dX18/NTQkKCrY6bm5vKly+fq861/ZOTk+Xr65vrNX19fW11rhcZGakpU6bc2UEBAAAAgBNJTU21e37p0iUdOXJEaWlpeuyxxxxq0+GkNDY2Vm+//baOHTsmi8WiWrVqacyYMWrVqpVD7Q0fPlyHDx/Wrl27cm2zXHfZq2EYucqud32dvOrfrJ3x48crPDzc9jwjI0OBgYE3fU0AAAAAcGZr1qzJVXblyhUNHTpU1apVc6hNh2bfXbp0qdq1a6fSpUtr5MiRGj58uNzd3RUcHKxly5bddnsjRozQf/7zH+3cuVOVKlWylfv7+0tSrtHMlJQU2+ipv7+/srOzc2Xs19f59ddfc73umTNnco3CXmO1WuXp6Wn3AAAAAADYc3Fx0csvv6xZs2Y5tr8jO7355puaPn26VqxYoZEjR+rvf/+7VqxYof/7v//TP/7xj3y3YxiGhg8frtWrV2vHjh0KCgqy2x4UFCR/f3/FxMTYyrKzsxUbG6sWLVpIkho1aqSSJUva1UlKStKRI0dsdZo3b6709HTt27fPVufLL79Uenq6rQ4AAAAAwDE//vijLl++7NC+Dl2+e+LECXXu3DlXeWhoqF599dV8tzNs2DAtW7ZM69atk4eHh21E1MvLS+7u7rJYLAoLC1NERIRq1KihGjVqKCIiQqVLl1bPnj1tdfv3769Ro0apYsWKqlChgkaPHq169eqpXbt2kqRatWrp8ccf18CBA/Xee+9JurokTKdOnfI18y4AAE5rGTOXwgE9mRkeKK7+fIujdHWgMSkpSRs3blSfPn0catOhpDQwMFDbt29X9erV7cq3b99+W/ddRkVFSZLatm1rV7548WL17dtXkjR27FhlZmZq6NChSk1NVdOmTbV161bbGqWSNGvWLLm6uurZZ59VZmamgoODFR0dbVujVJI+/vhjjRw50jZLb2hoqObNm3c7hw0AAAAAxdqhQ4fsnru4uMjHx0czZsy45cy8N+LQOqVRUVEKCwtTv3791KJFC1ksFu3atUvR0dGaM2eOBg0a5FAw9zLWKYVpWKcUxRxrwd1Ygbw3jJTCEffQSCnrlMJRrFN673BopHTIkCHy9/fXjBkz9Mknn0i6eonsihUr9NRTTxVogAAAAACAe8uZM2d0/PhxWSwW1axZUz4+Pg635fCSMF27dlXXrl0dfmEAAAAAQNFy4cIFjRgxQh999JGuXLkiSSpRooReeOEFzZ07V6VLl77tNh2afXf//v368ssvc5V/+eWXOnDggCNNAgAAAADuceHh4YqNjdX69euVlpamtLQ0rVu3TrGxsRo1apRDbTqUlA4bNkyJiYm5yn/++WcNGzbMoUAAAAAAAPe2VatW6YMPPlDHjh3l6ekpT09PPfHEE1qwYIFWrlzpUJsOJaVHjx5Vw4YNc5U3aNBAR48edSgQAAAAAMC97eLFi/Lz88tV7uvrq4sXLzrUpkNJqdVq1a+//pqrPCkpSa6uDt+mCgAAAABO5/PPP1fnzp0VEBAgi8WitWvX2m03DEOTJ09WQECA3N3d1bZtW33zzTd2dbKysjRixAh5e3urTJkyCg0N1U8//WRXJzU1Vb1795aXl5e8vLzUu3dvpaWl2dU5ffq0OnfurDJlysjb21sjR45UdnZ2vo+lefPmmjRpkv744w9bWWZmpqZMmaLmzZvnu50/cygpbd++vcaPH6/09HRbWVpaml599VW1b9/eoUAAAAAAwBlduHBB9evX17x58/LcPn36dM2cOVPz5s3T/v375e/vr/bt2+vcuXO2OmFhYVqzZo2WL1+uXbt26fz58+rUqZNycnJsdXr27Kn4+Hht2bJFW7ZsUXx8vHr37m3bnpOToyeffFIXLlzQrl27tHz5cq1ateq27gWdPXu24uLiVKlSJQUHB6tdu3YKDAzU7t27NWfOHAfeHQfXKf3555/VunVr/f7772rQoIEkKT4+Xn5+foqJiVFgYKBDwdzLWKcUpmGdUhRzrAV3Y6xTCtOwTimcgFnrlFosFq1Zs0ZdunS5GodhKCAgQGFhYRo3bpykq6Oifn5+mjZtmgYNGqT09HT5+PhoyZIl6t69uyTpl19+UWBgoDZt2qQOHTro2LFjql27tvbu3aumTZtKkvbu3avmzZvr22+/1YMPPqjNmzerU6dOSkxMVEBAgCRp+fLl6tu3r1JSUvJ9LJmZmVq6dKm+/fZbGYah2rVrq1evXnJ3d7+t9+Iah661vf/++3X48GF9/PHH+u9//yt3d3e9+OKLeu6551SyZEmHAgEAAACA4ubkyZNKTk5WSEiIrcxqtapNmzaKi4vToEGDdPDgQV26dMmuTkBAgOrWrau4uDh16NBBe/bskZeXly0hlaRmzZrJy8tLcXFxevDBB7Vnzx7VrVvXlpBKUocOHZSVlaWDBw/q0UcfvWW8kZGR8vPz08CBA+3KFy1apDNnztgS69vh8A2gZcqU0UsvveTo7gAAAABQpGVkZNg9t1qtslqtt9VGcnKyJOWaPMjPz08JCQm2Om5ubipfvnyuOtf2T05Olq+vb672fX197epc/zrly5eXm5ubrc6tvPfee1q2bFmu8jp16qhHjx4OJaUO3VMqSUuWLFHLli0VEBBge7NmzZqldevWOdokAAAAABQZgYGBtkmFvLy8FBkZ6XBblutu9TMMI1fZ9a6vk1d9R+rcTHJysu67775c5T4+PkpKSspXG9dzKCmNiopSeHi4OnbsqNTUVNvNteXLl9fs2bMdCgQAAAAAipLExESlp6fbHuPHj7/tNvz9/SUp10hlSkqKbVTT399f2dnZSk1NvWmdvFZIOXPmjF2d618nNTVVly5dynOZl7xcm9Toert377a7LPh2OJSUzp07VwsWLNCECRPsloBp3Lixvv76a4cCAQAAAICixNPT0+5xu5fuSlJQUJD8/f0VExNjK8vOzlZsbKxatGghSWrUqJFKlixpVycpKUlHjhyx1WnevLnS09O1b98+W50vv/xS6enpdnWOHDliN6K5detWWa1WNWrUKF/xDhgwQGFhYVq8eLESEhKUkJCgRYsW6eWXX851n2l+OXRP6cmTJ22z7v6Z1WrVhQsXHAoEAAAAAJzR+fPn9cMPP9ienzx5UvHx8apQoYIqV66ssLAwRUREqEaNGqpRo4YiIiJUunRp9ezZU5Lk5eWl/v37a9SoUapYsaIqVKig0aNHq169emrXrp0kqVatWnr88cc1cOBAvffee5Kkl156SZ06ddKDDz4oSQoJCVHt2rXVu3dvvfXWWzp79qxGjx6tgQMH5nvm3bFjx+rs2bMaOnSobX3TUqVKady4cQ6NFEsOJqVBQUGKj49XlSpV7Mo3b96s2rVrOxQIAAAAADijAwcO2M1sGx4eLknq06ePoqOjNXbsWGVmZmro0KFKTU1V06ZNtXXrVnl4eNj2mTVrllxdXfXss88qMzNTwcHBio6OVokSJWx1Pv74Y40cOdI2S29oaKjd2qglSpTQxo0bNXToUD3yyCNyd3dXz5499fbbb+f7WCwWi6ZNm6aJEyfq2LFjcnd3V40aNRwaJba16cg6pYsXL9bEiRM1Y8YM9e/fXwsXLtSPP/6oyMhILVy4UD169HA4oHsV65TCNKxTimKOdUpvjHVKYRrWKYUTMGudUuTm0Ejpiy++qMuXL2vs2LG6ePGievbsqUqVKmnOnDlOmZACAAAAAAqHQ0lpZmamevXqpYEDB+q3337TiRMntHv3blWqVKmg4wNwj2HAH45gwB8AANyIQ7PvPvXUU/roo48kSa6urgoNDdXMmTPVpUsXRUVFFWiAAAAAAADn5VBS+tVXX6lVq1aSpJUrV8rPz08JCQn66KOP9M9//rNAAwQAAAAAOC+HktKLFy/aZoLaunWrunXrJhcXFzVr1kwJCQkFGiAAAAAAwHk5lJRWr15da9euVWJioj799FPblMMpKSnMPgUAAAAAyDeHktLXX39do0ePVtWqVdW0aVM1b95c0tVR0wYNGhRogAAAAAAA5+XQ7Lt/+9vf1LJlSyUlJal+/fq28uDgYHXt2rXAggMAAAAAODeHklJJ8vf3l7+/v13Zww8/fMcBAQAAAACKD4cu3wUAAAAAoCCQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwTbFKSufPn6+goCCVKlVKjRo10hdffGF2SAAAAACKAXKRGys2SemKFSsUFhamCRMm6NChQ2rVqpU6duyo06dPmx0aAAAAACdGLnJzxSYpnTlzpvr3768BAwaoVq1amj17tgIDAxUVFWV2aAAAAACcGLnIzRWLpDQ7O1sHDx5USEiIXXlISIji4uJMigoAAACAsyMXuTVXswO4G3777Tfl5OTIz8/PrtzPz0/Jycl57pOVlaWsrCzb8/T0dElSRkZG4QUK5IVzDk7gTk7ja9+7hmEUUDTO49p7ckd908UCCgbFy73UN/1hdgAoqu7ku/PavtdyhGusVqusVqtdmSO5SHFTLJLSaywWi91zwzBylV0TGRmpKVOm5CoPDAwslNiAG/LyMjsC4I4VxGl87tw5efF5sHPu3DlJ9E0wwUA+iyj6vP7vzs/jypUr2z2fNGmSJk+enGfd28lFiptikZR6e3urRIkSuf4SkZKSkusvFteMHz9e4eHhtudXrlzR2bNnVbFiRU6eApaRkaHAwEAlJibK09PT7HAAh3AeFx7DMHTu3DkFBASYHco9JyAgQImJifLw8KBvKmB8puEMOI8Lj2EY+v3331WhQgW5uPzvjsjrR0klx3KR4qZYJKVubm5q1KiRYmJi1LVrV1t5TEyMnnrqqTz3yWvovVy5coUZZrHn6enJFyaKPM7jwsEIad5cXFxUqVIls8Nwanym4Qw4jwtHfvsmR3KR4qZYJKWSFB4ert69e6tx48Zq3ry53n//fZ0+fVqDBw82OzQAAAAAToxc5OaKTVLavXt3/f7775o6daqSkpJUt25dbdq0SVWqVDE7NAAAAABOjFzk5opNUipJQ4cO1dChQ80OA9exWq2aNGlSntfgA0UF5zHgXPhMwxlwHt9byEVuzGIwxz4AAAAAwCQut64CAAAAAEDhICkFAAAAAJiGpBT3lM8++0wWi0VpaWlmhwLcllOnTslisSg+Pt7sUAAUMPomFFX0TSgqitVERwBQWAIDA5WUlCRvb2+zQwEAQBJ9E4oOklIUKTk5ObJYLHJxYZAf95YSJUrI39/f7DAAmIC+Cfcq+iYUFXx7olAZhqHp06erWrVqcnd3V/369bVy5Urb9k2bNqlmzZpyd3fXo48+qlOnTtntHx0drXLlymnDhg2qXbu2rFarEhIS7vJRAFfd7Hy+/hKp1NRU9erVSz4+PnJ3d1eNGjW0ePFiE6MHcA19E5wJfROcASOlKFSvvfaaVq9eraioKNWoUUOff/65nn/+efn4+KhatWrq1q2bBg8erCFDhujAgQMaNWpUrjYuXryoyMhILVy4UBUrVpSvr68JRwLc/Hy+fvHriRMn6ujRo9q8ebO8vb31ww8/KDMz06TIAfwZfROcCX0TnAHrlKLQXLhwQd7e3tqxY4eaN29uKx8wYIAuXryoqlWrau3atfrmm29ksVgkSa+88oqmTZum1NRUlStXTtHR0XrxxRcVHx+v+vXrm3UowC3P54iICAUFBenQoUN66KGHFBoaKm9vby1atMjEqAFcj74JzoS+Cc6CkVIUmqNHj+qPP/5Q+/bt7cqzs7PVoEEDZWZmqlmzZrZOX5LdF+o1bm5u+utf/1ro8QI3c6vz+XpDhgzR008/ra+++kohISHq0qWLWrRocbfCBXAD9E1wJvRNcBYkpSg0V65ckSRt3LhR999/v902q9WqESNG5Ksdd3d3ux8HgBludT7n5OTYlXXs2FEJCQnauHGjtm3bpuDgYA0bNkxvv/32XYsZQG70TXAm9E1wFiSlKDTXJn84ffq02rRpk+f2tWvX2pXt3bv3LkUH3J5bnc/XT4QiST4+Purbt6/69u2rVq1aacyYMXT8gMnom+BM6JvgLEhKUWg8PDw0evRovfzyy7py5YpatmypjIwMxcXFqWzZsho8eLBmzJih8PBwDRo0SAcPHlR0dLTZYQN5utX5fP2Pgddff12NGjVSnTp1lJWVpQ0bNqhWrVomRQ/gGvomOBP6JjgLklIUqn/84x/y9fVVZGSkTpw4oXLlyqlhw4Z69dVXVblyZa1atUovv/yy5s+fr4cfflgRERHq16+f2WEDebrZ+Xw9Nzc3jR8/XqdOnZK7u7tatWql5cuXmxA1gOvRN8GZ0DfBGTD7LgAUgOPHj+svf/mLvv/+e1WvXt3scAAAoG9CkeFidgAAUNSdPXtWK1eulKenpwIDA80OBwAA+iYUKVy+CwB3qH///jp48KCioqJktVrNDgcAAPomFClcvgsAAAAAMA2X7wIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpcIeio6NlsVh06tQps0O5Z8TFxWny5MlKS0vLta1t27Zq27btXY8JAIoy+pq8rVixQnXq1JG7u7ssFovi4+Pzve9nn30mi8Wizz77zFY2efJkWSyWgg8UwE2RlAJ36Mknn9SePXt03333mR3KPSMuLk5TpkzJMymdP3++5s+ff/eDAoAijL4mtzNnzqh379564IEHtGXLFu3Zs0c1a9bM9/4NGzbUnj171LBhw0KMEkB+uJodAFDU+fj4yMfHx+wwiozatWubHQIAFDn0Nbl99913unTpkp5//nm1adPmtvf39PRUs2bNCiGy/8nMzFSpUqUYfQVugZFSFCt9+/ZV1apVc5XndbmOxWLR8OHDtWTJEtWqVUulS5dW/fr1tWHDBrt6eV1SdejQIXXq1Em+vr6yWq0KCAjQk08+qZ9++kmS9Mwzz6hOnTp27XTu3FkWi0X//ve/bWVfffWVLBaL1q9fL+nqX4WHDh2q2rVrq2zZsvL19dVjjz2mL774wq6tU6dOyWKxaPr06XrzzTdVuXJllSpVSo0bN9b27dtv+327HZMnT9aYMWMkSUFBQbJYLHaXR11/+e61WN966y1NmzZNVatWlbu7u9q2bWv7wfHKK68oICBAXl5e6tq1q1JSUnK97ooVK9S8eXOVKVNGZcuWVYcOHXTo0KFCPVYAyAt9TeH3NX379lXLli0lSd27d5fFYrH1LQcOHFCPHj1s/UnVqlX13HPPKSEhwa6NvC7fzYvFYtHkyZNzlVetWlV9+/a1Pb/2f7R161b169dPPj4+Kl26tLKysiTlr586ceKEevTooYCAAFmtVvn5+Sk4OPi2LksGiiKSUuAmNm7cqHnz5mnq1KlatWqVKlSooK5du+rEiRM33OfChQtq3769fv31V73zzjuKiYnR7NmzVblyZZ07d06S1K5dOx09elRJSUmSpMuXLys2Nlbu7u6KiYmxtbVt2za5urraOtqzZ89KkiZNmqSNGzdq8eLFqlatmtq2bZtnpzpv3jxt2bJFs2fP1tKlS+Xi4qKOHTtqz549BfQO5TZgwACNGDFCkrR69Wrt2bMnX5dHvfPOO9q9e7feeecdLVy4UN9++606d+6s/v3768yZM1q0aJGmT5+ubdu2acCAAXb7RkRE6LnnnlPt2rX1ySefaMmSJTp37pxatWqlo0ePFtqxAkBBoK+5fRMnTtQ777wj6WofsGfPHtutIadOndKDDz6o2bNn69NPP9W0adOUlJSkJk2a6Lfffiu0mK7p16+fSpYsqSVLlmjlypUqWbJkvvupJ554QgcPHtT06dMVExOjqKgoNWjQIM/bYQCnYgDFSJ8+fYwqVarkKp80aZJx/cdBkuHn52dkZGTYypKTkw0XFxcjMjLSVrZ48WJDknHy5EnDMAzjwIEDhiRj7dq1N4zjhx9+MCQZH330kWEYhrFr1y5DkjF27FgjKCjIVq99+/ZGixYtbtjO5cuXjUuXLhnBwcFG165dbeUnT540JBkBAQFGZmamrTwjI8OoUKGC0a5duxu2WRDeeustu/fkz9q0aWO0adMmV6z169c3cnJybOWzZ882JBmhoaF2+4eFhRmSjPT0dMMwDOP06dOGq6urMWLECLt6586dM/z9/Y1nn3224A4MAPKBvubu9DU7d+40JBn//ve/b1rv8uXLxvnz540yZcoYc+bMybX/zp07bWU3+j+aNGlSrnarVKli9OnTx/b82v/RCy+8YFcvv/3Ub7/9ZkgyZs+efdPjAZwRI6XATTz66KPy8PCwPffz85Ovr2+uS4D+rHr16ipfvrzGjRund999N8+RugceeEBVq1bVtm3bJEkxMTGqV6+enn/+eZ08eVI//vijsrKytGvXLrVr185u33fffVcNGzZUqVKl5OrqqpIlS2r79u06duxYrtfp1q2bSpUqZXvu4eGhzp076/PPP1dOTs5tvx+F6YknnpCLy/++kmrVqiXp6uQef3at/PTp05KkTz/9VJcvX9YLL7ygy5cv2x6lSpVSmzZtbnlZFgCYjb6mYJ0/f17jxo1T9erV5erqKldXV5UtW1YXLlzIM/6C9vTTT9s9z28/VaFCBT3wwAN66623NHPmTB06dEhXrlwp9HiBewFJKXATFStWzFVmtVqVmZl5w328vLwUGxurhx56SK+++qrq1KmjgIAATZo0SZcuXbLVCw4Ott1zs23bNrVv31716tWTn5+ftm3bpt27dyszM9Puh8LMmTM1ZMgQNW3aVKtWrdLevXu1f/9+Pf7443nG5O/vn2dZdna2zp8/f1vvRWGrUKGC3XM3N7eblv/xxx+SpF9//VWS1KRJE5UsWdLusWLFirtyqRYA3An6moLVs2dPzZs3TwMGDNCnn36qffv2af/+/fLx8bnpe1pQrp8hOb/9lMVi0fbt29WhQwdNnz5dDRs2lI+Pj0aOHGm7JBtwVsy+i2KlVKlStgkH/qygE5d69epp+fLlMgxDhw8fVnR0tKZOnSp3d3e98sorkq7+UPjggw+0b98+ffnll3rttdckSY899phiYmKUkJCgsmXL2s0MuHTpUrVt21ZRUVF2r3ejzio5OTnPMjc3N5UtW7agDtdU3t7ekqSVK1eqSpUqJkcDAPQ118rM6GvS09O1YcMGTZo0yfYeSFJWVpbtXtnbZbVa8/z//P333/Osf/1kVrfTT1WpUkUffPCBpKuzC3/yySeaPHmysrOz9e677zoSPlAkMFKKYqVq1apKSUmx/dVSkrKzs/Xpp58WyutZLBbVr19fs2bNUrly5fTVV1/ZtgUHB8tisWjixIlycXFR69atJV2dmGLnzp2KiYlR69atVbJkSbv2rFar3WscPnz4hpNJrF692jaiKF39QbF+/Xq1atVKJUqUKMhDtXMtxrvxF+kOHTrI1dVVP/74oxo3bpznAwDuJvqau9PX5MViscgwjFzxL1y40OFLiatWrarDhw/ble3YsSPfo8CO9lM1a9bUa6+9pnr16tn9nwLOiKQUxUr37t1VokQJ9ejRQ5s2bdLq1asVEhJSoPe8bNiwQU888YTef/99bdu2TTExMRoyZIjS0tLUvn17Wz1fX1/VrVtXW7du1SOPPKLSpUtLuvpD4ezZszpw4ECue3w6deqkrVu3atKkSdqxY4eioqLUoUMHBQUF5RlLiRIl1L59e61Zs0arVq1ScHCwMjIyNGXKFFud2NhYubq6aurUqXb7urq6Kjg42K4sODhYrq63vsCiXr16kqQ5c+Zoz549OnDgQKFdelS1alVNnTpVEyZM0ODBg7V27VrFxsbqk08+0ejRozVp0qRCeV0AuBH6mrvT1+TF09NTrVu31ltvvaWFCxdq27Ztmjhxot58802VK1fOoTZ79+6tzZs36/XXX9f27ds1d+5cDRkyRF5eXvnaP7/91OHDh9W6dWvNnTtXW7Zs0Y4dO/Taa6/p8OHDdv+ngDPi8l0UK0FBQVq3bp1effVV/e1vf9N9992n8PBwnTlzxq7zvBM1atRQuXLlNH36dP3yyy9yc3PTgw8+qOjoaPXp08eubrt27fT111/b/SCoXLmyatSooe+//z7XD4UJEybo4sWL+uCDDzR9+nTVrl1b7777rtasWZPnhD7Dhw/XH3/8oZEjRyolJUV16tTRxo0b9cgjj9jqGIahnJycXJMp5OTk5PoBlVdZXtq2bavx48frww8/1IIFC3TlyhXt3LnTbn3SgjR+/HjVrl1bc+bM0b/+9S9lZWXJ399fTZo00eDBgwvlNQHgRuhr7k5fcyPLli3T3//+d40dO1aXL1/WI488opiYmFwT5+XXmDFjlJGRoejoaL399tt6+OGH9cknn+ipp57Kdxv56af8/f31wAMPaP78+UpMTJTFYlG1atU0Y8YM21JrgLOyGIZhmB0EgIJ16tQpBQUF6a233tLo0aPNDgcA4IToawAUFC7fBQAAAACYhqQUAAAAAGAaLt8FAAAAAJiGkVIAAAAAgGlISgEAAAAApiEpBQAAAACYhnVK8+nKlSv65Zdf5OHhIYvFYnY4AFBsGIahc+fOKSAgQC4u/C31z+ibAMAc9E0Fi6Q0n3755RcFBgaaHQYAFFuJiYmqVKmS2WHcU+ibAMBc9E0Fg6Q0nzw8PCRdPfE8PT1NjgYAio+MjAwFBgbavofxP/RNAGAO+qaCRVKaT9cui/L09KTjBwATcHlqbvRNAGAu+qaCwQXQAAAAAADTkJQCAAAAAEzD5bt3E8P7cIRhmB0BAAD3LMsUfl/BMcYkfmPdKxgpBQAAAACYhqQUAAAAAGAaklIAAAAAgGmcLimNjIyUxWJRWFiYrcwwDE2ePFkBAQFyd3dX27Zt9c0335gXJAAAAABAkpMlpfv379f777+vv/71r3bl06dP18yZMzVv3jzt379f/v7+at++vc6dO2dSpAAAAAAAyYmS0vPnz6tXr15asGCBypcvbys3DEOzZ8/WhAkT1K1bN9WtW1cffvihLl68qGXLlpkYMQAAAADAaZLSYcOG6cknn1S7du3syk+ePKnk5GSFhITYyqxWq9q0aaO4uLgbtpeVlaWMjAy7BwAAAACgYDnFOqXLly/XV199pf379+falpycLEny8/OzK/fz81NCQsIN24yMjNSUKVMKNlAAAAAAgJ0iP1KamJiov//971q6dKlKlSp1w3oWi/3CyoZh5Cr7s/Hjxys9Pd32SExMLLCYAQAAAABXFfmR0oMHDyolJUWNGjWyleXk5Ojzzz/XvHnzdPz4cUlXR0zvu+8+W52UlJRco6d/ZrVaZbVaCy9wAAAAAEDRHykNDg7W119/rfj4eNujcePG6tWrl+Lj41WtWjX5+/srJibGtk92drZiY2PVokULEyMHAAAAABT5kVIPDw/VrVvXrqxMmTKqWLGirTwsLEwRERGqUaOGatSooYiICJUuXVo9e/Y0I2QAAAAAwP9X5JPS/Bg7dqwyMzM1dOhQpaamqmnTptq6das8PDzMDg0AAAAAijWLYRiG2UEUBRkZGfLy8lJ6ero8PT0da+QmEysBN8RHFMVcgXz/OineG0CyTOH3FRxjTHL8NxbfvwWryN9TCgAAAAAoukhKAQAAAACmISkFAAAAgEISGRmpJk2ayMPDQ76+vurSpYtt2cprDMPQ5MmTFRAQIHd3d7Vt21bffPONXZ2srCyNGDFC3t7eKlOmjEJDQ/XTTz/dzUMpNCSlAAAAAFBIYmNjNWzYMO3du1cxMTG6fPmyQkJCdOHCBVud6dOna+bMmZo3b572798vf39/tW/fXufOnbPVCQsL05o1a7R8+XLt2rVL58+fV6dOnZSTk2PGYRUo0yY62rJli8qWLauWLVtKkt555x0tWLBAtWvX1jvvvKPy5cubEdYNMdERTMNERyjmmEzixnhvACY6guPMmujozJkz8vX1VWxsrFq3bi3DMBQQEKCwsDCNGzdO0tVRUT8/P02bNk2DBg1Senq6fHx8tGTJEnXv3l2S9MsvvygwMFCbNm1Shw4dHD6We4FpI6VjxoxRRkaGJOnrr7/WqFGj9MQTT+jEiRMKDw83KywAAAAAyJeMjAy7R1ZW1i33SU9PlyRVqFBBknTy5EklJycrJCTEVsdqtapNmzaKi4uTJB08eFCXLl2yqxMQEKC6deva6hRlpiWlJ0+eVO3atSVJq1atUqdOnRQREaH58+dr8+bNZoUFAAAAAPkSGBgoLy8v2yMyMvKm9Q3DUHh4uFq2bKm6detKkpKTkyVJfn5+dnX9/Pxs25KTk+Xm5pbratI/1ynKXM16YTc3N128eFGStG3bNr3wwguSrv7F4NoIKgAAAADcqxITE+0u37VarTetP3z4cB0+fFi7du3Ktc1y3a1+hmHkKrtefuoUBaYlpS1btlR4eLgeeeQR7du3TytWrJAkfffdd6pUqZJZYQEAAABAvnh6eub7ntIRI0boP//5jz7//HO7fMff31/S1dHQ++67z1aekpJiGz319/dXdna2UlNT7UZLU1JS1KJFi4I4FFOZdvnuvHnz5OrqqpUrVyoqKkr333+/JGnz5s16/PHHzQoLAAAAAAqMYRgaPny4Vq9erR07digoKMhue1BQkPz9/RUTE2Mry87OVmxsrC3hbNSokUqWLGlXJykpSUeOHHGKpNS0kdLKlStrw4YNucpnzZplQjQAAAAAUPCGDRumZcuWad26dfLw8LDdA+rl5SV3d3dZLBaFhYUpIiJCNWrUUI0aNRQREaHSpUurZ8+etrr9+/fXqFGjVLFiRVWoUEGjR49WvXr11K5dOzMPr0Dc1aT0du4VZWp7AAAAAEVdVFSUJKlt27Z25YsXL1bfvn0lSWPHjlVmZqaGDh2q1NRUNW3aVFu3bpWHh4et/qxZs+Tq6qpnn31WmZmZCg4OVnR0tEqUKHG3DqXQ3NV1Sl1cXPJ9I+69tggs65TCNKxTimKOtThvjPcGYJ1SOM6sdUqR210dKd25c6ft36dOndIrr7yivn37qnnz5pKkPXv26MMPP7zlVMoAAAAAgPx77LHHtHr1apUrV86uPCMjQ126dNGOHTvMCUx3OSlt06aN7d9Tp07VzJkz9dxzz9nKQkNDVa9ePb3//vvq06fP3QwNAAAAAJzWZ599puzs7Fzlf/zxh7744gsTIvof0yY62rNnj959991c5Y0bN9aAAQNMiAgAAAAAnMvhw4dt/z569KhtoiXp6i2TW7Zssa2EYhbTktLAwEC9++67mjFjhl35e++9p8DAQJOiAgAAAADn8dBDD8lischiseixxx7Ltd3d3V1z5841IbL/MS0pnTVrlp5++ml9+umnatasmSRp7969+vHHH7Vq1SqzwgIAoHhZxiQxcEBPJuEDioqTJ0/KMAxVq1ZN+/btk4+Pj22bm5ubfH19TZ/B17Sk9IknntD333+v+fPn69tvv5VhGHrqqac0ePBgRkoBAAAAoABUqVJFknTlyhWTI7kx05JSSapUqZIiIiLMDAEAAAAAioXvvvtOn332mVJSUnIlqa+//rpJUZmclKalpWnfvn15vikvvPCCSVEBAAAAgHNZsGCBhgwZIm9vb/n7+8ti+d/tGxaLpXgmpevXr1evXr104cIFeXh45HpTSEoBAAAAoGC88cYbevPNNzVu3DizQ8nFxawXHjVqlPr166dz584pLS1NqamptsfZs2fNCgsAAAAAnE5qaqqeeeYZs8PIk2lJ6c8//6yRI0eqdOnSZoUAAAAAAMXCM888o61bt5odRp5Mu3y3Q4cOOnDggKpVq2ZWCAAAAABQLFSvXl0TJ07U3r17Va9ePZUsWdJu+8iRI02KzMSk9Mknn9SYMWN09OjRPN+U0NBQkyIDAAAAAOfy/vvvq2zZsoqNjVVsbKzdNovFUjyT0oEDB0qSpk6dmmubxWJRTk7O3Q4JAAAAAJzSyZMnzQ7hhkxLSu/lxVsBAAAAAHeHqeuUAgAAAAAKX79+/W66fdGiRXcpktxMTUpjY2P19ttv69ixY7JYLKpVq5bGjBmjVq1amRkWAAAAADiV1NRUu+eXLl3SkSNHlJaWpscee8ykqK4yLSldunSpXnzxRXXr1k0jR46UYRiKi4tTcHCwoqOj1bNnT7NCAwAAAACnsmbNmlxlV65c0dChQ01fEcViGIZhxgvXqlVLL730kl5++WW78pkzZ2rBggU6duyYGWHdUEZGhry8vJSeni5PT0/HGrFYCjYoFA/mfESBe0aBfP86qQJ5b5bRN8EBPe+dvskyhXMYjjEmOX4eO1PfdPz4cbVt21ZJSUmmxeBi1gufOHFCnTt3zlUeGhp6WzNDRUZGqkmTJvLw8JCvr6+6dOmi48eP29UxDEOTJ09WQECA3N3d1bZtW33zzTd3fAwAAAAAUJT9+OOPunz5sqkxmHb5bmBgoLZv367q1avblW/fvl2BgYH5bic2NlbDhg1TkyZNdPnyZU2YMEEhISE6evSoypQpI0maPn26Zs6cqejoaNWsWVNvvPGG2rdvr+PHj8vDw6NAjwsAAAAA7jXh4eF2zw3DUFJSkjZu3Kg+ffqYFNVVpiWlo0aN0siRIxUfH68WLVrIYrFo165dio6O1pw5c/LdzpYtW+yeL168WL6+vjp48KBat24twzA0e/ZsTZgwQd26dZMkffjhh/Lz89OyZcs0aNCgAj0uAAAAALjXHDp0yO65i4uLfHx8NGPGjFvOzFvYTEtKhwwZIn9/f82YMUOffPKJpKv3ma5YsUJPPfWUw+2mp6dLkipUqCDp6iKxycnJCgkJsdWxWq1q06aN4uLiSEoBAAAAOL2dO3eaHcINmbokTNeuXdW1a9cCa88wDIWHh6tly5aqW7euJCk5OVmS5OfnZ1fXz89PCQkJN2wrKytLWVlZtucZGRkFFicAAAAAmOHMmTM6fvy4LBaLatasKR8fH7NDMm+io/379+vLL7/MVf7ll1/qwIEDDrU5fPhwHT58WP/6179ybbNcN/OtYRi5yv4sMjJSXl5etsft3OcKAAAAAPeSCxcuqF+/frrvvvvUunVrtWrVSgEBAerfv78uXrxoamymJaXDhg1TYmJirvKff/5Zw4YNu+32RowYof/85z/auXOnKlWqZCv39/eX9L8R02tSUlJyjZ7+2fjx45Wenm575BUrAAAAABQF4eHhio2N1fr165WWlqa0tDStW7dOsbGxGjVqlKmxmZaUHj16VA0bNsxV3qBBAx09ejTf7RiGoeHDh2v16tXasWOHgoKC7LYHBQXJ399fMTExtrLs7GzFxsaqRYsWN2zXarXK09PT7gEAAAAAt+vzzz9X586dFRAQIIvForVr19ptz88SlllZWRoxYoS8vb1VpkwZhYaG6qeffsp3DKtWrdIHH3ygjh072vKbJ554QgsWLNDKlSsL4jAdZlpSarVa9euvv+YqT0pKkqtr/m91HTZsmJYuXaply5bJw8NDycnJSk5OVmZmpqSrl+2GhYUpIiJCa9as0ZEjR9S3b1+VLl1aPXv2LLDjAQAAAIC8XLhwQfXr19e8efPy3H5tCct58+Zp//798vf3V/v27XXu3DlbnbCwMK1Zs0bLly/Xrl27dP78eXXq1Ek5OTn5iuHixYt5Xinq6+tr+uW7FsMwDDNeuEePHkpOTta6devk5eUlSUpLS1OXLl3k6+trm5H3Vm50X+jixYvVt29fSVf/8jBlyhS99957Sk1NVdOmTfXOO+/YJkPKj4yMDHl5eSk9Pd3xUdOb3MMK3JA5H1HgnlEg379OqkDem2X0TXBAz3unb7JM4RyGY4xJjp/Hd/L9a7FYtGbNGnXp0uVqHIahgIAAhYWFady4cZKujor6+flp2rRpGjRokNLT0+Xj46MlS5aoe/fukqRffvlFgYGB2rRpkzp06HDL1w0ODlbFihX10UcfqVSpUpKkzMxM9enTR2fPntW2bdtu6zgKkmmz786YMUOtW7dWlSpV1KBBA0lSfHy8/Pz8tGTJkny3k5+c2mKxaPLkyZo8ebKj4QL4//jbChzB31YAAM7o+hU6rFarrFbrbbWRnyUsDx48qEuXLtnVCQgIUN26dRUXF5evpHT27Nnq2LGjKlWqpPr168tisSg+Pl5Wq1Vbt269rZgLmmlJ6f3336/Dhw/r448/1n//+1+5u7vrxRdf1HPPPaeSJUuaFRYAAAAA5Mv1K3RMmjTptgfC8rOEZXJystzc3FS+fPlcda6f0PVG6tWrp++//15Lly7Vt99+K8Mw1KNHD/Xq1Uvu7u63FXNBM3Wd0jJlyuill14yMwQAAAAAcEhiYqLd5bu3O0r6Z7e7hGV+61wTGRkpPz8/DRw40K580aJFOnPmjO3SYTOYNtGRJC1ZskQtW7ZUQECA7a8As2bN0rp168wMCwAAAABu6frVOhxJSvOzhKW/v7+ys7OVmpp6wzq38t577+kvf/lLrvI6dero3Xffve24C5JpSWlUVJTCw8PVsWNHpaam2maNKl++vGbPnm1WWAAAAABw1+RnCctGjRqpZMmSdnWSkpJ05MiRmy5z+WfJycm67777cpX7+PgoKSnpDo/izpiWlM6dO1cLFizQhAkT7JaAady4sb7++muzwgIAAACAAnX+/HnFx8crPj5e0tXJjeLj43X69Ol8LWHp5eWl/v37a9SoUdq+fbsOHTqk559/XvXq1VO7du3yFUNgYKB2796dq3z37t0KCAgosGN1hGn3lJ48edI26+6fWa1WXbhwwYSIAAAAAKDgHThwQI8++qjteXh4uCSpT58+io6O1tixY5WZmamhQ4falrDcunWrPDw8bPvMmjVLrq6uevbZZ5WZmang4GBFR0erRIkS+YphwIABCgsL06VLl/TYY49JkrZv366xY8dq1KhRBXi0t8+0pDQoKEjx8fGqUqWKXfnmzZtVu3Ztk6ICAAAAgILVtm3bmy5lmZ8lLEuVKqW5c+dq7ty5DsUwduxYnT17VkOHDlV2dratzXHjxmn8+PEOtVlQTEtKx4wZo2HDhumPP/6QYRjat2+f/vWvfykyMlILFy40KywAAAAAcDoWi0XTpk3TxIkTdezYMbm7u6tGjRp3NGNwQTEtKX3xxRd1+fJljR07VhcvXlTPnj1VqVIlzZkzRz169DArLAAAAABwWmXLllWTJk3MDsOOaUlpZmamevXqpYEDB+q3337TiRMntHv3blWqVMmskAAAAAAAd5lps+8+9dRT+uijjyRJrq6uCg0N1cyZM9WlSxdFRUWZFRYAAAAA4C4yLSn96quv1KpVK0nSypUr5efnp4SEBH300Uf65z//aVZYAAAAAIC7yLSk9OLFi7Ypjrdu3apu3brJxcVFzZo1U0JCgllhAQAAAADuItOS0urVq2vt2rVKTEzUp59+qpCQEElSSkqKPD09zQoLAAAAAHAXmZaUvv766xo9erSqVq2qpk2bqnnz5pKujpo2aNDArLAAAAAAAHeRabPv/u1vf1PLli2VlJSk+vXr28qDg4PVtWtXs8ICAAAAANxFpiWlkuTv7y9/f3+7socfftikaAAAAAAAd5tpl+8CAAAAAEBSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANMUq6R0/vz5CgoKUqlSpdSoUSN98cUXZocEAAAAoBggF7mxYpOUrlixQmFhYZowYYIOHTqkVq1aqWPHjjp9+rTZoQEAAABwYuQiN1dsktKZM2eqf//+GjBggGrVqqXZs2crMDBQUVFRZocGAAAAwImRi9ycq9kB3A3Z2dk6ePCgXnnlFbvykJAQxcXF5blPVlaWsrKybM/T09MlSRkZGYUXKJAXzjk4gTs5ja997xqGUUDROI9r78kd9U0XCygYFC/3Ut/0h9kBoKi6k+/Oa/teyxGusVqtslqtdmWO5CLFTbFISn/77Tfl5OTIz8/PrtzPz0/Jycl57hMZGakpU6bkKg8MDCyUGIEb8vIyOwLgjhXEaXzu3Dl58Xmwc+7cOUn0TTDBQD6LKPq8/u/Oz+PKlSvbPZ80aZImT55sV+ZILlLcFIuk9BqLxWL33DCMXGXXjB8/XuHh4bbnV65c0dmzZ1WxYsUb7gPHZGRkKDAwUImJifL09DQ7HMAhnMeFxzAMnTt3TgEBAWaHcs8JCAhQYmKiPDw86JsKGJ9pOAPO48JjGIZ+//13VahQQS4u/7sj8vpR0j+7nVykuCkWSam3t7dKlCiR6y8RKSkpuf5icU1eQ+/lypUrrBAhydPTky9MFHmcx4WDEdK8ubi4qFKlSmaH4dT4TMMZcB4Xjvz2TY7kIsVNsZjoyM3NTY0aNVJMTIxdeUxMjFq0aGFSVAAAAACcHbnIrRWLkVJJCg8PV+/evdW4cWM1b95c77//vk6fPq3BgwebHRoAAAAAJ0YucnPFJint3r27fv/9d02dOlVJSUmqW7euNm3apCpVqpgdWrFntVo1adKkm16DD9zrOI8B58JnGs6A8/jeQS5ycxaDOfYBAAAAACYpFveUAgAAAADuTSSlAAAAAADTkJQCAAAAAExDUop7ymeffSaLxaK0tDSzQwFuy6lTp2SxWBQfH292KAAKGH0Tiir6JhQVxWb2XQAoTIGBgUpKSpK3t7fZoQAAIIm+CUUHSSmKlJycHFksFrm4MMiPe0uJEiXk7+9vdhgATEDfhHsVfROKCr49UagMw9D06dNVrVo1ubu7q379+lq5cqVt+6ZNm1SzZk25u7vr0Ucf1alTp+z2j46OVrly5bRhwwbVrl1bVqtVCQkJd/kogKtudj5ff4lUamqqevXqJR8fH7m7u6tGjRpavHixidEDuIa+Cc6EvgnOgJFSFKrXXntNq1evVlRUlGrUqKHPP/9czz//vHx8fFStWjV169ZNgwcP1pAhQ3TgwAGNGjUqVxsXL15UZGSkFi5cqIoVK8rX19eEIwFufj5fv/j1xIkTdfToUW3evFne3t764YcflJmZaVLkAP6MvgnOhL4JzsBiGIZhdhBwThcuXJC3t7d27Nih5s2b28oHDBigixcvqmrVqlq7dq2++eYbWSwWSdIrr7yiadOmKTU1VeXKlVN0dLRefPFFxcfHq379+mYdCnDL8zkiIkJBQUE6dOiQHnroIYWGhsrb21uLFi0yMWoA16NvgjOhb4KzYKQUhebo0aP6448/1L59e7vy7OxsNWjQQJmZmWrWrJmt05dk94V6jZubm/76178WerzAzdzqfL7ekCFD9PTTT+urr75SSEiIunTpohYtWtytcAHcAH0TnAl9E5wFSSkKzZUrVyRJGzdu1P3332+3zWq1asSIEflqx93d3e7HAWCGW53POTk5dmUdO3ZUQkKCNm7cqG3btik4OFjDhg3T22+/fddiBpAbfROcCX0TnAVJKQrNtckfTp8+rTZt2uS5fe3atXZle/fuvUvRAbfnVufz9ROhSJKPj4/69u2rvn37qlWrVhozZgwdP2Ay+iY4E/omOAuSUhQaDw8PjR49Wi+//LKuXLmili1bKiMjQ3FxcSpbtqwGDx6sGTNmKDw8XIMGDdLBgwcVHR1tdthAnm51Pl//Y+D1119Xo0aNVKdOHWVlZWnDhg2qVauWSdEDuIa+Cc6EvgnOgqQUheof//iHfH19FRkZqRMnTqhcuXJq2LChXn31VVWuXFmrVq3Syy+/rPnz5+vhhx9WRESE+vXrZ3bYQJ5udj5fz83NTePHj9epU6fk7u6uVq1aafny5SZEDeB69E1wJvRNcAbMvgsABeD48eP6y1/+ou+//17Vq1c3OxwAAOibUGS4mB0AABR1Z8+e1cqVK+Xp6anAwECzwwEAgL4JRQqX7wLAHerfv78OHjyoqKgoWa1Ws8MBAIC+CUUKl+8CAAAAAEzD5bsAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANOQlAIAAAAATENSCgAAAAAwDUkpAAAAAMA0JKUAAAAAANP8P077jB9pUk04AAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "scenarios = sorted(df[\"scenario\"].unique())\n", - "\n", - "\n", - "fig, axs = plt.subplots(len(df[\"scenario\"].unique()), 2, figsize=(10, 15), squeeze=False)\n", - "\n", - "for i, [ax_time, ax_fail] in enumerate(axs):\n", - " scenario = scenarios[i]\n", - " times_x = []\n", - " times_y = []\n", - " failures_x = []\n", - " failures_y = []\n", - " for [(s, engine), row] in df.groupby([\"scenario\", \"engine\"]).median().iterrows():\n", - " if s != scenario:\n", - " continue\n", - " times_x.append(engine)\n", - " times_y.append(row[\"timeS\"])\n", - " failures_x.append(engine)\n", - " failures_y.append(row[\"failureCount\"])\n", - " \n", - " scen_title = scenario if len(scenario) <= 10 else f\"{scenario[:7]}...\"\n", - "\n", - " ax_time.set_title(f\"{scen_title} time\")\n", - " ax_time.bar(times_x, times_y, color=[\"red\", \"blue\"])\n", - " ax_time.set_ylabel(\"seconds\")\n", - " \n", - " ax_fail.set_title(f\"{scen_title} failures\")\n", - " ax_fail.bar(failures_x, failures_y, color=[\"orange\", \"green\"])\n", - " ax_fail.set_ylabel(\"count\")\n", - " ax_fail.yaxis.tick_right()\n", - " ax_fail.yaxis.set_label_position(\"right\")\n", - "\n", - "plt.subplots_adjust(hspace=0.5)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "9c6312af", - "metadata": {}, - "outputs": [ - { - "data": { - "text/markdown": [ - "Ratio of max/min time for each scenario" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "scenario engine\n", - "neptune-mutual-blue-protocol_8db6480 edr 1.375050\n", - " ejs 1.027107\n", - "openzeppelin-contracts_0a5fba7a edr 1.022509\n", - " ejs 1.009352\n", - "rocketpool_6a9dbfd8 edr 1.088690\n", - " ejs 1.012139\n", - "safe-contracts_914d0f8 edr 1.167373\n", - " ejs 1.012202\n", - "seaport_4f4e7c20 edr 1.071644\n", - " ejs 1.018182\n", - "synthetix_9a3a109f edr 1.010474\n", - " ejs 1.019264\n", - "total edr 1.068472\n", - " ejs 1.009594\n", - "uniswap-v3-core_d8b1c63 edr 1.037027\n", - " ejs 1.022227\n", - "Name: timeS, dtype: float64" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "display(Markdown(\"Ratio of max/min time for each scenario\"))\n", - "df.groupby([\"scenario\", \"engine\"])[\"timeS\"].max() / df.groupby([\"scenario\", \"engine\"])[\"timeS\"].min()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3822b69a", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/crates/tools/python/ejs-benchmark/1.json b/crates/tools/python/ejs-benchmark/1.json deleted file mode 100644 index f99fa6ae68..0000000000 --- a/crates/tools/python/ejs-benchmark/1.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":411510.34277,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31091,31127,31158,31166,31184,31192,31201,31211,31220,31229,31234,31239,31853,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":71443.37378299999,"failures":[39,75,110,172,183,187,189,193,195,199,201,243,350,632,646,655,664,673,687,696,705,717,726,735,748,760,773,786,799,813,825,837,849,858,874,883,896,908,920,935,952,962,974,987,1003,1018,1028,1039,1051,1064,1075,1088,1099,1112,1121,1146,1157,1170,1181,1194,1203,1228,1239,1252,1263,1276,1291,1302,1313,1324,1335,1346,1711,1715,1783,1870,1885,1888,1894,1909,1912,1918,1933,1936,1957,1974,1989,2063,2073,2104,2114,2123,2133,2143,2153,2192,2204,2216,2228,2265,2284,2290,2303,2332,2396,2408,2414,2420,2432,2438,2444,2457,2463,2469,2482,2488,2494,2506,2524,2530,2536,2548,2554,2560,2573,2579,2585,2598,2604,2610,2622,2640,2646,2652,2664,2670,2676,2689,2695,2701,2714,2720,2726,2738,2756,2768,2781,2794,2800,2812,2818,2831,2837,2850,2856,2947,2959,2965,2971,2983,2989,2995,3008,3014,3020,3033,3039,3045,3057,3075,3081,3087,3099,3105,3111,3124,3130,3136,3149,3155,3161,3173,3191,3197,3203,3215,3221,3227,3240,3246,3252,3265,3271,3277,3289,3307,3319,3332,3345,3351,3363,3369,3382,3388,3401,3407,3498,3510,3516,3522,3534,3540,3546,3559,3565,3571,3584,3590,3596,3608,3626,3632,3638,3650,3656,3662,3675,3681,3687,3700,3706,3712,3724,3742,3748,3754,3766,3772,3778,3791,3797,3803,3816,3822,3828,3840,3858,3870,3883,3896,3902,3914,3920,3933,3939,3952,3958,4037,4049,4055,4061,4073,4079,4085,4098,4104,4110,4123,4129,4135,4147,4165,4171,4177,4189,4195,4201,4214,4220,4226,4239,4245,4251,4263,4281,4287,4293,4305,4311,4317,4330,4336,4342,4355,4361,4367,4379,4397,4409,4422,4435,4441,4453,4459,4472,4478,4491,4497,4548,4558,4567,4577,4586,4596,4629,4641,4647,4653,4665,4671,4677,4690,4696,4702,4715,4721,4727,4739,4757,4763,4769,4781,4787,4793,4806,4812,4818,4831,4837,4843,4855,4873,4879,4885,4897,4903,4909,4922,4928,4934,4947,4953,4959,4971,4989,5001,5014,5027,5033,5045,5051,5064,5070,5083,5089,5140,5150,5159,5169,5178,5188,5269,5289,5292,5298,5318,5321,5327,5348,5351,5357,5378,5381,5387,5407,5430,5450,5471,5492,5498,5518,5524,5545,5551,5572,5578,5701,5713,5716,5722,5734,5737,5743,5756,5759,5765,5778,5781,5787,5799,5814,5826,5839,5852,5858,5870,5876,5889,5895,5908,5914,6010,6022,6025,6031,6043,6046,6052,6065,6068,6074,6087,6090,6096,6108,6123,6135,6148,6161,6167,6179,6185,6198,6204,6217,6223,6347,6368,6371,6377,6398,6401,6407,6429,6432,6438,6460,6463,6469,6490,6514,6535,6557,6579,6585,6606,6612,6634,6640,6662,6668,6764,6793,6800,6822,6852,6882,6910,6918,6941,6949,6972,7002,7030,7038,7061,7069,7164,7188,7191,7197,7221,7224,7230,7255,7258,7264,7289,7292,7298,7322,7349,7373,7398,7423,7429,7453,7459,7484,7490,7515,7521,7629,7653,7795,7813,7816,7822,7840,7843,7849,7868,7871,7877,7896,7899,7905,7923,7944,7962,7981,8000,8006,8024,8030,8049,8055,8074,8080,8167,8201,8207,8214,8232,8244,8249,8261,8265,8277,8292,8309,8346,8367,8389,8410,8431,8470,8485,8490,8509,8517,8549,8554,8641,8662,8665,8692,8695,8701,8723,8726,8732,8754,8757,8784,8808,8829,8852,8858,8879,8885,8907,8913,8935,8941,9031,9037,9054,9060,9081,9087,9116,9134,9140,9153,9159,9172,9178,9191,9197,9209,9215,9228,9234,9473,9477,9478,9479,9482,9484,9485,9486,9488,9489,9492,9493,9496,9497,9500,9501,9504,9505,9508,9509,9512,9513,9516,9517,9520,9521,9524,9525,9528,9529,9532,9533,9536,9537,9540,9541,9544,9545,9548,9549,9552,9553,9556,9557,9560,9561,9564,9565,9568,9569,9572,9573,9576,9577,9580,9581,9584,9585,9588,9589,9592,9593,9596,9597,9600,9601,9604,9605,9608,9609,9612,9613,9616,9617,9620,9621,9624,9625,9628,9629,9632,9633,9636,9637,9640,9641,9644,9645,9648,9649,9652,9653,9656,9657,9660,9661,9664,9665,9668,9669,9672,9673,9676,9677,9680,9681,9684,9685,9688,9689,9692,9693,9696,9697,9700,9701,9704,9705,9708,9709,9712,9713,9716,9717,9720,9721,9724,9725,9728,9729,9732,9733,9736,9737,9741,9750,9752,9761,9763,9772,9774,9783,9785,9794,9796,9805,9807,9816,9818,9827,9829,9838,9840,9849,9851,9860,9862,9871,9873,9882,9884,9893,9895,9904,9906,9915,9917,9926,9928,9937,9939,9948,9950,9959,9961,9970,9972,9981,9983,9992,9994,10003,10005,10014,10016,10025,10027,10036,10038,10047,10049,10058,10060,10069,10071,10080,10082,10091,10093,10102,10104,10113,10115,10124,10126,10135,10137,10146,10148,10157,10159,10168,10170,10179,10181,10190,10192,10201,10203,10212,10214,10223,10225,10234,10236,10245,10247,10256,10258,10267,10269,10278,10280,10289,10291,10300,10302,10311,10313,10322,10324,10333,10335,10344,10346,10355,10357,10366,10368,10377,10379,10388,10390,10399,10401,10410,10412,10421,10423,10432,10434,10443,10445,10464,10466,10469,10470,10473,10474,10477,10478,10481,10482,10485,10486,10489,10490,10493,10494,10497,10498,10501,10502,10505,10506,10509,10510,10513,10514,10517,10518,10521,10522,10525,10526,10529,10530,10533,10534,10537,10538,10541,10542,10545,10546,10549,10550,10553,10554,10557,10558,10561,10562,10565,10566,10569,10570,10573,10574,10577,10578,10581,10582,10585,10586,10589,10590,10593,10594,10597,10598,10601,10602,10605,10606,10609,10610,10613,10614,10617,10618,10621,10622,10625,10626,10629,10630,10633,10634,10637,10638,10641,10642,10645,10646,10649,10650,10653,10654,10657,10658,10661,10662,10665,10666,10669,10670,10673,10674,10677,10678,10681,10682,10685,10686,10689,10690,10693,10694,10697,10698,10701,10702,10705,10706,10709,10710,10713,10714,10717,10718,10721,10724,10726,10727,10728,10730,10731,10732,10734,10735,10736,10738,10739,10740,10742,10743,10744,10746,10747,10748,10750,10751,10752,10754,10755,10756,10758,10759,10760,10762,10763,10764,10766,10767,10768,10770,10771,10772,10774,10775,10776,10778,10779,10780,10782,10783,10784,10786,10787,10788,10790,10791,10792,10794,10795,10796,10798,10799,10800,10802,10803,10804,10806,10807,10808,10810,10811,10812,10814,10815,10816,10818,10819,10820,10822,10823,10824,10826,10827,10828,10830,10831,10832,10834,10835,10836,10838,10839,10840,10842,10843,10844,10846,10847,10848,10850,10851,10852,10854,10855,10856,10858,10859,10860,10862,10863,10864,10866,10867,10868,10870,10871,10872,10874,10875,10876,10878,10879,10880,10882,10883,10884,10886,10887,10888,10890,10891,10892,10894,10895,10896,10898,10899,10900,10902,10903,10904,10906,10907,10908,10910,10911,10912,10914,10915,10916,10918,10919,10920,10922,10923,10924,10926,10927,10928,10930,10931,10932,10934,10935,10936,10938,10939,10940,10942,10943,10944,10946,10947,10948,10950,10951,10952,10954,10955,10956,10958,10959,10960,10962,10963,10964,10966,10967,10968,10970,10971,10972,10974,10975,10976,10978,10979,10983,10998,11000,11014,11016,11030,11032,11046,11048,11062,11064,11078,11080,11094,11096,11110,11112,11126,11128,11142,11144,11158,11160,11174,11176,11190,11192,11206,11208,11222,11224,11238,11240,11254,11256,11270,11272,11286,11288,11302,11304,11318,11320,11334,11336,11350,11352,11366,11368,11382,11384,11398,11400,11414,11416,11430,11432,11446,11448,11462,11464,11478,11480,11494,11496,11510,11512,11526,11528,11542,11544,11558,11560,11574,11576,11590,11592,11606,11608,11622,11624,11638,11640,11654,11656,11670,11672,11686,11688,11702,11704,11718,11720,11734,11736,11750,11752,11766,11768,11782,11784,11798,11800,11814,11816,11830,11832,11846,11848,11862,11864,11878,11880,11894,11896,11910,11912,11926,11928,11942,11944,11958,11960,11974,11976,11990,11992,12006,12008,12031,12034,12035,12038,12039,12042,12043,12046,12047,12050,12051,12054,12055,12058,12059,12062,12063,12066,12067,12070,12071,12074,12075,12078,12079,12082,12083,12086,12087,12090,12091,12094,12095,12098,12099,12102,12103,12106,12107,12110,12111,12114,12115,12118,12119,12122,12123,12126,12127,12130,12131,12134,12135,12138,12139,12142,12143,12146,12147,12150,12151,12154,12155,12158,12159,12162,12163,12166,12167,12170,12171,12174,12175,12178,12179,12182,12183,12186,12187,12190,12191,12194,12195,12198,12199,12202,12203,12206,12207,12210,12211,12214,12215,12218,12219,12222,12223,12226,12227,12230,12231,12234,12235,12238,12239,12242,12243,12246,12247,12250,12251,12254,12255,12258,12259,12262,12263,12266,12267,12270,12271,12274,12275,12278,12279,12282,12283,12286,12306,12584,12595,12606,12617,12628,12639,12650,12661,12672,12683,12694,12705,12716,12727,12738,12749,12760,12771,12782,12793,12804,12815,12826,12837,12848,12859,12870,12881,12892,12903,12914,12925,12936,12947,12958,12969,12980,12991,13002,13013,13024,13035,13046,13057,13068,13079,13090,13101,13112,13123,13134,13145,13156,13167,13178,13189,13200,13211,13222,13233,13244,13255,13266,13277,13300,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13372,13376,13380,13384,13388,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476,13480,13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13558,13562,13566,13570,13574,13578,13582,13586,13590,13594,13598,13602,13606,13610,13614,13618,13622,13626,13630,13634,13638,13642,13646,13650,13654,13658,13662,13666,13670,13674,13678,13682,13686,13690,13694,13698,13702,13706,13710,13714,13718,13722,13726,13730,13734,13738,13742,13746,13750,13754,13758,13762,13766,13770,13774,13778,13782,13786,13790,13794,13798,13802,13806,13810,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14865,14869,14873,14877,14881,14885,14889,14893,14897,14901,14905,14909,14913,14917,14921,14925,14929,14933,14937,14941,14945,14949,14953,14957,14961,14965,14969,14973,14977,14981,14985,14989,14993,14997,15001,15005,15009,15013,15017,15021,15025,15029,15033,15037,15041,15045,15049,15053,15057,15061,15065,15069,15073,15077,15081,15085,15089,15093,15097,15101,15105,15109,15113,15117,15132,15947,16002,16021,16042,16048,16094,16103,16127,16136,16177,16187,16200,16213,16229,16242,16248,16262,16275,16288,16301,16307,16317,16323,16333,16339,16356,16360,16369,16373,16382,16388,16392,16401,16407,16427,16437,16447,16457,16463,16477,16483,16515,16525,16538,16544,16554,16560,16665,16671,16684,16690,16703,16709,16719,16725,16780,17718,17728,17811,17828,17838,17857,17867,17877,17887,17897,17907,17957,17973,17986,18000,18012,18022,18032,18042,18057,18071,18126,18238,18309,18328,18492,18496,18497,18502,18503,18508,18509,18514,18515,18531,18546,18572,18585,18589,18603,18609,18631,18711,18759,18815,18830,18839,18887,19111,19132,19160,19198,19354,19390,19441,19474,19547,19558,19683,19733,19785,19791,19806,19812,19827,19833,19850,19856,19919,19925,19945,19951,19957,19966,19972,19978,19994,20000,20006,20032,20038,20044,20140,20146,20163,20169,20186,20192,20200,20219,20225,20236,20252,20258,20270,20276,20287,20303,20309,20320,20336,20342,20362,20368,20374,20380,20393,20404,20431,20437,20469,20475,20486,20492,20517,20523,20529,20553,20559,20580,20656,20781,20870,20888,20926,20973,20996,21048,21063,21072,21088,21094,21107,21113,21125,21131,21142,21148,21162,21168,21185,21191,21197,21243,21249,21264,21270,21286,21292,21298,21304,21330,21336,21342,21377,21383,21389,21411,21507,21537,21620,21646,21754,21793,21816,21852,21910,21982,21997,22006,22024,22030,22036,22048,22054,22068,22074,22086,22092,22107,22113,22119,22133,22139,22145,22159,22165,22181,22187,22206,22212,22241,22247,22253,22280,22286,22292,22315,22339,22345,22351,22405,22537,22585,22591,22602,22608,22622,22628,22647,22653,22883,22898,22914,22931,22956,22977,22993,24625,24630,24637,24644,24651,24656,24663,24670,24677,24682,24689,24696,24703,24710,24717,24724,24731,24738,24745,24750,24757,24764,24771,24778,24785,24792,24955,24959,24967,24976,24980,24988,24996,25004,25008,25012,25023,25026,25048,25053,25086,25135,25144,25149,25157,25164,25172,25179,25187,25194,25202,25207,25215,25222,25230,25237,25245,25252,25260,25265,25273,25280,25288,25295,25303,25310,25318,25325,25333,25340,25348,25355,25363,25370,25378,25385,25393,25400,25408,25413,25421,25428,25436,25443,25451,25458,25466,25473,25481,25488,25496,25503,25511,25516,25527,25538,25549,25561,25579,25597,25615,25633,25651,25669,25685,25701,25721,25741,25769,25798,25834,25871,25887,25903,25915,25931,25945,25961,25976,25992,26010,26026,26044,26060,26077,26093,26110,26126,26370,26373,26406,26461,29526,49565,49763,49961,50017,50021,50025,50029,60479,60483,60487,60669]},"rocketpool_6a9dbfd8":{"timeMs":153433.243269,"failures":[2253,2256,2280,2284,2719,2722,2758,2829,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,6508,6620,6704,6736,6748,6828,6869,6882,6912,6916,6954,6967,7008,7013,7065,7073,7090,7105,7330,7372,7446,7503,7538,7553,7594,7599,7612,7641,7702,7705,7749,7770,7809,8334,8370,8415,8483,8487,8498,8553,8627,8632,8645,8712,8739,8764,8808,8819,8850,8893,9338,9372,9419,9489,9502,9544,9559,9635,9639,9705,9721,9749,9764,9828,9839,9840,10358,10400,10449,10521,10579,10582,10620,10625,11171,11215,11267,11314,11362,11394,11403,11438,11466,12017,12039,12158,12196,12337,12389,12454,12478,12532,12550,13065,13101,13198,13288,13318,13323,13338,13373,13440,13467,13979,14031,14259,14291,14390,14494,14512,14521,14567,14612,14638,14651,14676,14694,14758,14775,15370,15426,15463,15543,15722,15814,15889,15891,15937,15974,16464,16536,16665,16687,16705,16727,16759,16780,16916,16935,16938,17464,17554,17631,17675,17743,17748,17833,17854,17891,17908,17916,17957,18614,18666,18760,18796,18842,18845,18888,18904,18915,18981,19066,19084,19138,19737,19825,19879,19919,19939,19970,19987,20001,20006,20085,20086,20147,20777,20871,20943,20959,21049,21050,21065,21066,21081,21112,21179,21209,21762,21763,21782,21793,22085,22777,22839,23073,23075,23599,24154,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,27837,28420,28421,28932,28975,29355,29458,29786,29805,30179,30201,30245,30323,30341,30344,30405,30408,30431,30449,30870,30916,30983,30999,31019,31030,31053,31056,31114,31116,31279,31313,31355,31373,31398,31447,31453,31469,31490,31535,31539,31697,31740,32061,32409,32434,32493,32828,32829,33151,33168,33430,33804,33823,34103,34146,34440,34481,34789,34790,35078,35134,35262,35298,36252,36279,36280,36355,36460,36556,36574,36592,36605,36787,37139,37209,38091,38345,38364,38392,38393,38713,38804,38805,38889,39062,39087,39088,39332,39361,39540,39541,39803,39814,39823,39832,39973,39982,40656,40681,40941,41056,41080,41083,41379,41388,41420,41559,41658,41841,41850,41869,41994,42128,42293,42610,42627,42628,42950,43005,43066,43089,43090,43314,43533,43542,43567,43578,43794,43811,43999,44021,44146,44402,44663,44666,44739,45094,45114,45931,45948,46954,46976,46994,47411,47702,47721,47739,48401,48419,48551,48573,48592,48668,48878,48901,48987,49009,49034,49052,49067,49084,49684,49778,49779,50086,50535,50794,50825,51013,51062,51287,51432,51479,51814,52049,52050,52165,52286,52325,52542,52557,53176,53266,53454,53494,53541,53900,53947,53948,54578,54610,54611,54805,54806,55125,55132,55759,55768,55777,55788,55864,55966,56003,56023,56038,56052,56254,56271,56296,56321,58033,58044,58045,58634,58666,58693,59774,59811,60874,60910,61082,61653,61804,61823,61829,61830,62323,62324,62465,63029,63032,63189,63206,63716,63752,64440,64441,64562,65060,65186,65187,65852,66353,66354,66491,66509,66656,67551,67558,67689,67690,68367,68368,68883,69047,69048,69726,70392,70430,71134,71314,71824,72510,72650,72677,73195,73222,74038,74039,74182,74183,74674,74696,74706,75363,75404,75427,75580,75955,75956,75961,75967,75968,75973,75974,75995,76009,76193,76852,76872,76892,77989,78007,78029,78683,78729,79254,79295,79826,79872,79933,79934,80621,80624,81107,81291,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,85051,85069,85137,85160,85766,85786,85804,85829,86279,86297,86315,86338,87514,87588,87606,87633,88239,88261,88307,88330,88736,88754,88772,88795,89922,89931,89940,90026,90052,90071,90145,90167,90714,90732,90769,90786,90905,90929,92169,93185,93388,93412,93574,94726,95864,95873,95882,95958,95982,96011,96029,96049,96067,96086,96104,96118,96142,96172,96190,96208,96696,102590,102613,102622,102633,102709,102731,103429,103461,103567,103597,103631,103649,103663,103695,103727,103755,104137,104171,104307,104328,104329,105077,105088,105226,105264,105648,105649,105678,105679,105812,105838,105839,106586,106588,106714,106816,107166,107242,107268,107315,107329,107351,107356,107373,107379,107396,107406,108040,108047,108074,108102,108319,108767,108799,108847,108875,108898,108901,109655,109672,109683,109702,109796,109826,110191,110348,110472,110496,110537,110554,110572,111275,111397,111437,111509,111512,111883,111969,112017,112020,112085,112123,112171,112180,112223,112271,112893,112902,113138,113139,113713,113741,113761,113795,114493,114516,114525,114534,114608,114630,114810,114872,115366,115412,115454,115468,115500,115533,115565,115615,116200,116246,116375,116482,116483,117037,117040,117231,117265,117305,117318,117671,117775,118052,118076,118077,118497,118648,118869,118977,119027,119638,119686,119725,119735,119757,119761,119777,119781,119797,119827,119910,119923,119950,120004,120634,120738,121344,121423,121445,121466,121469,122089,122148,122178,122207,122218,122334,122386,122533,123490,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,127450,128010,128019,128050,128562,129710,130110,130323,130354,130382,130383,130985,131359,131370,131393,131412,131490,131503,131504,132005,132006,132188,132204,132205,133245,133269,133337,133338,133389,133390,133889,133900,134041,134052,134110,134112,134744,134745,135246,135259,135685,135952,135953,136386,136396,136397,136597,137590,137631,137779,137790,137866,137890,138932,139727,139728,139798,140204,140260,140859,140899,140900,140995,141019,141433,141436,141723,141748,141769,142740,142746,142819,142877,142915,143596,143597,143981,144157,144654,144792,144814,145450,146514,146521,146617,146715,147353,147393,147394,147880,147881,148605,148616,148626,148704,148728,149453,149482,149483,150509,150510,150713,150779,152548,152654,152712,154580,154630,155766,156612,156621,156630,157786,157808,157833,157851,157869,157884,158463,158600,158680,164880,165031,165180,165181,167481,167529,167571,167614,167615,167640,167641,167665,167701,167732,167762,167763,167787,167808,167809,168149,168811,169401,169463,169565,169583,169777,169797,171747,171767,171903,171933,173683,173720,174017,174037,175592,175771,175789,175926,176013,177671,177685,177696,177705,177730,177745,177756,177767,177776,177862,177884,178068,178092,178132,178146,179860,179952,180096,181779,181780,182118,183873,183874,184091,184105,184119,185979,185993,186220,186498,186499,188290,188308,188323,188340,188388,188576,188604,188852,190204,190238,190272,190372,190402,190712,190732,192087,192248,192294,192436,192741,192759,192778,193125,194286,194326,194346,194347,194721,194743,194758,194777,194818,196292,196334,196374,196492,196530,196688,196716,196717,196741,196742,196772,196773,196799,196804,198498,198516,198539,198556,198593,198797,198839,200187,200231,200297,200325,200415,200755,200773,200788,201693,202092,202138,202212,202309,202354,202390,202558,202591,204047,204129,204146,204172,204212,204254,204422,204423,205811,205831,205908,205933,205980,206022,206894,207382,207432,207883,207901,207916,207933,208043,208721,209261,209283,209364,209476,209514,209530,209548,209551,209564,209567,209702,209708,209722,209728,209739,211149,211179,211194,211223,211258,211406,211450,211522,212482,212540,212618,212652,212790,212840,212985,213018,213068,213274,214094,214130,214250,214350,214402,214444,214576,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":6944.6962459999995,"failures":[195,271,281,306,316,324,338,351,361,367,465,480,486,496,503,505,510,512,517,523,534,554,576,598,605,629,632,643,647,649,651,661,665,667,670,673,674,675,676,687,690,692,695,698,699,700,701,709,713,716,724,728,731,739,743,746,748,756,767,770,772,784,799,814,819,872,898,906,1242,1250,1258,1266,1280,1288,1296,1304,1318,1329,1337,1343,1351,1357,1365,1371,1379,1385,1393,1399,1407,1413,1421,1427,1435,1443,1491,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1586,1598,1620,1621,1623,1639,1642,1647,1652,1657,1662,1667,1672,1677,1682,1692,1710,1718,1728,1741,1753,1761,1772,1780,1785,1822,1836,1841,1846,1879,1885,1887,1907,1919,1939,1959,1987,2023,2043,2049,2055,2076,2097,2117,2145,2181,2196,2203,2210,2232,2260,2289,2324,2339,2345,2351,2358,2384,2412,2448,2511,2544,2550,2556,2563,2590,2619,2656,2721,2758,2762,2766,2769,2801,2806,2815,2816,2818,2825,2831,2838,2842,2847,2852,2858,2861,2862,2864,2871,2877,2886,2894,2898,2905,2908,2909,2914,2917,2919,2923,2934,2935,2937,2969,2986,2988,2992,2993,3020,3047,3052,3064,3071,3076,3108,3119,3125,3156,3178,3179,3189,3192,3194,3195,3257,3261,3265,3275,3277,3284,3287,3311,3359,3366,3455,3456,3458,3479,3489,3490,3492,3498,3535,3571,3572,3595,3610,3643,3657,3677,3716,3777,3784,3829,3838,3848,3863,3874,3891,3931,3937,3982,3991,4006,4017,4029,4035,4061,4072,4075,4077,4091,4095,4099,4103,4114,4122,4130,4134,4138,4142,4147,4155,4162,4171,4175,4179,4183,4279,4294,4297,4299,4317,4321,4328,4332,4334,4338,4348,4356,4419,4423,4428,4432,4436,4438,4442,4452,4459,4525,4529,4534,4538,4543,4545,4549,4554,4558,4562,4571,4578,4657,4662,4668,4669,4673,4677,4681,4685,4687,4691,4697,4705,4711,4740,4744,4772,4778,4813,4824,4839,4842,4844,4935,4937,4938,4940,4943,4945,4947,4994,5006,5014,5031,5059,5134,5152,5174,5248,5267]},"seaport_4f4e7c20":{"timeMs":33628.660656,"failures":[263,272,283,292,303,328,352,361,372,381,392,417,441,450,461,470,481,506,530,539,550,559,570,595,621,630,641,650,661,684,691,711,720,731,740,751,776,800,809,820,829,840,865,889,898,909,918,936,947,972,1000,1010,1021,1030,1057,1083,1092,1103,1112,1123,1144,1156,1165,1176,1185,1196,1217,1229,1238,1249,1258,1269,1290,1302,1311,1322,1331,1341,1362,1374,1383,1394,1403,1414,1435,1447,1454,1465,1474,1485,1506,1518,1527,1538,1547,1558,1579,1591,1600,1611,1620,1631,1652,1664,1673,1684,1693,1704,1725,1737,1746,1757,1766,1777,1798,1810,1819,1830,1839,1850,1871,1883,1892,1903,1912,1923,1944,1956,1965,1976,1985,1996,2005,2015,2036,2048,2057,2068,2077,2088,2111,2118,2130,2139,2148,2157,2168,2177,2188,2209,2221,2230,2241,2250,2261,2282,2294,2303,2314,2323,2334,2355,2367,2376,2387,2396,2407,2428,2440,2449,2460,2471,2492,2504,2513,2524,2533,2544,2573,2585,2594,2605,2616,2637,2649,2658,2669,2678,2689,2710,2722,2731,2740,2749,2758,2767,2785,2876,2897,2918,2942,2951,2960,2969,2978,2987,2996,3005,3016,3025,3036,3045,3056,3065,3076,3085,3096,3117,3136,3157,3174,3186,3195,3224,3257,3290,3320,3329,3358,3391,3424,3454,3463,3494,3521,3548,3572,3581,3590,3599,3624,3647,3661,3670,3679,3688,3713,3736,3748,3755,3762,3773,3802,3832,3841,3868,3896,3903,3910,3919,3948,3978,3985,3992,4001,4030,4050,4059,4088,4108,4115,4122,4131,4160,4180,4187,4194,4203,4212,4221,4246,4274,4283,4292,4301,4324,4352,4361,4368,4377,4402,4430,4439,4448,4457,4466,4475,4503,4529,4538,4547,4556,4565,4574,4603,4629,4638,4657,4669,4678,4711,4739,4748,4781,4809,4818,4851,4879,4888,4917,4947,4956,4965,4974,4985,5014,5050,5059,5090,5114,5123,5132,5141,5150,5159,5198,5224,5233,5242,5251,5290,5314,5323,5332,5341,5377,5389,5398,5407,5416,5457,5481,5490,5499,5508,5549,5573,5582,5591,5600,5641,5665,5672,5681,5710,5732,5739,5746,5755,5784,5808,5815,5822,5831,5860,5884,5891,5898,5907,5936,5960,5967,5974,5983,6012,6036,6043,6052,6081,6103,6112,6141,6161,6170,6199,6219,6226,6235,6246,6275,6287,6296,6305,6312,6321,6350,6362,6371,6380,6387,6394,6403,6432,6446,6455,6482,6514,6523,6550,6582,6591,6616,6644,6653,6698,6736,6745,6790,6823,6832,6877,6915,6926,6971,7009,7018,7063,7101,7110,7149,7177,7186,7221,7249,7258,7297,7324,7355,7383,7392,7431,7458,7489,7517,7526,7535,7542,7549,7558,7595,7623,7632,7659,7675,7684,7711,7966,7975,8002,8034,8043,8070,8102,8111,8138,8170,8179,8206,8238,8247,8272,8369,8378,8401,8429,8438,8461,8487,8496,8528,8556,8565,8582,8597,8625,8634,8657,8682,8691,8708,8723,8751,8760,8783,8811,8820,8837,8852,8880,8889,8922,8960,8969,8995,9027,9036,9063,9093,9102,9131,9163,9172,9189,9208,9240,9249,9276,9308,9317,9344,9376,9385,9412,9434,9443,9470,9492,9501,9528,9550,9559,9568,9577,9606,9644,9653,9660,9669,9698,9736,9745,9752,9761,9790,9828,9837,9844,9853,9882,9918,9927,9936,9945,9974,10012,10019,10037,10046,10074,10112,10119,10128,10137,10146,10186,10229,10238,10247,10256,10275,10286,10303,10341,10350,10357,10366,10395,10423,10432,10439,10448,10477,10503,10512,10521,10530,10541,10570,10606,10615,10624,10633,10644,10673,10709,10718,10727,10736,10747,10775,10811,10820,10829,10838,10849,10878,10914,10923,10932,10941,10970,11006,11015,11024,11033,11058,11086,11095,11104,11113,11140,11172,11181,11190,11199,11228,11264,11273,11282,11291,11418,11650,11661,11670,11679,11708,11744,11753,11762,11771,11800,11826,11835,11844,11853,11882,11908,11917,11926,11935,11964,11992,12001,12028,12056,12065,12092,12120,12129,12156,12184,12193,12220,12248,12257,12286,12306,12315,12344,12364,12373,12382,12391,12416,12450,12459,12468,12477,12504,12538,12547,12556,12565,12592,12626,12635,12644,12653,12680,12714,12723,12732,12741,12770,12796,12805,12814,12823,12852,12878,12887,12896,12905,12916,12943,12977,12986,12995,13004,13015,13042,13076,13085,13094,13103,13130,13164,13173,13182,13191,13218,13252,13261,13270,13279,13308,13334,13343,13352,13361,13389,13575,13651,13658,13665,13672,13679,13688,13697,13709,13718,13725,13738,13747,13763,13770,13781,13792,13803,13812,13830,13837,13848,13857,13866,13877,13893,13900,13911,13920,13929,13940,13960,13967,13976,13985,13994,14003,14012,14021,14043,14052,14061,14070,14081,14090,14099,14128,14157,15903,16143,16150,16157,16166,16175,16187,16194,16201,16210,16219,16231,16238,16252,16258,16265,16272,16279,16286,16293,16300,16309,16318,16332,16339,16346,16360,16367,16374,16381,16388,16395,16402,16409,16416,16423,16430,16437,16446,16455,16469,16476,16483,16490,16497,16504,16513,16520,16527,16534,16541,16550,16559,16568,16579,16590,16599,16631,16638,16645,16652,16661,16672,16701,16713,16727,16739,16751,16809,16820,16831,16836,16846,16857,16868,16884,16893,16905,16917,16929,16948,16955,16962,16971,16980,16987,16992,16999,17008,17015,17024,17031,17038,17250,17257,17321,17335,17344,17365,17374,17402,17448,17457,17464,17473,17480,17496,17505,17526,17535,17544,17601,17610,17627,17641,17650,17667,17676,17685,17701,17710,17727,17736,17747,17756,17772,17781,17798,17816,17832,17841,17860,17869,17878,17887,17903,17912,17931,17940,17949,17990,18006,18015,18036,18049,18076,18108,18117,18136,18147,18160,18187,18219,18228,18247,18258,18271,18298,18552,18855,19087,19749,19758,19767,19814,19823,19844,19861,19891,19900,19921,19937,19967,19976,20005,20030,20042,20051,20080,20105,20119,20130,20147,20163,20172,20183,20209,20223,20232,20251,20265,20274,20293,20307,20316,20337,20349,20358,20379,20391,20400,20421,20433,20442,20463,20477,20486,20513,20520,20542,20551,20570,20578,20595,20625,20634,20643,20652,20671,20685,20692,20701,20719,20738,20752,20759,20768,20777,20786,20807,20830,20839,20856,20863,20877,20886,20903,20910,20917,20931,20940,20965,20972,20979,20988,21010,21019,21044,21053,21075,21084,21109,21123,21132,21157,21169,21176,21185,21212,21224,21231,21240,21267,21279,21286,21295,21332,21344,21351,21360,21397,21409,21416,21425,21462,21474,21481,21490,21527,21539,21548,21585,21597,21606,21643,21655,21664,21701,21713,21722,21759,21771,21778,21787,21814,21828,21837,21862,21874,21883,21902,21916,21925,21950,21964,21973,21990,22002,22011,22030,22042,22051,22070,22084,22093,22110,22124,22133,22150,22164,22173,22190,22202,22211,22267,22290,22302,22309,22316,22325,22344,22351,22358,22375,22405,22412,22421,22432,22451,22458,22473,22503,22510,22517,22526,22545,22559,22568,22577,22586,22595,22622,22636,22645,22654,22663,22672,22699,22706,22720,22729,22738,22747,22756,22783,22797,22808,22817,22826,22835,22861,22873,22880,22887,22896,22915,22932,22962,22969,22976,22985,23014,23026,23033,23040,23049,23068,23085,23117,23126,23143,23157,23166,23183,23197,23206,23223,23237,23246,23263,23277,23286,23303,23317,23326,23343,23357,23366,23383,23397,23406,23431,23445,23454,23479,23493,23502,23519,23536,23568,23577,23594,23601,23618,23668,23675,23682,23694,23703,23724,23733,23750,23782,23791,23816,23823,23830,23860,23880,23889,23896,23905,23916,23930,23948,23955,23975,23999,24013,24022,24029,24038,24049,24068,24080,24089,24098,24115,24126,24143,24179,24196,24208,24225,24243,24252,24261,24270,24284,24291,24300,24309,24318,24342,24354,24363,24372,24381,24400,24412,24421,24430,24439,24468,24480,24489,24498,24505,24524,24533,24542,24559,24595,24604,24613,24622,24641,24658,24689,24703,24712,24721,24730,24741,24760,24774,24783,24798,24834,24843,24852,24861,24872,24891,24908,24944,24951,24976,24988,24995,25020,25031,25042,25064,25073,25092,25114,25136,25158,25170,25179,25198,25210,25219,25238,25260,25272,25279,25304,25336,25352,25361,25378,25392,25401,25418,25427,25436,25458,25470,25482,25496,25505,25524,25533,25547,25556,25573,25582,25596,25605,25622,25631,25643,25652,25673,25682,25696,25705,25722,25731,25745,25754,25771,25780,25794,25803,25830,25839,25851,25860,25889,25898,25912,25921,25940,25949,25965,25974,25993,26002,26016,26025,26044,26053,26077,26101,26125,26149,26163,26199,26213,26249,26265,26272,26302,26318,26325,26352,26382,26389,26410,26426,26433,26454,26470,26477,26498,26514,26521,26538,26571,26585,26594,26601,26610,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34474,34483,34494,34503,34528,34558,34567,34578,34587,34612,34642,34651,34662,34671,34680,34754,34770,34779,34790,34799,34808,34817,34826,34835,34874,34887,34903,34912,34921,34937,34946,34957,34973,34982,35002,35018,35027,35034,35048,35057,35068,35077,35097,35098,35112,35121,35132,35146,35155,35166,35175,35194,35201,35215,35224,35235,35244,35270,35286,35300,35309,35320,35327,35341,35350,35361,35370,35387,35401,35410,35421,35430,35449,35463,35472,35483,35492,35501,35510,35519,35530,35548,35799,35808,35817,35841,35871,35880,35889,35914,35944,35953,35964,36007]},"synthetix_9a3a109f":{"timeMs":381503.450261,"failures":[12,13,18,19,24,25,30,31,36,37,42,43,48,49,54,55,60,61,66,67,72,73,78,79,84,85,90,91,96,97,102,103,108,109,114,115,120,121,139,140,145,146,151,152,237,266,1361,1362,1373,1374,1391,1392,1729,1908,2038,2042,2178,2208,2210,2211,2212,2297,2375,2376,2414,2415,2478,2483,2486,2496,2500,2501,2503,2505,2605,2610,2615,2622,2813,2814,2815,2865,2873,2956,2957,2959,2960,2979,2981,2984,2986,2997,2998,3006,3008,3013,3014,3019,3020,3027,3030,3037,3042,3050,3054,3063,3068,3079,3082,3091,3096,3106,3110,3119,3122,3128,3134,3144,3148,3157,3160,3167,3170,3179,3183,3191,3193,3201,3204,3211,3214,3246,3249,3260,3263,3270,3273,3280,3285,3294,3299,3306,3309,3314,3327,3334,3337,3356,3358,3366,3367,3376,3386,3396,3399,3408,3413,3422,3425,3432,3435,3442,3445,3465,3471,3478,3481,3491,3494,3504,3514,3557,3562,3573,3576,3585,3588,3593,3602,3611,3612,3631,3636,3643,3645,3651,3655,3663,3664,3671,3674,3681,3682,3689,3692,3699,3706,3716,3718,3725,3726,3735,3742,3751,3754,3763,3765,3771,3776,3783,3787,3808,3809,3814,3815,3820,3821,3826,3827,3832,3833,3838,3839,3844,3845,3850,3851,3856,3857,3862,3863,3868,3869,3874,3875,3880,3946,3956,3963,3968,3969,3974,3975,3980,3984,3992,3993,3998,3999,4006,4007,4023,4025,4031,4035,4041,4048,4067,4070,4075,4079,4087,4090,4095,4096,4101,4102,4108,4110,4115,4116,4121,4122,4127,4128,4141,4144,4154,4157,4165,4166,4171,4172,4225,4241,4254,4264,4273,4275,4283,4286,4316,4318,4328,4331,4337,4339,4346,4348,4354,4355,4362,4363,4368,4369,4376,4379,4388,4391,4398,4399,4404,4406,4414,4415,4420,4421,4426,4427,4432,4435,4442,4445,4452,4456,4464,4468,4478,4481,4488,4493,4534,4537,4548,4552,4557,4560,4569,4570,4579,4583,4591,4592,4601,4604,4611,4614,4621,4626,4633,4636,4645,4650,4655,4660,4669,4674,4679,4684,4689,4694,4701,4704,4713,4718,4724,4727,4749,4766,4781,4787,4838,4843,4854,4857,4862,4870,4879,4889,4897,4901,4913,4919,4928,4933,4942,4947,4958,4963,4972,4975,4982,4991,5000,5001,5020,5027,5032,5035,5043,5047,5052,5055,5062,5065,5072,5075,5082,5091,5100,5101,5135,5139,5147,5151,5163,5164,5170,5174,5179,5180,5185,5186,5191,5192,5197,5198,5203,5204,5209,5210,5215,5216,5221,5287,5303,5304,5309,5310,5315,5322,5327,5328,5335,5336,5343,5346,5353,5354,5361,5366,5406,5407,5412,5415,5420,5421,5426,5427,5432,5435,5440,5447,5454,5457,5466,5469,5476,5477,5482,5483,5554,5567,5578,5580,5589,5592,5600,5603,5612,5617,5624,5627,5634,5637,5648,5651,5656,5660,5666,5668,5691,5694,5701,5702,5707,5709,5715,5720,5729,5734,5741,5748,5757,5764,5773,5780,5791,5796,5803,5808,5817,5822,5833,5836,5854,5862,5869,5874,5883,5887,5897,5901,5909,5914,5925,5928,5935,5940,5947,5954,6024,6045,6056,6066,6074,6128,6164,6202,6226,6278,6292,6321,6344,6358,6535,6605,6669,6759,7090,7135,7247,7473,7498,7529,7546,7563,7636,7649,7720,7743,7760,7766,7788,7790,7815,7832,7849,7855,8039,8078,8107,8111,8173,8194,8411,8423,8430,8490,8547,8698,8700,8701,8708,9092,9169,9177,9182,9763,9791,9816,9821,9831,9834,10134,10139,10141,10146,10152,11003,11115,11800,11927,11933,11947,11952,12038,12548,12554,13307,13338,13348,13353,13396,13443,13955,13961,14584,14607,14910,14920,15159,15165,15372,15828,16113,16177,16658,16694,16797,17007,17023,17029,17030,17288,17304,17529,17537,17538,18166,18308,18309,18879,18907,18924,19049,19051,19052,19282,19312,19325,19330,19341,19417,19441,19448,19458,19464,19473,19478,19487,19491,19499,19500,19505,19506,19511,19512,19517,19519,19531,19578,19586,19591,19597,19598,19603,19604,19609,19614,19627,19632,19645,19652,19665,19671,19681,19686,19697,19702,20329,20447,20525,20562,21169,21389,21396,21586,21704,21748,22290,22692,23389,23714,23720,23726,24342,24688,25014,25399,25475,25546,26360,26384,26400,26401,28336,28353,28359,29615,29621,30355,31566,31754,31770,31771,33580,33586,35769,35793,36140,36204,37021,37554,38292,38783,39456,39483,39901,40687,41352,41853,41859,42895,43065,43071,43571,44078,44121,44139,45383,45396,45399,45434,45447,45449,45486,45499,45505,45506,45511,45512,45517,45518,45523,45524,45529,45530,45535,45536,45541,45542,45547,45548,45553,45554,45559,45560,45565,45566,45571,45612,46503,46504,46528,46530,46535,46536,46541,46542,46547,46548,46553,46554,46559,46560,46565,46637,49961,49973,49978,59592,61615,64104,66412,69197,71535,73603,75493,77617,79784,82276,84850,87244,89788,92341,95111,97739,100571,103834,106740,110018,113263,113508,113509,113515,113662,113663,113664,113665,113666,113667,113668,113669,113670,113671,113672,113673,113674,113675,113676,113677,113678,113679,113680,113681,113682,113683,113684,113685,113686,113687,113688,113689,113690,115629,115790,115805,115843,115886,115894,115895,115900,115901,115906,116047,116102,116103,116108,116242,116414,116415,116422,116423,116428,116437,116442,116443,116448,116449,116504,116505,116510,116511,116540,116541,116547,116549,116554,116559,116564,116565,116570,116571,116576,116577,117026,117027,117065,117698,118168,118181,118194,118611,118612,118613,118614,118615,118616,118617,118618,118619,118620,118621,118622,118623,118624,118625,118626,118627,118628,118629,118630,118631,118632,118633,118634,118635,118636,118637,118638,118639,120530,120893,120955,121022,121082,123863,124080,124126,126845,127231,127244,127264,127265,127272,127563,127564,127565,127566,127567,127568,127569,127570,127571,127572,127573,127574,127575,127576,127577,127578,127579,127580,127581,127582,127583,127584,127585,127586,127587,127588,127589,127590,127591,129433,129438,129571,129577,129583,129680,129688,129878,129902,129929,129941,130120,133147,136122,136253,136544,136554,136555,136873,136874,136875,136876,136877,136878,136879,136880,136881,136882,136883,136884,136885,136886,136887,136888,136889,136890,136891,136892,136893,136894,136895,136896,136897,136898,136899,136900,136901,138735,138740,138951,139002,139017,139035,139040,139362,139389,139634,139644,139645,140005,140006,140007,140008,140009,140010,140011,140012,140013,140014,140015,140016,140017,140018,140019,140020,140021,140022,140023,140024,140025,140026,140027,140028,140029,140030,140031,140032,140033,141718,141772,141793,142068,142239,142270,142577,142647,142648,142850,142851,142852,142853,142854,142855,142856,142857,142858,142859,142860,142861,142862,142863,142864,142865,142866,142867,142868,142869,142870,142871,142872,142873,142874,142875,142876,142877,142878,144572,144705,144788,144903,145095,145263,145491,145501,145502,145664,145665,145666,145667,145668,145669,145670,145671,145672,145673,145674,145675,145676,145677,145678,145679,145680,145681,145682,145683,145684,145685,145686,145687,145688,145689,145690,145691,145692,147598,147603,147626,147711,148012,148111,148295,148310,148320,148735,148736,148737,148738,148739,148740,148741,148742,148743,148744,148745,148746,148747,148748,148749,148750,148751,148752,148753,148754,148755,148756,148757,148758,148759,148760,148761,148762,148763,150735,150766,151270,151383,151390,151391,151396,151397,151402,151419,151562,151563,151568,151629,151722,151723,151910,151914,151926,151929,151934,151997,152002,152003,152026,152037,152042,152215,152254,152257,152262,152263,152268,152269,152274,152507,152564,152697,152706,152707,152718,152721,153407,155510,155511,155516,155517,155654,155655,155660,155831,155836,155847,155852,155855,155860,155923,155928,155947,155952,155961,155966,156040,156152,156155,156160,156161,156166,156167,156342,156455,156460,156595,156602,156603,156616,156671,156732,156733,156758,156761,156784,156919,159814,159850,159858,159860,159884,159890,160060,160176,160178,160301,160433,160441,160465,160515,160638,160868,160916,160991,160997,161007,161153,161158,161160,161162,162277,162289,162297,162343,162388,162427,162437,162507,162595,162685,162715,162831,162887,163009,163019,163027,163038,163139,163390,163490,163506,163528,163587,164551,164697,164841,164891,164901,164951,164957,164969,165008,165023,165035,165040,165073,165199,166308,167309,167487,167488,167491,167742,167881,168128,168129,168445,168446,168557,168638,168645,168648,168659,168685,168686,168687,168718,168734,168743,168921,169046,169047,172487,172490,172611,172616,172654,172942,172960,173076,173096,173101,173250,173401,173511,173642,173721,173878,175003,175026,175049,175201,175356,175377,175655,175703,176730,176751,176874,176902,176926,177083,177393,177521,177522,177527,177528,177533,177534,177633,177634,177639,177640,177645,177646,177651,177652,177657,177834,178169,178174,178219,178220,178255,178268,178283,178292,178297,178302,178311,178314,178321,178323,178329,178330,178510,178580,178587,178591,178599,178600,178607,178612,179179,179196,179213,179230,179309,179388,179964,180318,180319,180330,180331,180338,180339,180384,180443,180456,180459,180470,180475,180482,180489,180494,180593,180636,180641,180648,180760,180786,180791,180798,180799,180804,180805,180810,180811,180946,180947,180952,180953,180958,180961,180968,180969,180976,180979,180984,180987,181714,181731,181748,181765,182082,182107,182393,182617,182620,182625,182628,182633,182634,182641,182644,182649,182652,182657,182660,182665,182668,182673,182774,182779,182782,182787,182790,182795,182884,182889,182892,182897,182898,182903,182904,182909,182910,183044,183271,183401,183402,183407,183408,183413,183414,183419,183420,183993,184028,184045,184062,184079,184204,184350,184957,184975,184980,184981,184986,184987,184992,184993,184998,185001,185006,185009,185014,185017,185022,185025,185030,185033,185038,185041,185046,185240,185326,185327,185334,185337,185344,185431,185442,185447,185456,185457,185462,185463,185468,185469,185474,185483,185864,185893,185910,185927,185944,185961,186605,186998,187002,187007,187008,187013,187014,187019,187088,187118,187123,187129,187131,187137,187140,187145,187148,187153,187156,187161,187164,187169,187172,187177,187180,187185,187188,187193,187384,187391,187393,187401,187404,187409,187410,187415,187416,187421,187422,188041,188064,188081,188098,188115,188132,188644,188860,188866,188872,188873,188878,188893,188900,188904,188912,188915,188922,188925,188932,189041,189449,189451,189456,189459,189472,189475,189482,189485,189494,189497,189504,189507,189864,189869,189874,189875,189980,189981,189986,189987,189992,189993,189998,189999,190251,190527,190798,190815,190842,190862,190901,191287,191288,191293,191294,191299,191300,191305,191306,191311,191312,191317,191318,191511,191512,191517,191524,191529,191530,191535,191536,191541,191542,191547,191548,191567,191568,191577,191578,191585,191586,191593,191594,191599,191602,191607,191610,191615,191618,191623,191626,192175,192204,192221,192238,192255,192272,192680,192851,192873,193119,193376,193414,193448,193454,193455,194020,194042,194087,194483,194508,194525,194551,194626,194643,195036,195097,195127,195671,195679,195767,195817,196181,196241,196258,196275,196421,196882,196899,196916,196947,197019,197045,197415,197426,197491,197492,197555,197856,198106,198121,198133,198654,198671,198688,198705,198722,198855,199335,199372,199389,199488,199881,199947,199967,199973,199980,200527,200570,200591,200757,201043,201060,201077,201163,201192,201340,201712,201737,201771,201797,201803,201896,202199,202286,202307,202755,202780,202800,202817,202843,203080,203097,203278,203357,203381,203405,203411,203798,203836,203853,203886,203921,204010,204099,204619,204636,204653,204670,204687,204737,204804,204995,205012,205118,205228,205266,205548,205552,205561,205627,205632,205652,205672,205689,205791,205895,205915,205936,206140,206143,206465,206482,206499,206516,206533,206589,206778,206971,206989,207043,207270,207288,207368,207372,207379,207458,207459,207464,208066,208083,208100,208131,208183,208235,208265,208346,208363,208461,208737,209003,209021,209025,209034,209149,209152,209162,209163,209288,209412,209502,209981,209998,210015,210032,210053,210070,210096,210533,210550,210567,210860,210870,210996,211000,211009,211047,211053,211056,211068,211551,211783,211918,211935,211952,211994,212014,212031,212057,212780,212799,212816,212837,212969,212989,212993,213002,213051,213085,213133,213800,213809,213822,213962,213970,213980,213994,214000,214052,214063,214770,214794,214800,214946,214961,215721,215742,215763,215780,215797,215950,215978,216059,216076,216093,216118,216804,216838,216848,216849,216850,217017,217034,217051,217068,217155,217174,217216,217891,217929,217957,217983,218140,218160,218168,218169,218288,218305,218322,218339,218358,219015,219091,219266,219287,219310,219335,219433,219467,219477,219641,219970,220138,220208,220383,220405,220434,220459,220483,220509,220640,220657,221306,221343,221377,221401,221567,221621,221639,221656,221675,221800,221809,222412,222453,222664,222681,222698,222715,222788,222809,222843,223546,223582,223618,223639,223849,223869,223878,223885,223917,223953,223980,224005,224026,224030,224773,224790,224807,224824,224841,225064,225106,225215,225232,225255,225276,226018,226042,226052,226277,226308,226325,226346,226474,226491,226508,227239,227260,227281,227321,227584,227601,227670,227741,227767,227785,227795,228152,228543,228554,228565,228566,228943,228960,228977,228994,229033,229054,229088,229833,229850,229867,230134,230264,230284,230300,230303,230310,231042,231107,231126,231147,231168,231189,231463,231622,231639,231695,231727,232409,232479,232489,232492,232777,232794,232811,232900,232995,233015,233102,233816,233844,233872,233902,234168,234188,234197,234201,234207,234210,234448,234465,234482,235135,235160,235236,235297,235578,235603,235720,235803,235883,235903,235911,235919,235929,236566,236691,236708,236989,237010,237041,237091,237262,237365,237386,238025,238118,238162,238182,238190,238462,238476,238479,238692,238709,238726,238828,238856,239010,239595,239658,239953,239987,240025,240205,240227,240235,240325,240354,240361,241080,241097,241158,241185,241481,241519,241611,241856,241891,241927,242625,242651,242673,242725,242741,243057,243162,243171,243176,243178,243179,243184,243185,244144,244161,244178,244195,244223,244253,244623,244756,244775,244792,244957,245775,245801,245809,245839,245849,245864,245866,245867,246321,246345,246367,246388,246551,246568,246594,247449,247488,247505,247860,247972,248010,248020,248030,248192,248194,248195,248197,248205,248207,248221,249062,249082,249125,249146,249493,249520,249679,249858,249881,249904,249912,250762,250790,250973,251153,251161,251330,252365,252382,252399,252416,252433,252784,252814,252827,253012,253197,253218,254054,254106,254114,254472,254484,254662,254848,254853,255458,256425,256444,256461,256478,256495,256512,256538,256758,257742,257759,257780,258142,258168,258176,258186,258195,258200,258208,259368,259372,259751,259768,259785,259802,259837,259854,259884,259897,261024,261041,261062,261440,261464,261472,261516,261524,262067,262612,262620,263053,263054,264117,264134,264151,264168,264185,264202,264228,264241,264688,264705,264726,265788,265812,265829,265849,265855,266077,266298,266303,266834,267365,267374,267833,267850,267867,267884,267901,267927,267940,268973,268990,269011,269017,269483,269517,269524,269528,269533,270265,271000,271037,271054,271071,271088,271105,271122,271148,271161,272608,272631,272664,272678,272698,272734,272741,272747,272749,272766,272787,273515,274245,274289,274308,274325,274342,274359,274376,274402,274415,275842,275869,275890,275912,275938,275972,275979,275989,277472,277489,277526,277533,277550,277567,277584,278995,279012,279064,279083,279100,279131,279152,279158,279178,279188,279893,280605,280643,280644,280690,280707,280724,280741,280758,280778,280817,282210,282229,282248,282269,282309,282333,282341,282344,282387,282404,282421,282438,283807,283836,283888,283945,283968,283990,284016,284052,284072,284089,285615,285632,285649,285666,285713,285734,285776,287155,287174,287193,287252,287300,287322,287332,287342,287416,287433,287546,288769,288838,288862,288933,289008,289025,289083,289111,289139,289161,290506,290567,290638,290655,290729,290757,290784,290843,290883,292178,292251,292283,292315,292363,292383,292527,292528,292538,292590,292623,293496,293936,294014,294049,294078,294104,294281,294342,294383,294404,294412,295700,295790,295826,295854,296010,296044,296115,296165,296187,296215,297542,297559,297606,297629,297637,297801,297823,297882,297938,297939,297959,297960,299306,299327,299344,299361,299378,299395,299595,299728,299745,299764,299785,301119,301157,301165,301193,301199,301373,301378,301380,301526,301543,301560,301577,301594,301932,302939,302978,303170,303188,303209,303359,303383,303391,304705,304711,304713,304718,304720,304948,304965,304982,304999,305016,305181,305223,306478,306511,306544,306743,306761,306785,306793,306973,306979,306993,306995,307000,307002,308454,308471,308488,308505,308522,308553,308597,308798,308817,308834,308855,310303,310329,310337,310381,310387,310405,310407,310412,310414,311336,311353,311370,311387,311404,312001,312139,312185,312207,312667,313127,313861,313874,313934,313957,313967,315121,315508,316526,317005,317022,317039,317056,317073,317099,317393,317421,317846,318501,318777,318790,319098,319127,319137,320449,320621,322040,322057,322074,322091,322108,322125,322465,322471,322511,323124,323737,324095,324108,324128,324133,324179,325425,325609,325781,325828,327004,327021,327038,327176,327416,327433,327459,327509,327515,328070,328624,329013,329026,329044,329095,329107,330419,330635,331384,332166,332183,332200,332217,332234,332251,332277,333619,333625,333670,333715,333749,335086,335106,335111,335121,335254,336581,336644,337950,337967,337984,338001,338018,338035,338061,338191,338197,338818,339438,339483,339496,339514,339645,339657,340925,340969,342298,342333,342350,342367,342384,342401,342418,342444,342450,342456,343083,343723,343754,343769,343775,343797,343810,343815,343834,345136,345171,345211,345228,346453,346470,346490,346526,346552,346570,346576,346591,346606,347826,347869,347875,347895,347908,347927,347946,348000,348621,349374,349401,349487,349511,349512,350861,351009,351010,351044,351045,351052,351084,351085,351092,351110,351111,351115,352552,352553,352554,352555,352556,352557,352558,352559,352560,352561,352562,352563,352564,352565,352566,352567,352568,352569,352570,352571,352572,352573,352574,352575,352576,352577,352578,352579,352580,353837,353857,353904,355648,355658,355676,355795,357016,357050,357205,358048,358072,358073,358141,358147,358181,358200,358261,358279,358280,358281,358282,358291,358317,358335,358336,358342,360339,360342,360366,361084,361098,361110,361125,362452,362454,366644,366675,367781,367784,367894,367895,367896,367897,367898,367899,367900,367901,367902,367903,367904,367905,367906,367907,367908,367909,367910,367911,367912,367913,367914,367915,367916,367917,367918,367919,367920,367921,367922,368870,368875,369073,369084,369091,369104,369111,369120,369125,369132,369143,369150,369159,369164,370505,370539,370629,370660,371791,371795,371842,371878,371940,372045,372118,372187,372195,372205,372206,372220,372221,372756,373474,373491,373584,373585,373586,373587,373588,373589,373590,373591,373592,373593,373594,373595,373596,373597,373598,373599,373600,373601,373602,373603,373604,373605,373606,373607,373608,373609,373610,373611,373612,374824,374953,374970,375054,376055,376102,376103,376104,376105,376106,376278,376290,376410,376412,376504,376631,377496,377523,377524,377528,377553,377557,377574,377578,377581,377585,377586,377590,377591,377595,377596,377600,377601,377605,377706,377710,377711,377726,377740,377773,377781,377787,377804,377812,377813,377817,377818,377822,377823,377827,377828,377832,377833,377857,377858,377862,377863,378915,378938,379641,380068,380809,381305,381563,381565,381566,381567,381568,381574,382549,382555,382818,382824,382855,382861,383790,383791,384077,384082,385547,386042,386160,386161,386162,386163,386164,386165,386166,386172,386215,386216,386217,386218,386219,387223,387228,388164,388169,388182,388195,388196,388202,389093,389094,389118,389136,389137,389138,389144,389923,389995,390000,390779,390806,391179,391512,391535,391558,391564,391607,391608,391609,392353,392358,392360,392752,393111,393166,393179,393523,393867,393873,393918,393919,393923,393925,393926,393932,394633,394639,394691,395358,395363,395365,395370,395374,395388,395401,395402,395407,395412,395998,396005,396051,396062,396067,396069,396075,396081,396086,396668,396705,396707,396729,396730,396778,396783,396989,397193,397280,397283,397285,397699,397704,397708,397745,397785,397836,397838,397839,397841,397850,398165,398171,398266,398272,398330,398339,398649,398792,398797,398799,398800,398801,399104,399106,399107,399108,399114,399219,399222,399304,399591,399640,399687,399772,399774,399780,400099,400281,400286,400288,400294,400622,400623,400813,400820,400824,400857,401348,401361,401378,401391,401812,401863,401897,401912,401923,401979,402362,402370,402374,402380,402381,402489,402494,402500,402506,402508,402536,403014,403091,403099,403101,403109,403114,403172,403185,403193,403199,403201,403207,403815,403826,403828,403831,403835,403850,403864,403865,403868,403872,404431,404444,404486,404869,404874,404876,404882,404944,405005,405079,405114,405116,405122,405530,405733,405770,405774,406179,406390,406397,406402,406403,406407,406412,406416,406417,406455,406456,406464,406467,406471,406474,406478,406479,406483,406484,406488,406683,406861,406862,406866,406873,406877,406878,406882,406883,406889,406890,406894,406895,407029,407030,407034,407035,407039,407058,407062,407063,407077,407182,407547,407565,407578,407801,407840,407854,407861,408266,408271,408277,408286,408483,408496,408500,409460,409753,410450,410488,411433,411715,411778,411813,411814,411818,411820,412390,412399,413075,413127,413769,413770,413771,413775,413778,414321,414326,414749,415058,415097,415098,415102,415104,415717,415733,416047,416333,416337,416398,416407,416409,417588,417610,418476,418743,419346,419374,419639,419876,419877,419878,419879,419883,419885,419973,419978,420209,420438,420529,420538,420990,421018,421046,421054,421530,421532,421590,421593,422101,422106,422111,422114,422156,422571,422864,423085,423186,423191,423192,423658,423663,423975,424201,424314,424320,424325,424804,424891,425140,425457,425502,425507,425508,426086,426091,426397,426679,426734,426740,426745,427334,427343,427667,427963,428034,428035,428671,428676,428981,429282,429317,429322,429323,429959,429964,429969,429971,429972,429973,430009,430014,430019,430021,430022,430023,430627,430632,430684,431302,431309,431365,431368,431377,431992,432123,432684,433275,433352,433917,434060,434567,435178,435183,435450,435715,435746,436278,436279,436337,436400,436421,436425,436426,437002,437007,437250,437528,437542,437843,438100,438106,438153,438172,438176,438177,438679,438681,438682,438786,438791,438793,438794,439274,439281,439283,439345,439352,439358,439360,439677,439931,439989,440015,440019,440021,440559,440568,440570,440899,441163,441251,441252,441806,441811,441817,442164,442435,442534,442539,442540,443100,443105,443111,443470,443745,443850,443856,443861,444496,444505,444511,444846,445159,445204,445209,445210,445844,445857,445863,446206,446521,446572,446578,446583,447220,447229,447237,447590,447905,447974,447975,448649,448654,448660,449282,449314,449925,449930,449931,450587,450592,450594,451245,451283,452270,452552,453241,453285,454405,454414,455267,455533,455568,455575,455579,455581,456111,456249,456250,456283,456298,456299,456322,456323,456346,456347,456357,456363,456365,456366,456367,456475,456477,456478,456479,456997,456998,457003,457004,457009,457014,457021,457024,457033,457036,457041,457042,457047,457048,457081,457084,457089,457092,457111,457114,457121,457124,457131,457132,457137,457138,457143,457144,457150,457168,457173,457176,457181,457182,457187,457190,457195,457198,457203,457204,457728,457734,457739,457746,457747,457752,457753,457758,457787,457794,457797,457802,457817,457826,457829,457836,457837,457842,457843,457848,457849,457854,457873,457878,457879,457886,457887,457892,457894,457900,457903,457908,457909,457916,457921,457930,457931,457936,457939,457946,458504,458512,460090,460092,460097,460100,460127,460139,460150,460175,460176,460229,460282,460620,460628,460635,460640,460642,461431,462270,462288,462290,462316,462317,462328,462331,462344,462347,462358,462361,462368,462373,462380,462385,462398,462401,462410,462415,462426,462427,462538,462741,462754,462759,462766,462767,462774,462781,462790,462801,462806,462815,462822,462823,462830,462833,462868,462875,462888,462893,462900,462918,463049,463055,463059,463065,463071,463077,463090,463099,463106,463117,463118,463225,463402,463415,463420,463427,463428,463435,463442,463451,463457,463467,463476,463483,463484,463491,463494,463529,463536,463551,463556,463561,463580,463593,463596,463609,463614,463621,463630,463637,463809,463815,463866,463920,464030,464361,464364,464377,464381,464389,464394,464403,464406,464429,464436,464445,464450,464461,464466,464473,464474,464485,464486,464494,464498,464513,464515,464530,464534,464543,464544,464553,464556,464565,464578,464591,464594,464605,464613,464621,464714,464763,464833,464881,464885,465070,465082,465083,465114,465117,465126,465133,465142,465145,465150,465157,465162,465169,465174,465185,465194,465203,465212,465215,465224,465227,465236,465247,465258,465263,465276,465284,465292,465383,465418,465449,465512,465523,465530,465535,465548,465555,465572,465573,465588,465783,465793,465826,465879,465903,465909,465941,465942,465959,465964,465977,465980,465993,466000,466007,466096,466123,466144,466149,466206,466221,466224,466233,466242,466253,466266,466271,466282,466295,466298,466307,466338,466353,466366,466377,466378,466403,466414,466421,466430,466439,466446,466455,466463,466469,466470,466642,467393,467484,467492,467503,467514,467563,467569,467578,467629,467640,467641,467645,467690,467712,467721,467729,467730,467764,467774,467779,467783,467784,467820,467821,467854,467855,467872,467879,467888,467893,467908,467911,467923,467927,467944,467947,467966,467973,467982,467985,467998,467999,468016,468021,468034,468041,468060,468063,468070,468101,468127,468133,468140,468183,468192,468207,468214,468229,468234,468255,468264,468277,468513,468519,468534,468539,468550,468555,468564,468577,468592,468599,468608,468613,468621,468629,468642,468651,468660,468671,468686,468693,468696,468711,468732,468739,468750,468781,468786,468804,468808,468813,468828,468853,468859,468873,468884,468891,468900,468908,468944,468955,469162,469180,469227,469237,469272,469280,469300,469314,469320,469362,469365,469374,469384,469396,469429,469436,469451,469458,469461,469480,469481,469506,469521,469528,469539,469544,469553,469562,469597,469608,469621,469638,469657,469678,469681,469696,469699,469710,469719,469728,469739,469746,469747,469780,469781,469800,469807,469818,469827,470041,470049,470064,470071,470074,470093,470113,470133,470136,470151,470152,470165,470204,470209,470228,470233,470246,470269,470286,470293,470306,470311,470318,470331,470344,470353,470354,470359,470388,470393,470408,470421,470428,470439,470450,470455,470468,470487,470492,470513,470740,470746,470783,470797,470818,470842,470853,470898,470904,470924,470945,470980,470981,470982,470986,471033,471043,471045,471046,471047,471095,471115,471121,471126,471130,471173,471182,471191,471199,471215,471232,471249,471256,471267,471276,471283,471298,471309,471322,471333,471350,471359,471362,471371,471378,471385,471408,471417,471432,471439,471440,471447,471462,471467,471498,471513,471528,471535,471538,471553,471594,471599,471620,471641,471662,471886,471904,471911,471922,471931,471938,471953,471964,471977,471988,472005,472014,472017,472026,472031,472040,472061,472070,472085,472092,472095,472100,472115,472142,472160,472168,472182,472190,472196,472206,472247,472272,472289,472314,472333,472338,472356,472364,472371,472384,472607,472619,472678,472684,472715,472725,472735,472757,472761,472803,472806,472811,472826,472869,472872,472891,472894,472901,472912,472957,472958,472983,473000,473025,473044,473049,473060,473075,473082,473095,473108,473125,473128,473133,473150,473159,473176,473184,473198,473209,473218,473229,473241,473247,473264,473273,473292,473311,473318,473554,473559,473564,473575,473592,473593,473616,473631,473642,473655,473660,473677,473684,473691,473704,473723,473734,473737,473742,473755,473762,473777,473792,473799,473812,473823,473834,473839,473852,473857,473876,473879,473898,473905,473916,473921,473930,473942,473956,474165,474171,474234,474252,474275,474317,474341,474346,474354,474407,474477,474605,474606,474671,474706,474761,474808,474884,474918,474951,474952,474953,475038,475097,475168,475169,475262,475265,475275,475280,475281,475289,475309,475310,475311,475340,475341,475402,475403,475404,475919,475920,475921,475922,475923,475924,475925,475926,475927,475928,475929,475930,475931,475932,475933,475934,475935,475936,475937,475938,475939,475940,475941,475942,475943,475944,475945,475946,475947,476470,476471,476472,476473,476586,476639,476668,476714,476769,476779,476818,476820,476835,476837,476852,476854,476892,476921,476925,476936,477016,477018,477019,477020,477032,477062,477091,477092,477104,477159,477193,477219,477244,477245,477266,477329,477346,477423,477507,477601,477611,477629,477678,477700,477712,477723,477724,477735,477795,477831,477836,477838,477840,477842,477871,477927,477930,477932,477933,477945,478009,478012,478014,478015,478041,478115,478134,478162,478163,478193,478280,478299,478308,478309,478314,478315,478322,478376,478388,478429,478434,478463,478468,478479,478484,478485,478490,478505,478568,478571,478576,478595,478620,478621,478630,478643,478650,478651,478656,478673,478678,478701,478726,478729,478758,478760,478772,478773,478778,478814,478815,478820,478826,478832,478835,478840,478847,478852,478853,478858,478911,478916,478921,478926,478927,478934,478935,478940,479001,479006,479007,479016,479017,479022,479025,479034,479035,479040,479041,479134,479135,479156,479159,479164,479165,479170,479177,479182,479192,479193,479198,479275,479300,479301,479310,479311,479316,479317,479330,479378,479390,479431,479436,479461,479470,479481,479486,479487,479492,479507,479570,479573,479578,479613,479622,479623,479633,479644,479652,479653,479658,479675,479680,479701,479706,479727,479732,480044,480583,480630,480650,481236,481242,481243,481248,481249,481254,481285,481318,481319,481324,481325,481330,481331,481336,481409,481420,481433,481438,481439,481476,481479,481484,481485,481490,481491,481496,481497,481502,481519,481524,481525,481576,481583,481590,481591,481596,481601,481650,481651,481656,481657,481662,481663,481668,481681,481686,481687,481692,481758,481780,481781,481806,481807,481812,481821,481826,481827,481832,481833,481838,481839,481844,481845,481956,481959,481964,481965,481970,482021,482040,482041,482046,482047,482052,482053,482058,482075,482156,482216,482222,482224,482483,482538,482539,482604,482693,482742,482790,482998,483000,483061,483063,483064,483186,483188,483189,483562,483564,483565,483774,483775,483957,483959,483964,484032,484033,484218,484221,484236,484250,484383,484386,484599,484605,484794,484801,484816,484822,484893,484899,484955,484972,485736,485851,485853,486386,486389,486404,486410,486663,486666,486681,486687,487056,487059,487074,487190,487195,487201,487205,487222,487980,488005,488007,488008,488769,488772,488787,489349,489368,489371,489386,489392,489559,489562,489577,489583,489588,489594,489598,489615,490929,490944,490946,491113,492983,880744,1215934,1217163,1217461,1254856,1277384,1277385,1278777,1279075,1279079,1279107,1279117,1279123,1279128,1279246,1279301,1284380,1287277,1287315,1289019,1289020,1289021,1289022,1289023,1289024,1289025,1289026,1289027,1289028,1289029,1289030,1289031,1289032,1289033,1289034,1289035,1289036,1289037,1289038,1289039,1289040,1289041,1289042,1289043,1289044,1289045,1289046,1289047,1291084,1346824,1347577,1348680,1349773,1571147,1571731,1572504,1572678,1572795,1572873,1573121,1573131,1573300,1573301,1573348,1573349,1573350,1620388,1621870,1621949,1622866,1622951,1626073,1626079,1626109,1626110,1626111,1626112,1626113,1626114,1626115,1626281,1626282,1626283,1626284,1626285,1626286,1626287,1626288,1626289,1626290,1626291,1626292,1626293,1626294,1626295,1626296,1626297,1626298,1626299,1626300,1626301,1626302,1626303,1626304,1626305,1626306,1626307,1626308,1626421,1626422,1626423,1626424,1626425,1626426,1626449,1626450,1626451,1626452,1633137,1633143,1633393,1642382,1642383,1642384,1642385,1642386,1645383,1645384,1645385,1645386,1645852,1646134,1646536,1646602,1646603,1646665,1646668,1646680,1646681,1646695,1646700,1646712,1646727,1646728,1647106,1647676,1647694,1647730,1647748,1647778,1647781,1647796,1647798,1647823,1647834,1647864,1647866,1647881,1647887,1647895,1647918,1648444,1648468,1648473,1648474,1648567,1648568,1648569,1648570,1648571,1648572,1648573,1648574,1648575,1648576,1648577,1648578,1648579,1648580,1648581,1648651,1648657,1648662,1648667,1648672,1649394,1649667,1649668,1649669,1649670,1649671,1649672,1649673,1649674,1649675,1649676,1649677,1649678,1649679,1649680,1649681,1649682,1649683,1649684,1649685,1649686,1649687,1649688,1649689,1649690,1649691,1649692,1649693,1649694,1649695,1649696,1649892,1649911,1649929,1649934,1649939,1650796,1650980,1650981,1650984,1650985,1650986,1650987,1650988,1650989,1650990,1650991,1650992,1650993,1650994,1650995,1650998,1651168,1651183,1652203,1652348,1652349,1652350,1652351,1652352,1652353,1652354,1652355,1652356,1652357,1652358,1652359,1652360,1652361,1652362,1652486,1652535,1652553,1653805,1653825,1653842,1653858,1653859,1653860,1655058,1655134,1655196,1655257,1655258,1655262,1656554,1656680,1656737,1656793,1656794,1656957,1656958,1656959,1656960,1656961,1656962,1656963,1656964,1656965,1656966,1656967,1656968,1656969,1656970,1656971,1657167,1657187,1657255,1657318,1657319,1658745,1658815,1658816,1658924,1658925,1660571,1660845,1660846,1660847,1660848,1660849,1660850,1660851,1660852,1660853,1660854,1660855,1660856,1660857,1660858,1660859,1661029,1661030,1661035,1661158,1661169,1661170,1661207,1661208,1661213,1661214,1661229,1661256,1661305,1661316,1661321,1661322,1661327,1661328,1661333,1661340,1661405,1661406,1661507,1661510,1661515,1661516,1661521,1661522,1661527,1661626,1661647,1661648,1661718,1661805,1661859,1661861,1661869,1661870,1661875,1661915,1661940,1661967,1662026,1662031,1662032,1662037,1662038,1662151,1662184,1662191,1662192,1662197,1662214,1662223,1662224,1662229,1662230,1662235,1662240,1662367,1662368,1662373,1662378,1662383,1662384,1662419,1662420,1662425,1662548,1662559,1662576,1662597,1662598,1662603,1662604,1662609,1662624,1662651,1662711,1662712,1662717,1662718,1662788,1662790,1662795,1662892,1662899,1662900,1662905,1662906,1662911,1662912,1663021,1663030,1663035,1663148,1663153,1663237,1663247,1663251,1663257,1663258,1663263,1663264,1663269,1663306,1663353,1663405,1663421,1663422,1663427,1663428,1663433,1663500,1663579,1663582,1663587,1663613,1663614,1663619,1663685,1663751,1663752,1663757,1663762,1663767,1663798,1663803,1663804,1663809,1663935,1663943,1663976,1663981,1663982,1663987,1664002,1664007,1664074,1664089,1664090,1664095,1664098,1664103,1664104,1664109,1664176,1664181,1664278,1664285,1664286,1664291,1664292,1664297,1664298,1666162,1666308,1666311,1668099,1668151,1668232,1669989,1670989,1672699,1672721,1672800,1672971,1673085,1673294,1673471,1674927,1675132,1675282,1675370,1675535,1676925,1677053,1677054,1677059,1677060,1677065,1677066,1677071,1677238,1677243,1677244,1677249,1677356,1677361,1677362,1677367,1677368,1677375,1677409,1677505,1677506,1677515,1677516,1677521,1677522,1677527,1677528,1677533,1677706,1677729,1677730,1677735,1677736,1677771,1677772,1677777,1677778,1677921,1677944,1677961,1677964,1677969,1677970,1677975,1677976,1678038,1678118,1678127,1678144,1678197,1678202,1678207,1678208,1678213,1678341,1678369,1678370,1678375,1678376,1678381,1678408,1678481,1678482,1678487,1678548,1678553,1678554,1678559,1678560,1678565,1678622,1678737,1678738,1678743,1678744,1678855,1678856,1678861,1678862,1678867,1678868,1680288,1680354,1680426,1681884,1681983,1682084,1683612,1683792,1683793,1683798,1683799,1683804,1683805,1683942,1683951,1683956,1684011,1684026,1684031,1684036,1684037,1684042,1684147,1684196,1684197,1684202,1684203,1684208,1684210,1684244,1684245,1684314,1684317,1684382,1684385,1684390,1684391,1684396,1684397,1684402,1684403,1684574,1684577,1684582,1684691,1684696,1684697,1686227,1686243,1686244,1686271,1686274,1686406,1686412,1686417,1686418,1686423,1686424,1686461,1686462,1686467,1686488,1686665,1686666,1686671,1686672,1686677,1686740,1686745,1686746,1686751,1686917,1686933,1686934,1686939,1686940,1687077,1687086,1687091,1687151,1687161,1687166,1687171,1687172,1687187,1687303,1687329,1687330,1688579,1689213,1689214,1689215,1689216,1689217,1689218,1689219,1689220,1689221,1689222,1689223,1689224,1689225,1689226,1689227,1690407,1690532,1690755,1690757,1691104,1691173,1692095,1692097,1693954,1693955,1693956,1693957,1693958,1693959,1693960,1693961,1693962,1693963,1693964,1693965,1693966,1693967,1693968,1695124,1695214,1695636,1695762,1695982,1695992,1696340,1696409,1697883,1697893,1697895,1698079,1698081,1698227,1698228,1698238,1698241,1698251,1698254,1698266,1698650,1698653,1698663,1698665,1698676,1698682,1698871,1698881,1698883,1698893,1698895,1698905,1698907,1698989,1699357,1699358,1699370,1699372,1699377,1699380,1699381,1699391,1699393,1699398,1699402,1699451,1700940,1700948,1701974,1702667,1702717,1703713,1703714,1703715,1703716,1703717,1703718,1703719,1703720,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091,1704092,1704093,1704853,1704859,1704973,1704974,1704975,1704976,1704977,1704978,1704979,1704980,1704981,1704982,1704983,1704984,1704985,1704986,1704987,1704988,1704989,1704990,1704991,1704992,1704993,1704994,1704995,1704996,1704997,1704998,1704999,1705000,1706133,1706549,1706564,1708806,1708812,1710344,1710736,1710751,1711044,1711276,1711525,1713777,1714889,1715331,1715773,1715788,1715790,1715791,1716324,1716857,1716858,1716859,1719837,1719843,1721039,1721880,1721896,1723014,1723015,1723016,1723017,1723018,1723019,1723020,1723021,1723150,1723151,1723152,1723153,1723154,1723155,1723156,1723157,1723158,1723159,1723160,1723161,1723162,1723163,1723164,1723165,1723166,1723167,1723168,1723169,1723170,1723171,1723172,1723173,1723174,1723175,1723176,1723177,1724066,1724072,1724186,1724187,1724188,1724189,1724190,1724191,1724192,1724193,1724194,1724195,1724196,1724197,1724198,1724199,1724200,1724201,1724202,1724203,1724204,1724205,1724206,1724207,1724208,1724209,1724210,1724211,1724212,1724213,1725272,1725376,1725391,1727595,1727601,1729499,1729669,1729684,1729785,1730004,1730566,1732502,1733502,1733900,1735248,1735263,1735265,1735266,1738634,1738640,1738822,1740246,1740261,1740389,1740390,1740391,1740392,1740393,1740394,1740395,1740396,1740521,1740522,1740523,1740524,1740525,1740526,1740527,1740528,1740529,1740530,1740531,1740532,1740533,1740534,1740535,1740536,1740537,1740538,1740539,1740540,1740541,1740542,1740543,1740544,1740545,1740546,1740547,1740548,1741983,1741989,1742103,1742104,1742105,1742106,1742107,1742108,1742109,1742110,1742111,1742112,1742113,1742114,1742115,1742116,1742117,1742118,1742119,1742120,1742121,1742122,1742123,1742124,1742125,1742126,1742127,1742128,1742129,1742130,1742233,1742327,1742342,1744180,1744186,1745696,1745872,1745887,1746032,1746036,1746051,1748895,1749137,1749747,1750357,1750372,1750374,1751758,1751759,1751760,1751761,1751762,1751763,1753092,1753242,1753243,1753244,1753245,1753246,1753247,1753248,1753249,1753250,1753251,1753252,1753253,1753254,1753255,1753256,1753257,1753258,1753259,1753260,1753261,1753262,1753263,1753264,1753265,1753266,1753267,1753268,1753269,1753270,1753271,1753306,1753308,1754653,1754803,1754804,1754805,1754806,1754807,1754808,1754809,1754810,1754811,1754812,1754813,1754814,1754815,1754816,1754817,1754818,1754819,1754820,1754821,1754822,1754823,1754824,1754825,1754826,1754827,1754828,1754829,1754830,1754831,1754832,1756227,1756237,1757652,1757802,1757803,1757804,1757805,1757806,1757807,1757808,1757809,1757810,1757811,1757812,1757813,1757814,1757815,1757816,1757817,1757818,1757819,1757820,1757821,1757822,1757823,1757824,1757825,1757826,1757827,1757828,1757829,1757830,1757831,1757950,1757958,1759447,1759663,1759664,1759665,1759666,1759667,1759668,1759669,1759670,1759671,1759672,1759673,1759674,1759675,1759676,1759677,1759678,1759679,1759680,1759681,1759682,1759683,1759684,1759685,1759686,1759687,1759688,1759689,1759690,1759691,1759692,1761105,1761112,1761382,1762968,1762969,1762970,1762971,1762972,1762973,1762974,1762975,1762976,1762977,1762978,1762979,1762980,1762981,1762982,1762986,1762987,1762988,1762989,1762990,1762991,1762992,1762993,1762994,1762995,1762996,1762997,1762998,1762999,1763000,1763132,1763146,1764715,1764956,1764957,1764958,1764959,1764960,1764961,1764962,1764963,1764964,1764965,1764966,1764967,1764968,1764969,1764970,1764971,1764972,1764973,1764974,1764975,1764976,1764977,1764978,1764979,1764980,1764981,1764982,1764983,1764984,1764985,1766447,1766601,1766884,1768392,1768393,1768394,1768395,1768396,1768397,1768398,1768399,1768400,1768401,1768402,1768403,1768404,1768405,1768406,1768407,1768408,1768409,1768412,1768413,1768414,1768415,1768416,1768417,1768418,1768419,1768420,1768421,1768422,1768524,1768650,1768784,1770439,1770641,1770642,1770643,1770644,1770645,1770646,1770647,1770648,1770649,1770650,1770651,1770652,1770653,1770654,1770655,1770656,1770657,1770658,1770659,1770660,1770661,1770662,1770663,1770664,1770665,1770666,1770667,1770668,1770669,1770670,1771059,1772329,1772848,1773846,1773847,1773848,1773849,1773850,1773851,1773852,1773853,1773854,1773855,1773856,1773857,1773858,1773859,1773860,1773861,1773862,1773863,1773864,1773865,1773866,1773867,1773868,1773869,1773870,1773871,1773872,1773873,1773874,1773875,1774686,1774774,1776747,1777076,1777077,1777085,1778769,1778787,1778789,1778790,1778995,1779036,1779175,1779189,1779249,1779250,1779422,1779423,1779749,1779750,1785181,1820619,1820627,1820711,1820717,1820826,1821258,1821304,1821392,1822408,1822420,1822470,1822478,1822489,1822940,1822948,1822955,1822958,1822995,1823007,1823008,1823065,1823071,1823083,1823085,1823092,1823449,1823468,1823537,1823553,1823573,1823581,1823590,1823610,1823651,1823669,1823685,1823698,1823714,1823999,1824036,1824046,1824086,1824118,1824158,1824166,1824174,1824180,1824205,1824231,1824239,1824247,1824329,1824455,1824469,1824483,1824531,1824545,1824577,1824593,1824603,1824647,1824659,1824679,1824689,1824701,1824719,1824733,1824751,1824767,1824797,1824883,1824893,1824907,1824921,1824937,1824951,1824963,1825003,1825015,1825041,1825053,1825061,1825081,1825109,1825122,1825173,1825207,1825267,1825289,1825321,1825347,1825359,1825387,1825407,1825433,1825445,1825461,1825473,1825491,1825503,1825519,1825537,1825549,1825590,1825673,1825685,1825701,1825719,1825737,1825751,1825787,1825811,1825837,1825851,1825865,1825885,1825895,1825927,1825973,1825979,1826063,1826087,1826117,1826145,1826159,1826189,1826211,1826235,1826249,1826267,1826286,1826303,1826325,1826343,1826359,1826377,1826395,1826475,1826491,1826509,1826529,1826547,1826563,1826601,1826627,1826656,1826677,1826699,1826713,1826747,1826763,1826779,1826797,1826833,1826859,1826891,1826921,1826937,1826969,1826993,1827019,1827035,1827055,1827077,1827095,1827119,1827139,1827157,1827191,1827215,1827232,1827259,1827275,1827295,1827313,1827341,1827365,1827399,1827417,1827439,1827455,1827485,1827503,1827519,1827539,1827567,1827595,1827619,1827649,1827667,1827699,1827725,1827753,1827771,1827797,1827828,1827853,1827876,1827897,1827919,1827929,1845790,1845796,1845865,1845913,1845945,1845951,1845999,1846051,1846057,1846129,1846135,1846181,1846231,1846237,1846285,1846339,1846345,1846405,1846443,1846449,1846531,1846547,1846552,1846618,1846683,1846684,1846923,1846953,1847011,1847021,1847067,1847117,1847135,1847159,1847182,1847183,1847184,1847185,1847208,1847260,1847438,1847490,1847560,1847640,1847692,1847746,1847820,1847845,1847867,1847869,1847871,1847872,1847896,1847975,1847983,1848039,1848101,1848109,1848149,1848259,1848265,1848271,1848277,1848413,1848548,1848550,1848572,1848605,1848619,1848662,1848720,1848772,1848784,1848810,1848840,1848912,1848962,1848980,1848988,1849160,1849216,1849286,1849292,1849332,1849371,1849373,1849375,1849398,1849422,1849428,1849486,1849562,1849614,1849639,1849663,1849665,1849688,1849711,1849714,1849722,1849782,1849844,1849888,1849912,1849933,1849944,1849962,1849970,1849980,1850027,1850033,1850333,1850365,1850401,1850461,1850515,1850549,1850583,1850601,1850655,1850707,1850727,1850739,1850745,1850937,1850961,1851027,1851035,1851121,1851173,1851229,1851311,1851365,1851421,1851473,1851537,1851594,1851599,1851601,1851602,1851622,1851643,1851666,1851698,1851716,1851733,1851743,1851745,1851747,1851749,1851752,1851754,1851756,1851759,1851761,1851763,1851765,1851767,1851769,1851770,1851817,1851946,1852204,1852328,1852352,1852406,1852472,1852494,1852502,1852508,1852712,1852774,1852784,1852790,1852874,1852928,1853002,1853104,1853116,1853212,1853274,1853338,1853354,1853438,1853496,1853508,1853520,1853528,1853834,1853880,1853914,1853941,1853942,1853943,1853966,1853989,1853991,1854007,1854023,1854037,1854053,1854057,1854065,1854073,1854074,1854099,1854124,1854125,1854126,1854127,1854128,1854129,1854130,1854131,1854166,1854204,1854223,1854235,1854397,1854435,1854489,1854501,1854513,1854519,1854605,1854657,1854663,1854721,1854791,1854797,1854853,1854873,1854953,1854982,1855019,1855081,1855087,1855139,1855185,1855209,1855251,1855257,1855285,1855291,1855383,1855389,1855592,1855636,1855662,1855688,1855689,1855711,1855733,1855735,1855751,1855781,1855804,1855812,1855836,1855860,1855861,1855862,1855863,1855864,1855901,1855940,1855944,1855948,1856018,1856095,1856122,1856163,1856216,1856304,1856354,1856406,1856418,1856486,1856542,1856550,1856602,1856650,1856710,1856718,1856780,1856800,1856840,1856912,1856956,1856970,1856976,1857080,1857236,1857242,1857248,1857386,1857432,1857466,1857516,1857566,1857572,1857578,1857658,1857670,1857818,1857900,1857914,1857919,1857920,1857931,1857971,1858004,1858008,1858010,1858033,1858058,1858086,1858112,1858143,1858174,1858176,1858178,1858204,1858229,1858233,1858259,1858282,1858304,1858326,1858354,1858384,1858414,1858450,1858502,1858510,1858574,1858622,1858642,1858648,1858654,1858896,1858904,1858992,1859088,1859150,1859172,1859196,1859219,1859220,1859222,1859224,1859225,1859226,1859227,1859263,1859299,1859303,1859308,1859310,1859311,1859374,1859437,1859438,1859439,1859448,1859474,1859492,1859493,1859514,1859539,1859544,1859545,1859560,1859648,1859696,1859754,1859785,1859814,1859816,1859818,1859843,1859867,1859927,1860861,1860869,1860991,1861011,1861051,1861103,1861119,1861207,1861255,1861313,1861375,1861427,1861439,1861487,1861533,1861539,1861545,1861551,1861557,1861563,1861569,1861575,1861581,1861587,1861593,1861599,1861605,1861611,1861617,1861623,1861629,1861635,1861641,1861647,1861653,1862491,1862507,1862625,1862633,1862687,1862731,1862747,1862779,1862855,1862907,1862961,1863019,1863071,1863125,1863171,1863179,1863187,1863195,1863203,1863211,1863219,1863227,1863235,1863243,1863251,1863259,1863267,1863275,1863283,1863291,1863299,1863307,1863315,1863323,1863331,1863745,1864141,1864159,1864269,1864293,1864335,1864387,1864407,1864495,1864543,1864601,1864659,1864711,1864727,1864801,1864819,1864831,1864841,1864851,1864861,1864871,1864881,1864891,1864899,1864911,1864919,1864931,1864941,1864951,1864961,1864971,1864981,1864991,1865001,1865011,1865021,1865721,1865804,1865815,1865921,1865975,1866019,1866039,1866059,1866151,1866203,1866257,1866311,1866363,1866417,1866463,1866475,1866485,1866499,1866511,1866523,1866535,1866547,1866559,1866571,1866583,1866595,1866607,1866619,1866631,1866643,1866655,1866667,1866679,1866691,1866703,1866995,1867441,1867461,1867525,1867571,1867625,1867669,1867691,1867727,1867805,1867857,1867911,1867963,1868015,1868069,1868115,1868129,1868143,1868157,1868171,1868185,1868199,1868217,1868229,1868245,1868257,1868273,1868287,1868301,1868315,1868329,1868343,1868357,1868371,1868385,1868399,1868755,1869101,1869129,1869217,1869275,1869319,1869341,1869367,1869453,1869489,1869563,1869615,1869667,1869721,1869767,1869783,1869799,1869815,1869831,1869847,1869863,1869879,1869891,1869905,1869923,1869937,1869955,1869971,1869991,1870007,1870023,1870039,1870055,1870071,1870087,1870351,1870705,1870787,1870845,1870889,1870945,1870987,1871013,1871053,1871125,1871155,1871229,1871281,1871333,1871427,1871445,1871451,1871469,1871489,1871507,1871525,1871545,1871567,1871583,1871602,1871619,1871639,1871657,1871679,1871691,1871709,1871727,1871751,1871763,1871784,1871950,1872123,1872439,1872469,1872517,1872561,1872617,1872659,1872687,1872747,1872821,1872895,1872947,1872999,1873053,1873099,1873119,1873139,1873159,1873183,1873203,1873221,1873245,1873263,1873285,1873303,1873325,1873345,1873365,1873385,1873405,1873425,1873445,1873465,1873485,1873505,1873755,1874115,1874147,1874191,1874235,1874291,1874344,1874399,1874467,1874497,1874571,1874621,1874673,1874727,1874773,1874795,1874817,1874841,1874863,1874883,1874905,1874933,1874953,1874977,1874997,1875021,1875043,1875065,1875087,1875109,1875131,1875154,1875175,1875205,1875439,1875527,1875797,1875861,1875873,1875961,1875971,1876035,1876061,1876087,1876153,1876251,1876303,1876355,1876407,1876453,1876477,1876501,1876529,1876553,1876577,1876601,1876631,1876653,1876679,1876701,1876727,1876751,1876779,1876797,1876821,1876845,1876875,1876905,1876923,1877147,1877229,1877487,1877551,1877563,1877623,1877661,1877697,1877731,1877779,1877845,1877873,1877947,1877999,1878051,1878103,1878149,1878175,1878201,1878241,1878267,1878293,1878319,1878341,1878365,1878393,1878417,1878445,1878471,1878501,1878521,1878547,1878573,1878605,1878637,1878657,1878883,1878947,1879209,1879257,1879301,1879357,1879401,1879436,1879488,1879569,1879643,1879695,1879747,1879799,1879845,1879873,1879901,1879933,1879961,1879989,1880017,1880051,1880077,1880107,1880133,1880163,1880187,1880199,1880231,1880273,1880301,1880335,1880369,1880391,1880593,1880663,1880877,1880955,1880999,1881055,1881097,1881135,1881185,1881245,1881251,1881281,1881401,1881453,1881505,1881551,1881581,1881611,1881645,1881675,1881705,1881735,1881771,1881799,1881831,1881859,1881891,1881917,1881931,1881965,1882009,1882028,1882075,1882111,1882135,1882327,1882391,1882589,1882667,1882711,1882767,1882809,1882849,1882899,1882959,1882989,1883063,1883115,1883167,1883219,1883265,1883297,1883329,1883365,1883397,1883429,1883461,1883499,1883529,1883563,1883593,1883627,1883655,1883671,1883707,1883753,1883785,1883823,1883861,1883887,1884083,1884127,1884381,1884425,1884481,1884523,1884565,1884617,1884675,1884705,1884779,1884831,1884883,1884935,1884981,1885015,1885049,1885099,1885133,1885167,1885201,1885231,1885263,1885323,1885359,1885395,1885433,1885461,1885493,1885527,1885567,1885607,1885635,1885821,1885859,1886025,1886107,1886147,1886203,1886245,1886289,1886343,1886399,1886429,1886503,1886555,1886607,1886659,1886705,1886741,1886777,1886829,1886867,1886931,1886963,1886993,1887033,1887067,1887105,1887141,1887181,1887211,1887245,1887291,1887323,1887389,1887565,1887599,1887749,1887831,1887873,1887927,1887971,1888017,1888071,1888123,1888155,1888185,1888277,1888327,1888379,1888391,1888431,1888499,1888553,1888591,1888645,1888689,1888725,1888765,1888803,1888843,1888881,1888923,1888955,1888991,1889029,1889073,1889117,1889167,1889333,1889425,1889509,1889553,1889595,1889647,1889691,1889739,1889795,1889847,1889879,1889949,1890001,1890051,1890105,1890153,1890193,1890265,1890319,1890359,1890421,1890459,1890501,1890539,1890579,1890623,1890667,1890677,1890711,1890749,1890799,1890835,1890879,1890929,1891079,1891257,1891273,1891315,1891367,1891413,1891461,1891517,1891569,1891603,1891671,1891725,1891773,1891829,1891849,1891921,1891995,1892051,1892093,1892157,1892163,1892241,1892247,1892323,1892329,1892415,1892423,1892463,1892499,1892555,1892631,1892639,1892691,1892819,1892887,1892985,1893003,1893045,1893097,1893145,1893193,1893249,1893327,1893395,1893447,1893497,1893551,1893561,1893613,1893657,1893733,1893791,1893835,1893901,1893943,1893989,1894031,1894075,1894123,1894171,1894181,1894217,1894259,1894303,1894353,1894403,1894455,1894571,1894642,1894733,1894753,1894797,1894803,1894899,1894909,1895001,1895079,1895147,1895199,1895249,1895303,1895329,1895401,1895445,1895507,1895551,1895597,1895665,1895709,1895757,1895805,1895847,1895899,1895949,1895989,1896033,1896079,1896131,1896183,1896237,1896303,1896367,1896415,1896503,1896525,1896571,1896621,1896671,1896719,1896771,1896847,1896913,1896965,1897015,1897067,1897073,1897103,1897173,1897277,1897323,1897371,1897377,1897487,1897537,1897587,1897612,1897685,1897737,1897779,1897827,1897874,1897929,1897981,1898037,1898087,1898143,1898191,1898281,1898305,1898353,1898405,1898457,1898507,1898559,1898635,1898697,1898749,1898799,1898849,1898879,1898951,1898999,1899065,1899113,1899163,1899235,1899283,1899335,1899387,1899433,1899443,1899537,1899557,1899595,1899645,1899693,1899755,1899803,1899887,1899919,1899979,1900061,1900087,1900093,1900189,1900241,1900293,1900345,1900423,1900487,1900541,1900593,1900645,1900677,1900751,1900801,1900869,1900942,1901039,1901089,1901143,1901197,1901249,1901303,1901363,1901407,1901459,1901509,1901567,1901623,1901683,1901711,1901773,1901787,1901869,1901897,1901949,1902003,1902057,1902111,1902165,1902243,1902305,1902359,1902413,1902465,1902499,1902573,1902687,1902739,1902793,1902869,1902921,1902981,1903033,1903087,1903093,1903193,1903217,1903259,1903313,1903363,1903423,1903483,1903563,1903573,1903637,1903691,1903753,1903763,1903815,1903913,1903921,1903975,1904099,1904159,1904167,1904221,1904275,1904327,1904361,1904435,1904545,1904597,1904651,1904725,1904779,1904871,1904891,1904943,1904999,1905061,1905107,1905163,1905213,1905323,1905385,1905417,1905483,1905491,1905543,1905605,1905617,1905669,1905765,1905775,1905829,1905951,1906009,1906055,1906117,1906169,1906203,1906277,1906287,1906393,1906445,1906499,1906540,1906627,1906633,1906737,1906785,1906799,1906893,1906921,1906965,1907059,1907117,1907173,1907235,1907269,1907335,1907347,1907427,1907459,1907473,1907525,1907619,1907631,1907685,1907805,1907861,1907907,1907969,1908021,1908055,1908129,1908141,1908243,1908295,1908349,1908421,1908475,1908563,1908587,1908639,1908695,1908761,1908803,1908815,1908907,1908965,1909019,1909081,1909117,1909183,1909205,1909275,1909309,1909363,1909377,1909469,1909483,1909537,1909655,1909709,1909755,1909817,1909869,1909905,1909977,1909991,1910031,1910135,1910189,1910201,1910273,1910327,1910413,1910453,1910495,1910547,1910611,1910661,1910687,1910759,1910815,1910869,1910931,1910969,1911053,1911119,1911155,1911209,1911225,1911315,1911331,1911385,1911501,1911555,1911601,1911667,1911745,1911817,1911865,1911965,1912019,1912033,1912103,1912157,1912241,1912269,1912321,1912377,1912443,1912493,1912501,1912639,1912647,1912753,1912793,1912859,1912885,1912949,1912987,1913041,1913059,1913147,1913165,1913219,1913377,1913423,1913485,1913537,1913575,1913645,1913693,1913789,1913843,1913859,1913927,1913981,1914065,1914105,1914151,1914252,1914303,1914321,1914407,1914461,1914513,1914575,1914617,1914683,1914711,1914771,1914811,1914865,1914885,1914971,1915035,1915143,1915197,1915243,1915305,1915359,1915397,1915509,1915601,1915655,1915673,1915739,1915795,1915875,1915915,1916002,1916067,1916113,1916133,1916217,1916271,1916323,1916383,1916427,1916493,1916523,1916581,1916623,1916689,1916737,1916797,1916851,1916989,1917005,1917068,1917113,1917167,1917232,1917315,1917405,1917411,1917479,1917487,1917598,1917677,1917700,1917805,1917869,1917915,1917937,1918019,1918073,1918125,1918183,1918229,1918295,1918327,1918383,1918471,1918495,1918577,1918601,1918655,1918795,1918841,1918903,1918957,1918999,1919065,1919113,1919201,1919255,1919279,1919339,1919395,1919471,1919511,1919599,1919663,1919709,1919733,1919813,1919825,1919919,1919977,1920023,1920089,1920095,1920129,1920265,1920291,1920371,1920397,1920451,1920457,1920591,1920693,1920699,1920764,1920797,1920861,1920909,1920995,1921049,1921075,1921133,1921189,1921263,1921305,1921391,1921455,1921501,1921527,1921607,1921659,1921711,1921782,1921872,1921909,1921963,1921969,1922057,1922085,1922163,1922191,1922245,1922373,1922419,1922481,1922535,1922579,1922643,1922691,1922773,1922827,1922855,1922913,1922969,1923041,1923083,1923167,1923231,1923277,1923305,1923383,1923437,1923489,1923545,1923593,1923655,1923693,1923747,1923835,1923865,1923941,1923971,1924025,1924147,1924193,1924255,1924309,1924355,1924405,1924427,1924499,1924585,1924629,1924685,1924743,1924811,1924855,1924939,1925001,1925049,1925079,1925155,1925208,1925259,1925317,1925363,1925423,1925463,1925517,1925607,1925639,1925713,1925747,1925801,1925917,1925963,1926025,1926079,1926125,1926187,1926235,1926313,1926367,1926399,1926453,1926509,1926579,1926624,1926703,1926769,1926813,1926847,1926919,1926975,1927025,1927081,1927129,1927189,1927231,1927283,1927371,1927405,1927457,1927485,1927561,1927599,1927685,1927759,1927793,1927847,1927893,1927953,1928001,1928077,1928131,1928167,1928217,1928327,1928341,1928443,1928517,1928563,1928597,1928669,1928723,1928775,1928825,1928881,1928931,1928951,1928995,1929051,1929137,1929213,1929243,1929279,1929347,1929437,1929483,1929545,1929555,1929609,1929657,1929755,1929830,1929883,1929919,1929969,1930079,1930095,1930195,1930269,1930315,1930351,1930421,1930475,1930527,1930577,1930633,1930683,1930705,1930751,1930807,1930891,1930965,1930999,1931074,1931113,1931191,1931263,1931299,1931353,1931403,1931459,1931509,1931581,1931635,1931675,1931725,1931827,1931845,1931943,1932015,1932063,1932101,1932169,1932223,1932275,1932325,1932381,1932431,1932455,1932503,1932559,1932641,1932715,1932749,1932825,1932863,1932937,1933009,1933045,1933099,1933149,1933205,1933255,1933327,1933381,1933423,1933473,1933571,1933589,1933673,1933743,1933763,1933845,1933911,1933965,1934017,1934067,1934125,1934173,1934199,1934249,1934305,1934385,1934457,1934463,1934499,1934575,1934613,1934685,1934787,1934841,1934891,1934947,1934997,1935067,1935073,1935165,1935215,1935309,1935331,1935423,1935493,1935543,1935585,1935649,1935703,1935755,1935805,1935863,1935911,1935939,1935991,1936047,1936125,1936195,1936233,1936309,1936347,1936417,1936519,1936573,1936623,1936679,1936729,1936797,1936851,1936897,1936947,1937037,1937061,1937151,1937219,1937271,1937315,1937377,1937431,1937483,1937533,1937591,1937639,1937669,1937721,1937777,1937853,1937921,1937959,1938035,1938073,1938141,1938207,1938249,1938303,1938353,1938409,1938459,1938525,1938579,1938659,1938677,1938775,1938789,1938877,1938943,1938995,1939041,1939101,1939155,1939185,1939257,1939263,1939323,1939369,1939401,1939455,1939511,1939641,1939683,1939739,1939797,1939809,1939895,1939937,1940027,1940077,1940133,1940183,1940247,1940301,1940381,1940401,1940497,1940513,1940597,1940663,1940715,1940763,1940821,1940875,1940929,1940977,1941058,1941111,1941119,1941195,1941229,1941353,1941397,1941453,1941513,1941577,1941641,1941685,1941739,1941789,1941845,1941895,1941957,1942011,1942091,1942113,1942207,1942225,1942305,1942371,1942423,1942473,1942529,1942583,1942637,1942685,1942745,1942793,1942836,1942904,1942939,1943059,1943107,1943183,1943221,1943281,1943345,1943389,1943443,1943493,1943549,1943601,1943659,1943713,1943793,1943817,1943909,1943929,1944005,1944069,1944123,1944173,1944229,1944283,1944374,1944435,1944481,1944519,1944573,1944629,1944641,1944761,1944767,1944881,1944919,1944977,1944983,1945047,1945091,1945145,1945197,1945251,1945305,1945361,1945415,1945495,1945521,1945611,1945633,1945707,1945769,1945823,1945875,1945929,1945983,1946073,1946153,1946213,1946267,1946323,1946337,1946366,1946460,1946573,1946611,1946669,1946731,1946741,1946830,1946839,1946891,1946945,1946999,1947053,1947107,1947185,1947213,1947302,1947325,1947395,1947457,1947511,1947563,1947617,1947671,1947759,1947819,1947865,1947907,1947961,1948017,1948033,1948143,1948191,1948263,1948301,1948359,1948419,1948467,1948521,1948577,1948627,1948683,1948739,1948793,1948869,1948901,1948987,1949013,1949131,1949185,1949212,1949293,1949347,1949431,1949493,1949539,1949583,1949637,1949693,1949711,1949817,1949865,1949935,1949975,1950031,1950091,1950139,1950193,1950245,1950299,1950353,1950407,1950465,1950537,1950575,1950675,1950689,1950799,1950853,1950907,1950961,1951015,1951097,1951159,1951205,1951251,1951307,1951361,1951370,1951378,1951380,1951382,1951430,1951478,1951480,1951482,1951503,1951524,1951525,1951526,1951527,1951559,1951591,1951592,1951593,1951612,1951631,1951632,1951633,1951658,1951683,1951684,1951712,1951740,1951742,1951744,1951765,1951787,1951789,1951813,1951837,1951838,1951839,1951863,1951890,1951894,1951916,1951938,1951942,1951948,1951951,1951971,1951994,1951998,1951999,1952021,1952046,1952070,1952091,1952096,1952131,1952162,1952163,1952165,1952180,1952194,1952195,1952196,1952235,1952274,1952275,1952276,1952289,1952302,1952303,1952304,1952333,1952362,1952363,1952364,1952391,1952418,1952419,1952420,1952445,1952470,1952471,1952472,1952497,1952522,1952523,1952524,1952549,1952574,1952575,1952576,1952601,1952626,1952627,1952665,1952703,1952704,1952705,1952734,1952763,1952764,1952765,1952786,1952807,1952808,1952830,1952852,1952853,1952854,1952879,1952905,1952907,1952908,1952933,1952958,1952959,1952968,1952978,1952980,1953025,1953071,1953073,1953093,1953113,1953114,1953115,1953145,1953175,1953176,1953195,1953214,1953215,1953216,1953239,1953262,1953263,1953264,1953291,1953318,1953320,1953322,1953342,1953363,1953365,1953366,1953389,1953412,1953413,1953414,1953437,1953463,1953467,1953488,1953509,1953513,1953519,1953522,1953523,1953542,1953564,1953568,1953569,1953590,1953614,1953637,1953657,1953662,1953695,1953724,1953726,1953741,1953755,1953756,1953757,1953758,1953794,1953830,1953831,1953832,1953845,1953858,1953859,1953860,1953887,1953914,1953915,1953916,1953942,1953968,1953969,1953970,1953994,1954018,1954019,1954020,1954044,1954068,1954069,1954070,1954071,1954095,1954119,1954120,1954121,1954145,1954169,1954170,1954171,1954207,1954243,1954244,1954245,1954273,1954301,1954302,1954303,1954323,1954343,1954344,1954366,1954388,1954389,1954390,1954414,1954439,1954441,1954442,1954443,1954467,1954491,1954492,1954501,1954511,1954513,1954516,1954558,1954599,1954601,1954620,1954639,1954640,1954641,1954642,1954670,1954698,1954699,1954700,1954719,1954738,1954739,1954740,1954762,1954784,1954785,1954810,1954835,1954836,1954838,1954840,1954860,1954881,1954883,1954905,1954927,1954928,1954929,1954951,1954976,1954980,1955000,1955023,1955029,1955032,1955033,1955051,1955072,1955076,1955077,1955097,1955120,1955142,1955161,1955192,1955223,1955224,1955226,1955241,1955255,1955256,1955257,1955258,1955292,1955326,1955327,1955328,1955341,1955354,1955355,1955356,1955381,1955406,1955407,1955408,1955409,1955434,1955459,1955460,1955461,1955484,1955507,1955508,1955509,1955532,1955555,1955556,1955557,1955558,1955581,1955604,1955605,1955606,1955629,1955652,1955653,1955654,1955688,1955722,1955723,1955724,1955751,1955778,1955779,1955780,1955799,1955818,1955819,1955841,1955863,1955864,1955865,1955888,1955912,1955914,1955915,1955916,1955939,1955962,1955963,1955972,1955982,1955984,1955987,1956026,1956064,1956066,1956084,1956102,1956103,1956104,1956105,1956131,1956157,1956158,1956177,1956196,1956197,1956198,1956219,1956240,1956241,1956265,1956289,1956290,1956292,1956294,1956313,1956333,1956335,1956336,1956357,1956378,1956379,1956380,1956401,1956425,1956429,1956448,1956467,1956471,1956477,1956480,1956481,1956498,1956518,1956522,1956523,1956542,1956564,1956585,1956603,1956632,1956661,1956662,1956664,1956679,1956693,1956694,1956695,1956696,1956728,1956760,1956761,1956762,1956775,1956788,1956789,1956790,1956813,1956836,1956837,1956838,1956839,1956863,1956887,1956888,1956910,1956932,1956933,1956934,1956956,1956978,1956979,1956980,1956981,1956982,1957004,1957026,1957027,1957028,1957050,1957072,1957073,1957074,1957107,1957140,1957141,1957142,1957167,1957192,1957193,1957194,1957213,1957232,1957233,1957254,1957275,1957276,1957277,1957299,1957322,1957324,1957325,1957326,1957348,1957370,1957371,1957380,1957390,1957392,1957395,1957431,1957466,1957468,1957486,1957504,1957505,1957506,1957530,1957554,1957555,1957574,1957593,1957594,1957595,1957596,1957616,1957636,1957637,1957659,1957681,1957682,1957684,1957686,1957705,1957725,1957727,1957728,1957748,1957768,1957769,1957789,1957812,1957816,1957834,1957852,1957856,1957862,1957865,1957866,1957882,1957901,1957905,1957906,1957924,1957945,1957965,1957982,1958009,1958036,1958038,1958053,1958067,1958068,1958069,1958070,1958100,1958130,1958131,1958132,1958145,1958158,1958159,1958160,1958181,1958202,1958203,1958204,1958227,1958250,1958251,1958272,1958293,1958294,1958295,1958316,1958337,1958338,1958339,1958340,1958341,1958362,1958383,1958384,1958385,1958406,1958427,1958428,1958436,1958468,1958493,1958516,1958539,1958540,1958541,1958560,1958579,1958580,1958600,1958620,1958621,1958642,1958663,1958665,1958667,1958668,1958669,1958690,1958711,1958712,1958721,1958731,1958735,1958768,1958799,1958801,1958803,1958821,1958839,1958840,1958841,1958863,1958885,1958886,1958905,1958924,1958925,1958926,1958927,1958928,1958947,1958966,1958986,1959006,1959007,1959008,1959010,1959012,1959031,1959051,1959053,1959054,1959073,1959092,1959093,1959112,1959131,1959135,1959139,1959156,1959173,1959177,1959183,1959186,1959187,1959202,1959220,1959224,1959225,1959242,1959262,1959281,1959297,1959322,1959347,1959349,1959364,1959378,1959379,1959380,1959403,1959431,1959437,1959438,1959439,1959452,1959465,1959466,1959467,1959487,1959507,1959508,1959509,1959530,1959551,1959552,1959572,1959592,1959593,1959594,1959614,1959634,1959635,1959636,1959637,1959638,1959658,1959678,1959679,1959680,1959700,1959720,1959721,1959729,1959737,1959761,1959785,1959806,1959827,1959828,1959829,1959848,1959867,1959868,1959887,1959906,1959907,1959927,1959947,1959949,1959951,1959952,1959969,1959989,1959993,1960002,1960012,1960016,1960046,1960074,1960076,1960078,1960079,1960097,1960115,1960116,1960136,1960156,1960157,1960176,1960195,1960196,1960197,1960198,1960199,1960217,1960235,1960254,1960273,1960275,1960277,1960295,1960314,1960316,1960317,1960335,1960353,1960354,1960372,1960390,1960394,1960398,1960414,1960430,1960434,1960440,1960443,1960444,1960458,1960475,1960479,1960495,1960514,1960532,1960547,1960570,1960593,1960595,1960610,1960624,1960625,1960626,1960647,1960673,1960679,1960680,1960681,1960694,1960707,1960708,1960709,1960728,1960747,1960748,1960767,1960786,1960787,1960803,1960822,1960826,1960827,1960846,1960865,1960866,1960867,1960868,1960869,1960870,1960889,1960908,1960909,1960913,1960932,1960948,1960949,1960957,1960965,1960987,1961009,1961010,1961030,1961050,1961051,1961052,1961071,1961090,1961091,1961109,1961127,1961128,1961129,1961148,1961167,1961169,1961171,1961172,1961188,1961207,1961219,1961229,1961232,1961260,1961287,1961289,1961291,1961292,1961309,1961326,1961327,1961345,1961363,1961364,1961382,1961400,1961401,1961402,1961403,1961404,1961410,1961427,1961439,1961457,1961475,1961476,1961478,1961480,1961497,1961515,1961517,1961534,1961551,1961552,1961570,1961588,1961592,1961596,1961611,1961626,1961630,1961635,1961637,1961638,1961652,1961669,1961673,1961674,1961689,1961707,1961724,1961738,1961759,1961780,1961781,1961783,1961798,1961812,1961813,1961831,1961854,1961860,1961861,1961874,1961887,1961888,1961889,1961890,1961908,1961926,1961927,1961945,1961963,1961964,1961965,1961980,1961998,1962002,1962003,1962021,1962039,1962040,1962041,1962042,1962043,1962044,1962062,1962080,1962081,1962085,1962103,1962118,1962125,1962132,1962133,1962154,1962175,1962176,1962195,1962214,1962215,1962233,1962251,1962252,1962265,1962283,1962289,1962290,1962308,1962326,1962327,1962329,1962331,1962332,1962346,1962363,1962375,1962384,1962386,1962413,1962439,1962440,1962442,1962444,1962460,1962476,1962477,1962478,1962495,1962512,1962513,1962530,1962547,1962548,1962549,1962550,1962551,1962557,1962573,1962584,1962601,1962618,1962619,1962621,1962623,1962639,1962656,1962658,1962674,1962690,1962691,1962708,1962725,1962726,1962730,1962734,1962748,1962765,1962769,1962771,1962773,1962786,1962799,1962803,1962807,1962821,1962835,1962851,1962867,1962887,1962907,1962908,1962909,1962911,1962925,1962938,1962939,1962940,1962956,1962977,1962983,1962984,1962997,1963010,1963011,1963012,1963013,1963030,1963047,1963048,1963065,1963082,1963083,1963084,1963098,1963115,1963119,1963120,1963137,1963154,1963155,1963156,1963157,1963158,1963175,1963192,1963193,1963196,1963213,1963228,1963234,1963240,1963260,1963280,1963281,1963299,1963317,1963334,1963351,1963352,1963364,1963381,1963387,1963388,1963405,1963422,1963424,1963426,1963427,1963440,1963456,1963468,1963477,1963479,1963504,1963528,1963530,1963532,1963547,1963562,1963563,1963564,1963580,1963596,1963612,1963628,1963629,1963630,1963631,1963636,1963651,1963662,1963678,1963694,1963695,1963697,1963699,1963714,1963730,1963746,1963761,1963762,1963778,1963794,1963798,1963802,1963815,1963831,1963835,1963836,1963849,1963862,1963866,1963870,1963883,1963896,1963911,1963926,1963944,1963962,1963963,1963965,1963979,1963992,1963993,1964007,1964021,1964027,1964033,1964046,1964059,1964060,1964061,1964062,1964078,1964094,1964095,1964111,1964127,1964128,1964129,1964142,1964158,1964162,1964178,1964194,1964195,1964196,1964197,1964198,1964214,1964230,1964231,1964234,1964250,1964264,1964269,1964274,1964293,1964312,1964313,1964330,1964347,1964363,1964379,1964380,1964391,1964407,1964413,1964414,1964430,1964446,1964448,1964450,1964451,1964463,1964478,1964490,1964499,1964501,1964524,1964546,1964548,1964550,1964564,1964578,1964579,1964580,1964595,1964610,1964625,1964640,1964641,1964642,1964643,1964647,1964661,1964672,1964673,1964688,1964703,1964704,1964706,1964708,1964722,1964737,1964752,1964766,1964767,1964782,1964797,1964798,1964802,1964806,1964818,1964833,1964837,1964838,1964850,1964862,1964866,1964870,1964882,1964894,1964908,1964922,1964938,1964954,1964955,1964957,1964971,1964984,1964985,1964997,1965009,1965015,1965021,1965034,1965047,1965048,1965049,1965050,1965065,1965080,1965081,1965096,1965111,1965112,1965124,1965139,1965143,1965158,1965173,1965174,1965175,1965176,1965177,1965192,1965207,1965208,1965211,1965226,1965239,1965243,1965247,1965265,1965283,1965284,1965300,1965316,1965331,1965346,1965347,1965348,1965358,1965373,1965379,1965380,1965395,1965410,1965412,1965414,1965415,1965426,1965440,1965452,1965461,1965462,1965464,1965484,1965503,1965505,1965507,1965520,1965533,1965534,1965535,1965549,1965563,1965564,1965578,1965592,1965593,1965594,1965595,1965599,1965612,1965622,1965623,1965637,1965651,1965652,1965654,1965656,1965669,1965683,1965697,1965710,1965711,1965725,1965739,1965740,1965744,1965748,1965759,1965773,1965777,1965778,1965789,1965800,1965804,1965808,1965819,1965830,1965843,1965856,1965871,1965886,1965887,1965889,1965902,1965914,1965915,1965926,1965937,1965942,1965947,1965960,1965973,1965974,1965975,1965976,1965990,1966004,1966005,1966006,1966020,1966034,1966035,1966046,1966060,1966064,1966078,1966092,1966093,1966094,1966095,1966096,1966110,1966124,1966125,1966128,1966142,1966154,1966158,1966162,1966178,1966194,1966195,1966210,1966225,1966239,1966253,1966254,1966255,1966264,1966278,1966284,1966298,1966312,1966314,1966316,1966317,1966327,1966340,1966352,1966361,1966362,1966364,1966382,1966399,1966401,1966414,1966426,1966427,1966428,1966441,1966454,1966455,1966468,1966481,1966482,1966483,1966484,1966488,1966500,1966509,1966510,1966523,1966536,1966537,1966539,1966541,1966553,1966566,1966579,1966591,1966592,1966605,1966618,1966619,1966623,1966627,1966637,1966650,1966654,1966655,1966665,1966675,1966679,1966683,1966693,1966703,1966715,1966727,1966740,1966753,1966754,1966756,1966769,1966781,1966782,1966792,1966802,1966806,1966810,1966823,1966836,1966837,1966838,1966839,1966852,1966865,1966866,1966867,1966880,1966893,1966894,1966904,1966917,1966921,1966934,1966947,1966948,1966949,1966950,1966951,1966964,1966977,1966980,1966983,1966994,1967005,1967009,1967013,1967027,1967041,1967055,1967069,1967082,1967095,1967096,1967097,1967105,1967118,1967124,1967137,1967150,1967151,1967153,1967155,1967156,1967165,1967177,1967189,1967198,1967200,1967216,1967232,1967244,1967255,1967256,1967257,1967269,1967281,1967282,1967294,1967306,1967307,1967308,1967309,1967313,1967324,1967332,1967333,1967345,1967357,1967358,1967360,1967362,1967373,1967385,1967397,1967408,1967409,1967421,1967433,1967434,1967438,1967442,1967451,1967463,1967467,1967468,1967477,1967486,1967490,1967494,1967503,1967512,1967523,1967534,1967546,1967558,1967560,1967572,1967583,1967584,1967593,1967602,1967606,1967610,1967622,1967634,1967635,1967636,1967648,1967660,1967661,1967662,1967674,1967686,1967695,1967704,1967708,1967723,1967735,1967736,1967737,1967738,1967739,1967751,1967763,1967764,1967767,1967779,1967789,1967793,1967797,1967809,1967821,1967822,1967835,1967848,1967860,1967872,1967873,1967874,1967881,1967893,1967899,1967911,1967923,1967924,1967926,1967928,1967936,1967947,1967959,1967968,1967969,1967971,1967985,1967999,1968001,1968011,1968021,1968022,1968025,1968036,1968045,1968056,1968067,1968068,1968069,1968070,1968074,1968084,1968091,1968102,1968113,1968114,1968116,1968118,1968128,1968139,1968150,1968160,1968161,1968172,1968183,1968184,1968188,1968192,1968200,1968211,1968215,1968223,1968231,1968232,1968236,1968240,1968248,1968265,1968275,1968286,1968297,1968298,1968300,1968311,1968321,1968322,1968330,1968338,1968342,1968346,1968357,1968368,1968369,1968370,1968381,1968392,1968393,1968394,1968405,1968416,1968424,1968432,1968436,1968450,1968461,1968462,1968463,1968464,1968465,1968476,1968487,1968488,1968491,1968502,1968511,1968515,1968519,1968529,1968539,1968551,1968563,1968564,1968575,1968586,1968587,1968593,1968599,1968605,1968621,1968632,1968633,1968635,1968637,1968638,1968645,1968655,1968667,1968676,1968677,1968679,1968692,1968704,1968713,1968722,1968723,1968726,1968736,1968744,1968754,1968764,1968765,1968766,1968767,1968770,1968779,1968786,1968796,1968806,1968808,1968810,1968819,1968829,1968839,1968848,1968849,1968850,1968886,1969230,1969256,1969284,1969291,1969316,1969368,1969374,1969396,1969418,1969426,1969462,1969468,1969496,1969514,1969528,1969534,1969540,1969546,1969552,1969558,1969564,1969570,1969576,1969582,1969588,1969594,1969600,1969606,1969612,1969618,1969624,1969630,1969636,1969924,1969946,1969974,1969998,1970018,1970024,1970060,1970068,1970090,1970112,1970134,1970156,1970178,1970194,1970218,1970226,1970234,1970242,1970250,1970258,1970266,1970274,1970282,1970290,1970300,1970308,1970315,1970324,1970332,1970340,1970348,1970356,1970594,1970616,1970638,1970666,1970690,1970710,1970718,1970752,1970762,1970790,1970806,1970830,1970850,1970872,1970890,1970914,1970926,1970936,1970946,1970956,1970966,1970976,1970984,1970993,1971004,1971012,1971022,1971032,1971042,1971052,1971062,1971072,1971082,1971092,1971298,1971324,1971346,1971370,1971396,1971414,1971424,1971456,1971468,1971500,1971512,1971536,1971556,1971578,1971598,1971624,1971636,1971648,1971660,1971672,1971684,1971696,1971708,1971720,1971732,1971744,1971756,1971768,1971780,1971792,1971804,1971816,1971828,1971886,1972024,1972050,1972074,1972100,1972118,1972130,1972160,1972174,1972196,1972218,1972242,1972262,1972284,1972306,1972331,1972346,1972360,1972374,1972388,1972402,1972416,1972430,1972444,1972456,1972468,1972482,1972502,1972516,1972530,1972544,1972555,1972572,1972622,1972736,1972762,1972786,1972811,1972830,1972844,1972852,1972880,1972896,1972924,1972940,1972976,1972997,1973012,1973026,1973057,1973068,1973084,1973100,1973118,1973134,1973150,1973166,1973182,1973198,1973214,1973230,1973246,1973264,1973278,1973296,1973312,1973328,1973378,1973460,1973486,1973510,1973536,1973554,1973570,1973596,1973614,1973636,1973658,1973682,1973702,1973723,1973731,1973752,1973778,1973796,1973814,1973832,1973850,1973868,1973888,1973906,1973924,1973942,1973960,1973980,1973990,1974018,1974035,1974054,1974072,1974090,1974122,1974192,1974208,1974224,1974248,1974272,1974292,1974310,1974334,1974368,1974383,1974414,1974436,1974458,1974480,1974506,1974526,1974546,1974566,1974576,1974598,1974618,1974646,1974658,1974684,1974700,1974718,1974738,1974758,1974780,1974800,1974820,1974840,1974860,1974890,1974932,1974958,1974982,1975006,1975026,1975046,1975068,1975092,1975112,1975136,1975156,1975178,1975200,1975224,1975250,1975272,1975294,1975316,1975338,1975360,1975382,1975404,1975426,1975446,1975472,1975484,1975506,1975528,1975552,1975574,1975596,1975618,1975656,1975662,1975706,1975734,1975760,1975786,1975810,1975830,1975856,1975896,1975922,1975943,1975950,1975974,1976016,1976044,1976068,1976092,1976116,1976130,1976166,1976190,1976212,1976238,1976259,1976288,1976302,1976326,1976349,1976376,1976400,1976438,1976446,1976481,1976492,1976538,1976568,1976596,1976624,1976652,1976674,1976702,1976726,1976750,1976778,1976802,1976828,1976854,1976882,1976912,1976938,1976982,1976990,1977036,1977050,1977086,1977094,1977138,1977156,1977184,1977210,1977254,1977280,1977306,1977332,1977358,1977382,1977428,1977460,1977490,1977520,1977546,1977572,1977600,1977630,1977656,1977686,1977712,1977740,1977768,1977798,1977828,1977858,1977886,1977914,1977942,1977970,1977998,1978026,1978054,1978080,1978112,1978124,1978152,1978180,1978210,1978238,1978266,1978294,1978322,1978348,1978394,1978428,1978460,1978492,1978520,1978548,1978578,1978610,1978638,1978670,1978698,1978728,1978758,1978792,1978824,1978856,1978884,1978914,1978952,1978982,1979004,1979034,1979064,1979104,1979132,1979162,1979192,1979224,1979254,1979284,1979314,1979344,1979372,1979418,1979454,1979488,1979522,1979552,1979582,1979590,1979648,1979656,1979712,1979742,1979774,1979806,1979840,1979874,1979908,1979940,1979972,1980004,1980038,1980068,1980100,1980132,1980176,1980198,1980238,1980252,1980304,1980336,1980368,1980400,1980432,1980462,1980508,1980546,1980582,1980618,1980650,1980684,1980692,1980754,1980762,1980820,1980852,1980888,1980920,1980960,1980992,1981032,1981062,1981098,1981140,1981174,1981200,1981250,1981268,1981312,1981344,1981386,1981414,1981450,1981484,1981544,1981568,1981598,1981656,1981696,1981734,1981772,1981806,1981842,1981852,1981916,1981926,1981986,1982020,1982058,1982092,1982134,1982168,1982210,1982242,1982280,1982324,1982355,1982384,1982422,1982458,1982504,1982539,1982574,1982610,1982648,1982686,1982722,1982758,1982794,1982828,1982874,1982916,1982956,1982996,1983054,1983068,1983120,1983148,1983210,1983246,1983284,1983296,1983370,1983406,1983450,1983484,1983524,1983570,1983608,1983634,1983678,1983712,1983761,1983796,1983834,1983870,1983910,1983954,1984018,1984056,1984092,1984138,1984182,1984224,1984266,1984304,1984344,1984358,1984426,1984440,1984504,1984542,1984584,1984622,1984668,1984700,1984742,1984785,1984822,1984878,1984918,1984946,1984988,1985030,1985080,1985118,1985156,1985195,1985238,1985274,1985314,1985356,1985396,1985434,1985480,1985526,1985570,1985614,1985652,1985694,1985716,1985780,1985826,1985872,1985930,1985946,1985986,1986060,1986104,1986146,1986188,1986230,1986274,1986314,1986358,1986400,1986452,1986492,1986534,1986576,1986626,1986664,1986706,1986750,1986792,1986832,1986878,1986926,1986972,1987018,1987058,1987102,1987126,1987192,1987240,1987288,1987322,1987364,1987406,1987484,1987530,1987548,1987588,1987634,1987686,1987730,1987790,1987836,1987892,1987934,1987978,1988022,1988068,1988112,1988156,1988200,1988244,1988286,1988332,1988382,1988430,1988480,1988522,1988572,1988598,1988666,1988716,1988766,1988828,1988848,1988892,1988970,1989018,1989064,1989080,1989128,1989182,1989228,1989290,1989338,1989396,1989440,1989486,1989532,1989580,1989630,1989676,1989724,1989907,1990084,1990160,1990212,1990264,1990328,1990350,1990396,1990476,1990528,1990574,1990624,1990670,1990720,1990766,1990822,1990864,1990930,1990976,1991026,1991070,1991120,1991164,1991246,1991294,1991300,1991346,1991352,1991358,1991364,1991370,1991378,1991642,1991716,1991744,1991828,1991852,1991928,1991942,1992032,1992080,1992136,1992176,1992226,1992274,1992326,1992374,1992432,1992476,1992544,1992592,1992630,1992680,1992732,1992748,1992794,1992878,1992928,1992976,1992984,1992992,1993000,1993008,1993016,1993062,1993290,1993380,1993406,1993482,1993532,1993586,1993602,1993694,1993744,1993802,1993844,1993896,1993946,1994044,1994104,1994150,1994156,1994270,1994324,1994372,1994426,1994474,1994560,1994612,1994622,1994672,1994682,1994692,1994702,1994714,1994762,1994992,1995084,1995112,1995162,1995242,1995299,1995400,1995450,1995510,1995554,1995608,1995660,1995716,1995824,1995938,1995990,1996046,1996096,1996152,1996158,1996290,1996298,1996352,1996404,1996416,1996428,1996440,1996452,1996468,1996549,1996736,1996836,1996898,1996974,1997030,1997050,1997140,1997188,1997248,1997292,1997298,1997398,1997454,1997504,1997566,1997612,1997684,1997736,1997792,1997842,1997898,1997948,1998038,1998092,1998144,1998162,1998178,1998192,1998206,1998218,1998302,1998478,1998576,1998638,1998712,1998768,1998790,1998878,1998926,1998986,1999030,1999084,1999136,1999192,1999242,1999304,1999350,1999422,1999474,1999530,1999628,1999678,1999762,1999816,1999832,1999884,1999900,1999918,1999934,1999950,1999983,2000046,2000216,2000326,2000376,2000446,2000502,2000526,2000612,2000660,2000720,2000789,2000865,2000920,2000970,2001068,2001138,2001148,2001248,2001298,2001352,2001402,2001484,2001538,2001594,2001610,2001628,2001648,2001666,2001684,2001736,2001780,2001955,2002090,2002162,2002218,2002244,2002328,2002336,2002384,2002444,2002486,2002540,2002594,2002648,2002698,2002794,2002862,2002874,2002972,2003022,2003076,2003082,2003132,2003212,2003266,2003322,2003340,2003360,2003382,2003402,2003422,2003483,2003651,2003749,2003802,2003824,2003894,2003950,2003978,2004064,2004112,2004172,2004216,2004312,2004368,2004385,2004426,2004520,2004588,2004602,2004698,2004748,2004804,2004854,2004932,2004986,2005042,2005062,2005084,2005108,2005130,2005152,2005236,2005388,2005476,2005536,2005606,2005662,2005692,2005772,2005820,2005880,2005924,2005978,2006032,2006086,2006136,2006230,2006296,2006312,2006406,2006456,2006510,2006560,2006636,2006690,2006746,2006768,2006792,2006820,2006844,2006868,2006950,2007096,2007182,2007242,2007310,2007366,2007398,2007478,2007526,2007586,2007630,2007730,2007782,2007836,2007930,2007994,2008096,2008148,2008208,2008318,2008376,2008446,2008472,2008504,2008530,2008628,2008770,2008878,2008972,2009030,2009130,2009182,2009249,2009330,2009384,2009438,2009491,2009582,2009644,2009744,2009752,2009846,2009896,2009972,2010070,2010098,2010128,2010176,2010206,2010284,2010418,2010549,2010618,2010696,2010770,2010808,2010888,2010968,2010998,2011051,2011105,2011138,2011280,2011340,2011385,2011436,2011530,2011570,2011611,2011732,2011762,2011812,2011844,2011920,2012114,2012174,2012270,2012320,2012396,2012490,2012534,2012588,2012642,2012696,2012752,2012836,2012908,2012994,2013046,2013106,2013146,2013218,2013312,2013346,2013378,2013430,2013464,2013538,2013722,2013780,2013874,2013926,2013998,2014004,2014096,2014142,2014196,2014250,2014304,2014403,2014442,2014514,2014598,2014650,2014710,2014750,2014820,2014912,2014948,2014982,2015036,2015072,2015144,2015318,2015460,2015514,2015584,2015598,2015682,2015728,2015780,2015882,2015938,2016018,2016090,2016170,2016224,2016284,2016324,2016392,2016482,2016520,2016556,2016612,2016650,2016720,2016882,2016940,2017028,2017082,2017150,2017238,2017286,2017340,2017394,2017448,2017504,2017580,2017652,2017730,2017784,2017844,2017884,2017950,2018040,2018080,2018116,2018174,2018216,2018284,2018488,2018570,2018626,2018692,2018778,2018830,2018914,2018980,2019036,2019110,2019118,2019190,2019266,2019320,2019380,2019420,2019484,2019572,2019614,2019652,2019712,2019756,2019822,2019962,2020020,2020098,2020156,2020220,2020304,2020379,2020440,2020506,2020562,2020634,2020644,2020714,2020790,2020898,2020938,2021000,2021086,2021130,2021170,2021232,2021278,2021342,2021472,2021530,2021606,2021664,2021726,2021808,2021904,2021944,2022010,2022066,2022136,2022148,2022218,2022336,2022396,2022438,2022498,2022582,2022628,2022670,2022734,2022782,2022844,2022964,2023022,2023094,2023154,2023214,2023294,2023390,2023430,2023496,2023552,2023620,2023692,2023764,2023816,2023876,2023920,2023984,2024060,2024144,2024210,2024260,2024322,2024430,2024488,2024496,2024566,2024626,2024684,2024762,2024856,2024898,2024964,2025020,2025086,2025156,2025226,2025232,2025334,2025378,2025436,2025516,2025566,2025612,2025680,2025732,2025792,2025888,2025946,2025956,2026024,2026084,2026142,2026218,2026310,2026352,2026418,2026426,2026538,2026544,2026676,2026776,2026820,2026878,2026956,2027008,2027056,2027064,2027134,2027188,2027246,2027330,2027388,2027400,2027466,2027526,2027584,2027658,2027784,2027850,2027906,2027968,2028038,2028104,2028202,2028246,2028304,2028380,2028434,2028484,2028492,2028564,2028622,2028678,2028750,2028814,2028878,2028938,2028996,2029068,2029156,2029198,2029264,2029320,2029380,2029450,2029514,2029610,2029654,2029712,2029786,2029842,2029894,2029906,2030028,2030086,2030156,2030214,2030230,2030292,2030352,2030410,2030480,2030566,2030608,2030674,2030730,2030788,2030858,2030920,2031014,2031056,2031114,2031186,2031242,2031294,2031308,2031378,2031438,2031496,2031558,2031616,2031634,2031696,2031754,2031812,2031880,2031964,2032006,2032072,2032128,2032184,2032250,2032310,2032402,2032446,2032456,2032514,2032582,2032640,2032692,2032708,2032820,2032832,2032890,2032950,2033008,2033028,2033088,2033146,2033204,2033270,2033352,2033394,2033504,2033558,2033630,2033688,2033778,2033824,2033882,2033948,2034006,2034058,2034076,2034140,2034200,2034258,2034316,2034374,2034396,2034454,2034512,2034570,2034634,2034714,2034756,2034822,2034900,2034980,2035004,2035060,2035146,2035192,2035248,2035312,2035370,2035422,2035442,2035504,2035564,2035620,2035676,2035752,2035810,2035866,2035924,2035986,2036064,2036106,2036172,2036248,2036326,2036352,2036408,2036490,2036538,2036594,2036656,2036714,2036766,2036792,2036892,2036908,2036964,2037016,2037022,2037098,2037179,2037210,2037284,2037328,2037404,2037448,2037512,2037586,2037684,2037740,2037820,2037868,2037924,2037984,2038042,2038094,2038122,2038218,2038236,2038292,2038342,2038350,2038432,2038526,2038536,2038608,2038652,2038726,2038772,2038898,2038972,2039002,2039008,2039136,2039184,2039240,2039298,2039356,2039362,2039414,2039444,2039536,2039556,2039654,2039664,2039746,2039836,2039848,2039952,2040024,2040070,2040132,2040200,2040272,2040304,2040360,2040478,2040532,2040590,2040646,2040698,2040730,2040818,2040840,2040896,2040942,2040954,2041034,2041122,2041136,2041236,2041306,2041352,2041414,2041480,2041551,2041586,2041702,2041708,2041760,2041864,2041918,2041970,2042004,2042088,2042112,2042168,2042214,2042228,2042306,2042392,2042408,2042504,2042572,2042622,2042680,2042800,2042836,2042890,2042960,2043012,2043064,2043070,2043126,2043180,2043232,2043268,2043348,2043374,2043430,2043476,2043492,2043568,2043652,2043670,2043762,2043828,2043880,2043936,2044052,2044090,2044144,2044212,2044266,2044318,2044374,2044428,2044436,2044488,2044526,2044604,2044632,2044688,2044734,2044752,2044828,2044910,2044930,2045020,2045084,2045138,2045192,2045304,2045344,2045398,2045464,2045518,2045570,2045628,2045682,2045734,2045774,2045850,2045880,2045938,2045984,2046004,2046080,2046160,2046182,2046270,2046332,2046386,2046440,2046548,2046636,2046644,2046754,2046806,2046862,2046879,2046928,2046980,2047020,2047095,2047126,2047180,2047226,2047248,2047324,2047402,2047426,2047512,2047572,2047628,2047680,2047784,2047828,2047882,2047944,2047998,2048050,2048106,2048160,2048174,2048226,2048270,2048342,2048420,2048466,2048490,2048566,2048642,2048668,2048752,2048768,2048822,2048878,2048926,2049026,2049072,2049126,2049186,2049238,2049340,2049394,2049410,2049464,2049510,2049578,2049656,2049702,2049728,2049804,2049880,2049908,2049990,2050008,2050060,2050116,2050164,2050264,2050308,2050366,2050394,2050441,2050462,2050463,2050465,2050468,2050491,2050513,2050514,2050515,2050516,2050517,2050518,2050519,2050520,2050521,2050547,2050576,2050580,2050581,2050582,2050604,2050626,2050627,2050628,2050629,2050636,2050643,2050644,2050645,2050646,2050671,2050696,2050697,2050698,2050720,2050742,2050743,2050744,2050745,2050776,2050807,2050808,2050809,2050810,2050847,2050884,2050885,2050886,2050887,2050908,2050929,2050930,2050931,2050932,2050944,2050956,2050957,2050958,2050959,2050995,2051031,2051032,2051033,2051034,2051069,2051104,2051105,2051106,2051107,2051120,2051133,2051134,2051135,2051173,2051211,2051212,2051213,2051214,2051222,2051230,2051231,2051232,2051233,2051256,2051279,2051280,2051281,2051282,2051309,2051336,2051337,2051338,2051339,2051361,2051383,2051384,2051385,2051386,2051431,2051476,2051477,2051478,2051479,2051500,2051521,2051522,2051523,2051524,2051551,2051578,2051579,2051580,2051581,2051626,2051671,2051672,2051674,2051677,2051699,2051720,2051721,2051722,2051723,2051724,2051725,2051726,2051727,2051728,2051753,2051781,2051785,2051786,2051787,2051808,2051829,2051830,2051831,2051832,2051839,2051846,2051847,2051848,2051872,2051896,2051897,2051898,2051899,2051921,2051943,2051944,2051945,2051946,2051975,2052004,2052005,2052006,2052042,2052078,2052079,2052080,2052081,2052102,2052123,2052124,2052125,2052137,2052149,2052150,2052151,2052152,2052187,2052222,2052223,2052224,2052257,2052290,2052291,2052292,2052293,2052306,2052319,2052320,2052356,2052392,2052393,2052394,2052402,2052410,2052411,2052412,2052413,2052435,2052457,2052458,2052459,2052460,2052486,2052512,2052513,2052514,2052515,2052536,2052557,2052558,2052559,2052560,2052602,2052644,2052645,2052646,2052666,2052686,2052687,2052688,2052689,2052715,2052741,2052742,2052743,2052744,2052786,2052828,2052829,2052831,2052834,2052855,2052875,2052876,2052877,2052878,2052879,2052880,2052881,2052882,2052883,2052907,2052934,2052938,2052939,2052940,2052960,2052980,2052981,2052982,2052983,2052990,2052997,2052998,2052999,2053022,2053045,2053046,2053047,2053048,2053070,2053092,2053093,2053094,2053095,2053122,2053149,2053150,2053151,2053152,2053187,2053222,2053223,2053224,2053225,2053245,2053265,2053266,2053267,2053268,2053280,2053292,2053293,2053294,2053301,2053335,2053363,2053364,2053365,2053396,2053427,2053428,2053429,2053430,2053431,2053444,2053457,2053458,2053492,2053526,2053527,2053528,2053529,2053537,2053545,2053546,2053547,2053548,2053569,2053590,2053591,2053592,2053593,2053618,2053643,2053644,2053645,2053646,2053666,2053686,2053687,2053688,2053689,2053728,2053767,2053768,2053769,2053770,2053789,2053808,2053809,2053810,2053811,2053836,2053861,2053862,2053863,2053903,2053943,2053944,2053946,2053949,2053969,2053988,2053989,2053990,2053991,2053992,2053993,2053994,2053995,2053996,2054019,2054045,2054049,2054050,2054053,2054072,2054089,2054090,2054091,2054098,2054105,2054106,2054128,2054150,2054151,2054152,2054153,2054154,2054176,2054198,2054199,2054200,2054201,2054226,2054251,2054252,2054253,2054254,2054288,2054322,2054323,2054324,2054325,2054344,2054363,2054364,2054365,2054366,2054367,2054379,2054391,2054392,2054393,2054400,2054433,2054460,2054461,2054462,2054491,2054520,2054521,2054522,2054523,2054536,2054549,2054550,2054551,2054583,2054615,2054616,2054617,2054618,2054626,2054634,2054635,2054636,2054637,2054657,2054677,2054678,2054679,2054680,2054681,2054705,2054729,2054730,2054731,2054732,2054751,2054770,2054771,2054772,2054773,2054809,2054845,2054846,2054847,2054864,2054883,2054886,2054887,2054888,2054889,2054913,2054937,2054938,2054939,2054977,2055015,2055016,2055018,2055021,2055040,2055058,2055059,2055060,2055061,2055062,2055063,2055064,2055065,2055066,2055067,2055089,2055114,2055118,2055119,2055120,2055123,2055141,2055157,2055158,2055159,2055160,2055161,2055168,2055175,2055176,2055197,2055218,2055219,2055220,2055221,2055222,2055244,2055266,2055267,2055268,2055269,2055292,2055315,2055316,2055317,2055318,2055319,2055352,2055385,2055386,2055387,2055388,2055406,2055424,2055425,2055426,2055427,2055428,2055440,2055452,2055453,2055454,2055461,2055492,2055517,2055518,2055545,2055572,2055573,2055574,2055575,2055576,2055589,2055602,2055603,2055604,2055634,2055664,2055665,2055666,2055667,2055675,2055683,2055684,2055685,2055686,2055705,2055724,2055725,2055726,2055727,2055728,2055751,2055774,2055775,2055776,2055777,2055795,2055813,2055814,2055815,2055849,2055883,2055884,2055885,2055886,2055902,2055920,2055923,2055924,2055925,2055926,2055927,2055950,2055973,2055974,2055975,2056011,2056047,2056048,2056049,2056051,2056054,2056072,2056089,2056090,2056091,2056092,2056093,2056094,2056095,2056096,2056097,2056102,2056123,2056143,2056147,2056148,2056151,2056168,2056183,2056184,2056185,2056186,2056193,2056200,2056201,2056221,2056241,2056242,2056243,2056244,2056245,2056267,2056289,2056290,2056291,2056312,2056333,2056334,2056335,2056336,2056337,2056369,2056401,2056402,2056403,2056404,2056421,2056438,2056439,2056440,2056441,2056442,2056454,2056466,2056467,2056468,2056469,2056476,2056505,2056528,2056529,2056554,2056579,2056580,2056581,2056582,2056583,2056584,2056597,2056610,2056611,2056612,2056640,2056668,2056669,2056670,2056678,2056686,2056687,2056688,2056689,2056707,2056725,2056726,2056727,2056728,2056729,2056751,2056773,2056774,2056775,2056776,2056793,2056810,2056811,2056812,2056844,2056876,2056877,2056878,2056879,2056880,2056897,2056914,2056915,2056916,2056917,2056918,2056940,2056962,2056963,2056964,2056998,2057032,2057033,2057034,2057036,2057039,2057056,2057072,2057073,2057074,2057075,2057076,2057077,2057078,2057079,2057080,2057085,2057105,2057124,2057128,2057129,2057132,2057148,2057162,2057163,2057164,2057165,2057172,2057179,2057180,2057199,2057218,2057219,2057220,2057221,2057222,2057243,2057264,2057265,2057284,2057303,2057304,2057305,2057306,2057307,2057338,2057369,2057370,2057371,2057372,2057388,2057404,2057405,2057406,2057407,2057408,2057420,2057432,2057433,2057434,2057435,2057442,2057469,2057490,2057491,2057514,2057537,2057538,2057539,2057540,2057541,2057542,2057555,2057568,2057569,2057570,2057596,2057622,2057623,2057624,2057632,2057640,2057641,2057642,2057643,2057660,2057677,2057678,2057679,2057680,2057681,2057702,2057723,2057724,2057725,2057726,2057742,2057758,2057759,2057760,2057789,2057818,2057819,2057820,2057821,2057822,2057839,2057856,2057857,2057858,2057859,2057860,2057881,2057902,2057903,2057904,2057936,2057968,2057969,2057970,2057972,2057975,2057991,2058006,2058007,2058008,2058009,2058010,2058011,2058012,2058013,2058014,2058015,2058020,2058039,2058057,2058061,2058062,2058065,2058080,2058093,2058094,2058095,2058096,2058097,2058104,2058111,2058112,2058130,2058148,2058149,2058150,2058151,2058152,2058172,2058192,2058193,2058211,2058229,2058230,2058231,2058232,2058233,2058262,2058291,2058292,2058293,2058294,2058295,2058311,2058327,2058328,2058329,2058330,2058342,2058354,2058355,2058356,2058357,2058358,2058364,2058388,2058407,2058408,2058430,2058452,2058453,2058454,2058455,2058456,2058457,2058470,2058483,2058484,2058485,2058509,2058533,2058534,2058535,2058543,2058551,2058552,2058553,2058554,2058570,2058586,2058587,2058588,2058589,2058590,2058610,2058630,2058631,2058632,2058633,2058634,2058649,2058664,2058665,2058666,2058693,2058720,2058721,2058722,2058723,2058724,2058740,2058756,2058757,2058758,2058759,2058760,2058780,2058800,2058801,2058802,2058832,2058862,2058863,2058864,2058866,2058869,2058884,2058898,2058899,2058900,2058901,2058902,2058903,2058904,2058905,2058906,2058907,2058912,2058930,2058947,2058951,2058952,2058966,2058980,2058981,2058982,2058983,2058984,2058991,2058998,2058999,2059016,2059033,2059034,2059035,2059036,2059037,2059056,2059075,2059076,2059093,2059110,2059111,2059112,2059113,2059114,2059141,2059168,2059169,2059170,2059171,2059172,2059188,2059204,2059205,2059206,2059207,2059219,2059231,2059232,2059233,2059234,2059235,2059240,2059262,2059280,2059281,2059301,2059321,2059322,2059323,2059324,2059325,2059326,2059339,2059352,2059353,2059354,2059376,2059398,2059399,2059407,2059415,2059416,2059417,2059418,2059433,2059448,2059449,2059450,2059451,2059452,2059471,2059490,2059491,2059492,2059506,2059520,2059521,2059546,2059571,2059572,2059573,2059574,2059589,2059604,2059605,2059606,2059607,2059626,2059645,2059646,2059674,2059702,2059703,2059704,2059706,2059709,2059724,2059738,2059739,2059740,2059741,2059742,2059743,2059744,2059745,2059746,2059763,2059783,2059787,2059788,2059801,2059814,2059815,2059816,2059817,2059824,2059831,2059832,2059848,2059864,2059865,2059866,2059867,2059884,2059901,2059917,2059933,2059934,2059935,2059936,2059962,2059988,2059989,2059990,2059991,2060003,2060018,2060022,2060023,2060024,2060036,2060048,2060049,2060050,2060051,2060056,2060076,2060092,2060110,2060128,2060129,2060130,2060131,2060132,2060133,2060146,2060159,2060160,2060161,2060181,2060201,2060202,2060210,2060218,2060219,2060220,2060221,2060235,2060249,2060250,2060251,2060252,2060270,2060288,2060289,2060290,2060291,2060304,2060317,2060318,2060319,2060342,2060365,2060366,2060367,2060398,2060429,2060455,2060481,2060482,2060483,2060484,2060486,2060489,2060503,2060516,2060517,2060518,2060519,2060520,2060521,2060522,2060523,2060524,2060540,2060556,2060560,2060564,2060565,2060577,2060589,2060590,2060591,2060598,2060605,2060606,2060621,2060636,2060637,2060638,2060639,2060640,2060656,2060672,2060687,2060702,2060703,2060704,2060705,2060729,2060753,2060754,2060755,2060756,2060767,2060778,2060782,2060786,2060787,2060788,2060800,2060812,2060813,2060814,2060819,2060837,2060851,2060852,2060868,2060884,2060885,2060886,2060887,2060888,2060901,2060914,2060915,2060916,2060934,2060952,2060953,2060961,2060969,2060970,2060971,2060972,2060985,2060998,2060999,2061000,2061017,2061034,2061035,2061036,2061048,2061060,2061061,2061062,2061083,2061104,2061105,2061106,2061107,2061108,2061109,2061110,2061111,2061112,2061113,2061128,2061157,2061172,2061196,2061220,2061221,2061222,2061224,2061227,2061240,2061252,2061253,2061254,2061255,2061256,2061257,2061258,2061259,2061274,2061289,2061293,2061297,2061298,2061309,2061320,2061321,2061322,2061329,2061336,2061337,2061351,2061365,2061366,2061367,2061368,2061382,2061396,2061397,2061411,2061425,2061426,2061427,2061431,2061453,2061472,2061473,2061474,2061475,2061486,2061497,2061501,2061505,2061506,2061507,2061519,2061531,2061532,2061533,2061537,2061552,2061564,2061565,2061580,2061595,2061596,2061597,2061598,2061599,2061612,2061625,2061626,2061627,2061643,2061659,2061660,2061668,2061676,2061677,2061678,2061679,2061691,2061703,2061704,2061705,2061706,2061722,2061738,2061739,2061740,2061741,2061752,2061763,2061764,2061765,2061784,2061803,2061804,2061805,2061806,2061807,2061808,2061809,2061810,2061811,2061812,2061826,2061853,2061867,2061889,2061911,2061912,2061913,2061915,2061918,2061930,2061941,2061942,2061943,2061944,2061945,2061946,2061947,2061948,2061962,2061976,2061980,2061984,2061985,2061995,2062005,2062006,2062007,2062014,2062021,2062022,2062035,2062048,2062049,2062050,2062051,2062052,2062065,2062078,2062079,2062092,2062105,2062106,2062107,2062110,2062130,2062148,2062149,2062150,2062151,2062161,2062171,2062175,2062179,2062180,2062181,2062193,2062205,2062206,2062210,2062223,2062233,2062234,2062247,2062260,2062261,2062262,2062263,2062264,2062277,2062290,2062291,2062292,2062306,2062320,2062321,2062329,2062337,2062338,2062339,2062340,2062351,2062362,2062363,2062364,2062365,2062380,2062395,2062396,2062397,2062398,2062408,2062418,2062419,2062420,2062437,2062454,2062455,2062456,2062457,2062458,2062459,2062460,2062461,2062462,2062463,2062476,2062501,2062514,2062534,2062554,2062555,2062557,2062560,2062571,2062581,2062582,2062583,2062584,2062585,2062586,2062587,2062588,2062601,2062614,2062618,2062622,2062623,2062632,2062641,2062642,2062643,2062650,2062657,2062658,2062670,2062682,2062683,2062684,2062685,2062686,2062698,2062710,2062711,2062723,2062735,2062736,2062737,2062739,2062757,2062774,2062775,2062776,2062785,2062794,2062798,2062802,2062803,2062804,2062816,2062828,2062829,2062833,2062845,2062854,2062855,2062867,2062879,2062880,2062881,2062882,2062883,2062895,2062907,2062908,2062909,2062921,2062933,2062934,2062942,2062950,2062951,2062952,2062953,2062963,2062973,2062974,2062975,2062976,2062990,2063004,2063005,2063006,2063015,2063024,2063025,2063026,2063041,2063056,2063057,2063058,2063059,2063060,2063061,2063062,2063063,2063064,2063065,2063077,2063100,2063112,2063130,2063148,2063149,2063151,2063154,2063164,2063173,2063174,2063175,2063176,2063177,2063178,2063179,2063180,2063192,2063204,2063208,2063212,2063213,2063221,2063229,2063230,2063231,2063238,2063245,2063256,2063267,2063268,2063269,2063270,2063271,2063282,2063293,2063294,2063305,2063316,2063317,2063318,2063320,2063336,2063351,2063352,2063353,2063361,2063369,2063373,2063377,2063378,2063379,2063390,2063401,2063402,2063406,2063417,2063425,2063426,2063437,2063448,2063449,2063450,2063451,2063452,2063463,2063474,2063475,2063476,2063487,2063498,2063505,2063512,2063513,2063514,2063515,2063525,2063535,2063536,2063537,2063549,2063561,2063562,2063563,2063571,2063579,2063580,2063581,2063595,2063609,2063610,2063611,2063612,2063613,2063614,2063615,2063616,2063617,2063618,2063629,2063650,2063661,2063666,2063682,2063694,2063695,2063697,2063700,2063709,2063717,2063718,2063719,2063720,2063721,2063722,2063723,2063729,2063740,2063746,2063750,2063754,2063761,2063768,2063769,2063770,2063777,2063784,2063785,2063795,2063805,2063806,2063807,2063808,2063809,2063819,2063829,2063830,2063840,2063850,2063851,2063852,2063854,2063868,2063881,2063882,2063883,2063890,2063897,2063901,2063905,2063906,2063907,2063917,2063927,2063928,2063932,2063942,2063949,2063950,2063954,2063964,2063971,2063972,2063973,2063974,2063980,2063990,2063995,2138057,2138251,2138311,2138351,2138416,2138460,2138489,2138519,2138521,2138544,2138567,2138570,2138592,2138626,2138658,2138687,2138717,2138755,2138786,2138820,2138850,2138883,2138925,2138969,2139010,2139032,2139053,2139077,2139109,2139142,2139171,2139207,2139232,2139260,2139305,2139344,2139369,2139392,2139426,2139447,2139480,2139513,2139515,2139542,2139583,2139623,2139652,2139683,2139734,2139763,2139789,2139810,2139837,2139883,2139921,2139947,2139975,2140002,2140023,2140047,2140057,2140058,2140059,2140102,2140173,2140223,2140247,2140268,2140300,2140331,2140360,2140389,2140424,2140453,2140486,2140515,2140546,2140586,2140629,2140668,2140689,2140709,2140732,2140763,2140795,2140823,2140857,2140881,2140908,2140951,2140988,2141012,2141034,2141067,2141088,2141119,2141150,2141152,2141178,2141217,2141255,2141283,2141313,2141362,2141390,2141414,2141433,2141459,2141504,2141540,2141564,2141591,2141617,2141637,2141660,2141670,2141671,2141672,2141713,2141781,2141829,2141852,2141872,2141902,2141932,2141950,2141962,2141989,2142021,2142049,2142081,2142109,2142138,2142160,2142177,2142219,2142256,2142276,2142295,2142317,2142347,2142377,2142404,2142437,2142460,2142485,2142525,2142561,2142584,2142605,2142637,2142657,2142687,2142717,2142719,2142744,2142781,2142817,2142844,2142872,2142918,2142945,2142968,2142986,2143011,2143055,2143089,2143111,2143143,2143180,2143202,2143212,2143213,2143214,2143253,2143318,2143366,2143404,2143432,2143460,2143488,2143514,2143544,2143570,2143600,2143647,2143675,2143691,2143731,2143766,2143785,2143814,2143852,2143880,2143906,2143938,2143960,2144003,2144055,2144077,2144097,2144128,2144148,2144176,2144204,2144206,2144230,2144265,2144299,2144325,2144351,2144394,2144436,2144458,2144482,2144525,2144545,2144558,2144578,2144609,2144633,2144645,2144666,2144676,2144677,2144678,2144715,2144777,2144803,2144824,2144860,2144879,2144890,2144913,2144940,2144965,2144993,2145018,2145047,2145066,2145092,2145118,2145134,2145172,2145205,2145216,2145225,2145253,2145289,2145316,2145341,2145356,2145372,2145393,2145434,2145483,2145504,2145520,2145547,2145569,2145574,2145600,2145626,2145628,2145651,2145685,2145717,2145741,2145766,2145807,2145847,2145868,2145891,2145933,2145953,2145964,2145982,2146012,2146035,2146047,2146068,2146078,2146079,2146080,2146114,2146172,2146197,2146218,2146253,2146271,2146281,2146302,2146328,2146352,2146378,2146402,2146430,2146448,2146472,2146496,2146512,2146548,2146579,2146590,2146599,2146626,2146660,2146685,2146709,2146724,2146739,2146759,2146798,2146844,2146864,2146879,2146905,2146927,2146932,2146956,2146980,2147003,2147035,2147065,2147088,2147112,2147151,2147170,2147190,2147210,2147232,2147272,2147291,2147301,2147318,2147347,2147369,2147380,2147400,2147410,2147411,2147412,2147444,2147499,2147523,2147524,2147544,2147577,2147594,2147603,2147623,2147649,2147684,2147718,2147745,2147762,2147784,2147806,2147822,2147856,2147885,2147896,2147905,2147931,2147963,2147987,2148010,2148037,2148056,2148093,2148136,2148155,2148170,2148195,2148216,2148221,2148223,2148245,2148268,2148290,2148320,2148348,2148389,2148429,2148447,2148466,2148485,2148506,2148544,2148562,2148578,2148614,2148635,2148645,2148664,2148674,2148675,2148705,2148757,2148780,2148781,2148800,2148831,2148847,2148855,2148874,2148900,2148912,2148934,2148965,2148990,2149006,2149027,2149048,2149063,2149095,2149123,2149134,2149142,2149167,2149198,2149221,2149243,2149268,2149281,2149316,2149351,2149362,2149380,2149394,2149418,2149439,2149444,2149446,2149466,2149487,2149508,2149537,2149564,2149582,2149604,2149642,2149659,2149677,2149695,2149714,2149750,2149768,2149783,2149798,2149818,2149838,2149847,2149865,2149875,2149876,2149904,2149953,2149975,2149976,2149994,2150023,2150038,2150045,2150063,2150089,2150101,2150121,2150149,2150172,2150187,2150188,2150208,2150228,2150242,2150272,2150299,2150310,2150317,2150340,2150369,2150391,2150412,2150435,2150447,2150480,2150513,2150514,2150524,2150541,2150554,2150576,2150596,2150601,2150603,2150622,2150642,2150662,2150689,2150714,2150731,2150752,2150788,2150804,2150821,2150838,2150855,2150888,2150905,2150919,2150933,2150952,2150971,2150980,2150997,2151006,2151007,2151033,2151079,2151100,2151117,2151144,2151158,2151164,2151181,2151207,2151219,2151237,2151262,2151283,2151297,2151298,2151317,2151336,2151349,2151377,2151403,2151414,2151420,2151441,2151468,2151489,2151509,2151530,2151541,2151572,2151603,2151604,2151613,2151629,2151642,2151663,2151682,2151687,2151689,2151706,2151724,2151743,2151769,2151793,2151809,2151828,2151861,2151876,2151892,2151908,2151909,2151925,2151956,2151972,2151986,2152000,2152017,2152034,2152043,2152059,2152067,2152068,2152093,2152136,2152155,2152156,2152172,2152197,2152210,2152216,2152232,2152257,2152269,2152285,2152307,2152326,2152339,2152340,2152358,2152376,2152388,2152414,2152439,2152450,2152455,2152474,2152499,2152519,2152538,2152557,2152595,2152624,2152625,2152633,2152648,2152660,2152679,2152697,2152702,2152704,2152720,2152737,2152755,2152779,2152801,2152816,2152834,2152865,2152879,2152894,2152909,2152910,2152925,2152954,2152969,2152982,2152995,2153011,2153027,2153035,2153050,2153058,2153059,2153082,2153121,2153138,2153139,2153154,2153178,2153191,2153196,2153211,2153236,2153248,2153263,2153284,2153302,2153314,2153315,2153331,2153347,2153359,2153384,2153407,2153417,2153422,2153440,2153463,2153481,2153499,2153517,2153537,2153564,2153580,2153581,2153588,2153602,2153613,2153630,2153647,2153652,2153654,2153669,2153685,2153729,2153758,2153800,2153814,2153828,2153842,2153843,2153857,2153884,2153898,2153910,2153922,2153937,2153952,2153959,2153973,2153981,2153982,2154003,2154039,2154055,2154056,2154070,2154092,2154104,2154109,2154123,2154146,2154157,2154171,2154191,2154207,2154217,2154232,2154247,2154258,2154281,2154303,2154313,2154317,2154333,2154355,2154372,2154388,2154404,2154422,2154447,2154462,2154469,2154482,2154492,2154508,2154524,2154529,2154531,2154544,2154557,2154559,2154564,2154585,2154603,2154629,2154667,2154680,2154681,2154694,2154707,2154708,2154721,2154746,2154759,2154771,2154783,2154796,2154809,2154816,2154829,2154836,2154856,2154889,2154903,2154904,2154917,2154930,2154939,2154950,2154954,2154967,2154988,2154998,2155017,2155036,2155045,2155066,2155079,2155090,2155112,2155132,2155141,2155145,2155158,2155170,2155181,2155197,2155212,2155226,2155242,2155265,2155279,2155285,2155297,2155306,2155320,2155335,2155340,2155342,2155354,2155366,2155368,2155373,2155392,2155408,2155432,2155467,2155479,2155480,2155492,2155504,2155505,2155517,2155540,2155552,2155563,2155574,2155586,2155598,2155605,2155617,2155623,2155642,2155672,2155684,2155685,2155697,2155709,2155718,2155728,2155731,2155743,2155762,2155771,2155789,2155807,2155815,2155834,2155846,2155856,2155876,2155894,2155902,2155906,2155918,2155929,2155939,2155954,2155968,2155980,2155994,2156015,2156028,2156034,2156045,2156053,2156066,2156080,2156085,2156087,2156098,2156109,2156111,2156115,2156132,2156147,2156168,2156199,2156210,2156211,2156222,2156233,2156234,2156245,2156266,2156277,2156288,2156299,2156310,2156321,2156327,2156338,2156344,2156361,2156388,2156399,2156400,2156404,2156415,2156423,2156431,2156440,2156443,2156454,2156471,2156479,2156496,2156513,2156520,2156536,2156546,2156556,2156575,2156591,2156598,2156602,2156613,2156623,2156632,2156646,2156659,2156669,2156681,2156700,2156712,2156718,2156728,2156735,2156747,2156760,2156765,2156767,2156777,2156787,2156789,2156793,2156808,2156821,2156840,2156868,2156878,2156879,2156889,2156899,2156900,2156910,2156929,2156939,2156949,2156959,2156969,2156979,2156985,2156995,2157000,2157016,2157040,2157049,2157050,2157054,2157064,2157071,2157078,2157086,2157089,2157099,2157114,2157121,2157137,2157153,2157159,2157173,2157182,2157186,2157195,2157209,2157223,2157229,2157233,2157243,2157252,2157261,2157274,2157285,2157294,2157305,2157322,2157333,2157338,2157347,2157354,2157364,2157375,2157380,2157382,2157391,2157400,2157402,2157406,2157419,2157430,2157447,2157472,2157481,2157482,2157491,2157500,2157501,2157510,2157527,2157536,2157545,2157554,2157563,2157572,2157578,2157587,2157591,2157605,2157626,2157634,2157635,2157639,2157648,2157654,2157660,2157667,2157670,2157679,2157692,2157698,2157713,2157728,2157740,2157752,2157755,2157763,2157776,2157788,2157796,2157805,2157813,2157821,2157832,2157842,2157850,2157859,2157874,2157888,2157896,2157902,2157911,2157921,2157926,2157934,2157941,2157943,2157947,2157959,2157969,2157991,2158013,2158014,2158022,2158030,2158031,2158039,2158054,2158062,2158070,2158085,2158093,2158098,2158106,2158110,2158122,2158140,2158147,2158150,2158158,2158164,2158169,2158175,2158178,2158186,2158197,2158202,2158215,2158228,2158238,2158248,2158251,2158258,2158269,2158280,2158291,2158298,2158301,2158309,2158322,2158333,2158341,2158354,2158366,2158373,2158379,2158386,2158394,2158399,2158406,2158412,2158413,2158415,2158419,2158429,2158437,2158456,2158475,2158476,2158483,2158490,2158491,2158498,2158511,2158518,2158525,2158538,2158545,2158550,2158557,2158560,2158571,2158587,2158593,2158595,2158601,2158606,2158611,2158617,2158619,2158625,2158635,2158640,2158651,2158662,2158670,2158678,2158680,2158686,2158696,2158705,2158714,2158720,2158723,2158730,2158741,2158751,2158758,2158769,2158777,2158780,2158786,2158791,2158797,2158804,2158808,2158814,2158819,2158820,2158822,2158826,2158834,2158840,2158856,2158872,2158873,2158879,2158885,2158886,2158892,2158903,2158909,2158915,2158926,2158936,2158942,2158944,2158954,2158968,2158973,2158974,2158979,2158984,2158988,2158993,2158995,2159000,2159008,2159012,2159021,2159030,2159037,2159044,2159045,2159050,2159059,2159066,2159073,2159078,2159081,2159087,2159096,2159104,2159110,2159119,2159125,2159128,2159133,2159137,2159142,2159148,2159152,2159157,2159161,2159162,2159164,2159167,2159173,2159178,2159191,2159204,2159205,2159210,2159215,2159216,2159221,2159230,2159235,2159240,2159249,2159257,2159262,2159264,2159272,2159283,2159287,2159288,2159292,2159296,2159299,2159303,2159305,2159309,2159315,2159318,2159325,2159332,2159337,2159342,2159343,2159347,2159354,2159360,2159366,2159370,2159372,2159377,2159384,2159390,2159395,2159402,2159407,2159409,2159413,2159417,2159421,2159425,2159428,2159432,2159435,2159436,2159438,2159441,2159445,2159448,2159458,2159468,2159469,2159473,2159477,2159478,2159482,2159489,2159493,2159497,2159504,2159511,2159515,2159516,2159522,2159530,2159533,2159534,2159537,2159540,2159543,2159546,2159547,2159550,2159555,2159558,2159563,2159568,2159571,2159574,2159575,2159578,2159583,2159588,2159593,2159596,2159597,2159600,2159605,2159608,2159611,2159615,2159620,2159624,2159625,2159628,2159631,2159634,2159637,2159639,2159642,2159644,2159645,2159647,2159650,2159652,2159653,2159660,2159667,2159668,2159671,2159674,2159675,2159678,2159683,2159686,2159689,2159694,2159699,2159702,2159703,2159707,2159712,2159714,2159715,2159717,2159719,2159721,2159723,2159724,2159726,2159729,2159731,2159734,2159737,2159739,2159741,2159742,2159744,2159747,2159750,2159753,2159755,2159756,2159758,2159761,2159763,2159765,2159767,2159770,2159773,2159774,2159776,2159778,2159780,2159782,2159784,2159786,2159787,2159788,2159790,2159793,2159795,2159796,2159800,2159804,2159805,2159807,2159809,2159810,2159812,2159815,2159817,2159819,2159822,2159825,2159827,2159828,2159830,2159832,2159833,2159834,2159835,2159836,2159837,2159838,2159839,2159840,2159841,2159842,2159843,2159844,2159845,2159846,2159847,2159848,2159850,2159853,2159856,2159858,2159859,2159861,2159864,2159866,2159868,2159870,2159873,2159876,2159877,2159879,2159881,2159883,2159885,2159887,2159889,2159890,2159891,2159893,2159896,2159898,2159899,2159903,2159907,2159908,2159910,2159912,2159913,2159915,2159918,2159920,2159922,2159925,2159928,2159930,2159931,2159933,2159935,2159936,2159937,2159938,2159939,2159940,2159941,2159942,2159943,2159944,2159945,2159946,2159947,2159948,2159949,2159950,2159951,2159953,2159956,2159959,2159961,2159962,2159964,2159966,2159968,2159970,2159972,2159974,2159977,2159980,2159982,2159984,2159985,2159987,2159990,2159992,2159993,2159994,2159995,2159997,2160000,2160002,2160003,2160007,2160011,2160013,2160015,2160016,2160018,2160021,2160023,2160025,2160028,2160031,2160033,2160034,2160036,2160038,2160039,2160040,2160041,2160042,2160043,2160044,2160045,2160046,2160047,2160048,2160049,2160050,2160051,2160052,2160053,2160055,2160058,2160061,2160063,2160064,2160066,2160069,2160071,2160073,2160075,2160078,2160081,2160083,2160085,2160086,2160088,2160091,2160093,2160094,2160095,2160096,2160098,2160101,2160103,2160107,2160111,2160113,2160115,2160116,2160118,2160121,2160123,2160125,2160128,2160131,2160133,2160134,2160136,2160138,2160139,2160140,2160141,2160142,2160143,2160144,2160145,2160146,2160147,2160148,2160149,2160150,2160151,2160152,2160153,2160155,2160158,2160161,2160163,2160164,2160166,2160169,2160171,2160173,2160175,2160178,2160181,2160183,2160185,2160186,2160188,2160190,2160192,2160194,2160195,2160196,2160197,2160199,2160202,2160204,2160208,2160212,2160214,2160216,2160217,2160219,2160222,2160224,2160226,2160229,2160232,2160234,2160235,2160237,2160239,2160240,2160241,2160242,2160243,2160244,2160245,2160246,2160247,2160248,2160249,2160250,2160251,2160252,2160253,2160254,2160256,2160259,2160262,2160264,2160265,2160267,2160270,2160272,2160274,2160276,2160279,2160282,2160284,2160286,2160287,2160288,2160290,2160292,2160294,2160296,2160297,2160298,2160299,2160301,2160304,2160306,2160310,2160314,2160316,2160318,2160319,2160321,2160324,2160326,2160328,2160331,2160334,2160336,2160337,2160339,2160341,2160342,2160343,2160344,2160345,2160346,2160347,2160348,2160349,2160350,2160351,2160352,2160353,2160354,2160355,2160356,2160358,2160361,2160364,2160366,2160367,2160369,2160372,2160374,2160376,2160378,2160381,2160384,2160386,2160388,2186792,2186986,2187042,2187094,2187260,2187334,2187388,2187462,2187516,2187598,2187658,2187742,2187776,2187860,2187926,2187986,2188044,2188124,2188180,2188280,2188334,2188416,2188496,2188528,2188590,2188680,2188798,2188850,2188922,2188974,2188980,2189136,2189220,2189290,2189346,2189436,2189518,2189568,2189644,2189710,2189757,2189852,2189908,2189948,2190046,2190142,2190208,2190242,2190332,2190398,2190458,2190552,2190624,2190682,2190776,2190784,2190896,2190972,2191028,2191118,2191194,2191256,2191320,2191390,2191446,2191512,2191576,2191652,2191708,2191750,2191844,2191938,2192002,2192038,2192126,2192192,2192238,2192342,2192414,2192472,2192490,2192573,2192606,2192688,2192794,2192832,2192922,2192986,2193048,2193110,2193180,2193234,2193326,2193364,2193488,2193532,2193624,2193714,2193776,2193814,2193900,2193966,2194026,2194058,2194164,2194216,2194258,2194340,2194352,2194454,2194550,2194596,2194684,2194748,2194810,2194870,2194940,2194994,2195060,2195122,2195206,2195282,2195336,2195424,2195478,2195554,2195630,2195666,2195760,2195806,2195900,2195962,2195996,2196084,2196098,2196198,2196292,2196338,2196424,2196488,2196550,2196608,2196678,2196732,2196796,2196860,2196944,2197018,2197032,2197156,2197258,2197300,2197382,2197446,2197506,2197586,2197656,2197714,2197800,2197816,2197912,2197988,2198016,2198064,2198145,2198208,2198270,2198328,2198396,2198450,2198514,2198573,2198658,2198730,2198784,2198830,2198890,2198970,2199064,2199104,2199190,2199236,2199294,2199362,2199420,2199504,2199522,2199616,2199690,2199748,2199828,2199896,2199918,2200001,2200030,2200096,2200148,2200212,2200272,2200388,2200432,2200516,2200558,2200610,2200682,2200752,2200794,2200878,2200924,2200980,2201048,2201106,2201188,2201208,2201298,2201372,2201428,2201508,2201574,2201598,2201692,2201758,2201812,2201876,2201934,2202006,2202062,2202106,2202188,2202244,2202282,2202352,2202444,2202506,2202566,2202636,2202702,2202712,2202770,2202850,2202872,2202960,2203032,2203088,2203166,2203232,2203290,2203358,2203424,2203476,2203558,2203596,2203660,2203714,2203760,2203838,2203894,2203932,2204002,2204092,2204152,2204212,2204280,2204344,2204356,2204414,2204492,2204516,2204662,2204718,2204732,2204860,2204884,2204974,2205040,2205094,2205158,2205212,2205250,2205338,2205384,2205430,2205502,2205524,2205564,2205632,2205720,2205780,2205840,2205908,2205972,2206030,2206106,2206132,2206166,2206282,2206338,2206412,2206476,2206502,2206590,2206654,2206708,2206772,2206826,2206864,2206950,2206996,2207042,2207112,2207136,2207176,2207244,2207330,2207390,2207450,2207516,2207578,2207636,2207710,2207738,2207772,2207884,2207940,2208012,2208080,2208131,2208202,2208252,2208320,2208394,2208434,2208496,2208550,2208596,2208668,2208722,2208762,2208830,2208914,2208925,2209034,2209063,2209154,2209168,2209230,2209302,2209332,2209446,2209514,2209536,2209616,2209662,2209726,2209784,2209846,2209900,2209972,2210014,2210074,2210128,2210174,2210244,2210298,2210338,2210404,2210486,2210546,2210606,2210664,2210722,2210738,2210800,2210870,2210902,2211012,2211078,2211102,2211180,2211226,2211290,2211346,2211408,2211462,2211532,2211594,2211674,2211690,2211736,2211820,2211858,2211898,2211962,2212042,2212102,2212162,2212218,2212276,2212294,2212356,2212362,2212458,2212464,2212630,2212636,2212709,2212768,2212785,2212846,2212902,2213012,2213080,2213142,2213220,2213237,2213314,2213376,2213406,2213412,2213450,2213570,2213644,2213652,2213712,2213818,2213838,2213900,2213966,2214002,2214102,2214168,2214196,2214298,2214314,2214376,2214432,2214494,2214548,2214614,2214676,2214752,2214802,2214848,2214908,2214940,2214978,2215040,2215116,2215176,2215184,2215290,2215346,2215368,2215430,2215436,2215500,2215538,2215634,2215700,2215728,2215826,2215844,2215906,2215962,2216024,2216078,2216084,2216148,2216210,2216284,2216334,2216432,2216498,2216560,2216634,2216694,2216752,2216806,2216862,2216886,2216948,2217010,2217052,2217144,2217208,2217238,2217332,2217352,2217416,2217470,2217532,2217586,2217650,2217710,2217780,2217832,2217878,2217936,2217942,2218008,2218068,2218140,2218200,2218256,2218310,2218384,2218446,2218457,2218516,2218636,2218700,2218736,2218826,2218902,2218912,2219020,2219074,2219192,2219258,2219312,2219392,2219414,2219482,2219540,2219658,2219714,2219772,2219846,2219908,2219966,2220010,2220098,2220160,2220194,2220280,2220360,2220414,2220472,2220580,2220640,2220752,2220798,2220854,2220864,2220930,2221094,2221150,2221252,2221282,2221344,2221406,2221518,2221573,2221590,2221624,2221708,2221788,2221853,2221898,2222002,2222062,2222171,2222216,2222274,2222342,2222400,2222506,2222566,2222662,2222694,2222756,2222848,2222924,2222986,2223022,2223102,2223112,2223192,2223266,2223302,2223402,2223462,2223568,2223642,2223670,2223738,2223794,2223902,2223994,2224048,2224082,2224142,2224236,2224306,2224368,2224406,2224482,2224494,2224574,2224646,2224684,2224780,2224840,2224942,2225014,2225044,2225112,2225166,2225270,2225360,2225414,2225450,2225550,2225602,2225668,2225728,2225768,2225842,2225856,2225936,2226004,2226044,2226138,2226196,2226360,2226390,2226458,2226464,2226612,2226700,2226754,2226792,2226888,2226942,2227006,2227066,2227108,2227180,2227196,2227276,2227342,2227382,2227472,2227530,2227626,2227696,2227728,2227796,2227850,2227948,2228034,2228088,2228128,2228222,2228276,2228338,2228398,2228442,2228520,2228600,2228664,2228708,2228796,2228854,2228946,2229016,2229050,2229088,2229126,2229180,2229274,2229358,2229410,2229452,2229544,2229598,2229660,2229718,2229764,2229832,2229852,2229984,2230030,2230116,2230174,2230262,2230332,2230368,2230436,2230490,2230580,2230662,2230716,2230760,2230898,2230958,2230968,2231064,2231118,2231152,2231232,2231292,2231336,2231420,2231476,2231564,2231632,2231670,2231738,2231792,2231878,2231958,2232012,2232060,2232068,2232199,2232258,2232316,2232364,2232416,2232452,2232530,2232590,2232634,2232716,2232772,2232858,2232926,2232964,2233032,2233164,2233242,2233296,2233346,2233356,2233484,2233540,2233598,2233650,2233712,2233738,2233834,2233904,2233984,2234042,2234102,2234108,2234202,2234240,2234310,2234364,2234444,2234520,2234574,2234628,2234638,2234762,2234816,2234874,2234930,2234988,2235016,2235108,2235178,2235256,2235314,2235372,2235408,2235474,2235514,2235630,2235708,2235782,2235836,2235890,2235896,2235908,2236076,2236082,2236138,2236246,2236276,2236364,2236434,2236510,2236516,2236626,2236662,2236728,2236764,2236836,2236888,2236964,2237036,2237090,2237145,2237160,2237274,2237330,2237436,2237492,2237524,2237606,2237677,2237684,2237758,2237818,2237874,2237962,2238004,2238072,2238126,2238200,2238270,2238324,2238380,2238396,2238506,2238560,2238616,2238674,2238730,2238764,2238844,2238914,2238986,2239044,2239098,2239138,2239200,2239244,2239308,2239360,2239432,2239544,2239602,2239620,2239724,2239778,2239836,2239892,2239948,2239984,2240062,2240132,2240202,2240258,2240294,2240352,2240408,2240454,2240518,2240572,2240644,2240708,2240762,2240820,2240840,2240935,2240937,2240961,2240985,2240987,2240989,2240990,2240991,2241017,2241044,2241046,2241071,2241097,2241099,2241123,2241148,2241160,2241177,2241184,2241219,2241255,2241257,2241289,2241322,2241324,2241355,2241387,2241389,2241413,2241438,2241440,2241455,2241480,2241491,2241508,2241526,2241528,2241553,2241582,2241587,2241604,2241624,2241628,2241655,2241685,2241689,2241711,2241735,2241738,2241769,2241801,2241830,2241880,2241903,2241906,2241933,2241958,2241961,2241970,2241977,2241980,2242026,2242070,2242073,2242098,2242122,2242124,2242125,2242150,2242176,2242178,2242202,2242227,2242233,2242255,2242274,2242286,2242303,2242310,2242343,2242377,2242393,2242424,2242442,2242444,2242473,2242503,2242505,2242528,2242552,2242554,2242568,2242591,2242601,2242618,2242636,2242638,2242661,2242688,2242693,2242710,2242730,2242734,2242759,2242787,2242811,2242834,2242837,2242866,2242896,2242923,2242970,2242992,2242995,2243021,2243045,2243048,2243057,2243064,2243067,2243070,2243111,2243152,2243172,2243196,2243202,2243204,2243205,2243229,2243254,2243256,2243279,2243303,2243309,2243330,2243348,2243360,2243377,2243384,2243414,2243445,2243461,2243491,2243508,2243510,2243537,2243565,2243567,2243589,2243612,2243614,2243627,2243648,2243657,2243674,2243692,2243694,2243715,2243740,2243745,2243762,2243782,2243786,2243809,2243834,2243838,2243859,2243881,2243884,2243911,2243939,2243964,2244008,2244029,2244032,2244057,2244080,2244089,2244098,2244101,2244104,2244142,2244180,2244199,2244222,2244228,2244230,2244253,2244277,2244279,2244301,2244324,2244330,2244350,2244367,2244379,2244396,2244403,2244430,2244458,2244474,2244503,2244519,2244545,2244571,2244573,2244594,2244616,2244618,2244637,2244656,2244673,2244691,2244693,2244712,2244735,2244740,2244757,2244777,2244781,2244802,2244825,2244829,2244849,2244870,2244873,2244898,2244924,2244947,2244988,2245008,2245011,2245035,2245057,2245066,2245075,2245076,2245079,2245082,2245117,2245152,2245170,2245192,2245198,2245200,2245222,2245245,2245247,2245268,2245290,2245295,2245314,2245330,2245332,2245344,2245361,2245368,2245392,2245417,2245432,2245460,2245476,2245500,2245524,2245564,2245582,2245600,2245617,2245635,2245637,2245654,2245675,2245680,2245697,2245717,2245721,2245740,2245761,2245764,2245766,2245785,2245805,2245808,2245831,2245855,2245876,2245914,2245933,2245936,2245959,2245980,2245989,2245998,2246001,2246004,2246036,2246068,2246069,2246086,2246107,2246113,2246115,2246136,2246158,2246160,2246180,2246201,2246206,2246224,2246239,2246241,2246253,2246270,2246281,2246303,2246334,2246361,2246376,2246398,2246420,2246422,2246441,2246460,2246461,2246478,2246495,2246511,2246528,2246530,2246546,2246566,2246571,2246587,2246606,2246610,2246627,2246646,2246649,2246651,2246669,2246688,2246691,2246712,2246733,2246735,2246754,2246789,2246807,2246810,2246832,2246852,2246861,2246870,2246873,2246876,2246905,2246934,2246935,2246951,2246971,2246977,2246979,2246998,2247018,2247020,2247039,2247059,2247064,2247081,2247095,2247097,2247109,2247126,2247135,2247138,2247156,2247186,2247211,2247225,2247245,2247265,2247267,2247285,2247303,2247304,2247319,2247334,2247350,2247367,2247369,2247383,2247401,2247406,2247422,2247441,2247445,2247461,2247479,2247482,2247484,2247501,2247519,2247522,2247541,2247560,2247562,2247564,2247581,2247614,2247633,2247654,2247673,2247682,2247691,2247694,2247697,2247723,2247749,2247750,2247765,2247784,2247790,2247792,2247809,2247827,2247829,2247847,2247866,2247871,2247887,2247900,2247902,2247914,2247931,2247939,2247941,2247958,2247986,2248009,2248022,2248040,2248058,2248060,2248077,2248094,2248095,2248109,2248123,2248138,2248154,2248156,2248169,2248186,2248191,2248206,2248224,2248228,2248242,2248258,2248261,2248263,2248279,2248296,2248299,2248316,2248333,2248335,2248352,2248368,2248384,2248402,2248422,2248440,2248449,2248458,2248461,2248464,2248487,2248510,2248511,2248525,2248543,2248549,2248566,2248583,2248585,2248602,2248620,2248625,2248640,2248652,2248654,2248666,2248683,2248691,2248693,2248708,2248744,2248767,2248784,2248801,2248803,2248819,2248835,2248836,2248849,2248862,2248876,2248890,2248891,2248893,2248895,2248896,2248897,2248909,2248921,2248926,2248931,2248932,2248933,2248947,2248964,2248968,2248969,2248970,2248983,2248996,2248999,2249002,2249003,2249004,2249006,2249008,2249022,2249036,2249039,2249042,2249043,2249044,2249060,2249076,2249077,2249078,2249080,2249096,2249111,2249112,2249113,2249128,2249143,2249146,2249149,2249166,2249183,2249184,2249185,2249194,2249203,2249204,2249205,2249206,2249209,2249212,2249213,2249214,2249235,2249256,2249257,2249258,2249259,2249260,2249261,2249274,2249287,2249292,2249297,2249299,2249301,2249316,2249331,2249333,2249335,2249336,2249337,2249353,2249369,2249370,2249372,2249374,2249377,2249380,2249392,2249404,2249405,2249406,2249408,2249419,2249429,2249436,2249443,2249445,2249447,2249448,2249449,2249450,2249464,2249478,2249479,2249499,2249519,2249521,2249523,2249538,2249553,2249555,2249557,2249558,2249559,2249574,2249589,2249590,2249591,2249592,2249593,2249605,2249617,2249618,2249632,2249646,2249647,2249649,2249651,2249652,2249653,2249664,2249675,2249680,2249685,2249686,2249687,2249700,2249716,2249720,2249721,2249722,2249723,2249735,2249747,2249750,2249753,2249754,2249755,2249757,2249759,2249772,2249785,2249788,2249791,2249792,2249793,2249808,2249823,2249824,2249825,2249827,2249842,2249856,2249857,2249858,2249872,2249886,2249889,2249892,2249908,2249924,2249925,2249926,2249935,2249944,2249945,2249946,2249947,2249948,2249951,2249954,2249955,2249974,2249993,2249994,2249995,2249996,2249997,2249998,2249999,2250011,2250027,2250032,2250034,2250036,2250050,2250064,2250066,2250068,2250069,2250070,2250085,2250100,2250101,2250103,2250105,2250107,2250109,2250121,2250133,2250134,2250136,2250146,2250155,2250162,2250169,2250171,2250173,2250174,2250175,2250188,2250201,2250202,2250220,2250238,2250240,2250242,2250256,2250270,2250272,2250274,2250275,2250286,2250300,2250304,2250305,2250306,2250307,2250308,2250320,2250332,2250333,2250346,2250359,2250360,2250362,2250364,2250365,2250366,2250376,2250386,2250391,2250396,2250397,2250398,2250410,2250425,2250429,2250430,2250431,2250432,2250443,2250454,2250457,2250460,2250461,2250462,2250464,2250466,2250478,2250490,2250493,2250496,2250497,2250498,2250512,2250526,2250527,2250528,2250530,2250544,2250557,2250558,2250559,2250572,2250585,2250588,2250591,2250606,2250621,2250622,2250623,2250632,2250641,2250642,2250643,2250644,2250645,2250646,2250649,2250652,2250653,2250670,2250687,2250688,2250689,2250690,2250691,2250692,2250693,2250694,2250705,2250720,2250725,2250727,2250729,2250742,2250755,2250756,2250758,2250760,2250761,2250762,2250776,2250790,2250791,2250793,2250795,2250797,2250799,2250810,2250821,2250822,2250823,2250825,2250834,2250842,2250843,2250850,2250857,2250859,2250861,2250862,2250863,2250875,2250887,2250888,2250889,2250905,2250921,2250923,2250925,2250938,2250951,2250952,2250954,2250956,2250957,2250967,2250980,2250984,2250985,2250986,2250987,2250988,2251000,2251012,2251013,2251025,2251037,2251038,2251040,2251042,2251043,2251044,2251053,2251062,2251067,2251072,2251073,2251074,2251085,2251099,2251103,2251104,2251105,2251106,2251116,2251126,2251129,2251132,2251133,2251134,2251136,2251138,2251149,2251160,2251163,2251166,2251167,2251168,2251181,2251194,2251195,2251196,2251198,2251211,2251223,2251224,2251225,2251237,2251249,2251252,2251255,2251269,2251283,2251284,2251293,2251302,2251303,2251304,2251305,2251306,2251307,2251310,2251313,2251328,2251343,2251344,2251345,2251346,2251347,2251348,2251349,2251359,2251373,2251378,2251380,2251382,2251394,2251406,2251407,2251409,2251411,2251412,2251425,2251438,2251439,2251441,2251443,2251445,2251447,2251457,2251467,2251468,2251470,2251478,2251485,2251486,2251493,2251500,2251502,2251504,2251505,2251506,2251517,2251528,2251529,2251530,2251544,2251558,2251560,2251562,2251574,2251586,2251587,2251589,2251591,2251592,2251601,2251613,2251617,2251618,2251619,2251620,2251621,2251633,2251645,2251646,2251657,2251668,2251669,2251671,2251673,2251674,2251675,2251683,2251691,2251696,2251701,2251702,2251703,2251713,2251726,2251730,2251739,2251750,2251753,2251755,2251766,2251778,2251781,2251793,2251806,2251818,2251829,2251840,2251853,2251868,2251889,2251898,2251901,2251916,2251929,2251930,2251931,2251944,2251958,2251970,2251982,2251995,2252007,2252009,2252012,2252022,2252032,2252039,2252051,2252059,2252061,2252071,2252081,2252095,2252119,2252130,2252132,2252144,2252155,2252156,2252167,2252188,2252199,2252201,2252203,2252214,2252225,2252234,2252246,2252250,2252258,2252268,2252271,2252273,2252283,2252294,2252297,2252308,2252320,2252331,2252341,2252351,2252363,2252377,2252397,2252406,2252407,2252410,2252423,2252434,2252435,2252436,2252448,2252461,2252472,2252483,2252495,2252506,2252508,2252511,2252520,2252529,2252535,2252546,2252554,2252556,2252565,2252574,2252587,2252609,2252619,2252630,2252641,2252642,2252652,2252671,2252681,2252683,2252685,2252696,2252707,2252715,2252726,2252730,2252737,2252746,2252749,2252751,2252760,2252770,2252773,2252783,2252794,2252804,2252813,2252822,2252833,2252845,2252863,2252872,2252873,2252876,2252888,2252898,2252899,2252900,2252911,2252923,2252933,2252943,2252953,2252962,2252964,2252967,2252976,2252985,2252990,2253000,2253008,2253010,2253018,2253026,2253037,2253056,2253065,2253075,2253085,2253086,2253096,2253114,2253123,2253124,2253126,2253128,2253138,2253148,2253155,2253165,2253169,2253175,2253183,2253186,2253188,2253196,2253205,2253208,2253217,2253227,2253236,2253244,2253252,2253262,2253272,2253288,2253297,2253298,2253301,2253311,2253319,2253320,2253321,2253331,2253342,2253351,2253360,2253369,2253377,2253379,2253382,2253390,2253398,2253403,2253412,2253419,2253421,2253429,2253437,2253446,2253455,2253463,2253471,2253480,2253489,2253490,2253500,2253517,2253525,2253526,2253528,2253530,2253539,2253548,2253554,2253563,2253567,2253572,2253579,2253582,2253584,2253591,2253599,2253602,2253610,2253619,2253627,2253634,2253641,2253650,2253659,2253674,2253683,2253684,2253687,2253696,2253703,2253704,2253705,2253714,2253724,2253732,2253740,2253748,2253755,2253757,2253760,2253762,2253768,2253774,2253776,2253778,2253781,2253784,2253790,2253796,2253798,2253800,2253801,2253802,2253809,2253816,2253817,2253818,2253826,2253834,2253835,2253836,2253843,2253850,2253851,2253852,2253860,2253868,2253869,2253870,2253871,2253872,2253881,2253896,2253903,2253904,2253905,2253906,2253907,2253909,2253911,2253912,2253913,2253921,2253929,2253930,2253931,2253935,2253940,2253945,2253949,2253950,2253951,2253952,2253956,2253960,2253963,2253966,2253967,2253968,2253970,2253972,2253977,2253982,2253985,2253988,2253989,2253990,2253997,2254004,2254005,2254007,2254009,2254015,2254021,2254022,2254023,2254029,2254035,2254038,2254041,2254047,2254053,2254061,2254069,2254070,2254071,2254072,2254073,2254076,2254079,2254085,2254091,2254092,2254093,2254094,2254095,2254096,2254097,2254105,2254113,2254115,2254117,2254123,2254129,2254131,2254133,2254139,2254145,2254146,2254147,2254149,2254151,2254153,2254155,2254160,2254165,2254167,2254169,2254171,2254173,2254179,2254185,2254187,2254189,2254190,2254191,2254192,2254198,2254204,2254205,2254206,2254213,2254220,2254221,2254222,2254228,2254234,2254235,2254236,2254243,2254250,2254251,2254252,2254253,2254254,2254262,2254275,2254281,2254282,2254283,2254284,2254285,2254287,2254289,2254290,2254291,2254298,2254305,2254306,2254307,2254311,2254316,2254320,2254323,2254324,2254325,2254326,2254330,2254334,2254336,2254338,2254339,2254341,2254343,2254348,2254353,2254358,2254359,2254365,2254376,2254382,2254383,2254388,2254393,2254394,2254397,2254400,2254405,2254410,2254417,2254424,2254425,2254426,2254427,2254428,2254431,2254434,2254439,2254444,2254445,2254446,2254447,2254448,2254449,2254450,2254457,2254465,2254467,2254472,2254477,2254478,2254480,2254482,2254487,2254492,2254493,2254495,2254497,2254499,2254501,2254505,2254509,2254511,2254513,2254515,2254517,2254522,2254527,2254529,2254531,2254532,2254533,2254534,2254539,2254544,2254545,2254546,2254552,2254558,2254559,2254560,2254565,2254570,2254571,2254572,2254578,2254584,2254585,2254586,2254587,2254598,2254609,2254610,2254612,2254614,2254620,2254626,2254630,2254636,2254639,2254642,2254646,2254648,2254653,2254658,2254661,2254664,2254669,2254678,2254683,2254687,2254693,2254699,2254708,2254714,2254715,2254718,2254724,2254728,2254729,2254735,2254742,2254747,2254752,2254757,2254761,2254763,2254766,2254771,2254776,2254781,2254786,2254788,2254789,2254793,2254801,2254806,2254810,2254814,2254819,2254824,2254825,2254834,2254843,2254844,2254846,2254848,2254853,2254858,2254862,2254867,2254869,2254872,2254876,2254878,2254882,2254886,2254889,2254892,2254896,2254903,2254907,2254910,2254915,2254920,2254927,2254932,2254933,2254936,2254941,2254944,2254945,2254950,2254956,2254960,2254964,2254968,2254971,2254973,2254976,2254980,2254984,2254988,2254992,2254994,2254995,2254998,2255004,2255008,2255011,2255014,2255015,2255019,2255023,2255024,2255025,2255026,2255027,2255034,2255041,2255042,2255043,2255044,2255045,2255047,2255049,2255050,2255051,2255055,2255059,2255060,2255061,2255064,2255067,2255069,2255071,2255072,2255073,2255076,2255079,2255080,2255081,2255082,2255083,2255084,2255088,2255092,2255093,2255094,2255096,2255098,2255099,2255100,2255103,2255106,2255110,2255114,2255115,2255116,2255118,2255120,2255123,2255126,2255128,2255130,2255134,2255138,2255139,2255140,2255141,2255142,2255145,2255148,2255150,2255152,2255153,2255154,2255155,2255156,2255160,2255164,2255166,2255168,2255170,2255172,2255174,2255176,2255178,2255180,2255181,2255182,2255184,2255186,2255187,2255188,2255191,2255194,2255195,2255196,2255197,2255200,2255203,2255204,2255205,2255206,2255207,2255208,2255209,2255218,2255228,2255236,2255246,2255260,2255266,2255278,2255286,2255296,2255302,2255312,2255320,2255332,2255342,2255354,2255362,2255370,2255380,2255388,2255396,2255404,2255412,2255418,2255428,2255438,2255450,2255462,2255470,2255480,2255490,2255500,2255510,2255518,2255528,2255538,2255548,2255558,2255570,2255582,2255592,2255602,2255610,2255620,2255630,2255640,2255652,2255666,2255676,2255690,2255700,2255712,2255724,2255736,2255748,2255758,2255770,2255782,2255794,2255806,2255818,2255832,2255844,2255856,2255866,2255878,2255890,2255902,2255916,2255932,2255944,2255960,2255972,2255986,2256000,2256014,2256028,2256040,2256054,2256068,2256082,2256096,2256110,2256124,2256138,2256152,2256164,2256178,2256192,2256206,2256222,2256240,2256262,2256272,2256286,2256302,2256318,2256334,2256350,2256364,2256380,2256396,2256412,2256428,2256444,2256460,2256474,2256490,2256504,2256520,2256536,2256552,2256570,2256590,2256614,2256626,2256642,2256660,2256678,2256696,2256714,2256730,2256748,2256766,2256784,2256802,2256820,2256838,2256854,2256870,2256886,2256904,2256922,2256940,2256960,2256982,2257008,2257022,2257040,2257060,2257080,2257100,2257120,2257138,2257158,2257178,2257198,2257218,2257238,2257258,2257276,2257294,2257312,2257330,2257350,2257370,2257392,2257398,2257422,2257450,2257466,2257486,2257508,2257530,2257552,2257574,2257594,2257616,2257638,2257660,2257682,2257704,2257726,2257746,2257766,2257786,2257806,2257826,2257866,2257892,2257922,2257940,2257962,2257986,2258010,2258018,2258042,2258066,2258088,2258128,2258146,2258176,2258200,2258224,2258246,2258268,2258290,2258312,2258334,2258356,2258380,2258408,2258440,2258460,2258484,2258510,2258536,2258562,2258588,2258612,2258638,2258664,2258690,2258716,2258742,2258768,2258792,2258816,2258840,2258864,2258888,2258912,2258938,2258966,2259000,2259022,2259048,2259076,2259104,2259132,2259160,2259186,2259214,2259242,2259270,2259298,2259326,2259354,2259380,2259406,2259432,2259458,2259484,2259510,2259538,2259566,2259602,2259626,2259654,2259684,2259714,2259744,2259774,2259802,2259832,2259862,2259892,2259910,2259928,2259958,2259988,2260016,2260044,2260072,2260078,2260106,2260134,2260162,2260192,2260222,2260228,2260264,2260290,2260320,2260352,2260384,2260390,2260422,2260454,2260484,2260516,2260548,2260567,2260587,2260618,2260650,2260682,2260710,2260720,2260750,2260780,2260810,2260840,2260872,2260878,2260938,2260972,2261002,2261021,2261068,2261079,2261109,2261142,2261176,2261184,2261216,2261250,2261284,2261318,2261353,2261386,2261420,2261430,2261464,2261494,2261526,2261558,2261590,2261600,2261633,2261666,2261700,2261736,2261766,2261776,2261838,2261865,2261884,2261918,2261956,2261990,2262026,2262062,2262098,2262134,2262146,2262180,2262216,2262230,2262258,2262292,2262326,2262360,2262394,2262406,2262440,2262476,2262498,2262550,2262582,2262594,2262630,2262666,2262702,2262740,2262752,2262790,2262826,2262864,2262902,2262940,2262978,2263016,2263057,2263094,2263110,2263170,2263195,2263220,2263256,2263292,2263330,2263340,2263408,2263422,2263456,2263494,2263532,2263570,2263608,2263622,2263662,2263700,2263740,2263780,2263820,2263860,2263900,2263916,2263956,2263994,2264032,2264070,2264108,2264124,2264164,2264200,2264240,2264252,2264322,2264338,2264374,2264414,2264454,2264494,2264534,2264550,2264590,2264630,2264672,2264697,2264722,2264768,2264840,2264882,2264888,2264934,2264954,2264986,2265026,2265078,2265120,2265158,2265200,2265216,2265288,2265326,2265344,2265386,2265428,2265470,2265512,2265530,2265572,2265614,2265656,2265700,2265742,2265786,2265830,2265874,2265894,2265936,2265978,2266020,2266064,2266106,2266126,2266168,2266212,2266242,2266302,2266342,2266362,2266406,2266450,2266494,2266538,2266558,2266602,2266646,2266690,2266734,2266778,2266824,2266872,2266916,2266938,2266982,2267026,2267070,2267116,2267160,2267182,2267246,2267298,2267360,2267402,2267424,2267470,2267516,2267562,2267608,2267630,2267676,2267722,2267768,2267848,2267896,2267906,2268012,2268058,2268104,2268150,2268198,2268244,2268268,2268314,2268362,2268396,2268460,2268504,2268528,2268576,2268624,2268672,2268730,2268778,2268826,2268909,2268964,2269012,2269068,2269074,2269140,2269228,2269276,2269326,2269394,2269442,2269492,2269528,2269634,2269660,2269710,2269804,2269864,2269914,2269972,2270056,2270106,2270156,2270212,2270220,2270328,2270378,2270428,2270522,2270550,2270600,2270652,2270750,2270798,2270826,2270922,2271008,2271036,2271096,2271182,2271234,2271286,2271338,2271396,2271462,2271514,2271606,2271662,2271714,2271744,2271814,2271880,2271950,2272000,2272074,2272162,2272216,2272246,2272308,2272396,2272450,2272504,2272612,2272618,2272686,2272740,2272834,2272892,2272946,2272978,2273048,2273114,2273182,2273258,2273354,2273440,2273472,2273480,2273542,2273628,2273682,2273736,2273788,2273849,2273918,2273972,2274064,2274122,2274176,2274210,2274278,2274344,2274410,2274488,2274582,2274666,2274700,2274710,2274716,2274778,2274906,2274960,2275014,2275023,2275080,2275148,2275202,2275292,2275302,2275356,2275410,2275446,2275512,2275518,2275584,2275616,2275704,2275738,2275830,2275874,2275918,2275954,2275966,2276028,2276114,2276160,2276214,2276268,2276328,2276340,2276404,2276458,2276546,2276604,2276618,2276666,2276704,2276768,2276834,2276846,2276876,2276962,2276998,2277088,2277168,2277206,2277220,2277230,2277292,2277412,2277424,2277474,2277528,2277588,2277656,2277710,2277720,2277806,2277864,2277918,2277932,2278022,2278030,2278096,2278132,2278192,2278254,2278264,2278352,2278474,2278486,2278548,2278664,2278678,2278728,2278782,2278842,2278910,2278964,2278976,2279060,2279118,2279172,2279188,2279278,2279288,2279354,2279390,2279448,2279512,2279522,2279610,2279684,2279690,2279744,2279806,2279848,2279883,2279884,2279904,2279925,2279929,2279932,2279933,2279956,2279979,2279982,2280007,2280032,2280060,2280086,2280093,2280125,2280153,2280160,2280185,2280208,2280211,2280229,2280268,2280292,2280319,2280346,2280371,2280396,2280401,2280406,2280411,2280429,2280472,2280501,2280503,2280529,2280560,2280568,2280584,2280600,2280620,2280638,2280661,2280684,2280701,2280720,2280725,2280765,2280803,2280806,2280841,2280874,2280876,2280878,2280880,2280905,2280929,2280935,2280941,2280967,2280996,2281019,2281053,2281087,2281109,2281133,2281157,2281181,2281205,2281232,2281257,2281264,2281295,2281322,2281348,2281374,2281377,2281394,2281431,2281454,2281480,2281506,2281530,2281554,2281559,2281564,2281569,2281587,2281628,2281655,2281657,2281682,2281712,2281720,2281735,2281750,2281770,2281788,2281810,2281832,2281849,2281868,2281873,2281911,2281947,2281950,2281983,2282014,2282016,2282018,2282020,2282045,2282069,2282075,2282090,2282115,2282134,2282155,2282187,2282220,2282241,2282264,2282287,2282310,2282333,2282359,2282383,2282390,2282420,2282444,2282447,2282472,2282497,2282500,2282516,2282551,2282573,2282598,2282623,2282646,2282669,2282676,2282683,2282701,2282741,2282767,2282769,2282792,2282820,2282828,2282843,2282858,2282877,2282894,2282915,2282936,2282953,2282972,2282977,2283013,2283047,2283048,2283051,2283082,2283111,2283113,2283115,2283117,2283142,2283166,2283172,2283186,2283210,2283229,2283248,2283278,2283293,2283311,2283331,2283353,2283375,2283397,2283419,2283444,2283467,2283474,2283503,2283526,2283529,2283553,2283577,2283580,2283595,2283610,2283629,2283650,2283674,2283713,2283735,2283742,2283749,2283756,2283774,2283813,2283838,2283840,2283862,2283889,2283897,2283911,2283925,2283928,2283944,2283960,2283980,2284000,2284017,2284036,2284041,2284075,2284107,2284108,2284111,2284140,2284167,2284169,2284171,2284173,2284198,2284227,2284240,2284263,2284282,2284313,2284341,2284358,2284377,2284398,2284419,2284440,2284461,2284485,2284507,2284514,2284542,2284564,2284565,2284569,2284592,2284614,2284630,2284644,2284662,2284682,2284705,2284726,2284747,2284770,2284777,2284784,2284802,2284840,2284864,2284866,2284887,2284913,2284921,2284934,2284947,2284950,2284965,2284980,2284981,2285000,2285019,2285036,2285055,2285060,2285092,2285122,2285125,2285152,2285177,2285179,2285181,2285183,2285208,2285232,2285238,2285250,2285272,2285291,2285295,2285321,2285347,2285363,2285381,2285401,2285421,2285441,2285461,2285484,2285505,2285512,2285539,2285560,2285564,2285586,2285605,2285608,2285623,2285636,2285653,2285672,2285694,2285714,2285734,2285756,2285763,2285770,2285788,2285825,2285848,2285850,2285870,2285895,2285903,2285915,2285927,2285930,2285944,2285958,2285959,2285977,2285995,2286012,2286031,2286036,2286066,2286094,2286097,2286122,2286145,2286147,2286149,2286151,2286176,2286200,2286206,2286217,2286238,2286257,2286261,2286285,2286309,2286324,2286341,2286360,2286379,2286398,2286417,2286439,2286459,2286466,2286491,2286510,2286514,2286535,2286553,2286556,2286570,2286582,2286598,2286616,2286637,2286656,2286675,2286696,2286703,2286710,2286727,2286762,2286784,2286786,2286805,2286829,2286837,2286847,2286857,2286860,2286874,2286888,2286889,2286906,2286923,2286939,2286957,2286962,2286990,2287016,2287019,2287042,2287063,2287065,2287067,2287069,2287093,2287116,2287122,2287133,2287153,2287171,2287175,2287197,2287219,2287233,2287249,2287267,2287285,2287303,2287321,2287342,2287361,2287368,2287391,2287411,2287431,2287448,2287451,2287464,2287475,2287490,2287507,2287527,2287545,2287563,2287583,2287590,2287597,2287613,2287645,2287665,2287667,2287686,2287710,2287718,2287727,2287736,2287739,2287753,2287767,2287768,2287784,2287800,2287815,2287832,2287837,2287863,2287887,2287890,2287911,2287930,2287932,2287934,2287936,2287959,2287981,2287987,2287997,2288016,2288034,2288038,2288058,2288078,2288091,2288106,2288123,2288140,2288157,2288174,2288194,2288212,2288213,2288220,2288241,2288259,2288278,2288294,2288297,2288309,2288319,2288333,2288349,2288368,2288385,2288402,2288421,2288428,2288435,2288450,2288495,2288497,2288523,2288553,2288561,2288564,2288565,2288579,2288593,2288594,2288595,2288596,2288597,2288612,2288627,2288628,2288629,2288643,2288657,2288660,2288663,2288666,2288669,2288691,2288713,2288714,2288717,2288720,2288737,2288754,2288755,2288756,2288758,2288760,2288761,2288762,2288764,2288766,2288787,2288808,2288809,2288810,2288816,2288822,2288827,2288832,2288846,2288860,2288864,2288868,2288869,2288870,2288888,2288906,2288907,2288908,2288920,2288932,2288935,2288938,2288952,2288966,2288969,2288972,2288986,2289000,2289003,2289006,2289023,2289040,2289041,2289042,2289043,2289044,2289051,2289058,2289071,2289084,2289088,2289092,2289107,2289122,2289123,2289124,2289125,2289128,2289131,2289140,2289149,2289150,2289151,2289164,2289177,2289180,2289183,2289198,2289213,2289214,2289215,2289231,2289247,2289250,2289253,2289258,2289265,2289268,2289280,2289292,2289308,2289324,2289325,2289326,2289328,2289330,2289331,2289332,2289333,2289334,2289357,2289380,2289386,2289392,2289395,2289398,2289399,2289400,2289413,2289426,2289427,2289428,2289429,2289443,2289457,2289458,2289459,2289460,2289473,2289486,2289489,2289494,2289497,2289506,2289526,2289538,2289539,2289542,2289545,2289561,2289577,2289578,2289579,2289580,2289582,2289584,2289585,2289586,2289588,2289590,2289610,2289630,2289631,2289632,2289638,2289644,2289648,2289652,2289665,2289678,2289682,2289686,2289687,2289703,2289719,2289720,2289721,2289733,2289745,2289748,2289751,2289764,2289777,2289780,2289783,2289796,2289809,2289812,2289815,2289830,2289845,2289846,2289847,2289848,2289849,2289856,2289863,2289875,2289887,2289891,2289895,2289909,2289923,2289924,2289925,2289926,2289929,2289932,2289940,2289948,2289949,2289950,2289962,2289974,2289977,2289980,2289994,2290008,2290009,2290010,2290025,2290040,2290043,2290046,2290051,2290058,2290061,2290072,2290083,2290098,2290113,2290114,2290115,2290117,2290119,2290120,2290121,2290122,2290123,2290144,2290165,2290171,2290177,2290180,2290183,2290184,2290185,2290197,2290209,2290210,2290211,2290212,2290225,2290238,2290239,2290240,2290241,2290253,2290265,2290268,2290273,2290276,2290284,2290302,2290313,2290314,2290317,2290320,2290334,2290348,2290349,2290350,2290351,2290353,2290355,2290356,2290357,2290359,2290361,2290380,2290399,2290400,2290401,2290407,2290413,2290417,2290421,2290433,2290445,2290449,2290453,2290454,2290468,2290482,2290483,2290484,2290495,2290506,2290509,2290512,2290524,2290536,2290539,2290542,2290543,2290555,2290567,2290570,2290573,2290587,2290601,2290602,2290603,2290604,2290605,2290612,2290619,2290629,2290639,2290643,2290647,2290660,2290673,2290674,2290675,2290676,2290679,2290682,2290689,2290696,2290697,2290698,2290709,2290720,2290723,2290726,2290739,2290752,2290753,2290754,2290768,2290782,2290785,2290788,2290793,2290800,2290803,2290804,2290814,2290824,2290838,2290852,2290853,2290854,2290856,2290858,2290859,2290860,2290861,2290862,2290881,2290900,2290906,2290912,2290915,2290918,2290919,2290920,2290931,2290942,2290943,2290944,2290945,2290957,2290969,2290970,2290971,2290972,2290983,2290994,2290997,2291002,2291005,2291012,2291028,2291038,2291039,2291042,2291045,2291057,2291069,2291070,2291071,2291072,2291073,2291075,2291077,2291078,2291080,2291082,2291083,2291101,2291119,2291120,2291121,2291127,2291133,2291137,2291141,2291152,2291163,2291167,2291171,2291176,2291188,2291196,2291197,2291198,2291208,2291218,2291221,2291224,2291235,2291246,2291249,2291252,2291253,2291264,2291275,2291278,2291281,2291294,2291307,2291308,2291309,2291310,2291311,2291318,2291325,2291333,2291341,2291345,2291349,2291361,2291373,2291374,2291375,2291376,2291379,2291382,2291388,2291394,2291395,2291396,2291406,2291416,2291419,2291422,2291434,2291446,2291447,2291448,2291461,2291474,2291475,2291478,2291485,2291492,2291495,2291496,2291505,2291514,2291527,2291540,2291541,2291542,2291544,2291546,2291547,2291548,2291549,2291550,2291553,2291570,2291585,2291591,2291599,2291602,2291603,2291604,2291614,2291624,2291625,2291626,2291627,2291638,2291649,2291650,2291651,2291652,2291662,2291672,2291675,2291680,2291683,2291689,2291703,2291712,2291713,2291716,2291719,2291730,2291741,2291742,2291743,2291744,2291746,2291748,2291749,2291751,2291753,2291754,2291771,2291788,2291789,2291795,2291803,2291806,2291816,2291826,2291830,2291834,2291844,2291854,2291855,2291856,2291866,2291876,2291879,2291891,2291901,2291904,2291907,2291908,2291918,2291928,2291931,2291944,2291955,2291956,2291957,2291958,2291959,2291966,2291978,2291984,2291988,2291992,2292003,2292014,2292015,2292016,2292019,2292022,2292028,2292034,2292035,2292036,2292044,2292054,2292057,2292068,2292079,2292080,2292081,2292093,2292105,2292108,2292115,2292122,2292125,2292126,2292134,2292153,2292165,2292166,2292167,2292169,2292171,2292172,2292173,2292174,2292177,2292192,2292205,2292211,2292219,2292222,2292223,2292232,2292241,2292242,2292243,2292244,2292254,2292264,2292265,2292266,2292275,2292284,2292287,2292292,2292295,2292300,2292312,2292320,2292321,2292324,2292336,2292346,2292347,2292348,2292349,2292351,2292353,2292354,2292356,2292358,2292359,2292375,2292391,2292392,2292398,2292404,2292406,2292408,2292417,2292429,2292433,2292436,2292445,2292452,2292453,2292454,2292463,2292472,2292475,2292486,2292495,2292498,2292501,2292502,2292511,2292520,2292523,2292534,2292543,2292544,2292545,2292546,2292547,2292554,2292565,2292570,2292574,2292578,2292588,2292598,2292599,2292600,2292603,2292606,2292611,2292616,2292617,2292618,2292625,2292634,2292637,2292647,2292657,2292658,2292659,2292670,2292681,2292684,2292691,2292698,2292701,2292702,2292709,2292725,2292735,2292736,2292737,2292739,2292741,2292742,2292743,2292744,2292747,2292761,2292773,2292779,2292787,2292790,2292791,2292799,2292807,2292808,2292809,2292810,2292819,2292828,2292829,2292837,2292845,2292848,2292853,2292856,2292857,2292861,2292871,2292878,2292879,2292882,2292893,2292902,2292903,2292904,2292905,2292907,2292909,2292910,2292912,2292914,2292915,2292930,2292945,2292946,2292952,2292958,2292959,2292960,2292961,2292969,2292980,2292984,2292987,2292995,2293001,2293002,2293003,2293004,2293012,2293020,2293023,2293033,2293041,2293044,2293047,2293048,2293056,2293064,2293067,2293077,2293085,2293086,2293087,2293088,2293089,2293096,2293106,2293110,2293114,2293118,2293127,2293136,2293137,2293138,2293141,2293144,2293149,2293154,2293155,2293156,2293162,2293170,2293173,2293174,2293182,2293190,2293191,2293192,2293202,2293212,2293215,2293222,2293229,2293232,2293233,2293239,2293253,2293262,2293263,2293264,2293266,2293268,2293269,2293270,2293271,2293274,2293286,2293296,2293302,2293310,2293313,2293314,2293321,2293328,2293329,2293330,2293331,2293339,2293347,2293348,2293349,2293356,2293363,2293366,2293371,2293374,2293377,2293385,2293391,2293392,2293395,2293405,2293413,2293414,2293415,2293416,2293418,2293420,2293421,2293423,2293425,2293426,2293440,2293454,2293460,2293466,2293467,2293468,2293469,2293476,2293486,2293490,2293492,2293499,2293505,2293506,2293507,2293508,2293515,2293522,2293525,2293534,2293541,2293544,2293547,2293554,2293561,2293564,2293573,2293580,2293581,2293582,2293583,2293584,2293591,2293600,2293603,2293607,2293611,2293619,2293627,2293628,2293629,2293632,2293635,2293640,2293645,2293646,2293647,2293652,2293659,2293662,2293663,2293670,2293677,2293678,2293679,2293688,2293697,2293700,2293707,2293714,2293717,2293718,2293723,2293735,2293743,2293744,2293745,2293747,2293749,2293750,2293751,2293752,2293755,2293766,2293775,2293780,2293787,2293790,2293791,2293798,2293805,2293806,2293807,2293814,2293821,2293822,2293823,2293829,2293835,2293838,2293843,2293846,2293847,2293850,2293857,2293862,2293863,2293866,2293875,2293882,2293883,2293884,2293885,2293887,2293889,2293890,2293892,2293894,2293895,2293908,2293921,2293927,2293933,2293934,2293935,2293936,2293942,2293951,2293955,2293956,2293962,2293968,2293969,2293970,2293971,2293977,2293983,2293986,2293994,2294000,2294003,2294006,2294012,2294018,2294021,2294029,2294035,2294036,2294037,2294038,2294039,2294046,2294054,2294059,2294063,2294070,2294077,2294078,2294079,2294082,2294085,2294090,2294095,2294096,2294097,2294101,2294105,2294108,2294111,2294112,2294118,2294124,2294125,2294133,2294141,2294144,2294151,2294158,2294161,2294162,2294169,2294179,2294183,2294184,2294186,2294188,2294189,2294190,2294191,2294194,2294204,2294212,2294217,2294224,2294227,2294233,2294239,2294240,2294241,2294247,2294253,2294254,2294255,2294260,2294265,2294268,2294273,2294276,2294277,2294283,2294289,2294290,2294293,2294301,2294307,2294308,2294309,2294310,2294312,2294314,2294315,2294317,2294319,2294320,2294332,2294344,2294350,2294356,2294357,2294358,2294363,2294371,2294375,2294380,2294385,2294386,2294387,2294392,2294397,2294400,2294407,2294412,2294415,2294418,2294423,2294428,2294435,2294442,2294443,2294444,2294445,2294446,2294453,2294460,2294464,2294468,2294474,2294480,2294481,2294482,2294485,2294488,2294493,2294498,2294499,2294502,2294505,2294508,2294511,2294512,2294517,2294522,2294523,2294530,2294537,2294540,2294547,2294554,2294557,2294558,2294564,2294572,2294575,2294576,2294578,2294580,2294581,2294582,2294583,2294586,2294595,2294602,2294607,2294614,2294617,2294622,2294627,2294628,2294629,2294634,2294639,2294640,2294641,2294642,2294647,2294654,2294657,2294660,2294663,2294664,2294669,2294674,2294675,2294678,2294685,2294690,2294691,2294692,2294694,2294696,2294697,2294699,2294701,2294702,2294712,2294722,2294728,2294734,2294735,2294736,2294737,2294741,2294748,2294752,2294756,2294760,2294761,2294762,2294763,2294768,2294773,2294775,2294781,2294786,2294789,2294792,2294796,2294800,2294806,2294812,2294813,2294814,2294815,2294816,2294822,2294828,2294832,2294836,2294841,2294846,2294847,2294848,2294851,2294854,2294858,2294862,2294863,2294866,2294869,2294878,2294890,2294910,2294926,2294940,2294941,2294943,2294945,2294946,2294947,2294990,2295013,2295014,2295035,2295055,2295089,2295130,2295131,2295148,2295166,2295184,2295262,2295277,2295297,2295321,2295322,2295349,2295390,2295391,2295404,2295430,2295444,2295445,2295476,2295507,2295512,2295529,2295551,2295561,2295562,2295601,2295626,2295627,2295648,2295664,2295678,2295679,2295716,2295750,2295767,2295795,2295809,2295843,2295871,2295872,2295894,2295926,2295936,2296015,2296068,2296164,2296193,2296372,2296390,2296417,2296418,2296455,2296488,2296504,2296528,2296576,2296582,2296604,2296618,2296633,2296789,2296884,2296918,2296925,2296929,2297021,2297034,2297047,2297126,2297144,2297147,2297163,2297608,2297631,2297651,2297731,2297748,2297754,2297828,2297837,2297853,2297857,2297859,2297860,2297876,2297880,2297882,2297883,2297901,2297911,2297913,2297914,2297936,2297946,2297948,2297949,2297959,2297961,2297983,2297984,2297992,2297994,2298011,2298013,2298035,2298037,2298039,2298136,2298143,2298162,2298184,2298188,2298266,2298403,2298577,2298582,2298599,2298605,2298617,2298685,2298944,2298949,2298955,2299038,2299199,2299216,2299235,2299244,2299264,2299268,2299334,2299832,2300012,2300068,2300246,2300247,2300267,2300343,2300344,2300459,2300547,2300660,2300758,2300761,2300769,2300774,2300775,2300781,2300790,2300791,2300795,2300811,2300886,2300887,2301281,2301282,2301283,2301284,2301285,2301286,2301287,2301288,2301289,2301290,2301291,2301292,2301293,2301294,2301295,2301296,2301297,2301298,2301299,2301300,2301301,2301302,2301303,2301304,2301305,2301306,2301307,2301308,2301309,2301777,2301778,2301823,2301916,2301931,2302017,2302059,2302064,2302141,2302239,2302330,2302445,2302566,2304613,2304728,2304853,2304905,2304938,2304963,2305029,2305163,2306933,2306954,2307303,2307355,2307369,2307419,2307465,2307493,2307495,2309033,2309054,2309145,2309156,2309168,2309183,2309187,2309215,2309423,2309519,2309533,2310787,2310808,2310931,2310943,2311251,2311265,2311273,2311305,2312655,2312676,2312995,2313007,2313017,2313033,2313040,2313069,2313231,2313387,2314294,2314315,2314336,2314354,2314364,2314378,2314380,2314408,2315164,2315185,2315438,2315450,2315462,2315476,2315484,2315514,2316353,2316374,2316395,2316669,2316681,2316697,2316705,2316735,2317664,2317691,2317716,2317726,2317736,2317750,2317758,2318060,2319051,2319094,2319129,2319141,2319152,2319167,2319185,2319227,2320300,2320338,2320373,2320476,2320627,2320641,2320666,2320735,2320737,2321942,2321989,2322026,2322061,2322278,2322295,2322298,2322401,2322404,2323693,2323722,2323736,2323784,2323800,2323811,2323990,2323992,2323999,2324007,2324021,2324090,2325287,2325333,2325365,2325409,2325411,2325412,2325413,2325416,2325422,2325430,2325460,2325513,2326808,2326813,2326827,2327171,2327177,2327178,2327191,2327192,2327196,2327206,2327244,2327281,2327476,2327655,2328913,2328918,2328932,2329000,2329002,2329003,2329004,2329005,2329009,2329017,2329027,2329044,2330368,2330373,2330387,2330791,2330795,2330796,2330797,2330798,2330804,2330812,2330826,2330851,2331289,2331293,2434675,2448458,2566676,2595411,2595431,2595433,2595447,2595455,2595458,2595463,2595466,2595471,2595472,2595477,2595526,2595533,2595548,2595555,2595556,2595561,2595572,2595577,2595580,2595587,2595618,2595625,2595628,2595633,2595642,2595654,2595668,2595675,2595676,2595683,2595684,2595689,2595690,2595717,2595718,2595735,2595738,2595743,2595758,2595763,2595769,2606847,2606907,2607091,2607144,2607295,2607304,2607411,2607607,2607608,2607890,2607902,2607928,2607929,2607930,2607936,2607976,2608463,2609019,2609022,2609133,2609178,2609318,2609319,2609320,2609321,2609322,2609335,2609347,2609348,2609355,2609452,2609820,2609891,2610281,2610390,2610517,2610868,2611024,2611377,2611537,2611838,2611993,2612088,2615037,2617630,2617741,2618065,2618124,2618246,2618569,2618725,2618754,2619110,2619235,2619515,2619566,2619846,2619923,2619961,2620169,2620244,2620286,2620376,2620523,2620585,2620591,2620637,2620830,2620906,2620940,2620964,2621089,2621101,2621227,2621354,2621372,2621496,2621535,2621653,2621663,2621745,2621822,2621944,2621950,2621988,2622123,2622147,2622281,2622396,2622468,2622602,2622639,2622745,2622751,2622831,2622978,2623006,2623013,2623190,2623367,2623538,2623639,2623787,2623807,2623952,2624046,2624196,2624253,2624367,2624373,2624471,2624630,2624674,2624680,2624800,2625031,2625055,2625209,2625328,2625462,2625520,2625649,2625757,2625763,2625905,2626070,2626088,2626094,2626326,2626365,2626517,2626643,2626798,2626818,2626984,2627117,2627270,2627299,2627582,2627607,2627755,2629057,2629238,2629355,2629379,2630561,2630708,2630849,2630951,2630957,2632030,2632079,2632216,2632348,2632356,2633426,2633535,2633580,2633714,2633720,2634946,2635077,2635222,2635356,2635368,2636496,2636627,2636780,2636916,2636926,2638112,2638251,2638410,2638556,2638562,2639771,2639912,2639953,2640217,2640225,2641496,2641641,2641804,2641950,2641960,2643229,2643279,2643418,2643574,2643580,2644901,2645064,2645207,2645365,2645373,2646714,2646873,2647186,2647323,2647387,2647578,2647579,2647729,2647875,2647925,2647932,2648065,2648402,2648407,2649815,2650204,2650351,2650605,2650824,2651342,2651530,2651747,2652312,2652317,2652325,2652344,2652963,2652982,2652991,2653807,2665302,2665336,2665557,2666009,2666036,2666178,2666239,2666240,2666241,2666243,2666935,2666943,2666958,2666959,2666964,2666965,2666969,2666985,2668358,2668595,2669114,2669166,2669211,2669223,2669235,2669244,2670605,2671098,2671151,2671201,2671207,2671235,2671262,2672689,2673216,2673270,2673321,2673326,2673389,2673794,2673824,2673835,2673840,2673897,2675466,2676121,2676135,2676148,2676153,2676207,2676267,2676270,2677972,2678533,2678539,2678545,2678647,2678651,2680250,2680679,2680687,2680693,2680701,2680707,2681834,2682197,2682213,2682253,2682259,2682260,2683172,2683555,2683591,2683597,2683654,2683661,2684720,2684857,2684872,2684914,2684963,2685379,2685475,2687325,2687331,2689649,2689655,2691630,2695399,2715939,2799472,2829798,2857021,2857026,2857054,2857074,2857096,2857097,2857123,2857150,2857180,2857202,2857210,2857229,2857277,2857284,2857322,2857356,2857394,2857397,2857426,2857441,2857460,2857463,2857490,2857505,2857515,2857527,2857540,2857557,2857570,2857585,2857617,2857622,2857648,2857692,2857722,2857755,2857760,2857804,2857809,2857842,2857873,2857884,2857896,2857924,2857939,2857968,2857979,2857990,2858015,2858020,2858038,2858056,2858065,2858070,2858105,2858112,2858137,2858144,2858156,2858170,2858213,2858228,2858247,2858254,2858281,2858286,2858312,2858334,2858337,2858376,2858401,2858414,2858436,2858454,2858485,2858500,2858523,2858548,2858569,2858588,2858602,2858619,2858642,2858669,2858848,2858867,2858883,2858925,2858955,2859004,2859011,2859053,2859077,2859087,2859109,2859110,2859122,2859134,2859139,2859145,2859180,2859203,2859217,2859245,2859271,2859321,2859334,2859364,2859375,2859403,2859441,2859459,2859501,2859524,2859537,2859572,2859579,2859606,2859629,2859644,2859653,2859678,2859685,2859708,2859721,2859731,2859829,2859858,2859902,2859915,2859940,2859971,2859976,2859995,2860026,2860033,2860038,2860075,2860108,2860141,2860146,2860173,2860178,2860209,2860218,2860243,2860248,2860273,2860278,2860289,2860304,2860332,2860350,2860367,2860386,2860395,2860424,2860425,2860470,2860483,2860510,2860539,2860546,2860563,2860594,2860601,2860642,2860679,2860716,2860744,2860782,2860787,2860803,2860823,2860855,2860870,2860886,2860915,2860942,2860963,2860979,2861011,2861012,2861065,2861066,2861120,2861141,2861147,2861179,2861203,2861255,2861262,2861298,2861328,2861373,2861386,2861408,2861440,2861452,2861488,2861511,2861529,2861559,2861565,2861566,2861580,2861594,2861595,2861618,2862136,2862143,2862173,2862214,2862219,2862252,2862273,2862289,2862310,2862327,2862339,2862365,2862399,2862430,2862437,2862460,2862465,2862496,2862509,2862530,2862535,2862562,2862571,2862585,2862591,2862620,2862651,2862662,2862677,2862696,2862708,2862730,2862737,2862778,2862801,2862830,2862851,2862854,2862885,2862896,2862903,2862962,2862993,2863019,2863053,2863059,2863070,2863093,2863098,2863144,2863151,2863185,2863217,2863243,2863260,2863299,2863304,2863352,2863376,2863410,2863437,2863468,2863484,2863518,2863552,2863581,2863583,2863594,2863605,2863606,2863622,2863638,2863645,2863677,2863686,2863730,2863740,2863776,2863808,2863831,2864917,2864948,2864988,2864995,2866088,2866133,2866143,2866181,2866223,2866246,2866301,2866308,2866340,2866348,2866362,2866415,2866425,2866426,2866428,2866438,2866447,2866489,2866494,2866502,2866530,2866567,2866577,2866608,2866617,2866642,2866647,2866688,2866697,2866724,2866737,2866774,2866797,2866802,2866833,2866854,2866859,2866888,2866893,2866906,2866947,2866968,2866973,2866992,2866997,2867026,2867039,2867044,2867053,2867074,2867081,2867115,2867151,2867160,2867189,2867190,2867197,2867217,2867269,2867278,2867283,2867340,2867349,2867395,2867399,2867708,2867721,2867751,2867759,2867969,2867976,2868010,2868028,2868050,2868239,2868244,2868284,2868300,2868330,2868335,2868345,2868412,2868428,2868466,2868492,2868519,2868542,2868548,2868578,2868589,2868602,2868637,2868648,2868664,2868705,2868710,2868734,2868746,2868776,2868821,2868826,2868872,2868897,2868904,2868908,2868914,2868951,2868984,2868995,2869044,2869055,2869060,2869101,2869108,2869134,2869142,2869156,2869164,2869211,2869222,2869241,2869264,2869279,2869290,2869299,2869304,2869346,2869368,2869375,2869406,2869421,2869446,2869453,2869522,2869577,2869592,2869623,2869640,2869667,2869686,2869737,2869756,2869764,2869804,2869824,2869833,2869844,2869871,2869915,2869922,2869954,2869998,2870004,2870010,2870080,2870085,2870145,2870151,2870187,2870238,2870247,2870265,2870313,2870331,2870342,2870352,2870353,2874359,2874368,2874424,2874466,2874494,2874495,2874531,2874536,2874561,2874584,2874609,2874629,2877782,2877803,2877811,2877849,2877869,2877875,2878809,2878814,2878840,2878850,2878884,2878888,2881406,2881451,2881489,2881525,2881547,2881576,2891814,2892066,2892622,2901338,2901486,2901940,2902404,2902839,2903278,2903723,2904073,2904495,2904893,2905245,2905379,2905851,2906142,2912716,2912804]},"uniswap-v3-core_d8b1c63":{"timeMs":17658.152943999998,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,2702,2715,2718,2731,2734,2747,2750,2753,2756,2759,2762,2765,2768,2771,2775,2784,2787,2790,2793,2796,2799,2802,2805,2808,2812,2821,2824,2827,2830,2833,2836,2839,2842,2845,2849,4326,4344,4353,4399,4424,4442,4481,4506,4524,4582,4602,4613,4633,4648,4650,4653,4659,4672,4697,4717,4730,4732,4735,4741,4754,4779,4893,4905,4913,4932,4947,4965,4977,4989,4995,5014,5029,5047,5636,5654,5666,5671,5682,5686,5694,5702,5706,5712,5715,5721,5725,5736,5737,5740,5750,5754,5755,5758,5766,5770,5778,5784,5788,5794,5797,5803,5807,5818,5819,5822,5832,5836,5837,5840,6152,6199,6214,6234,6243,6253,6268,6278,6286,6298,6316,6325,6335,6350,6360,6368,15803,15823,15836,15870,15904,15938,15972,16006,16040,16074,16108,16142,16176,16210,16244,16278,16312,16326,17482,17502,17515,17549,17583,17617,17651,17665,17699,17713,17747,17781,17815,17849,17883,17917,17931,17945,19493,19504,19525,19542,19559,19593,19610,19629,19663,19680,19697,19731,19748,19765,19799,19816,19833,19867,19884,19901,19918,19935,19969,20000,21199,21209,21224,21229,21245,21279,21297,21313,21347,21365,21381,21413,21429,21461,21477,21511,21529,21545,21579,21611,21627,21645,21661,22855,22860,22866,22873,22887,22904,22907,22921,22935,22952,22955,22969,22983,23000,23003,23017,23031,23048,23051,23065,23079,23096,23099,23113,23127,23144,23147,23158,23161,23175,23189,23209,23223,23240,23243]}} diff --git a/crates/tools/python/ejs-benchmark/2.json b/crates/tools/python/ejs-benchmark/2.json deleted file mode 100644 index ceb6499af7..0000000000 --- a/crates/tools/python/ejs-benchmark/2.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":406643.05091,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25449,25515,25569,26179,26203,26209,26752,26758,26769,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":72111.491952,"failures":[39,75,110,172,183,187,189,193,195,199,201,243,350,632,646,655,664,673,687,696,705,717,726,735,748,760,773,786,799,813,825,837,849,858,874,883,896,908,920,935,952,962,974,987,1003,1018,1028,1039,1051,1064,1075,1088,1099,1112,1121,1146,1157,1170,1181,1194,1203,1228,1239,1252,1263,1276,1291,1302,1313,1324,1335,1346,1711,1715,1783,1870,1885,1888,1894,1909,1912,1918,1933,1936,1957,1974,1989,2063,2073,2104,2114,2123,2133,2143,2153,2192,2204,2216,2228,2265,2284,2290,2303,2332,2396,2408,2414,2420,2432,2438,2444,2457,2463,2469,2482,2488,2494,2506,2524,2530,2536,2548,2554,2560,2573,2579,2585,2598,2604,2610,2622,2640,2646,2652,2664,2670,2676,2689,2695,2701,2714,2720,2726,2738,2756,2768,2781,2794,2800,2812,2818,2831,2837,2850,2856,2947,2959,2965,2971,2983,2989,2995,3008,3014,3020,3033,3039,3045,3057,3075,3081,3087,3099,3105,3111,3124,3130,3136,3149,3155,3161,3173,3191,3197,3203,3215,3221,3227,3240,3246,3252,3265,3271,3277,3289,3307,3319,3332,3345,3351,3363,3369,3382,3388,3401,3407,3498,3510,3516,3522,3534,3540,3546,3559,3565,3571,3584,3590,3596,3608,3626,3632,3638,3650,3656,3662,3675,3681,3687,3700,3706,3712,3724,3742,3748,3754,3766,3772,3778,3791,3797,3803,3816,3822,3828,3840,3858,3870,3883,3896,3902,3914,3920,3933,3939,3952,3958,4037,4049,4055,4061,4073,4079,4085,4098,4104,4110,4123,4129,4135,4147,4165,4171,4177,4189,4195,4201,4214,4220,4226,4239,4245,4251,4263,4281,4287,4293,4305,4311,4317,4330,4336,4342,4355,4361,4367,4379,4397,4409,4422,4435,4441,4453,4459,4472,4478,4491,4497,4548,4558,4567,4577,4586,4596,4629,4641,4647,4653,4665,4671,4677,4690,4696,4702,4715,4721,4727,4739,4757,4763,4769,4781,4787,4793,4806,4812,4818,4831,4837,4843,4855,4873,4879,4885,4897,4903,4909,4922,4928,4934,4947,4953,4959,4971,4989,5001,5014,5027,5033,5045,5051,5064,5070,5083,5089,5140,5150,5159,5169,5178,5188,5269,5289,5292,5298,5318,5321,5327,5348,5351,5357,5378,5381,5387,5407,5430,5450,5471,5492,5498,5518,5524,5545,5551,5572,5578,5701,5713,5716,5722,5734,5737,5743,5756,5759,5765,5778,5781,5787,5799,5814,5826,5839,5852,5858,5870,5876,5889,5895,5908,5914,6010,6022,6025,6031,6043,6046,6052,6065,6068,6074,6087,6090,6096,6108,6123,6135,6148,6161,6167,6179,6185,6198,6204,6217,6223,6347,6368,6371,6377,6398,6401,6407,6429,6432,6438,6460,6463,6469,6490,6514,6535,6557,6579,6585,6606,6612,6634,6640,6662,6668,6764,6793,6800,6822,6852,6882,6910,6918,6941,6949,6972,7002,7030,7038,7061,7069,7164,7188,7191,7197,7221,7224,7230,7255,7258,7264,7289,7292,7298,7322,7349,7373,7398,7423,7429,7453,7459,7484,7490,7515,7521,7629,7653,7795,7813,7816,7822,7840,7843,7849,7868,7871,7877,7896,7899,7905,7923,7944,7962,7981,8000,8006,8024,8030,8049,8055,8074,8080,8167,8201,8207,8214,8232,8244,8249,8261,8265,8277,8292,8309,8346,8367,8389,8410,8431,8470,8485,8490,8509,8517,8549,8554,8641,8662,8665,8692,8695,8701,8723,8726,8732,8754,8757,8784,8808,8829,8852,8858,8879,8885,8907,8913,8935,8941,9031,9037,9054,9060,9081,9087,9116,9134,9140,9153,9159,9172,9178,9191,9197,9209,9215,9228,9234,9473,9477,9478,9479,9482,9484,9485,9486,9488,9489,9492,9493,9496,9497,9500,9501,9504,9505,9508,9509,9512,9513,9516,9517,9520,9521,9524,9525,9528,9529,9532,9533,9536,9537,9540,9541,9544,9545,9548,9549,9552,9553,9556,9557,9560,9561,9564,9565,9568,9569,9572,9573,9576,9577,9580,9581,9584,9585,9588,9589,9592,9593,9596,9597,9600,9601,9604,9605,9608,9609,9612,9613,9616,9617,9620,9621,9624,9625,9628,9629,9632,9633,9636,9637,9640,9641,9644,9645,9648,9649,9652,9653,9656,9657,9660,9661,9664,9665,9668,9669,9672,9673,9676,9677,9680,9681,9684,9685,9688,9689,9692,9693,9696,9697,9700,9701,9704,9705,9708,9709,9712,9713,9716,9717,9720,9721,9724,9725,9728,9729,9732,9733,9736,9737,9741,9750,9752,9761,9763,9772,9774,9783,9785,9794,9796,9805,9807,9816,9818,9827,9829,9838,9840,9849,9851,9860,9862,9871,9873,9882,9884,9893,9895,9904,9906,9915,9917,9926,9928,9937,9939,9948,9950,9959,9961,9970,9972,9981,9983,9992,9994,10003,10005,10014,10016,10025,10027,10036,10038,10047,10049,10058,10060,10069,10071,10080,10082,10091,10093,10102,10104,10113,10115,10124,10126,10135,10137,10146,10148,10157,10159,10168,10170,10179,10181,10190,10192,10201,10203,10212,10214,10223,10225,10234,10236,10245,10247,10256,10258,10267,10269,10278,10280,10289,10291,10300,10302,10311,10313,10322,10324,10333,10335,10344,10346,10355,10357,10366,10368,10377,10379,10388,10390,10399,10401,10410,10412,10421,10423,10432,10434,10443,10445,10464,10466,10469,10470,10473,10474,10477,10478,10481,10482,10485,10486,10489,10490,10493,10494,10497,10498,10501,10502,10505,10506,10509,10510,10513,10514,10517,10518,10521,10522,10525,10526,10529,10530,10533,10534,10537,10538,10541,10542,10545,10546,10549,10550,10553,10554,10557,10558,10561,10562,10565,10566,10569,10570,10573,10574,10577,10578,10581,10582,10585,10586,10589,10590,10593,10594,10597,10598,10601,10602,10605,10606,10609,10610,10613,10614,10617,10618,10621,10622,10625,10626,10629,10630,10633,10634,10637,10638,10641,10642,10645,10646,10649,10650,10653,10654,10657,10658,10661,10662,10665,10666,10669,10670,10673,10674,10677,10678,10681,10682,10685,10686,10689,10690,10693,10694,10697,10698,10701,10702,10705,10706,10709,10710,10713,10714,10717,10718,10721,10724,10726,10727,10728,10730,10731,10732,10734,10735,10736,10738,10739,10740,10742,10743,10744,10746,10747,10748,10750,10751,10752,10754,10755,10756,10758,10759,10760,10762,10763,10764,10766,10767,10768,10770,10771,10772,10774,10775,10776,10778,10779,10780,10782,10783,10784,10786,10787,10788,10790,10791,10792,10794,10795,10796,10798,10799,10800,10802,10803,10804,10806,10807,10808,10810,10811,10812,10814,10815,10816,10818,10819,10820,10822,10823,10824,10826,10827,10828,10830,10831,10832,10834,10835,10836,10838,10839,10840,10842,10843,10844,10846,10847,10848,10850,10851,10852,10854,10855,10856,10858,10859,10860,10862,10863,10864,10866,10867,10868,10870,10871,10872,10874,10875,10876,10878,10879,10880,10882,10883,10884,10886,10887,10888,10890,10891,10892,10894,10895,10896,10898,10899,10900,10902,10903,10904,10906,10907,10908,10910,10911,10912,10914,10915,10916,10918,10919,10920,10922,10923,10924,10926,10927,10928,10930,10931,10932,10934,10935,10936,10938,10939,10940,10942,10943,10944,10946,10947,10948,10950,10951,10952,10954,10955,10956,10958,10959,10960,10962,10963,10964,10966,10967,10968,10970,10971,10972,10974,10975,10976,10978,10979,10983,10998,11000,11014,11016,11030,11032,11046,11048,11062,11064,11078,11080,11094,11096,11110,11112,11126,11128,11142,11144,11158,11160,11174,11176,11190,11192,11206,11208,11222,11224,11238,11240,11254,11256,11270,11272,11286,11288,11302,11304,11318,11320,11334,11336,11350,11352,11366,11368,11382,11384,11398,11400,11414,11416,11430,11432,11446,11448,11462,11464,11478,11480,11494,11496,11510,11512,11526,11528,11542,11544,11558,11560,11574,11576,11590,11592,11606,11608,11622,11624,11638,11640,11654,11656,11670,11672,11686,11688,11702,11704,11718,11720,11734,11736,11750,11752,11766,11768,11782,11784,11798,11800,11814,11816,11830,11832,11846,11848,11862,11864,11878,11880,11894,11896,11910,11912,11926,11928,11942,11944,11958,11960,11974,11976,11990,11992,12006,12008,12031,12034,12035,12038,12039,12042,12043,12046,12047,12050,12051,12054,12055,12058,12059,12062,12063,12066,12067,12070,12071,12074,12075,12078,12079,12082,12083,12086,12087,12090,12091,12094,12095,12098,12099,12102,12103,12106,12107,12110,12111,12114,12115,12118,12119,12122,12123,12126,12127,12130,12131,12134,12135,12138,12139,12142,12143,12146,12147,12150,12151,12154,12155,12158,12159,12162,12163,12166,12167,12170,12171,12174,12175,12178,12179,12182,12183,12186,12187,12190,12191,12194,12195,12198,12199,12202,12203,12206,12207,12210,12211,12214,12215,12218,12219,12222,12223,12226,12227,12230,12231,12234,12235,12238,12239,12242,12243,12246,12247,12250,12251,12254,12255,12258,12259,12262,12263,12266,12267,12270,12271,12274,12275,12278,12279,12282,12283,12286,12306,12584,12595,12606,12617,12628,12639,12650,12661,12672,12683,12694,12705,12716,12727,12738,12749,12760,12771,12782,12793,12804,12815,12826,12837,12848,12859,12870,12881,12892,12903,12914,12925,12936,12947,12958,12969,12980,12991,13002,13013,13024,13035,13046,13057,13068,13079,13090,13101,13112,13123,13134,13145,13156,13167,13178,13189,13200,13211,13222,13233,13244,13255,13266,13277,13300,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13372,13376,13380,13384,13388,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476,13480,13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13558,13562,13566,13570,13574,13578,13582,13586,13590,13594,13598,13602,13606,13610,13614,13618,13622,13626,13630,13634,13638,13642,13646,13650,13654,13658,13662,13666,13670,13674,13678,13682,13686,13690,13694,13698,13702,13706,13710,13714,13718,13722,13726,13730,13734,13738,13742,13746,13750,13754,13758,13762,13766,13770,13774,13778,13782,13786,13790,13794,13798,13802,13806,13810,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14865,14869,14873,14877,14881,14885,14889,14893,14897,14901,14905,14909,14913,14917,14921,14925,14929,14933,14937,14941,14945,14949,14953,14957,14961,14965,14969,14973,14977,14981,14985,14989,14993,14997,15001,15005,15009,15013,15017,15021,15025,15029,15033,15037,15041,15045,15049,15053,15057,15061,15065,15069,15073,15077,15081,15085,15089,15093,15097,15101,15105,15109,15113,15117,15132,15947,16002,16021,16042,16048,16094,16103,16127,16136,16177,16187,16200,16213,16229,16242,16248,16262,16275,16288,16301,16307,16317,16323,16333,16339,16356,16360,16369,16373,16382,16388,16392,16401,16407,16427,16437,16447,16457,16463,16477,16483,16515,16525,16538,16544,16554,16560,16665,16671,16684,16690,16703,16709,16719,16725,16780,17718,17728,17811,17828,17838,17857,17867,17877,17887,17897,17907,17957,17973,17986,18000,18012,18022,18032,18042,18057,18071,18126,18238,18309,18328,18492,18496,18497,18502,18503,18508,18509,18514,18515,18531,18546,18572,18585,18589,18603,18609,18631,18711,18759,18815,18830,18839,18887,19111,19132,19160,19198,19354,19390,19441,19474,19547,19558,19683,19733,19785,19791,19806,19812,19827,19833,19850,19856,19919,19925,19945,19951,19957,19966,19972,19978,19994,20000,20006,20032,20038,20044,20140,20146,20163,20169,20186,20192,20200,20219,20225,20236,20252,20258,20270,20276,20287,20303,20309,20320,20336,20342,20362,20368,20374,20380,20393,20404,20431,20437,20469,20475,20486,20492,20517,20523,20529,20553,20559,20580,20656,20781,20870,20888,20926,20973,20996,21048,21063,21072,21088,21094,21107,21113,21125,21131,21142,21148,21162,21168,21185,21191,21197,21243,21249,21264,21270,21286,21292,21298,21304,21330,21336,21342,21377,21383,21389,21411,21507,21537,21620,21646,21754,21793,21816,21852,21910,21982,21997,22006,22024,22030,22036,22048,22054,22068,22074,22086,22092,22107,22113,22119,22133,22139,22145,22159,22165,22181,22187,22206,22212,22241,22247,22253,22280,22286,22292,22315,22339,22345,22351,22405,22537,22585,22591,22602,22608,22622,22628,22647,22653,22883,22898,22914,22931,22956,22977,22993,24625,24630,24637,24644,24651,24656,24663,24670,24677,24682,24689,24696,24703,24710,24717,24724,24731,24738,24745,24750,24757,24764,24771,24778,24785,24792,24955,24959,24967,24976,24980,24988,24996,25004,25008,25012,25023,25026,25048,25053,25086,25135,25144,25149,25157,25164,25172,25179,25187,25194,25202,25207,25215,25222,25230,25237,25245,25252,25260,25265,25273,25280,25288,25295,25303,25310,25318,25325,25333,25340,25348,25355,25363,25370,25378,25385,25393,25400,25408,25413,25421,25428,25436,25443,25451,25458,25466,25473,25481,25488,25496,25503,25511,25516,25527,25538,25549,25561,25579,25597,25615,25633,25651,25669,25685,25701,25721,25741,25769,25798,25834,25871,25887,25903,25915,25931,25945,25961,25976,25992,26010,26026,26044,26060,26077,26093,26110,26126,26370,26373,26406,26461,29526,49565,49763,49961,50017,50021,50025,50029,60479,60483,60487,60669]},"rocketpool_6a9dbfd8":{"timeMs":154030.28353,"failures":[2253,2256,2280,2284,2719,2722,2758,2829,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,6508,6620,6704,6736,6748,6828,6869,6882,6912,6916,6954,6967,7008,7013,7065,7073,7090,7105,7330,7372,7446,7503,7538,7553,7594,7599,7612,7641,7702,7705,7749,7770,7809,8334,8370,8415,8483,8487,8498,8553,8627,8632,8645,8712,8739,8764,8808,8819,8850,8893,9338,9372,9419,9489,9502,9544,9559,9635,9639,9705,9721,9749,9764,9828,9839,9840,10358,10400,10449,10521,10579,10582,10620,10625,11171,11215,11267,11314,11362,11394,11403,11438,11466,12017,12039,12158,12196,12337,12389,12454,12478,12532,12550,13065,13101,13198,13288,13318,13323,13338,13373,13440,13467,13979,14031,14259,14291,14390,14494,14512,14521,14567,14612,14638,14651,14676,14694,14758,14775,15370,15426,15463,15543,15722,15814,15889,15891,15937,15974,16464,16536,16665,16687,16705,16727,16759,16780,16916,16935,16938,17464,17554,17631,17675,17743,17748,17833,17854,17891,17908,17916,17957,18614,18666,18760,18796,18842,18845,18888,18904,18915,18981,19066,19084,19138,19737,19825,19879,19919,19939,19970,19987,20001,20006,20085,20086,20147,20777,20871,20943,20959,21049,21050,21065,21066,21081,21112,21179,21209,21762,21763,21782,21793,22085,22777,22839,23073,23075,23599,24154,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,27837,28420,28421,28932,28975,29355,29458,29786,29805,30179,30201,30245,30323,30341,30344,30405,30408,30431,30449,30870,30916,30983,30999,31019,31030,31053,31056,31114,31116,31279,31313,31355,31373,31398,31447,31453,31469,31490,31535,31539,31697,31740,32061,32409,32434,32493,32828,32829,33151,33168,33430,33804,33823,34103,34146,34440,34481,34789,34790,35078,35134,35262,35298,36252,36279,36280,36355,36460,36556,36574,36592,36605,36787,37139,37209,38091,38345,38364,38392,38393,38713,38804,38805,38889,39062,39087,39088,39332,39361,39540,39541,39803,39814,39823,39832,39973,39982,40656,40681,40941,41056,41080,41083,41379,41388,41420,41559,41658,41841,41850,41869,41994,42128,42293,42610,42627,42628,42950,43005,43066,43089,43090,43314,43533,43542,43567,43578,43794,43811,43999,44021,44146,44402,44663,44666,44739,45094,45114,45931,45948,46954,46976,46994,47411,47702,47721,47739,48401,48419,48551,48573,48592,48668,48878,48901,48987,49009,49034,49052,49067,49084,49684,49778,49779,50086,50535,50794,50825,51013,51062,51287,51432,51479,51814,52049,52050,52165,52286,52325,52542,52557,53176,53266,53454,53494,53541,53900,53947,53948,54578,54610,54611,54805,54806,55125,55132,55759,55768,55777,55788,55864,55966,56003,56023,56038,56052,56254,56271,56296,56321,58033,58044,58045,58634,58666,58693,59774,59811,60874,60910,61082,61653,61804,61823,61829,61830,62323,62324,62465,63029,63032,63189,63206,63716,63752,64440,64441,64562,65060,65186,65187,65852,66353,66354,66491,66509,66656,67551,67558,67689,67690,68367,68368,68883,69047,69048,69726,70392,70430,71134,71314,71824,72510,72650,72677,73195,73222,74038,74039,74182,74183,74674,74696,74706,75363,75404,75427,75580,75955,75956,75961,75967,75968,75973,75974,75995,76009,76193,76852,76872,76892,77989,78007,78029,78683,78729,79254,79295,79826,79872,79933,79934,80621,80624,81107,81291,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,85051,85069,85137,85160,85766,85786,85804,85829,86279,86297,86315,86338,87514,87588,87606,87633,88239,88261,88307,88330,88736,88754,88772,88795,89922,89931,89940,90026,90052,90071,90145,90167,90714,90732,90769,90786,90905,90929,92169,93185,93388,93412,93574,94726,95864,95873,95882,95958,95982,96011,96029,96049,96067,96086,96104,96118,96142,96172,96190,96208,96696,102590,102613,102622,102633,102709,102731,103429,103461,103567,103597,103631,103649,103663,103695,103727,103755,104137,104171,104307,104328,104329,105077,105088,105226,105264,105648,105649,105678,105679,105812,105838,105839,106586,106588,106714,106816,107166,107242,107268,107315,107329,107351,107356,107373,107379,107396,107406,108040,108047,108074,108102,108319,108767,108799,108847,108875,108898,108901,109655,109672,109683,109702,109796,109826,110191,110348,110472,110496,110537,110554,110572,111275,111397,111437,111509,111512,111883,111969,112017,112020,112085,112123,112171,112180,112223,112271,112893,112902,113138,113139,113713,113741,113761,113795,114493,114516,114525,114534,114608,114630,114810,114872,115366,115412,115454,115468,115500,115533,115565,115615,116200,116246,116375,116482,116483,117037,117040,117231,117265,117305,117318,117671,117775,118052,118076,118077,118497,118648,118869,118977,119027,119638,119686,119725,119735,119757,119761,119777,119781,119797,119827,119910,119923,119950,120004,120634,120738,121344,121423,121445,121466,121469,122089,122148,122178,122207,122218,122334,122386,122533,123490,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,127450,128010,128019,128050,128562,129710,130110,130323,130354,130382,130383,130985,131359,131370,131393,131412,131490,131503,131504,132005,132006,132188,132204,132205,133245,133269,133337,133338,133389,133390,133889,133900,134041,134052,134110,134112,134744,134745,135246,135259,135685,135952,135953,136386,136396,136397,136597,137590,137631,137779,137790,137866,137890,138932,139727,139728,139798,140204,140260,140859,140899,140900,140995,141019,141433,141436,141723,141748,141769,142740,142746,142819,142877,142915,143596,143597,143981,144157,144654,144792,144814,145450,146514,146521,146617,146715,147353,147393,147394,147880,147881,148605,148616,148626,148704,148728,149453,149482,149483,150509,150510,150713,150779,152548,152654,152712,154580,154630,155766,156612,156621,156630,157786,157808,157833,157851,157869,157884,158463,158600,158680,164880,165031,165180,165181,167481,167529,167571,167614,167615,167640,167641,167665,167701,167732,167762,167763,167787,167808,167809,168149,168811,169401,169463,169565,169583,169777,169797,171747,171767,171903,171933,173683,173720,174017,174037,175592,175771,175789,175926,176013,177671,177685,177696,177705,177730,177745,177756,177767,177776,177862,177884,178068,178092,178132,178146,179860,179952,180096,181779,181780,182118,183873,183874,184091,184105,184119,185979,185993,186220,186498,186499,188290,188308,188323,188340,188388,188576,188604,188852,190204,190238,190272,190372,190402,190712,190732,192087,192248,192294,192436,192741,192759,192778,193125,194286,194326,194346,194347,194721,194743,194758,194777,194818,196292,196334,196374,196492,196530,196688,196716,196717,196741,196742,196772,196773,196799,196804,198498,198516,198539,198556,198593,198797,198839,200187,200231,200297,200325,200415,200755,200773,200788,201693,202092,202138,202212,202309,202354,202390,202558,202591,204047,204129,204146,204172,204212,204254,204422,204423,205811,205831,205908,205933,205980,206022,206894,207382,207432,207883,207901,207916,207933,208043,208721,209261,209283,209364,209476,209514,209530,209548,209551,209564,209567,209702,209708,209722,209728,209739,211149,211179,211194,211223,211258,211406,211450,211522,212482,212540,212618,212652,212790,212840,212985,213018,213068,213274,214094,214130,214250,214350,214402,214444,214576,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":6951.827391,"failures":[195,271,281,306,316,324,338,351,361,367,465,480,486,496,503,505,510,512,517,523,534,554,576,598,605,629,632,643,647,649,651,661,665,667,670,673,674,675,676,687,690,692,695,698,699,700,701,709,713,716,724,728,731,739,743,746,748,756,767,770,772,784,799,814,819,872,898,906,1242,1250,1258,1266,1280,1288,1296,1304,1318,1329,1337,1343,1351,1357,1365,1371,1379,1385,1393,1399,1407,1413,1421,1427,1435,1443,1491,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1586,1598,1620,1621,1623,1639,1642,1647,1652,1657,1662,1667,1672,1677,1682,1692,1710,1718,1728,1741,1753,1761,1772,1780,1785,1822,1836,1841,1846,1879,1885,1887,1907,1919,1939,1959,1987,2023,2043,2049,2055,2076,2097,2117,2145,2181,2196,2203,2210,2232,2260,2289,2324,2339,2345,2351,2358,2384,2412,2448,2511,2544,2550,2556,2563,2590,2619,2656,2721,2758,2762,2766,2769,2801,2806,2815,2816,2818,2825,2831,2838,2842,2847,2852,2858,2861,2862,2864,2871,2877,2886,2894,2898,2905,2908,2909,2914,2917,2919,2923,2934,2935,2937,2969,2986,2988,2992,2993,3020,3047,3052,3064,3071,3076,3108,3119,3125,3156,3178,3179,3189,3192,3194,3195,3257,3261,3265,3275,3277,3284,3287,3311,3359,3366,3455,3456,3458,3479,3489,3490,3492,3498,3535,3571,3572,3595,3610,3643,3657,3677,3716,3777,3784,3829,3838,3848,3863,3874,3891,3931,3937,3982,3991,4006,4017,4029,4035,4061,4072,4075,4077,4091,4095,4099,4103,4114,4122,4130,4134,4138,4142,4147,4155,4162,4171,4175,4179,4183,4279,4294,4297,4299,4317,4321,4328,4332,4334,4338,4348,4356,4419,4423,4428,4432,4436,4438,4442,4452,4459,4525,4529,4534,4538,4543,4545,4549,4554,4558,4562,4571,4578,4657,4662,4668,4669,4673,4677,4681,4685,4687,4691,4697,4705,4711,4740,4744,4772,4778,4813,4824,4839,4842,4844,4935,4937,4938,4940,4943,4945,4947,4994,5006,5014,5031,5059,5134,5152,5174,5248,5267]},"seaport_4f4e7c20":{"timeMs":33028.152683,"failures":[263,272,283,292,303,328,352,361,372,381,392,417,441,450,461,470,481,506,530,539,550,559,570,595,621,630,641,650,661,684,691,711,720,731,740,751,776,800,809,820,829,840,865,889,898,909,918,936,947,972,1000,1010,1021,1030,1057,1083,1092,1103,1112,1123,1144,1156,1165,1176,1185,1196,1217,1229,1238,1249,1258,1269,1290,1302,1311,1322,1331,1341,1362,1374,1383,1394,1403,1414,1435,1447,1454,1465,1474,1485,1506,1518,1527,1538,1547,1558,1579,1591,1600,1611,1620,1631,1652,1664,1673,1684,1693,1704,1725,1737,1746,1757,1766,1777,1798,1810,1819,1830,1839,1850,1871,1883,1892,1903,1912,1923,1944,1956,1965,1976,1985,1996,2005,2015,2036,2048,2057,2068,2077,2088,2111,2118,2130,2139,2148,2157,2168,2177,2188,2209,2221,2230,2241,2250,2261,2282,2294,2303,2314,2323,2334,2355,2367,2376,2387,2396,2407,2428,2440,2449,2460,2471,2492,2504,2513,2524,2533,2544,2573,2585,2594,2605,2616,2637,2649,2658,2669,2678,2689,2710,2722,2731,2740,2749,2758,2767,2785,2876,2897,2918,2942,2951,2960,2969,2978,2987,2996,3005,3016,3025,3036,3045,3056,3065,3076,3085,3096,3117,3136,3157,3174,3186,3195,3224,3257,3290,3320,3329,3358,3391,3424,3454,3463,3494,3521,3548,3572,3581,3590,3599,3624,3647,3661,3670,3679,3688,3713,3736,3748,3755,3762,3773,3802,3832,3841,3868,3896,3903,3910,3919,3948,3978,3985,3992,4001,4030,4050,4059,4088,4108,4115,4122,4131,4160,4180,4187,4194,4203,4212,4221,4246,4274,4283,4292,4301,4324,4352,4361,4368,4377,4402,4430,4439,4448,4457,4466,4475,4503,4529,4538,4547,4556,4565,4574,4603,4629,4638,4657,4669,4678,4711,4739,4748,4781,4809,4818,4851,4879,4888,4917,4947,4956,4965,4974,4985,5014,5050,5059,5090,5114,5123,5132,5141,5150,5159,5198,5224,5233,5242,5251,5290,5314,5323,5332,5341,5377,5389,5398,5407,5416,5457,5481,5490,5499,5508,5549,5573,5582,5591,5600,5641,5665,5672,5681,5710,5732,5739,5746,5755,5784,5808,5815,5822,5831,5860,5884,5891,5898,5907,5936,5960,5967,5974,5983,6012,6036,6043,6052,6081,6103,6112,6141,6161,6170,6199,6219,6226,6235,6246,6275,6287,6296,6305,6312,6321,6350,6362,6371,6380,6387,6394,6403,6432,6446,6455,6482,6514,6523,6550,6582,6591,6616,6644,6653,6698,6736,6745,6790,6823,6832,6877,6915,6926,6971,7009,7018,7063,7101,7110,7149,7177,7186,7221,7249,7258,7297,7324,7355,7383,7392,7431,7458,7489,7517,7526,7535,7542,7549,7558,7595,7623,7632,7659,7675,7684,7711,7966,7975,8002,8034,8043,8070,8102,8111,8138,8170,8179,8206,8238,8247,8272,8369,8378,8401,8429,8438,8461,8487,8496,8528,8556,8565,8582,8597,8625,8634,8657,8682,8691,8708,8723,8751,8760,8783,8811,8820,8837,8852,8880,8889,8922,8960,8969,8995,9027,9036,9063,9093,9102,9131,9163,9172,9189,9208,9240,9249,9276,9308,9317,9344,9376,9385,9412,9434,9443,9470,9492,9501,9528,9550,9559,9568,9577,9606,9644,9653,9660,9669,9698,9736,9745,9752,9761,9790,9828,9837,9844,9853,9882,9918,9927,9936,9945,9974,10012,10019,10037,10046,10074,10112,10119,10128,10137,10146,10186,10229,10238,10247,10256,10275,10286,10303,10341,10350,10357,10366,10395,10423,10432,10439,10448,10477,10503,10512,10521,10530,10541,10570,10606,10615,10624,10633,10644,10673,10709,10718,10727,10736,10747,10775,10811,10820,10829,10838,10849,10878,10914,10923,10932,10941,10970,11006,11015,11024,11033,11058,11086,11095,11104,11113,11140,11172,11181,11190,11199,11228,11264,11273,11282,11291,11418,11650,11661,11670,11679,11708,11744,11753,11762,11771,11800,11826,11835,11844,11853,11882,11908,11917,11926,11935,11964,11992,12001,12028,12056,12065,12092,12120,12129,12156,12184,12193,12220,12248,12257,12286,12306,12315,12344,12364,12373,12382,12391,12416,12450,12459,12468,12477,12504,12538,12547,12556,12565,12592,12626,12635,12644,12653,12680,12714,12723,12732,12741,12770,12796,12805,12814,12823,12852,12878,12887,12896,12905,12916,12943,12977,12986,12995,13004,13015,13042,13076,13085,13094,13103,13130,13164,13173,13182,13191,13218,13252,13261,13270,13279,13308,13334,13343,13352,13361,13389,13575,13651,13658,13665,13672,13679,13688,13697,13709,13718,13725,13738,13747,13763,13770,13781,13792,13803,13812,13830,13837,13848,13857,13866,13877,13893,13900,13911,13920,13929,13940,13960,13967,13976,13985,13994,14003,14012,14021,14043,14052,14061,14070,14081,14090,14099,14128,14157,15903,16143,16150,16157,16166,16175,16187,16194,16201,16210,16219,16231,16238,16252,16258,16265,16272,16279,16286,16293,16300,16309,16318,16332,16339,16346,16360,16367,16374,16381,16388,16395,16402,16409,16416,16423,16430,16437,16446,16455,16469,16476,16483,16490,16497,16504,16513,16520,16527,16534,16541,16550,16559,16568,16579,16590,16599,16631,16638,16645,16652,16661,16672,16701,16713,16727,16739,16751,16809,16820,16831,16836,16846,16857,16868,16884,16893,16905,16917,16929,16948,16955,16962,16971,16980,16987,16992,16999,17008,17015,17024,17031,17038,17250,17257,17321,17335,17344,17365,17374,17402,17448,17457,17464,17473,17480,17496,17505,17526,17535,17544,17601,17610,17627,17641,17650,17667,17676,17685,17701,17710,17727,17736,17747,17756,17772,17781,17798,17816,17832,17841,17860,17869,17878,17887,17903,17912,17931,17940,17949,17990,18006,18015,18036,18049,18076,18108,18117,18136,18147,18160,18187,18219,18228,18247,18258,18271,18298,18552,18855,19087,19749,19758,19767,19814,19823,19844,19861,19891,19900,19921,19937,19967,19976,20005,20030,20042,20051,20080,20105,20119,20130,20147,20163,20172,20183,20209,20223,20232,20251,20265,20274,20293,20307,20316,20337,20349,20358,20379,20391,20400,20421,20433,20442,20463,20477,20486,20513,20520,20542,20551,20570,20578,20595,20625,20634,20643,20652,20671,20685,20692,20701,20719,20738,20752,20759,20768,20777,20786,20807,20830,20839,20856,20863,20877,20886,20903,20910,20917,20931,20940,20965,20972,20979,20988,21010,21019,21044,21053,21075,21084,21109,21123,21132,21157,21169,21176,21185,21212,21224,21231,21240,21267,21279,21286,21295,21332,21344,21351,21360,21397,21409,21416,21425,21462,21474,21481,21490,21527,21539,21548,21585,21597,21606,21643,21655,21664,21701,21713,21722,21759,21771,21778,21787,21814,21828,21837,21862,21874,21883,21902,21916,21925,21950,21964,21973,21990,22002,22011,22030,22042,22051,22070,22084,22093,22110,22124,22133,22150,22164,22173,22190,22202,22211,22267,22290,22302,22309,22316,22325,22344,22351,22358,22375,22405,22412,22421,22432,22451,22458,22473,22503,22510,22517,22526,22545,22559,22568,22577,22586,22595,22622,22636,22645,22654,22663,22672,22699,22706,22720,22729,22738,22747,22756,22783,22797,22808,22817,22826,22835,22861,22873,22880,22887,22896,22915,22932,22962,22969,22976,22985,23014,23026,23033,23040,23049,23068,23085,23117,23126,23143,23157,23166,23183,23197,23206,23223,23237,23246,23263,23277,23286,23303,23317,23326,23343,23357,23366,23383,23397,23406,23431,23445,23454,23479,23493,23502,23519,23536,23568,23577,23594,23601,23618,23668,23675,23682,23694,23703,23724,23733,23750,23782,23791,23816,23823,23830,23860,23880,23889,23896,23905,23916,23930,23948,23955,23975,23999,24013,24022,24029,24038,24049,24068,24080,24089,24098,24115,24126,24143,24179,24196,24208,24225,24243,24252,24261,24270,24284,24291,24300,24309,24318,24342,24354,24363,24372,24381,24400,24412,24421,24430,24439,24468,24480,24489,24498,24505,24524,24533,24542,24559,24595,24604,24613,24622,24641,24658,24689,24703,24712,24721,24730,24741,24760,24774,24783,24798,24834,24843,24852,24861,24872,24891,24908,24944,24951,24976,24988,24995,25020,25031,25042,25064,25073,25092,25114,25136,25158,25170,25179,25198,25210,25219,25238,25260,25272,25279,25304,25336,25352,25361,25378,25392,25401,25418,25427,25436,25458,25470,25482,25496,25505,25524,25533,25547,25556,25573,25582,25596,25605,25622,25631,25643,25652,25673,25682,25696,25705,25722,25731,25745,25754,25771,25780,25794,25803,25830,25839,25851,25860,25889,25898,25912,25921,25940,25949,25965,25974,25993,26002,26016,26025,26044,26053,26077,26101,26125,26149,26163,26199,26213,26249,26265,26272,26302,26318,26325,26352,26382,26389,26410,26426,26433,26454,26470,26477,26498,26514,26521,26538,26571,26585,26594,26601,26610,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34474,34483,34494,34503,34528,34558,34567,34578,34587,34612,34642,34651,34662,34671,34680,34754,34770,34779,34790,34799,34808,34817,34826,34835,34874,34887,34903,34912,34921,34937,34946,34957,34973,34982,35002,35018,35027,35034,35048,35057,35068,35077,35097,35098,35112,35121,35132,35146,35155,35166,35175,35194,35201,35215,35224,35235,35244,35270,35286,35300,35309,35320,35327,35341,35350,35361,35370,35387,35401,35410,35421,35430,35449,35463,35472,35483,35492,35501,35510,35519,35530,35548,35799,35808,35817,35841,35871,35880,35889,35914,35944,35953,35964,36007]},"synthetix_9a3a109f":{"timeMs":387671.087868,"failures":[12,13,18,19,24,25,30,31,36,37,42,43,48,49,54,55,60,61,66,67,72,73,78,79,84,85,90,91,96,97,102,103,108,109,114,115,120,121,139,140,145,146,151,152,237,266,1361,1362,1373,1374,1391,1392,1729,1908,2038,2042,2178,2208,2210,2211,2212,2297,2375,2376,2414,2415,2478,2483,2486,2496,2500,2501,2503,2505,2605,2610,2615,2622,2813,2814,2815,2865,2873,2956,2957,2959,2960,2979,2981,2984,2986,2997,2998,3006,3008,3013,3014,3019,3020,3027,3030,3037,3042,3050,3054,3063,3068,3079,3082,3091,3096,3106,3110,3119,3122,3128,3134,3144,3148,3157,3160,3167,3170,3179,3183,3191,3193,3201,3204,3211,3214,3246,3249,3260,3263,3270,3273,3280,3285,3294,3299,3306,3309,3314,3327,3334,3337,3356,3358,3366,3367,3376,3386,3396,3399,3408,3413,3422,3425,3432,3435,3442,3445,3465,3471,3478,3481,3491,3494,3504,3514,3557,3562,3573,3576,3585,3588,3593,3602,3611,3612,3631,3636,3643,3645,3651,3655,3663,3664,3671,3674,3681,3682,3689,3692,3699,3706,3716,3718,3725,3726,3735,3742,3751,3754,3763,3765,3771,3776,3783,3787,3808,3809,3814,3815,3820,3821,3826,3827,3832,3833,3838,3839,3844,3845,3850,3851,3856,3857,3862,3863,3868,3869,3874,3875,3880,3946,3956,3963,3968,3969,3974,3975,3980,3984,3992,3993,3998,3999,4006,4007,4023,4025,4031,4035,4041,4048,4067,4070,4075,4079,4087,4090,4095,4096,4101,4102,4108,4110,4115,4116,4121,4122,4127,4128,4141,4144,4154,4157,4165,4166,4171,4172,4225,4241,4254,4264,4273,4275,4283,4286,4316,4318,4328,4331,4337,4339,4346,4348,4354,4355,4362,4363,4368,4369,4376,4379,4388,4391,4398,4399,4404,4406,4414,4415,4420,4421,4426,4427,4432,4435,4442,4445,4452,4456,4464,4468,4478,4481,4488,4493,4534,4537,4548,4552,4557,4560,4569,4570,4579,4583,4591,4592,4601,4604,4611,4614,4621,4626,4633,4636,4645,4650,4655,4660,4669,4674,4679,4684,4689,4694,4701,4704,4713,4718,4724,4727,4749,4766,4781,4787,4838,4843,4854,4857,4862,4870,4879,4889,4897,4901,4913,4919,4928,4933,4942,4947,4958,4963,4972,4975,4982,4991,5000,5001,5020,5027,5032,5035,5043,5047,5052,5055,5062,5065,5072,5075,5082,5091,5100,5101,5135,5139,5147,5151,5163,5164,5170,5174,5179,5180,5185,5186,5191,5192,5197,5198,5203,5204,5209,5210,5215,5216,5221,5287,5303,5304,5309,5310,5315,5322,5327,5328,5335,5336,5343,5346,5353,5354,5361,5366,5406,5407,5412,5415,5420,5421,5426,5427,5432,5435,5440,5447,5454,5457,5466,5469,5476,5477,5482,5483,5554,5567,5578,5580,5589,5592,5600,5603,5612,5617,5624,5627,5634,5637,5648,5651,5656,5660,5666,5668,5691,5694,5701,5702,5707,5709,5715,5720,5729,5734,5741,5748,5757,5764,5773,5780,5791,5796,5803,5808,5817,5822,5833,5836,5854,5862,5869,5874,5883,5887,5897,5901,5909,5914,5925,5928,5935,5940,5947,5954,6024,6045,6056,6066,6074,6128,6164,6202,6226,6278,6292,6321,6344,6358,6535,6605,6669,6759,7090,7135,7247,7473,7498,7529,7546,7563,7636,7649,7720,7743,7760,7766,7788,7790,7815,7832,7849,7855,8039,8078,8107,8111,8173,8194,8411,8423,8430,8490,8547,8698,8700,8701,8708,9092,9169,9177,9182,9763,9791,9816,9821,9831,9834,10134,10139,10141,10146,10152,11003,11115,11800,11927,11933,11947,11952,12038,12548,12554,13307,13338,13348,13353,13396,13443,13955,13961,14584,14607,14910,14920,15159,15165,15372,15828,16113,16177,16658,16694,16797,17007,17023,17029,17030,17288,17304,17529,17537,17538,18166,18308,18309,18879,18907,18924,19049,19051,19052,19282,19312,19325,19330,19341,19417,19441,19448,19458,19464,19473,19478,19487,19491,19499,19500,19505,19506,19511,19512,19517,19519,19531,19578,19586,19591,19597,19598,19603,19604,19609,19614,19627,19632,19645,19652,19665,19671,19681,19686,19697,19702,20329,20447,20525,20562,21169,21389,21396,21586,21704,21748,22290,22692,23389,23714,23720,23726,24342,24688,25014,25399,25475,25546,26360,26384,26400,26401,28336,28353,28359,29615,29621,30355,31566,31754,31770,31771,33580,33586,35769,35793,36140,36204,37021,37554,38292,38783,39456,39483,39901,40687,41352,41853,41859,42895,43065,43071,43571,44078,44121,44139,45383,45396,45399,45434,45447,45449,45486,45499,45505,45506,45511,45512,45517,45518,45523,45524,45529,45530,45535,45536,45541,45542,45547,45548,45553,45554,45559,45560,45565,45566,45571,45612,46503,46504,46528,46530,46535,46536,46541,46542,46547,46548,46553,46554,46559,46560,46565,46637,49961,49973,49978,59592,61615,64104,66412,69197,71535,73603,75493,77617,79784,82276,84850,87244,89788,92341,95111,97739,100571,103834,106740,110018,113263,113508,113509,113515,113662,113663,113664,113665,113666,113667,113668,113669,113670,113671,113672,113673,113674,113675,113676,113677,113678,113679,113680,113681,113682,113683,113684,113685,113686,113687,113688,113689,113690,115629,115790,115805,115843,115886,115894,115895,115900,115901,115906,116047,116102,116103,116108,116242,116414,116415,116422,116423,116428,116437,116442,116443,116448,116449,116504,116505,116510,116511,116540,116541,116547,116549,116554,116559,116564,116565,116570,116571,116576,116577,117026,117027,117065,117698,118168,118181,118194,118611,118612,118613,118614,118615,118616,118617,118618,118619,118620,118621,118622,118623,118624,118625,118626,118627,118628,118629,118630,118631,118632,118633,118634,118635,118636,118637,118638,118639,120530,120893,120955,121022,121082,123863,124080,124126,126845,127231,127244,127264,127265,127272,127563,127564,127565,127566,127567,127568,127569,127570,127571,127572,127573,127574,127575,127576,127577,127578,127579,127580,127581,127582,127583,127584,127585,127586,127587,127588,127589,127590,127591,129433,129438,129571,129577,129583,129680,129688,129878,129902,129929,129941,130120,133147,136122,136253,136544,136554,136555,136873,136874,136875,136876,136877,136878,136879,136880,136881,136882,136883,136884,136885,136886,136887,136888,136889,136890,136891,136892,136893,136894,136895,136896,136897,136898,136899,136900,136901,138735,138740,138951,139002,139017,139035,139040,139362,139389,139634,139644,139645,140005,140006,140007,140008,140009,140010,140011,140012,140013,140014,140015,140016,140017,140018,140019,140020,140021,140022,140023,140024,140025,140026,140027,140028,140029,140030,140031,140032,140033,141718,141772,141793,142068,142239,142270,142577,142647,142648,142850,142851,142852,142853,142854,142855,142856,142857,142858,142859,142860,142861,142862,142863,142864,142865,142866,142867,142868,142869,142870,142871,142872,142873,142874,142875,142876,142877,142878,144572,144705,144788,144903,145095,145263,145491,145501,145502,145664,145665,145666,145667,145668,145669,145670,145671,145672,145673,145674,145675,145676,145677,145678,145679,145680,145681,145682,145683,145684,145685,145686,145687,145688,145689,145690,145691,145692,147598,147603,147626,147711,148012,148111,148295,148310,148320,148735,148736,148737,148738,148739,148740,148741,148742,148743,148744,148745,148746,148747,148748,148749,148750,148751,148752,148753,148754,148755,148756,148757,148758,148759,148760,148761,148762,148763,150735,150766,151270,151383,151390,151391,151396,151397,151402,151419,151562,151563,151568,151629,151722,151723,151910,151914,151926,151929,151934,151997,152002,152003,152026,152037,152042,152215,152254,152257,152262,152263,152268,152269,152274,152507,152564,152697,152706,152707,152718,152721,153407,155510,155511,155516,155517,155654,155655,155660,155831,155836,155847,155852,155855,155860,155923,155928,155947,155952,155961,155966,156040,156152,156155,156160,156161,156166,156167,156342,156455,156460,156595,156602,156603,156616,156671,156732,156733,156758,156761,156784,156919,159814,159850,159858,159860,159884,159890,160060,160176,160178,160301,160433,160441,160465,160515,160638,160868,160916,160991,160997,161007,161153,161158,161160,161162,162277,162289,162297,162343,162388,162427,162437,162507,162595,162685,162715,162831,162887,163009,163019,163027,163038,163139,163390,163490,163506,163528,163587,164551,164697,164841,164891,164901,164951,164957,164969,165008,165023,165035,165040,165073,165199,166308,167309,167487,167488,167491,167742,167881,168128,168129,168445,168446,168557,168638,168645,168648,168659,168685,168686,168687,168718,168734,168743,168921,169046,169047,172487,172490,172611,172616,172654,172942,172960,173076,173096,173101,173250,173401,173511,173642,173721,173878,175003,175026,175049,175201,175356,175377,175655,175703,176730,176751,176874,176902,176926,177083,177393,177521,177522,177527,177528,177533,177534,177633,177634,177639,177640,177645,177646,177651,177652,177657,177834,178169,178174,178219,178220,178255,178268,178283,178292,178297,178302,178311,178314,178321,178323,178329,178330,178510,178580,178587,178591,178599,178600,178607,178612,179179,179196,179213,179230,179309,179388,179964,180318,180319,180330,180331,180338,180339,180384,180443,180456,180459,180470,180475,180482,180489,180494,180593,180636,180641,180648,180760,180786,180791,180798,180799,180804,180805,180810,180811,180946,180947,180952,180953,180958,180961,180968,180969,180976,180979,180984,180987,181714,181731,181748,181765,182082,182107,182393,182617,182620,182625,182628,182633,182634,182641,182644,182649,182652,182657,182660,182665,182668,182673,182774,182779,182782,182787,182790,182795,182884,182889,182892,182897,182898,182903,182904,182909,182910,183044,183271,183401,183402,183407,183408,183413,183414,183419,183420,183993,184028,184045,184062,184079,184204,184350,184957,184975,184980,184981,184986,184987,184992,184993,184998,185001,185006,185009,185014,185017,185022,185025,185030,185033,185038,185041,185046,185240,185326,185327,185334,185337,185344,185431,185442,185447,185456,185457,185462,185463,185468,185469,185474,185483,185864,185893,185910,185927,185944,185961,186605,186998,187002,187007,187008,187013,187014,187019,187088,187118,187123,187129,187131,187137,187140,187145,187148,187153,187156,187161,187164,187169,187172,187177,187180,187185,187188,187193,187384,187391,187393,187401,187404,187409,187410,187415,187416,187421,187422,188041,188064,188081,188098,188115,188132,188644,188860,188866,188872,188873,188878,188893,188900,188904,188912,188915,188922,188925,188932,189041,189449,189451,189456,189459,189472,189475,189482,189485,189494,189497,189504,189507,189864,189869,189874,189875,189980,189981,189986,189987,189992,189993,189998,189999,190251,190527,190798,190815,190842,190862,190901,191287,191288,191293,191294,191299,191300,191305,191306,191311,191312,191317,191318,191511,191512,191517,191524,191529,191530,191535,191536,191541,191542,191547,191548,191567,191568,191577,191578,191585,191586,191593,191594,191599,191602,191607,191610,191615,191618,191623,191626,192175,192204,192221,192238,192255,192272,192680,192851,192873,193119,193376,193414,193448,193454,193455,194020,194042,194087,194483,194508,194525,194551,194626,194643,195036,195097,195127,195671,195679,195767,195817,196181,196241,196258,196275,196421,196882,196899,196916,196947,197019,197045,197415,197426,197491,197492,197555,197856,198106,198121,198133,198654,198671,198688,198705,198722,198855,199335,199372,199389,199488,199881,199947,199967,199973,199980,200527,200570,200591,200757,201043,201060,201077,201163,201192,201340,201712,201737,201771,201797,201803,201896,202199,202286,202307,202755,202780,202800,202817,202843,203080,203097,203278,203357,203381,203405,203411,203798,203836,203853,203886,203921,204010,204099,204619,204636,204653,204670,204687,204737,204804,204995,205012,205118,205228,205266,205548,205552,205561,205627,205632,205652,205672,205689,205791,205895,205915,205936,206140,206143,206465,206482,206499,206516,206533,206589,206778,206971,206989,207043,207270,207288,207368,207372,207379,207458,207459,207464,208066,208083,208100,208131,208183,208235,208265,208346,208363,208461,208737,209003,209021,209025,209034,209149,209152,209162,209163,209288,209412,209502,209981,209998,210015,210032,210053,210070,210096,210533,210550,210567,210860,210870,210996,211000,211009,211047,211053,211056,211068,211551,211783,211918,211935,211952,211994,212014,212031,212057,212780,212799,212816,212837,212969,212989,212993,213002,213051,213085,213133,213800,213809,213822,213962,213970,213980,213994,214000,214052,214063,214770,214794,214800,214946,214961,215721,215742,215763,215780,215797,215950,215978,216059,216076,216093,216118,216804,216838,216848,216849,216850,217017,217034,217051,217068,217155,217174,217216,217891,217929,217957,217983,218140,218160,218168,218169,218288,218305,218322,218339,218358,219015,219091,219266,219287,219310,219335,219433,219467,219477,219641,219970,220138,220208,220383,220405,220434,220459,220483,220509,220640,220657,221306,221343,221377,221401,221567,221621,221639,221656,221675,221800,221809,222412,222453,222664,222681,222698,222715,222788,222809,222843,223546,223582,223618,223639,223849,223869,223878,223885,223917,223953,223980,224005,224026,224030,224773,224790,224807,224824,224841,225064,225106,225215,225232,225255,225276,226018,226042,226052,226277,226308,226325,226346,226474,226491,226508,227239,227260,227281,227321,227584,227601,227670,227741,227767,227785,227795,228152,228543,228554,228565,228566,228943,228960,228977,228994,229033,229054,229088,229833,229850,229867,230134,230264,230284,230300,230303,230310,231042,231107,231126,231147,231168,231189,231463,231622,231639,231695,231727,232409,232479,232489,232492,232777,232794,232811,232900,232995,233015,233102,233816,233844,233872,233902,234168,234188,234197,234201,234207,234210,234448,234465,234482,235135,235160,235236,235297,235578,235603,235720,235803,235883,235903,235911,235919,235929,236566,236691,236708,236989,237010,237041,237091,237262,237365,237386,238025,238118,238162,238182,238190,238462,238476,238479,238692,238709,238726,238828,238856,239010,239595,239658,239953,239987,240025,240205,240227,240235,240325,240354,240361,241080,241097,241158,241185,241481,241519,241611,241856,241891,241927,242625,242651,242673,242725,242741,243057,243162,243171,243176,243178,243179,243184,243185,244144,244161,244178,244195,244223,244253,244623,244756,244775,244792,244957,245775,245801,245809,245839,245849,245864,245866,245867,246321,246345,246367,246388,246551,246568,246594,247449,247488,247505,247860,247972,248010,248020,248030,248192,248194,248195,248197,248205,248207,248221,249062,249082,249125,249146,249493,249520,249679,249858,249881,249904,249912,250762,250790,250973,251153,251161,251330,252365,252382,252399,252416,252433,252784,252814,252827,253012,253197,253218,254054,254106,254114,254472,254484,254662,254848,254853,255458,256425,256444,256461,256478,256495,256512,256538,256758,257742,257759,257780,258142,258168,258176,258186,258195,258200,258208,259368,259372,259751,259768,259785,259802,259837,259854,259884,259897,261024,261041,261062,261440,261464,261472,261516,261524,262067,262612,262620,263053,263054,264117,264134,264151,264168,264185,264202,264228,264241,264688,264705,264726,265788,265812,265829,265849,265855,266077,266298,266303,266834,267365,267374,267833,267850,267867,267884,267901,267927,267940,268973,268990,269011,269017,269483,269517,269524,269528,269533,270265,271000,271037,271054,271071,271088,271105,271122,271148,271161,272608,272631,272664,272678,272698,272734,272741,272747,272749,272766,272787,273515,274245,274289,274308,274325,274342,274359,274376,274402,274415,275842,275869,275890,275912,275938,275972,275979,275989,277472,277489,277526,277533,277550,277567,277584,278995,279012,279064,279083,279100,279131,279152,279158,279178,279188,279893,280605,280643,280644,280690,280707,280724,280741,280758,280778,280817,282210,282229,282248,282269,282309,282333,282341,282344,282387,282404,282421,282438,283807,283836,283888,283945,283968,283990,284016,284052,284072,284089,285615,285632,285649,285666,285713,285734,285776,287155,287174,287193,287252,287300,287322,287332,287342,287416,287433,287546,288769,288838,288862,288933,289008,289025,289083,289111,289139,289161,290506,290567,290638,290655,290729,290757,290784,290843,290883,292178,292251,292283,292315,292363,292383,292527,292528,292538,292590,292623,293496,293936,294014,294049,294078,294104,294281,294342,294383,294404,294412,295700,295790,295826,295854,296010,296044,296115,296165,296187,296215,297542,297559,297606,297629,297637,297801,297823,297882,297938,297939,297959,297960,299306,299327,299344,299361,299378,299395,299595,299728,299745,299764,299785,301119,301157,301165,301193,301199,301373,301378,301380,301526,301543,301560,301577,301594,301932,302939,302978,303170,303188,303209,303359,303383,303391,304705,304711,304713,304718,304720,304948,304965,304982,304999,305016,305181,305223,306478,306511,306544,306743,306761,306785,306793,306973,306979,306993,306995,307000,307002,308454,308471,308488,308505,308522,308553,308597,308798,308817,308834,308855,310303,310329,310337,310381,310387,310405,310407,310412,310414,311336,311353,311370,311387,311404,312001,312139,312185,312207,312667,313127,313861,313874,313934,313957,313967,315121,315508,316526,317005,317022,317039,317056,317073,317099,317393,317421,317846,318501,318777,318790,319098,319127,319137,320449,320621,322040,322057,322074,322091,322108,322125,322465,322471,322511,323124,323737,324095,324108,324128,324133,324179,325425,325609,325781,325828,327004,327021,327038,327176,327416,327433,327459,327509,327515,328070,328624,329013,329026,329044,329095,329107,330419,330635,331384,332166,332183,332200,332217,332234,332251,332277,333619,333625,333670,333715,333749,335086,335106,335111,335121,335254,336581,336644,337950,337967,337984,338001,338018,338035,338061,338191,338197,338818,339438,339483,339496,339514,339645,339657,340925,340969,342298,342333,342350,342367,342384,342401,342418,342444,342450,342456,343083,343723,343754,343769,343775,343797,343810,343815,343834,345136,345171,345211,345228,346453,346470,346490,346526,346552,346570,346576,346591,346606,347826,347869,347875,347895,347908,347927,347946,348000,348621,349374,349401,349487,349511,349512,350861,351009,351010,351044,351045,351052,351084,351085,351092,351110,351111,351115,352552,352553,352554,352555,352556,352557,352558,352559,352560,352561,352562,352563,352564,352565,352566,352567,352568,352569,352570,352571,352572,352573,352574,352575,352576,352577,352578,352579,352580,353837,353857,353904,355648,355658,355676,355795,357016,357050,357205,358048,358072,358073,358141,358147,358181,358200,358261,358279,358280,358281,358282,358291,358317,358335,358336,358342,360339,360342,360366,361084,361098,361110,361125,362452,362454,366644,366675,367781,367784,367894,367895,367896,367897,367898,367899,367900,367901,367902,367903,367904,367905,367906,367907,367908,367909,367910,367911,367912,367913,367914,367915,367916,367917,367918,367919,367920,367921,367922,368870,368875,369073,369084,369091,369104,369111,369120,369125,369132,369143,369150,369159,369164,370505,370539,370629,370660,371791,371795,371842,371878,371940,372045,372118,372187,372195,372205,372206,372220,372221,372756,373474,373491,373584,373585,373586,373587,373588,373589,373590,373591,373592,373593,373594,373595,373596,373597,373598,373599,373600,373601,373602,373603,373604,373605,373606,373607,373608,373609,373610,373611,373612,374824,374953,374970,375054,376055,376102,376103,376104,376105,376106,376278,376290,376410,376412,376504,376631,377496,377523,377524,377528,377553,377557,377574,377578,377581,377585,377586,377590,377591,377595,377596,377600,377601,377605,377706,377710,377711,377726,377740,377773,377781,377787,377804,377812,377813,377817,377818,377822,377823,377827,377828,377832,377833,377857,377858,377862,377863,378915,378938,379641,380068,380809,381305,381563,381565,381566,381567,381568,381574,382549,382555,382818,382824,382855,382861,383790,383791,384077,384082,385547,386042,386160,386161,386162,386163,386164,386165,386166,386172,386215,386216,386217,386218,386219,387223,387228,388164,388169,388182,388195,388196,388202,389093,389094,389118,389136,389137,389138,389144,389923,389995,390000,390779,390806,391179,391512,391535,391558,391564,391607,391608,391609,392353,392358,392360,392752,393111,393166,393179,393523,393867,393873,393918,393919,393923,393925,393926,393932,394633,394639,394691,395358,395363,395365,395370,395374,395388,395401,395402,395407,395412,395998,396005,396051,396062,396067,396069,396075,396081,396086,396668,396705,396707,396729,396730,396778,396783,396989,397193,397280,397283,397285,397699,397704,397708,397745,397785,397836,397838,397839,397841,397850,398165,398171,398266,398272,398330,398339,398649,398792,398797,398799,398800,398801,399104,399106,399107,399108,399114,399219,399222,399304,399591,399640,399687,399772,399774,399780,400099,400281,400286,400288,400294,400622,400623,400813,400820,400824,400857,401348,401361,401378,401391,401812,401863,401897,401912,401923,401979,402362,402370,402374,402380,402381,402489,402494,402500,402506,402508,402536,403014,403091,403099,403101,403109,403114,403172,403185,403193,403199,403201,403207,403815,403826,403828,403831,403835,403850,403864,403865,403868,403872,404431,404444,404486,404869,404874,404876,404882,404944,405005,405079,405114,405116,405122,405530,405733,405770,405774,406179,406390,406397,406402,406403,406407,406412,406416,406417,406455,406456,406464,406467,406471,406474,406478,406479,406483,406484,406488,406683,406861,406862,406866,406873,406877,406878,406882,406883,406889,406890,406894,406895,407029,407030,407034,407035,407039,407058,407062,407063,407077,407182,407547,407565,407578,407801,407840,407854,407861,408266,408271,408277,408286,408483,408496,408500,409460,409753,410450,410488,411433,411715,411778,411813,411814,411818,411820,412390,412399,413075,413127,413769,413770,413771,413775,413778,414321,414326,414749,415058,415097,415098,415102,415104,415717,415733,416047,416333,416337,416398,416407,416409,417588,417610,418476,418743,419346,419374,419639,419876,419877,419878,419879,419883,419885,419973,419978,420209,420438,420529,420538,420990,421018,421046,421054,421530,421532,421590,421593,422101,422106,422111,422114,422156,422571,422864,423085,423186,423191,423192,423658,423663,423975,424201,424314,424320,424325,424804,424891,425140,425457,425502,425507,425508,426086,426091,426397,426679,426734,426740,426745,427334,427343,427667,427963,428034,428035,428671,428676,428981,429282,429317,429322,429323,429959,429964,429969,429971,429972,429973,430009,430014,430019,430021,430022,430023,430627,430632,430684,431302,431309,431365,431368,431377,431992,432123,432684,433275,433352,433917,434060,434567,435178,435183,435450,435715,435746,436278,436279,436337,436400,436421,436425,436426,437002,437007,437250,437528,437542,437843,438100,438106,438153,438172,438176,438177,438679,438681,438682,438786,438791,438793,438794,439274,439281,439283,439345,439352,439358,439360,439677,439931,439989,440015,440019,440021,440559,440568,440570,440899,441163,441251,441252,441806,441811,441817,442164,442435,442534,442539,442540,443100,443105,443111,443470,443745,443850,443856,443861,444496,444505,444511,444846,445159,445204,445209,445210,445844,445857,445863,446206,446521,446572,446578,446583,447220,447229,447237,447590,447905,447974,447975,448649,448654,448660,449282,449314,449925,449930,449931,450587,450592,450594,451245,451283,452270,452552,453241,453285,454405,454414,455267,455533,455568,455575,455579,455581,456111,456249,456250,456283,456298,456299,456322,456323,456346,456347,456357,456363,456365,456366,456367,456475,456477,456478,456479,456997,456998,457003,457004,457009,457014,457021,457024,457033,457036,457041,457042,457047,457048,457081,457084,457089,457092,457111,457114,457121,457124,457131,457132,457137,457138,457143,457144,457150,457168,457173,457176,457181,457182,457187,457190,457195,457198,457203,457204,457728,457734,457739,457746,457747,457752,457753,457758,457787,457794,457797,457802,457817,457826,457829,457836,457837,457842,457843,457848,457849,457854,457873,457878,457879,457886,457887,457892,457894,457900,457903,457908,457909,457916,457921,457930,457931,457936,457939,457946,458504,458512,460090,460092,460097,460100,460127,460139,460150,460175,460176,460229,460282,460620,460628,460635,460640,460642,461431,462270,462288,462290,462316,462317,462328,462331,462344,462347,462358,462361,462368,462373,462380,462385,462398,462401,462410,462415,462426,462427,462538,462741,462754,462759,462766,462767,462774,462781,462790,462801,462806,462815,462822,462823,462830,462833,462868,462875,462888,462893,462900,462918,463049,463055,463059,463065,463071,463077,463090,463099,463106,463117,463118,463225,463402,463415,463420,463427,463428,463435,463442,463451,463457,463467,463476,463483,463484,463491,463494,463529,463536,463551,463556,463561,463580,463593,463596,463609,463614,463621,463630,463637,463809,463815,463866,463920,464030,464361,464364,464377,464381,464389,464394,464403,464406,464429,464436,464445,464450,464461,464466,464473,464474,464485,464486,464494,464498,464513,464515,464530,464534,464543,464544,464553,464556,464565,464578,464591,464594,464605,464613,464621,464714,464763,464833,464881,464885,465070,465082,465083,465114,465117,465126,465133,465142,465145,465150,465157,465162,465169,465174,465185,465194,465203,465212,465215,465224,465227,465236,465247,465258,465263,465276,465284,465292,465383,465418,465449,465512,465523,465530,465535,465548,465555,465572,465573,465588,465783,465793,465826,465879,465903,465909,465941,465942,465959,465964,465977,465980,465993,466000,466007,466096,466123,466144,466149,466206,466221,466224,466233,466242,466253,466266,466271,466282,466295,466298,466307,466338,466353,466366,466377,466378,466403,466414,466421,466430,466439,466446,466455,466463,466469,466470,466642,467393,467484,467492,467503,467514,467563,467569,467578,467629,467640,467641,467645,467690,467712,467721,467729,467730,467764,467774,467779,467783,467784,467820,467821,467854,467855,467872,467879,467888,467893,467908,467911,467923,467927,467944,467947,467966,467973,467982,467985,467998,467999,468016,468021,468034,468041,468060,468063,468070,468101,468127,468133,468140,468183,468192,468207,468214,468229,468234,468255,468264,468277,468513,468519,468534,468539,468550,468555,468564,468577,468592,468599,468608,468613,468621,468629,468642,468651,468660,468671,468686,468693,468696,468711,468732,468739,468750,468781,468786,468804,468808,468813,468828,468853,468859,468873,468884,468891,468900,468908,468944,468955,469162,469180,469227,469237,469272,469280,469300,469314,469320,469362,469365,469374,469384,469396,469429,469436,469451,469458,469461,469480,469481,469506,469521,469528,469539,469544,469553,469562,469597,469608,469621,469638,469657,469678,469681,469696,469699,469710,469719,469728,469739,469746,469747,469780,469781,469800,469807,469818,469827,470041,470049,470064,470071,470074,470093,470113,470133,470136,470151,470152,470165,470204,470209,470228,470233,470246,470269,470286,470293,470306,470311,470318,470331,470344,470353,470354,470359,470388,470393,470408,470421,470428,470439,470450,470455,470468,470487,470492,470513,470740,470746,470783,470797,470818,470842,470853,470898,470904,470924,470945,470980,470981,470982,470986,471033,471043,471045,471046,471047,471095,471115,471121,471126,471130,471173,471182,471191,471199,471215,471232,471249,471256,471267,471276,471283,471298,471309,471322,471333,471350,471359,471362,471371,471378,471385,471408,471417,471432,471439,471440,471447,471462,471467,471498,471513,471528,471535,471538,471553,471594,471599,471620,471641,471662,471886,471904,471911,471922,471931,471938,471953,471964,471977,471988,472005,472014,472017,472026,472031,472040,472061,472070,472085,472092,472095,472100,472115,472142,472160,472168,472182,472190,472196,472206,472247,472272,472289,472314,472333,472338,472356,472364,472371,472384,472607,472619,472678,472684,472715,472725,472735,472757,472761,472803,472806,472811,472826,472869,472872,472891,472894,472901,472912,472957,472958,472983,473000,473025,473044,473049,473060,473075,473082,473095,473108,473125,473128,473133,473150,473159,473176,473184,473198,473209,473218,473229,473241,473247,473264,473273,473292,473311,473318,473554,473559,473564,473575,473592,473593,473616,473631,473642,473655,473660,473677,473684,473691,473704,473723,473734,473737,473742,473755,473762,473777,473792,473799,473812,473823,473834,473839,473852,473857,473876,473879,473898,473905,473916,473921,473930,473942,473956,474165,474171,474234,474252,474275,474317,474341,474346,474354,474407,474477,474605,474606,474671,474706,474761,474808,474884,474918,474951,474952,474953,475038,475097,475168,475169,475262,475265,475275,475280,475281,475289,475309,475310,475311,475340,475341,475402,475403,475404,475919,475920,475921,475922,475923,475924,475925,475926,475927,475928,475929,475930,475931,475932,475933,475934,475935,475936,475937,475938,475939,475940,475941,475942,475943,475944,475945,475946,475947,476470,476471,476472,476473,476586,476639,476668,476714,476769,476779,476818,476820,476835,476837,476852,476854,476892,476921,476925,476936,477016,477018,477019,477020,477032,477062,477091,477092,477104,477159,477193,477219,477244,477245,477266,477329,477346,477423,477507,477601,477611,477629,477678,477700,477712,477723,477724,477735,477795,477831,477836,477838,477840,477842,477871,477927,477930,477932,477933,477945,478009,478012,478014,478015,478041,478115,478134,478162,478163,478193,478280,478299,478308,478309,478314,478315,478322,478376,478388,478429,478434,478463,478468,478479,478484,478485,478490,478505,478568,478571,478576,478595,478620,478621,478630,478643,478650,478651,478656,478673,478678,478701,478726,478729,478758,478760,478772,478773,478778,478814,478815,478820,478826,478832,478835,478840,478847,478852,478853,478858,478911,478916,478921,478926,478927,478934,478935,478940,479001,479006,479007,479016,479017,479022,479025,479034,479035,479040,479041,479134,479135,479156,479159,479164,479165,479170,479177,479182,479192,479193,479198,479275,479300,479301,479310,479311,479316,479317,479330,479378,479390,479431,479436,479461,479470,479481,479486,479487,479492,479507,479570,479573,479578,479613,479622,479623,479633,479644,479652,479653,479658,479675,479680,479701,479706,479727,479732,480044,480583,480630,480650,481236,481242,481243,481248,481249,481254,481285,481318,481319,481324,481325,481330,481331,481336,481409,481420,481433,481438,481439,481476,481479,481484,481485,481490,481491,481496,481497,481502,481519,481524,481525,481576,481583,481590,481591,481596,481601,481650,481651,481656,481657,481662,481663,481668,481681,481686,481687,481692,481758,481780,481781,481806,481807,481812,481821,481826,481827,481832,481833,481838,481839,481844,481845,481956,481959,481964,481965,481970,482021,482040,482041,482046,482047,482052,482053,482058,482075,482156,482216,482222,482224,482483,482538,482539,482604,482693,482742,482790,482998,483000,483061,483063,483064,483186,483188,483189,483562,483564,483565,483774,483775,483957,483959,483964,484032,484033,484218,484221,484236,484250,484383,484386,484599,484605,484794,484801,484816,484822,484893,484899,484955,484972,485736,485851,485853,486386,486389,486404,486410,486663,486666,486681,486687,487056,487059,487074,487190,487195,487201,487205,487222,487980,488005,488007,488008,488769,488772,488787,489349,489368,489371,489386,489392,489559,489562,489577,489583,489588,489594,489598,489615,490929,490944,490946,491113,492983,880744,1215934,1217163,1217461,1254856,1277384,1277385,1278777,1279075,1279079,1279107,1279117,1279123,1279128,1279246,1279301,1284380,1287277,1287315,1289019,1289020,1289021,1289022,1289023,1289024,1289025,1289026,1289027,1289028,1289029,1289030,1289031,1289032,1289033,1289034,1289035,1289036,1289037,1289038,1289039,1289040,1289041,1289042,1289043,1289044,1289045,1289046,1289047,1291084,1346824,1347577,1348680,1349773,1571147,1571731,1572504,1572678,1572795,1572873,1573121,1573131,1573300,1573301,1573348,1573349,1573350,1620388,1621870,1621949,1622866,1622951,1626073,1626079,1626109,1626110,1626111,1626112,1626113,1626114,1626115,1626281,1626282,1626283,1626284,1626285,1626286,1626287,1626288,1626289,1626290,1626291,1626292,1626293,1626294,1626295,1626296,1626297,1626298,1626299,1626300,1626301,1626302,1626303,1626304,1626305,1626306,1626307,1626308,1626421,1626422,1626423,1626424,1626425,1626426,1626449,1626450,1626451,1626452,1633137,1633143,1633393,1642382,1642383,1642384,1642385,1642386,1645383,1645384,1645385,1645386,1645852,1646134,1646536,1646602,1646603,1646665,1646668,1646680,1646681,1646695,1646700,1646712,1646727,1646728,1647106,1647676,1647694,1647730,1647748,1647778,1647781,1647796,1647798,1647823,1647834,1647864,1647866,1647881,1647887,1647895,1647918,1648444,1648468,1648473,1648474,1648567,1648568,1648569,1648570,1648571,1648572,1648573,1648574,1648575,1648576,1648577,1648578,1648579,1648580,1648581,1648651,1648657,1648662,1648667,1648672,1649394,1649667,1649668,1649669,1649670,1649671,1649672,1649673,1649674,1649675,1649676,1649677,1649678,1649679,1649680,1649681,1649682,1649683,1649684,1649685,1649686,1649687,1649688,1649689,1649690,1649691,1649692,1649693,1649694,1649695,1649696,1649892,1649911,1649929,1649934,1649939,1650796,1650980,1650981,1650984,1650985,1650986,1650987,1650988,1650989,1650990,1650991,1650992,1650993,1650994,1650995,1650998,1651168,1651183,1652203,1652348,1652349,1652350,1652351,1652352,1652353,1652354,1652355,1652356,1652357,1652358,1652359,1652360,1652361,1652362,1652486,1652535,1652553,1653805,1653825,1653842,1653858,1653859,1653860,1655058,1655134,1655196,1655257,1655258,1655262,1656554,1656680,1656737,1656793,1656794,1656957,1656958,1656959,1656960,1656961,1656962,1656963,1656964,1656965,1656966,1656967,1656968,1656969,1656970,1656971,1657167,1657187,1657255,1657318,1657319,1658745,1658815,1658816,1658924,1658925,1660571,1660845,1660846,1660847,1660848,1660849,1660850,1660851,1660852,1660853,1660854,1660855,1660856,1660857,1660858,1660859,1661029,1661030,1661035,1661158,1661169,1661170,1661207,1661208,1661213,1661214,1661229,1661256,1661305,1661316,1661321,1661322,1661327,1661328,1661333,1661340,1661405,1661406,1661507,1661510,1661515,1661516,1661521,1661522,1661527,1661626,1661647,1661648,1661718,1661805,1661859,1661861,1661869,1661870,1661875,1661915,1661940,1661967,1662026,1662031,1662032,1662037,1662038,1662151,1662184,1662191,1662192,1662197,1662214,1662223,1662224,1662229,1662230,1662235,1662240,1662367,1662368,1662373,1662378,1662383,1662384,1662419,1662420,1662425,1662548,1662559,1662576,1662597,1662598,1662603,1662604,1662609,1662624,1662651,1662711,1662712,1662717,1662718,1662788,1662790,1662795,1662892,1662899,1662900,1662905,1662906,1662911,1662912,1663021,1663030,1663035,1663148,1663153,1663237,1663247,1663251,1663257,1663258,1663263,1663264,1663269,1663306,1663353,1663405,1663421,1663422,1663427,1663428,1663433,1663500,1663579,1663582,1663587,1663613,1663614,1663619,1663685,1663751,1663752,1663757,1663762,1663767,1663798,1663803,1663804,1663809,1663935,1663943,1663976,1663981,1663982,1663987,1664002,1664007,1664074,1664089,1664090,1664095,1664098,1664103,1664104,1664109,1664176,1664181,1664278,1664285,1664286,1664291,1664292,1664297,1664298,1666162,1666308,1666311,1668099,1668151,1668232,1669989,1670989,1672699,1672721,1672800,1672971,1673085,1673294,1673471,1674927,1675132,1675282,1675370,1675535,1676925,1677053,1677054,1677059,1677060,1677065,1677066,1677071,1677238,1677243,1677244,1677249,1677356,1677361,1677362,1677367,1677368,1677375,1677409,1677505,1677506,1677515,1677516,1677521,1677522,1677527,1677528,1677533,1677706,1677729,1677730,1677735,1677736,1677771,1677772,1677777,1677778,1677921,1677944,1677961,1677964,1677969,1677970,1677975,1677976,1678038,1678118,1678127,1678144,1678197,1678202,1678207,1678208,1678213,1678341,1678369,1678370,1678375,1678376,1678381,1678408,1678481,1678482,1678487,1678548,1678553,1678554,1678559,1678560,1678565,1678622,1678737,1678738,1678743,1678744,1678855,1678856,1678861,1678862,1678867,1678868,1680288,1680354,1680426,1681884,1681983,1682084,1683612,1683792,1683793,1683798,1683799,1683804,1683805,1683942,1683951,1683956,1684011,1684026,1684031,1684036,1684037,1684042,1684147,1684196,1684197,1684202,1684203,1684208,1684210,1684244,1684245,1684314,1684317,1684382,1684385,1684390,1684391,1684396,1684397,1684402,1684403,1684574,1684577,1684582,1684691,1684696,1684697,1686227,1686243,1686244,1686271,1686274,1686406,1686412,1686417,1686418,1686423,1686424,1686461,1686462,1686467,1686488,1686665,1686666,1686671,1686672,1686677,1686740,1686745,1686746,1686751,1686917,1686933,1686934,1686939,1686940,1687077,1687086,1687091,1687151,1687161,1687166,1687171,1687172,1687187,1687303,1687329,1687330,1688579,1689213,1689214,1689215,1689216,1689217,1689218,1689219,1689220,1689221,1689222,1689223,1689224,1689225,1689226,1689227,1690407,1690532,1690755,1690757,1691104,1691173,1692095,1692097,1693954,1693955,1693956,1693957,1693958,1693959,1693960,1693961,1693962,1693963,1693964,1693965,1693966,1693967,1693968,1695124,1695214,1695636,1695762,1695982,1695992,1696340,1696409,1697883,1697893,1697895,1698079,1698081,1698227,1698228,1698238,1698241,1698251,1698254,1698266,1698650,1698653,1698663,1698665,1698676,1698682,1698871,1698881,1698883,1698893,1698895,1698905,1698907,1698989,1699357,1699358,1699370,1699372,1699377,1699380,1699381,1699391,1699393,1699398,1699402,1699451,1700940,1700948,1701974,1702667,1702717,1703713,1703714,1703715,1703716,1703717,1703718,1703719,1703720,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091,1704092,1704093,1704853,1704859,1704973,1704974,1704975,1704976,1704977,1704978,1704979,1704980,1704981,1704982,1704983,1704984,1704985,1704986,1704987,1704988,1704989,1704990,1704991,1704992,1704993,1704994,1704995,1704996,1704997,1704998,1704999,1705000,1706133,1706549,1706564,1708806,1708812,1710344,1710736,1710751,1711044,1711276,1711525,1713777,1714889,1715331,1715773,1715788,1715790,1715791,1716324,1716857,1716858,1716859,1719837,1719843,1721039,1721880,1721896,1723014,1723015,1723016,1723017,1723018,1723019,1723020,1723021,1723150,1723151,1723152,1723153,1723154,1723155,1723156,1723157,1723158,1723159,1723160,1723161,1723162,1723163,1723164,1723165,1723166,1723167,1723168,1723169,1723170,1723171,1723172,1723173,1723174,1723175,1723176,1723177,1724066,1724072,1724186,1724187,1724188,1724189,1724190,1724191,1724192,1724193,1724194,1724195,1724196,1724197,1724198,1724199,1724200,1724201,1724202,1724203,1724204,1724205,1724206,1724207,1724208,1724209,1724210,1724211,1724212,1724213,1725272,1725376,1725391,1727595,1727601,1729499,1729669,1729684,1729785,1730004,1730566,1732502,1733502,1733900,1735248,1735263,1735265,1735266,1738634,1738640,1738822,1740246,1740261,1740389,1740390,1740391,1740392,1740393,1740394,1740395,1740396,1740521,1740522,1740523,1740524,1740525,1740526,1740527,1740528,1740529,1740530,1740531,1740532,1740533,1740534,1740535,1740536,1740537,1740538,1740539,1740540,1740541,1740542,1740543,1740544,1740545,1740546,1740547,1740548,1741983,1741989,1742103,1742104,1742105,1742106,1742107,1742108,1742109,1742110,1742111,1742112,1742113,1742114,1742115,1742116,1742117,1742118,1742119,1742120,1742121,1742122,1742123,1742124,1742125,1742126,1742127,1742128,1742129,1742130,1742233,1742327,1742342,1744180,1744186,1745696,1745872,1745887,1746032,1746036,1746051,1748895,1749137,1749747,1750357,1750372,1750374,1751758,1751759,1751760,1751761,1751762,1751763,1753092,1753242,1753243,1753244,1753245,1753246,1753247,1753248,1753249,1753250,1753251,1753252,1753253,1753254,1753255,1753256,1753257,1753258,1753259,1753260,1753261,1753262,1753263,1753264,1753265,1753266,1753267,1753268,1753269,1753270,1753271,1753306,1753308,1754653,1754803,1754804,1754805,1754806,1754807,1754808,1754809,1754810,1754811,1754812,1754813,1754814,1754815,1754816,1754817,1754818,1754819,1754820,1754821,1754822,1754823,1754824,1754825,1754826,1754827,1754828,1754829,1754830,1754831,1754832,1756227,1756237,1757652,1757802,1757803,1757804,1757805,1757806,1757807,1757808,1757809,1757810,1757811,1757812,1757813,1757814,1757815,1757816,1757817,1757818,1757819,1757820,1757821,1757822,1757823,1757824,1757825,1757826,1757827,1757828,1757829,1757830,1757831,1757950,1757958,1759447,1759663,1759664,1759665,1759666,1759667,1759668,1759669,1759670,1759671,1759672,1759673,1759674,1759675,1759676,1759677,1759678,1759679,1759680,1759681,1759682,1759683,1759684,1759685,1759686,1759687,1759688,1759689,1759690,1759691,1759692,1761105,1761112,1761382,1762968,1762969,1762970,1762971,1762972,1762973,1762974,1762975,1762976,1762977,1762978,1762979,1762980,1762981,1762982,1762986,1762987,1762988,1762989,1762990,1762991,1762992,1762993,1762994,1762995,1762996,1762997,1762998,1762999,1763000,1763132,1763146,1764715,1764956,1764957,1764958,1764959,1764960,1764961,1764962,1764963,1764964,1764965,1764966,1764967,1764968,1764969,1764970,1764971,1764972,1764973,1764974,1764975,1764976,1764977,1764978,1764979,1764980,1764981,1764982,1764983,1764984,1764985,1766447,1766601,1766884,1768392,1768393,1768394,1768395,1768396,1768397,1768398,1768399,1768400,1768401,1768402,1768403,1768404,1768405,1768406,1768407,1768408,1768409,1768412,1768413,1768414,1768415,1768416,1768417,1768418,1768419,1768420,1768421,1768422,1768524,1768650,1768784,1770439,1770641,1770642,1770643,1770644,1770645,1770646,1770647,1770648,1770649,1770650,1770651,1770652,1770653,1770654,1770655,1770656,1770657,1770658,1770659,1770660,1770661,1770662,1770663,1770664,1770665,1770666,1770667,1770668,1770669,1770670,1771059,1772329,1772848,1773846,1773847,1773848,1773849,1773850,1773851,1773852,1773853,1773854,1773855,1773856,1773857,1773858,1773859,1773860,1773861,1773862,1773863,1773864,1773865,1773866,1773867,1773868,1773869,1773870,1773871,1773872,1773873,1773874,1773875,1774686,1774774,1776747,1777076,1777077,1777085,1778769,1778787,1778789,1778790,1778995,1779036,1779175,1779189,1779249,1779250,1779422,1779423,1779749,1779750,1785181,1820619,1820627,1820711,1820717,1820826,1821258,1821304,1821392,1822408,1822420,1822470,1822478,1822489,1822940,1822948,1822955,1822958,1822995,1823007,1823008,1823065,1823071,1823083,1823085,1823092,1823449,1823468,1823537,1823553,1823573,1823581,1823590,1823610,1823651,1823669,1823685,1823698,1823714,1823999,1824036,1824046,1824086,1824118,1824158,1824166,1824174,1824180,1824205,1824231,1824239,1824247,1824329,1824455,1824469,1824483,1824531,1824545,1824577,1824593,1824603,1824647,1824659,1824679,1824689,1824701,1824719,1824733,1824751,1824767,1824797,1824883,1824893,1824907,1824921,1824937,1824951,1824963,1825003,1825015,1825041,1825053,1825061,1825081,1825109,1825122,1825173,1825207,1825267,1825289,1825321,1825347,1825359,1825387,1825407,1825433,1825445,1825461,1825473,1825491,1825503,1825519,1825537,1825549,1825590,1825673,1825685,1825701,1825719,1825737,1825751,1825787,1825811,1825837,1825851,1825865,1825885,1825895,1825927,1825973,1825979,1826063,1826087,1826117,1826145,1826159,1826189,1826211,1826235,1826249,1826267,1826286,1826303,1826325,1826343,1826359,1826377,1826395,1826475,1826491,1826509,1826529,1826547,1826563,1826601,1826627,1826656,1826677,1826699,1826713,1826747,1826763,1826779,1826797,1826833,1826859,1826891,1826921,1826937,1826969,1826993,1827019,1827035,1827055,1827077,1827095,1827119,1827139,1827157,1827191,1827215,1827232,1827259,1827275,1827295,1827313,1827341,1827365,1827399,1827417,1827439,1827455,1827485,1827503,1827519,1827539,1827567,1827595,1827619,1827649,1827667,1827699,1827725,1827753,1827771,1827797,1827828,1827853,1827876,1827897,1827919,1827929,1845790,1845796,1845865,1845913,1845945,1845951,1845999,1846051,1846057,1846129,1846135,1846181,1846231,1846237,1846285,1846339,1846345,1846405,1846443,1846449,1846531,1846547,1846552,1846618,1846683,1846684,1846923,1846953,1847011,1847021,1847067,1847117,1847135,1847159,1847182,1847183,1847184,1847185,1847208,1847260,1847438,1847490,1847560,1847640,1847692,1847746,1847820,1847845,1847867,1847869,1847871,1847872,1847896,1847975,1847983,1848039,1848101,1848109,1848149,1848259,1848265,1848271,1848277,1848413,1848548,1848550,1848572,1848605,1848619,1848662,1848720,1848772,1848784,1848810,1848840,1848912,1848962,1848980,1848988,1849160,1849216,1849286,1849292,1849332,1849371,1849373,1849375,1849398,1849422,1849428,1849486,1849562,1849614,1849639,1849663,1849665,1849688,1849711,1849714,1849722,1849782,1849844,1849888,1849912,1849933,1849944,1849962,1849970,1849980,1850027,1850033,1850333,1850365,1850401,1850461,1850515,1850549,1850583,1850601,1850655,1850707,1850727,1850739,1850745,1850937,1850961,1851027,1851035,1851121,1851173,1851229,1851311,1851365,1851421,1851473,1851537,1851594,1851599,1851601,1851602,1851622,1851643,1851666,1851698,1851716,1851733,1851743,1851745,1851747,1851749,1851752,1851754,1851756,1851759,1851761,1851763,1851765,1851767,1851769,1851770,1851817,1851946,1852204,1852328,1852352,1852406,1852472,1852494,1852502,1852508,1852712,1852774,1852784,1852790,1852874,1852928,1853002,1853104,1853116,1853212,1853274,1853338,1853354,1853438,1853496,1853508,1853520,1853528,1853834,1853880,1853914,1853941,1853942,1853943,1853966,1853989,1853991,1854007,1854023,1854037,1854053,1854057,1854065,1854073,1854074,1854099,1854124,1854125,1854126,1854127,1854128,1854129,1854130,1854131,1854166,1854204,1854223,1854235,1854397,1854435,1854489,1854501,1854513,1854519,1854605,1854657,1854663,1854721,1854791,1854797,1854853,1854873,1854953,1854982,1855019,1855081,1855087,1855139,1855185,1855209,1855251,1855257,1855285,1855291,1855383,1855389,1855592,1855636,1855662,1855688,1855689,1855711,1855733,1855735,1855751,1855781,1855804,1855812,1855836,1855860,1855861,1855862,1855863,1855864,1855901,1855940,1855944,1855948,1856018,1856095,1856122,1856163,1856216,1856304,1856354,1856406,1856418,1856486,1856542,1856550,1856602,1856650,1856710,1856718,1856780,1856800,1856840,1856912,1856956,1856970,1856976,1857080,1857236,1857242,1857248,1857386,1857432,1857466,1857516,1857566,1857572,1857578,1857658,1857670,1857818,1857900,1857914,1857919,1857920,1857931,1857971,1858004,1858008,1858010,1858033,1858058,1858086,1858112,1858143,1858174,1858176,1858178,1858204,1858229,1858233,1858259,1858282,1858304,1858326,1858354,1858384,1858414,1858450,1858502,1858510,1858574,1858622,1858642,1858648,1858654,1858896,1858904,1858992,1859088,1859150,1859172,1859196,1859219,1859220,1859222,1859224,1859225,1859226,1859227,1859263,1859299,1859303,1859308,1859310,1859311,1859374,1859437,1859438,1859439,1859448,1859474,1859492,1859493,1859514,1859539,1859544,1859545,1859560,1859648,1859696,1859754,1859785,1859814,1859816,1859818,1859843,1859867,1859927,1860861,1860869,1860991,1861011,1861051,1861103,1861119,1861207,1861255,1861313,1861375,1861427,1861439,1861487,1861533,1861539,1861545,1861551,1861557,1861563,1861569,1861575,1861581,1861587,1861593,1861599,1861605,1861611,1861617,1861623,1861629,1861635,1861641,1861647,1861653,1862491,1862507,1862625,1862633,1862687,1862731,1862747,1862779,1862855,1862907,1862961,1863019,1863071,1863125,1863171,1863179,1863187,1863195,1863203,1863211,1863219,1863227,1863235,1863243,1863251,1863259,1863267,1863275,1863283,1863291,1863299,1863307,1863315,1863323,1863331,1863745,1864141,1864159,1864269,1864293,1864335,1864387,1864407,1864495,1864543,1864601,1864659,1864711,1864727,1864801,1864819,1864831,1864841,1864851,1864861,1864871,1864881,1864891,1864899,1864911,1864919,1864931,1864941,1864951,1864961,1864971,1864981,1864991,1865001,1865011,1865021,1865721,1865804,1865815,1865921,1865975,1866019,1866039,1866059,1866151,1866203,1866257,1866311,1866363,1866417,1866463,1866475,1866485,1866499,1866511,1866523,1866535,1866547,1866559,1866571,1866583,1866595,1866607,1866619,1866631,1866643,1866655,1866667,1866679,1866691,1866703,1866995,1867441,1867461,1867525,1867571,1867625,1867669,1867691,1867727,1867805,1867857,1867911,1867963,1868015,1868069,1868115,1868129,1868143,1868157,1868171,1868185,1868199,1868217,1868229,1868245,1868257,1868273,1868287,1868301,1868315,1868329,1868343,1868357,1868371,1868385,1868399,1868755,1869101,1869129,1869217,1869275,1869319,1869341,1869367,1869453,1869489,1869563,1869615,1869667,1869721,1869767,1869783,1869799,1869815,1869831,1869847,1869863,1869879,1869891,1869905,1869923,1869937,1869955,1869971,1869991,1870007,1870023,1870039,1870055,1870071,1870087,1870351,1870705,1870787,1870845,1870889,1870945,1870987,1871013,1871053,1871125,1871155,1871229,1871281,1871333,1871427,1871445,1871451,1871469,1871489,1871507,1871525,1871545,1871567,1871583,1871602,1871619,1871639,1871657,1871679,1871691,1871709,1871727,1871751,1871763,1871784,1871950,1872123,1872439,1872469,1872517,1872561,1872617,1872659,1872687,1872747,1872821,1872895,1872947,1872999,1873053,1873099,1873119,1873139,1873159,1873183,1873203,1873221,1873245,1873263,1873285,1873303,1873325,1873345,1873365,1873385,1873405,1873425,1873445,1873465,1873485,1873505,1873755,1874115,1874147,1874191,1874235,1874291,1874344,1874399,1874467,1874497,1874571,1874621,1874673,1874727,1874773,1874795,1874817,1874841,1874863,1874883,1874905,1874933,1874953,1874977,1874997,1875021,1875043,1875065,1875087,1875109,1875131,1875154,1875175,1875205,1875439,1875527,1875797,1875861,1875873,1875961,1875971,1876035,1876061,1876087,1876153,1876251,1876303,1876355,1876407,1876453,1876477,1876501,1876529,1876553,1876577,1876601,1876631,1876653,1876679,1876701,1876727,1876751,1876779,1876797,1876821,1876845,1876875,1876905,1876923,1877147,1877229,1877487,1877551,1877563,1877623,1877661,1877697,1877731,1877779,1877845,1877873,1877947,1877999,1878051,1878103,1878149,1878175,1878201,1878241,1878267,1878293,1878319,1878341,1878365,1878393,1878417,1878445,1878471,1878501,1878521,1878547,1878573,1878605,1878637,1878657,1878883,1878947,1879209,1879257,1879301,1879357,1879401,1879436,1879488,1879569,1879643,1879695,1879747,1879799,1879845,1879873,1879901,1879933,1879961,1879989,1880017,1880051,1880077,1880107,1880133,1880163,1880187,1880199,1880231,1880273,1880301,1880335,1880369,1880391,1880593,1880663,1880877,1880955,1880999,1881055,1881097,1881135,1881185,1881245,1881251,1881281,1881401,1881453,1881505,1881551,1881581,1881611,1881645,1881675,1881705,1881735,1881771,1881799,1881831,1881859,1881891,1881917,1881931,1881965,1882009,1882028,1882075,1882111,1882135,1882327,1882391,1882589,1882667,1882711,1882767,1882809,1882849,1882899,1882959,1882989,1883063,1883115,1883167,1883219,1883265,1883297,1883329,1883365,1883397,1883429,1883461,1883499,1883529,1883563,1883593,1883627,1883655,1883671,1883707,1883753,1883785,1883823,1883861,1883887,1884083,1884127,1884381,1884425,1884481,1884523,1884565,1884617,1884675,1884705,1884779,1884831,1884883,1884935,1884981,1885015,1885049,1885099,1885133,1885167,1885201,1885231,1885263,1885323,1885359,1885395,1885433,1885461,1885493,1885527,1885567,1885607,1885635,1885821,1885859,1886025,1886107,1886147,1886203,1886245,1886289,1886343,1886399,1886429,1886503,1886555,1886607,1886659,1886705,1886741,1886777,1886829,1886867,1886931,1886963,1886993,1887033,1887067,1887105,1887141,1887181,1887211,1887245,1887291,1887323,1887389,1887565,1887599,1887749,1887831,1887873,1887927,1887971,1888017,1888071,1888123,1888155,1888185,1888277,1888327,1888379,1888391,1888431,1888499,1888553,1888591,1888645,1888689,1888725,1888765,1888803,1888843,1888881,1888923,1888955,1888991,1889029,1889073,1889117,1889167,1889333,1889425,1889509,1889553,1889595,1889647,1889691,1889739,1889795,1889847,1889879,1889949,1890001,1890051,1890105,1890153,1890193,1890265,1890319,1890359,1890421,1890459,1890501,1890539,1890579,1890623,1890667,1890677,1890711,1890749,1890799,1890835,1890879,1890929,1891079,1891257,1891273,1891315,1891367,1891413,1891461,1891517,1891569,1891603,1891671,1891725,1891773,1891829,1891849,1891921,1891995,1892051,1892093,1892157,1892163,1892241,1892247,1892323,1892329,1892415,1892423,1892463,1892499,1892555,1892631,1892639,1892691,1892819,1892887,1892985,1893003,1893045,1893097,1893145,1893193,1893249,1893327,1893395,1893447,1893497,1893551,1893561,1893613,1893657,1893733,1893791,1893835,1893901,1893943,1893989,1894031,1894075,1894123,1894171,1894181,1894217,1894259,1894303,1894353,1894403,1894455,1894571,1894642,1894733,1894753,1894797,1894803,1894899,1894909,1895001,1895079,1895147,1895199,1895249,1895303,1895329,1895401,1895445,1895507,1895551,1895597,1895665,1895709,1895757,1895805,1895847,1895899,1895949,1895989,1896033,1896079,1896131,1896183,1896237,1896303,1896367,1896415,1896503,1896525,1896571,1896621,1896671,1896719,1896771,1896847,1896913,1896965,1897015,1897067,1897073,1897103,1897173,1897277,1897323,1897371,1897377,1897487,1897537,1897587,1897612,1897685,1897737,1897779,1897827,1897874,1897929,1897981,1898037,1898087,1898143,1898191,1898281,1898305,1898353,1898405,1898457,1898507,1898559,1898635,1898697,1898749,1898799,1898849,1898879,1898951,1898999,1899065,1899113,1899163,1899235,1899283,1899335,1899387,1899433,1899443,1899537,1899557,1899595,1899645,1899693,1899755,1899803,1899887,1899919,1899979,1900061,1900087,1900093,1900189,1900241,1900293,1900345,1900423,1900487,1900541,1900593,1900645,1900677,1900751,1900801,1900869,1900942,1901039,1901089,1901143,1901197,1901249,1901303,1901363,1901407,1901459,1901509,1901567,1901623,1901683,1901711,1901773,1901787,1901869,1901897,1901949,1902003,1902057,1902111,1902165,1902243,1902305,1902359,1902413,1902465,1902499,1902573,1902687,1902739,1902793,1902869,1902921,1902981,1903033,1903087,1903093,1903193,1903217,1903259,1903313,1903363,1903423,1903483,1903563,1903573,1903637,1903691,1903753,1903763,1903815,1903913,1903921,1903975,1904099,1904159,1904167,1904221,1904275,1904327,1904361,1904435,1904545,1904597,1904651,1904725,1904779,1904871,1904891,1904943,1904999,1905061,1905107,1905163,1905213,1905323,1905385,1905417,1905483,1905491,1905543,1905605,1905617,1905669,1905765,1905775,1905829,1905951,1906009,1906055,1906117,1906169,1906203,1906277,1906287,1906393,1906445,1906499,1906540,1906627,1906633,1906737,1906785,1906799,1906893,1906921,1906965,1907059,1907117,1907173,1907235,1907269,1907335,1907347,1907427,1907459,1907473,1907525,1907619,1907631,1907685,1907805,1907861,1907907,1907969,1908021,1908055,1908129,1908141,1908243,1908295,1908349,1908421,1908475,1908563,1908587,1908639,1908695,1908761,1908803,1908815,1908907,1908965,1909019,1909081,1909117,1909183,1909205,1909275,1909309,1909363,1909377,1909469,1909483,1909537,1909655,1909709,1909755,1909817,1909869,1909905,1909977,1909991,1910031,1910135,1910189,1910201,1910273,1910327,1910413,1910453,1910495,1910547,1910611,1910661,1910687,1910759,1910815,1910869,1910931,1910969,1911053,1911119,1911155,1911209,1911225,1911315,1911331,1911385,1911501,1911555,1911601,1911667,1911745,1911817,1911865,1911965,1912019,1912033,1912103,1912157,1912241,1912269,1912321,1912377,1912443,1912493,1912501,1912639,1912647,1912753,1912793,1912859,1912885,1912949,1912987,1913041,1913059,1913147,1913165,1913219,1913377,1913423,1913485,1913537,1913575,1913645,1913693,1913789,1913843,1913859,1913927,1913981,1914065,1914105,1914151,1914252,1914303,1914321,1914407,1914461,1914513,1914575,1914617,1914683,1914711,1914771,1914811,1914865,1914885,1914971,1915035,1915143,1915197,1915243,1915305,1915359,1915397,1915509,1915601,1915655,1915673,1915739,1915795,1915875,1915915,1916002,1916067,1916113,1916133,1916217,1916271,1916323,1916383,1916427,1916493,1916523,1916581,1916623,1916689,1916737,1916797,1916851,1916989,1917005,1917068,1917113,1917167,1917232,1917315,1917405,1917411,1917479,1917487,1917598,1917677,1917700,1917805,1917869,1917915,1917937,1918019,1918073,1918125,1918183,1918229,1918295,1918327,1918383,1918471,1918495,1918577,1918601,1918655,1918795,1918841,1918903,1918957,1918999,1919065,1919113,1919201,1919255,1919279,1919339,1919395,1919471,1919511,1919599,1919663,1919709,1919733,1919813,1919825,1919919,1919977,1920023,1920089,1920095,1920129,1920265,1920291,1920371,1920397,1920451,1920457,1920591,1920693,1920699,1920764,1920797,1920861,1920909,1920995,1921049,1921075,1921133,1921189,1921263,1921305,1921391,1921455,1921501,1921527,1921607,1921659,1921711,1921782,1921872,1921909,1921963,1921969,1922057,1922085,1922163,1922191,1922245,1922373,1922419,1922481,1922535,1922579,1922643,1922691,1922773,1922827,1922855,1922913,1922969,1923041,1923083,1923167,1923231,1923277,1923305,1923383,1923437,1923489,1923545,1923593,1923655,1923693,1923747,1923835,1923865,1923941,1923971,1924025,1924147,1924193,1924255,1924309,1924355,1924405,1924427,1924499,1924585,1924629,1924685,1924743,1924811,1924855,1924939,1925001,1925049,1925079,1925155,1925208,1925259,1925317,1925363,1925423,1925463,1925517,1925607,1925639,1925713,1925747,1925801,1925917,1925963,1926025,1926079,1926125,1926187,1926235,1926313,1926367,1926399,1926453,1926509,1926579,1926624,1926703,1926769,1926813,1926847,1926919,1926975,1927025,1927081,1927129,1927189,1927231,1927283,1927371,1927405,1927457,1927485,1927561,1927599,1927685,1927759,1927793,1927847,1927893,1927953,1928001,1928077,1928131,1928167,1928217,1928327,1928341,1928443,1928517,1928563,1928597,1928669,1928723,1928775,1928825,1928881,1928931,1928951,1928995,1929051,1929137,1929213,1929243,1929279,1929347,1929437,1929483,1929545,1929555,1929609,1929657,1929755,1929830,1929883,1929919,1929969,1930079,1930095,1930195,1930269,1930315,1930351,1930421,1930475,1930527,1930577,1930633,1930683,1930705,1930751,1930807,1930891,1930965,1930999,1931074,1931113,1931191,1931263,1931299,1931353,1931403,1931459,1931509,1931581,1931635,1931675,1931725,1931827,1931845,1931943,1932015,1932063,1932101,1932169,1932223,1932275,1932325,1932381,1932431,1932455,1932503,1932559,1932641,1932715,1932749,1932825,1932863,1932937,1933009,1933045,1933099,1933149,1933205,1933255,1933327,1933381,1933423,1933473,1933571,1933589,1933673,1933743,1933763,1933845,1933911,1933965,1934017,1934067,1934125,1934173,1934199,1934249,1934305,1934385,1934457,1934463,1934499,1934575,1934613,1934685,1934787,1934841,1934891,1934947,1934997,1935067,1935073,1935165,1935215,1935309,1935331,1935423,1935493,1935543,1935585,1935649,1935703,1935755,1935805,1935863,1935911,1935939,1935991,1936047,1936125,1936195,1936233,1936309,1936347,1936417,1936519,1936573,1936623,1936679,1936729,1936797,1936851,1936897,1936947,1937037,1937061,1937151,1937219,1937271,1937315,1937377,1937431,1937483,1937533,1937591,1937639,1937669,1937721,1937777,1937853,1937921,1937959,1938035,1938073,1938141,1938207,1938249,1938303,1938353,1938409,1938459,1938525,1938579,1938659,1938677,1938775,1938789,1938877,1938943,1938995,1939041,1939101,1939155,1939185,1939257,1939263,1939323,1939369,1939401,1939455,1939511,1939641,1939683,1939739,1939797,1939809,1939895,1939937,1940027,1940077,1940133,1940183,1940247,1940301,1940381,1940401,1940497,1940513,1940597,1940663,1940715,1940763,1940821,1940875,1940929,1940977,1941058,1941111,1941119,1941195,1941229,1941353,1941397,1941453,1941513,1941577,1941641,1941685,1941739,1941789,1941845,1941895,1941957,1942011,1942091,1942113,1942207,1942225,1942305,1942371,1942423,1942473,1942529,1942583,1942637,1942685,1942745,1942793,1942836,1942904,1942939,1943059,1943107,1943183,1943221,1943281,1943345,1943389,1943443,1943493,1943549,1943601,1943659,1943713,1943793,1943817,1943909,1943929,1944005,1944069,1944123,1944173,1944229,1944283,1944374,1944435,1944481,1944519,1944573,1944629,1944641,1944761,1944767,1944881,1944919,1944977,1944983,1945047,1945091,1945145,1945197,1945251,1945305,1945361,1945415,1945495,1945521,1945611,1945633,1945707,1945769,1945823,1945875,1945929,1945983,1946073,1946153,1946213,1946267,1946323,1946337,1946366,1946460,1946573,1946611,1946669,1946731,1946741,1946830,1946839,1946891,1946945,1946999,1947053,1947107,1947185,1947213,1947302,1947325,1947395,1947457,1947511,1947563,1947617,1947671,1947759,1947819,1947865,1947907,1947961,1948017,1948033,1948143,1948191,1948263,1948301,1948359,1948419,1948467,1948521,1948577,1948627,1948683,1948739,1948793,1948869,1948901,1948987,1949013,1949131,1949185,1949212,1949293,1949347,1949431,1949493,1949539,1949583,1949637,1949693,1949711,1949817,1949865,1949935,1949975,1950031,1950091,1950139,1950193,1950245,1950299,1950353,1950407,1950465,1950537,1950575,1950675,1950689,1950799,1950853,1950907,1950961,1951015,1951097,1951159,1951205,1951251,1951307,1951361,1951370,1951378,1951380,1951382,1951430,1951478,1951480,1951482,1951503,1951524,1951525,1951526,1951527,1951559,1951591,1951592,1951593,1951612,1951631,1951632,1951633,1951658,1951683,1951684,1951712,1951740,1951742,1951744,1951765,1951787,1951789,1951813,1951837,1951838,1951839,1951863,1951890,1951894,1951916,1951938,1951942,1951948,1951951,1951971,1951994,1951998,1951999,1952021,1952046,1952070,1952091,1952096,1952131,1952162,1952163,1952165,1952180,1952194,1952195,1952196,1952235,1952274,1952275,1952276,1952289,1952302,1952303,1952304,1952333,1952362,1952363,1952364,1952391,1952418,1952419,1952420,1952445,1952470,1952471,1952472,1952497,1952522,1952523,1952524,1952549,1952574,1952575,1952576,1952601,1952626,1952627,1952665,1952703,1952704,1952705,1952734,1952763,1952764,1952765,1952786,1952807,1952808,1952830,1952852,1952853,1952854,1952879,1952905,1952907,1952908,1952933,1952958,1952959,1952968,1952978,1952980,1953025,1953071,1953073,1953093,1953113,1953114,1953115,1953145,1953175,1953176,1953195,1953214,1953215,1953216,1953239,1953262,1953263,1953264,1953291,1953318,1953320,1953322,1953342,1953363,1953365,1953366,1953389,1953412,1953413,1953414,1953437,1953463,1953467,1953488,1953509,1953513,1953519,1953522,1953523,1953542,1953564,1953568,1953569,1953590,1953614,1953637,1953657,1953662,1953695,1953724,1953726,1953741,1953755,1953756,1953757,1953758,1953794,1953830,1953831,1953832,1953845,1953858,1953859,1953860,1953887,1953914,1953915,1953916,1953942,1953968,1953969,1953970,1953994,1954018,1954019,1954020,1954044,1954068,1954069,1954070,1954071,1954095,1954119,1954120,1954121,1954145,1954169,1954170,1954171,1954207,1954243,1954244,1954245,1954273,1954301,1954302,1954303,1954323,1954343,1954344,1954366,1954388,1954389,1954390,1954414,1954439,1954441,1954442,1954443,1954467,1954491,1954492,1954501,1954511,1954513,1954516,1954558,1954599,1954601,1954620,1954639,1954640,1954641,1954642,1954670,1954698,1954699,1954700,1954719,1954738,1954739,1954740,1954762,1954784,1954785,1954810,1954835,1954836,1954838,1954840,1954860,1954881,1954883,1954905,1954927,1954928,1954929,1954951,1954976,1954980,1955000,1955023,1955029,1955032,1955033,1955051,1955072,1955076,1955077,1955097,1955120,1955142,1955161,1955192,1955223,1955224,1955226,1955241,1955255,1955256,1955257,1955258,1955292,1955326,1955327,1955328,1955341,1955354,1955355,1955356,1955381,1955406,1955407,1955408,1955409,1955434,1955459,1955460,1955461,1955484,1955507,1955508,1955509,1955532,1955555,1955556,1955557,1955558,1955581,1955604,1955605,1955606,1955629,1955652,1955653,1955654,1955688,1955722,1955723,1955724,1955751,1955778,1955779,1955780,1955799,1955818,1955819,1955841,1955863,1955864,1955865,1955888,1955912,1955914,1955915,1955916,1955939,1955962,1955963,1955972,1955982,1955984,1955987,1956026,1956064,1956066,1956084,1956102,1956103,1956104,1956105,1956131,1956157,1956158,1956177,1956196,1956197,1956198,1956219,1956240,1956241,1956265,1956289,1956290,1956292,1956294,1956313,1956333,1956335,1956336,1956357,1956378,1956379,1956380,1956401,1956425,1956429,1956448,1956467,1956471,1956477,1956480,1956481,1956498,1956518,1956522,1956523,1956542,1956564,1956585,1956603,1956632,1956661,1956662,1956664,1956679,1956693,1956694,1956695,1956696,1956728,1956760,1956761,1956762,1956775,1956788,1956789,1956790,1956813,1956836,1956837,1956838,1956839,1956863,1956887,1956888,1956910,1956932,1956933,1956934,1956956,1956978,1956979,1956980,1956981,1956982,1957004,1957026,1957027,1957028,1957050,1957072,1957073,1957074,1957107,1957140,1957141,1957142,1957167,1957192,1957193,1957194,1957213,1957232,1957233,1957254,1957275,1957276,1957277,1957299,1957322,1957324,1957325,1957326,1957348,1957370,1957371,1957380,1957390,1957392,1957395,1957431,1957466,1957468,1957486,1957504,1957505,1957506,1957530,1957554,1957555,1957574,1957593,1957594,1957595,1957596,1957616,1957636,1957637,1957659,1957681,1957682,1957684,1957686,1957705,1957725,1957727,1957728,1957748,1957768,1957769,1957789,1957812,1957816,1957834,1957852,1957856,1957862,1957865,1957866,1957882,1957901,1957905,1957906,1957924,1957945,1957965,1957982,1958009,1958036,1958038,1958053,1958067,1958068,1958069,1958070,1958100,1958130,1958131,1958132,1958145,1958158,1958159,1958160,1958181,1958202,1958203,1958204,1958227,1958250,1958251,1958272,1958293,1958294,1958295,1958316,1958337,1958338,1958339,1958340,1958341,1958362,1958383,1958384,1958385,1958406,1958427,1958428,1958436,1958468,1958493,1958516,1958539,1958540,1958541,1958560,1958579,1958580,1958600,1958620,1958621,1958642,1958663,1958665,1958667,1958668,1958669,1958690,1958711,1958712,1958721,1958731,1958735,1958768,1958799,1958801,1958803,1958821,1958839,1958840,1958841,1958863,1958885,1958886,1958905,1958924,1958925,1958926,1958927,1958928,1958947,1958966,1958986,1959006,1959007,1959008,1959010,1959012,1959031,1959051,1959053,1959054,1959073,1959092,1959093,1959112,1959131,1959135,1959139,1959156,1959173,1959177,1959183,1959186,1959187,1959202,1959220,1959224,1959225,1959242,1959262,1959281,1959297,1959322,1959347,1959349,1959364,1959378,1959379,1959380,1959403,1959431,1959437,1959438,1959439,1959452,1959465,1959466,1959467,1959487,1959507,1959508,1959509,1959530,1959551,1959552,1959572,1959592,1959593,1959594,1959614,1959634,1959635,1959636,1959637,1959638,1959658,1959678,1959679,1959680,1959700,1959720,1959721,1959729,1959737,1959761,1959785,1959806,1959827,1959828,1959829,1959848,1959867,1959868,1959887,1959906,1959907,1959927,1959947,1959949,1959951,1959952,1959969,1959989,1959993,1960002,1960012,1960016,1960046,1960074,1960076,1960078,1960079,1960097,1960115,1960116,1960136,1960156,1960157,1960176,1960195,1960196,1960197,1960198,1960199,1960217,1960235,1960254,1960273,1960275,1960277,1960295,1960314,1960316,1960317,1960335,1960353,1960354,1960372,1960390,1960394,1960398,1960414,1960430,1960434,1960440,1960443,1960444,1960458,1960475,1960479,1960495,1960514,1960532,1960547,1960570,1960593,1960595,1960610,1960624,1960625,1960626,1960647,1960673,1960679,1960680,1960681,1960694,1960707,1960708,1960709,1960728,1960747,1960748,1960767,1960786,1960787,1960803,1960822,1960826,1960827,1960846,1960865,1960866,1960867,1960868,1960869,1960870,1960889,1960908,1960909,1960913,1960932,1960948,1960949,1960957,1960965,1960987,1961009,1961010,1961030,1961050,1961051,1961052,1961071,1961090,1961091,1961109,1961127,1961128,1961129,1961148,1961167,1961169,1961171,1961172,1961188,1961207,1961219,1961229,1961232,1961260,1961287,1961289,1961291,1961292,1961309,1961326,1961327,1961345,1961363,1961364,1961382,1961400,1961401,1961402,1961403,1961404,1961410,1961427,1961439,1961457,1961475,1961476,1961478,1961480,1961497,1961515,1961517,1961534,1961551,1961552,1961570,1961588,1961592,1961596,1961611,1961626,1961630,1961635,1961637,1961638,1961652,1961669,1961673,1961674,1961689,1961707,1961724,1961738,1961759,1961780,1961781,1961783,1961798,1961812,1961813,1961831,1961854,1961860,1961861,1961874,1961887,1961888,1961889,1961890,1961908,1961926,1961927,1961945,1961963,1961964,1961965,1961980,1961998,1962002,1962003,1962021,1962039,1962040,1962041,1962042,1962043,1962044,1962062,1962080,1962081,1962085,1962103,1962118,1962125,1962132,1962133,1962154,1962175,1962176,1962195,1962214,1962215,1962233,1962251,1962252,1962265,1962283,1962289,1962290,1962308,1962326,1962327,1962329,1962331,1962332,1962346,1962363,1962375,1962384,1962386,1962413,1962439,1962440,1962442,1962444,1962460,1962476,1962477,1962478,1962495,1962512,1962513,1962530,1962547,1962548,1962549,1962550,1962551,1962557,1962573,1962584,1962601,1962618,1962619,1962621,1962623,1962639,1962656,1962658,1962674,1962690,1962691,1962708,1962725,1962726,1962730,1962734,1962748,1962765,1962769,1962771,1962773,1962786,1962799,1962803,1962807,1962821,1962835,1962851,1962867,1962887,1962907,1962908,1962909,1962911,1962925,1962938,1962939,1962940,1962956,1962977,1962983,1962984,1962997,1963010,1963011,1963012,1963013,1963030,1963047,1963048,1963065,1963082,1963083,1963084,1963098,1963115,1963119,1963120,1963137,1963154,1963155,1963156,1963157,1963158,1963175,1963192,1963193,1963196,1963213,1963228,1963234,1963240,1963260,1963280,1963281,1963299,1963317,1963334,1963351,1963352,1963364,1963381,1963387,1963388,1963405,1963422,1963424,1963426,1963427,1963440,1963456,1963468,1963477,1963479,1963504,1963528,1963530,1963532,1963547,1963562,1963563,1963564,1963580,1963596,1963612,1963628,1963629,1963630,1963631,1963636,1963651,1963662,1963678,1963694,1963695,1963697,1963699,1963714,1963730,1963746,1963761,1963762,1963778,1963794,1963798,1963802,1963815,1963831,1963835,1963836,1963849,1963862,1963866,1963870,1963883,1963896,1963911,1963926,1963944,1963962,1963963,1963965,1963979,1963992,1963993,1964007,1964021,1964027,1964033,1964046,1964059,1964060,1964061,1964062,1964078,1964094,1964095,1964111,1964127,1964128,1964129,1964142,1964158,1964162,1964178,1964194,1964195,1964196,1964197,1964198,1964214,1964230,1964231,1964234,1964250,1964264,1964269,1964274,1964293,1964312,1964313,1964330,1964347,1964363,1964379,1964380,1964391,1964407,1964413,1964414,1964430,1964446,1964448,1964450,1964451,1964463,1964478,1964490,1964499,1964501,1964524,1964546,1964548,1964550,1964564,1964578,1964579,1964580,1964595,1964610,1964625,1964640,1964641,1964642,1964643,1964647,1964661,1964672,1964673,1964688,1964703,1964704,1964706,1964708,1964722,1964737,1964752,1964766,1964767,1964782,1964797,1964798,1964802,1964806,1964818,1964833,1964837,1964838,1964850,1964862,1964866,1964870,1964882,1964894,1964908,1964922,1964938,1964954,1964955,1964957,1964971,1964984,1964985,1964997,1965009,1965015,1965021,1965034,1965047,1965048,1965049,1965050,1965065,1965080,1965081,1965096,1965111,1965112,1965124,1965139,1965143,1965158,1965173,1965174,1965175,1965176,1965177,1965192,1965207,1965208,1965211,1965226,1965239,1965243,1965247,1965265,1965283,1965284,1965300,1965316,1965331,1965346,1965347,1965348,1965358,1965373,1965379,1965380,1965395,1965410,1965412,1965414,1965415,1965426,1965440,1965452,1965461,1965462,1965464,1965484,1965503,1965505,1965507,1965520,1965533,1965534,1965535,1965549,1965563,1965564,1965578,1965592,1965593,1965594,1965595,1965599,1965612,1965622,1965623,1965637,1965651,1965652,1965654,1965656,1965669,1965683,1965697,1965710,1965711,1965725,1965739,1965740,1965744,1965748,1965759,1965773,1965777,1965778,1965789,1965800,1965804,1965808,1965819,1965830,1965843,1965856,1965871,1965886,1965887,1965889,1965902,1965914,1965915,1965926,1965937,1965942,1965947,1965960,1965973,1965974,1965975,1965976,1965990,1966004,1966005,1966006,1966020,1966034,1966035,1966046,1966060,1966064,1966078,1966092,1966093,1966094,1966095,1966096,1966110,1966124,1966125,1966128,1966142,1966154,1966158,1966162,1966178,1966194,1966195,1966210,1966225,1966239,1966253,1966254,1966255,1966264,1966278,1966284,1966298,1966312,1966314,1966316,1966317,1966327,1966340,1966352,1966361,1966362,1966364,1966382,1966399,1966401,1966414,1966426,1966427,1966428,1966441,1966454,1966455,1966468,1966481,1966482,1966483,1966484,1966488,1966500,1966509,1966510,1966523,1966536,1966537,1966539,1966541,1966553,1966566,1966579,1966591,1966592,1966605,1966618,1966619,1966623,1966627,1966637,1966650,1966654,1966655,1966665,1966675,1966679,1966683,1966693,1966703,1966715,1966727,1966740,1966753,1966754,1966756,1966769,1966781,1966782,1966792,1966802,1966806,1966810,1966823,1966836,1966837,1966838,1966839,1966852,1966865,1966866,1966867,1966880,1966893,1966894,1966904,1966917,1966921,1966934,1966947,1966948,1966949,1966950,1966951,1966964,1966977,1966980,1966983,1966994,1967005,1967009,1967013,1967027,1967041,1967055,1967069,1967082,1967095,1967096,1967097,1967105,1967118,1967124,1967137,1967150,1967151,1967153,1967155,1967156,1967165,1967177,1967189,1967198,1967200,1967216,1967232,1967244,1967255,1967256,1967257,1967269,1967281,1967282,1967294,1967306,1967307,1967308,1967309,1967313,1967324,1967332,1967333,1967345,1967357,1967358,1967360,1967362,1967373,1967385,1967397,1967408,1967409,1967421,1967433,1967434,1967438,1967442,1967451,1967463,1967467,1967468,1967477,1967486,1967490,1967494,1967503,1967512,1967523,1967534,1967546,1967558,1967560,1967572,1967583,1967584,1967593,1967602,1967606,1967610,1967622,1967634,1967635,1967636,1967648,1967660,1967661,1967662,1967674,1967686,1967695,1967704,1967708,1967723,1967735,1967736,1967737,1967738,1967739,1967751,1967763,1967764,1967767,1967779,1967789,1967793,1967797,1967809,1967821,1967822,1967835,1967848,1967860,1967872,1967873,1967874,1967881,1967893,1967899,1967911,1967923,1967924,1967926,1967928,1967936,1967947,1967959,1967968,1967969,1967971,1967985,1967999,1968001,1968011,1968021,1968022,1968025,1968036,1968045,1968056,1968067,1968068,1968069,1968070,1968074,1968084,1968091,1968102,1968113,1968114,1968116,1968118,1968128,1968139,1968150,1968160,1968161,1968172,1968183,1968184,1968188,1968192,1968200,1968211,1968215,1968223,1968231,1968232,1968236,1968240,1968248,1968265,1968275,1968286,1968297,1968298,1968300,1968311,1968321,1968322,1968330,1968338,1968342,1968346,1968357,1968368,1968369,1968370,1968381,1968392,1968393,1968394,1968405,1968416,1968424,1968432,1968436,1968450,1968461,1968462,1968463,1968464,1968465,1968476,1968487,1968488,1968491,1968502,1968511,1968515,1968519,1968529,1968539,1968551,1968563,1968564,1968575,1968586,1968587,1968593,1968599,1968605,1968621,1968632,1968633,1968635,1968637,1968638,1968645,1968655,1968667,1968676,1968677,1968679,1968692,1968704,1968713,1968722,1968723,1968726,1968736,1968744,1968754,1968764,1968765,1968766,1968767,1968770,1968779,1968786,1968796,1968806,1968808,1968810,1968819,1968829,1968839,1968848,1968849,1968850,1968886,1969230,1969256,1969284,1969291,1969316,1969368,1969374,1969396,1969418,1969426,1969462,1969468,1969496,1969514,1969528,1969534,1969540,1969546,1969552,1969558,1969564,1969570,1969576,1969582,1969588,1969594,1969600,1969606,1969612,1969618,1969624,1969630,1969636,1969924,1969946,1969974,1969998,1970018,1970024,1970060,1970068,1970090,1970112,1970134,1970156,1970178,1970194,1970218,1970226,1970234,1970242,1970250,1970258,1970266,1970274,1970282,1970290,1970300,1970308,1970315,1970324,1970332,1970340,1970348,1970356,1970594,1970616,1970638,1970666,1970690,1970710,1970718,1970752,1970762,1970790,1970806,1970830,1970850,1970872,1970890,1970914,1970926,1970936,1970946,1970956,1970966,1970976,1970984,1970993,1971004,1971012,1971022,1971032,1971042,1971052,1971062,1971072,1971082,1971092,1971298,1971324,1971346,1971370,1971396,1971414,1971424,1971456,1971468,1971500,1971512,1971536,1971556,1971578,1971598,1971624,1971636,1971648,1971660,1971672,1971684,1971696,1971708,1971720,1971732,1971744,1971756,1971768,1971780,1971792,1971804,1971816,1971828,1971886,1972024,1972050,1972074,1972100,1972118,1972130,1972160,1972174,1972196,1972218,1972242,1972262,1972284,1972306,1972331,1972346,1972360,1972374,1972388,1972402,1972416,1972430,1972444,1972456,1972468,1972482,1972502,1972516,1972530,1972544,1972555,1972572,1972622,1972736,1972762,1972786,1972811,1972830,1972844,1972852,1972880,1972896,1972924,1972940,1972976,1972997,1973012,1973026,1973057,1973068,1973084,1973100,1973118,1973134,1973150,1973166,1973182,1973198,1973214,1973230,1973246,1973264,1973278,1973296,1973312,1973328,1973378,1973460,1973486,1973510,1973536,1973554,1973570,1973596,1973614,1973636,1973658,1973682,1973702,1973723,1973731,1973752,1973778,1973796,1973814,1973832,1973850,1973868,1973888,1973906,1973924,1973942,1973960,1973980,1973990,1974018,1974035,1974054,1974072,1974090,1974122,1974192,1974208,1974224,1974248,1974272,1974292,1974310,1974334,1974368,1974383,1974414,1974436,1974458,1974480,1974506,1974526,1974546,1974566,1974576,1974598,1974618,1974646,1974658,1974684,1974700,1974718,1974738,1974758,1974780,1974800,1974820,1974840,1974860,1974890,1974932,1974958,1974982,1975006,1975026,1975046,1975068,1975092,1975112,1975136,1975156,1975178,1975200,1975224,1975250,1975272,1975294,1975316,1975338,1975360,1975382,1975404,1975426,1975446,1975472,1975484,1975506,1975528,1975552,1975574,1975596,1975618,1975656,1975662,1975706,1975734,1975760,1975786,1975810,1975830,1975856,1975896,1975922,1975943,1975950,1975974,1976016,1976044,1976068,1976092,1976116,1976130,1976166,1976190,1976212,1976238,1976259,1976288,1976302,1976326,1976349,1976376,1976400,1976438,1976446,1976481,1976492,1976538,1976568,1976596,1976624,1976652,1976674,1976702,1976726,1976750,1976778,1976802,1976828,1976854,1976882,1976912,1976938,1976982,1976990,1977036,1977050,1977086,1977094,1977138,1977156,1977184,1977210,1977254,1977280,1977306,1977332,1977358,1977382,1977428,1977460,1977490,1977520,1977546,1977572,1977600,1977630,1977656,1977686,1977712,1977740,1977768,1977798,1977828,1977858,1977886,1977914,1977942,1977970,1977998,1978026,1978054,1978080,1978112,1978124,1978152,1978180,1978210,1978238,1978266,1978294,1978322,1978348,1978394,1978428,1978460,1978492,1978520,1978548,1978578,1978610,1978638,1978670,1978698,1978728,1978758,1978792,1978824,1978856,1978884,1978914,1978952,1978982,1979004,1979034,1979064,1979104,1979132,1979162,1979192,1979224,1979254,1979284,1979314,1979344,1979372,1979418,1979454,1979488,1979522,1979552,1979582,1979590,1979648,1979656,1979712,1979742,1979774,1979806,1979840,1979874,1979908,1979940,1979972,1980004,1980038,1980068,1980100,1980132,1980176,1980198,1980238,1980252,1980304,1980336,1980368,1980400,1980432,1980462,1980508,1980546,1980582,1980618,1980650,1980684,1980692,1980754,1980762,1980820,1980852,1980888,1980920,1980960,1980992,1981032,1981062,1981098,1981140,1981174,1981200,1981250,1981268,1981312,1981344,1981386,1981414,1981450,1981484,1981544,1981568,1981598,1981656,1981696,1981734,1981772,1981806,1981842,1981852,1981916,1981926,1981986,1982020,1982058,1982092,1982134,1982168,1982210,1982242,1982280,1982324,1982355,1982384,1982422,1982458,1982504,1982539,1982574,1982610,1982648,1982686,1982722,1982758,1982794,1982828,1982874,1982916,1982956,1982996,1983054,1983068,1983120,1983148,1983210,1983246,1983284,1983296,1983370,1983406,1983450,1983484,1983524,1983570,1983608,1983634,1983678,1983712,1983761,1983796,1983834,1983870,1983910,1983954,1984018,1984056,1984092,1984138,1984182,1984224,1984266,1984304,1984344,1984358,1984426,1984440,1984504,1984542,1984584,1984622,1984668,1984700,1984742,1984785,1984822,1984878,1984918,1984946,1984988,1985030,1985080,1985118,1985156,1985195,1985238,1985274,1985314,1985356,1985396,1985434,1985480,1985526,1985570,1985614,1985652,1985694,1985716,1985780,1985826,1985872,1985930,1985946,1985986,1986060,1986104,1986146,1986188,1986230,1986274,1986314,1986358,1986400,1986452,1986492,1986534,1986576,1986626,1986664,1986706,1986750,1986792,1986832,1986878,1986926,1986972,1987018,1987058,1987102,1987126,1987192,1987240,1987288,1987322,1987364,1987406,1987484,1987530,1987548,1987588,1987634,1987686,1987730,1987790,1987836,1987892,1987934,1987978,1988022,1988068,1988112,1988156,1988200,1988244,1988286,1988332,1988382,1988430,1988480,1988522,1988572,1988598,1988666,1988716,1988766,1988828,1988848,1988892,1988970,1989018,1989064,1989080,1989128,1989182,1989228,1989290,1989338,1989396,1989440,1989486,1989532,1989580,1989630,1989676,1989724,1989907,1990084,1990160,1990212,1990264,1990328,1990350,1990396,1990476,1990528,1990574,1990624,1990670,1990720,1990766,1990822,1990864,1990930,1990976,1991026,1991070,1991120,1991164,1991246,1991294,1991300,1991346,1991352,1991358,1991364,1991370,1991378,1991642,1991716,1991744,1991828,1991852,1991928,1991942,1992032,1992080,1992136,1992176,1992226,1992274,1992326,1992374,1992432,1992476,1992544,1992592,1992630,1992680,1992732,1992748,1992794,1992878,1992928,1992976,1992984,1992992,1993000,1993008,1993016,1993062,1993290,1993380,1993406,1993482,1993532,1993586,1993602,1993694,1993744,1993802,1993844,1993896,1993946,1994044,1994104,1994150,1994156,1994270,1994324,1994372,1994426,1994474,1994560,1994612,1994622,1994672,1994682,1994692,1994702,1994714,1994762,1994992,1995084,1995112,1995162,1995242,1995299,1995400,1995450,1995510,1995554,1995608,1995660,1995716,1995824,1995938,1995990,1996046,1996096,1996152,1996158,1996290,1996298,1996352,1996404,1996416,1996428,1996440,1996452,1996468,1996549,1996736,1996836,1996898,1996974,1997030,1997050,1997140,1997188,1997248,1997292,1997298,1997398,1997454,1997504,1997566,1997612,1997684,1997736,1997792,1997842,1997898,1997948,1998038,1998092,1998144,1998162,1998178,1998192,1998206,1998218,1998302,1998478,1998576,1998638,1998712,1998768,1998790,1998878,1998926,1998986,1999030,1999084,1999136,1999192,1999242,1999304,1999350,1999422,1999474,1999530,1999628,1999678,1999762,1999816,1999832,1999884,1999900,1999918,1999934,1999950,1999983,2000046,2000216,2000326,2000376,2000446,2000502,2000526,2000612,2000660,2000720,2000789,2000865,2000920,2000970,2001068,2001138,2001148,2001248,2001298,2001352,2001402,2001484,2001538,2001594,2001610,2001628,2001648,2001666,2001684,2001736,2001780,2001955,2002090,2002162,2002218,2002244,2002328,2002336,2002384,2002444,2002486,2002540,2002594,2002648,2002698,2002794,2002862,2002874,2002972,2003022,2003076,2003082,2003132,2003212,2003266,2003322,2003340,2003360,2003382,2003402,2003422,2003483,2003651,2003749,2003802,2003824,2003894,2003950,2003978,2004064,2004112,2004172,2004216,2004312,2004368,2004385,2004426,2004520,2004588,2004602,2004698,2004748,2004804,2004854,2004932,2004986,2005042,2005062,2005084,2005108,2005130,2005152,2005236,2005388,2005476,2005536,2005606,2005662,2005692,2005772,2005820,2005880,2005924,2005978,2006032,2006086,2006136,2006230,2006296,2006312,2006406,2006456,2006510,2006560,2006636,2006690,2006746,2006768,2006792,2006820,2006844,2006868,2006950,2007096,2007182,2007242,2007310,2007366,2007398,2007478,2007526,2007586,2007630,2007730,2007782,2007836,2007930,2007994,2008096,2008148,2008208,2008318,2008376,2008446,2008472,2008504,2008530,2008628,2008770,2008878,2008972,2009030,2009130,2009182,2009249,2009330,2009384,2009438,2009491,2009582,2009644,2009744,2009752,2009846,2009896,2009972,2010070,2010098,2010128,2010176,2010206,2010284,2010418,2010549,2010618,2010696,2010770,2010808,2010888,2010968,2010998,2011051,2011105,2011138,2011280,2011340,2011385,2011436,2011530,2011570,2011611,2011732,2011762,2011812,2011844,2011920,2012114,2012174,2012270,2012320,2012396,2012490,2012534,2012588,2012642,2012696,2012752,2012836,2012908,2012994,2013046,2013106,2013146,2013218,2013312,2013346,2013378,2013430,2013464,2013538,2013722,2013780,2013874,2013926,2013998,2014004,2014096,2014142,2014196,2014250,2014304,2014403,2014442,2014514,2014598,2014650,2014710,2014750,2014820,2014912,2014948,2014982,2015036,2015072,2015144,2015318,2015460,2015514,2015584,2015598,2015682,2015728,2015780,2015882,2015938,2016018,2016090,2016170,2016224,2016284,2016324,2016392,2016482,2016520,2016556,2016612,2016650,2016720,2016882,2016940,2017028,2017082,2017150,2017238,2017286,2017340,2017394,2017448,2017504,2017580,2017652,2017730,2017784,2017844,2017884,2017950,2018040,2018080,2018116,2018174,2018216,2018284,2018488,2018570,2018626,2018692,2018778,2018830,2018914,2018980,2019036,2019110,2019118,2019190,2019266,2019320,2019380,2019420,2019484,2019572,2019614,2019652,2019712,2019756,2019822,2019962,2020020,2020098,2020156,2020220,2020304,2020379,2020440,2020506,2020562,2020634,2020644,2020714,2020790,2020898,2020938,2021000,2021086,2021130,2021170,2021232,2021278,2021342,2021472,2021530,2021606,2021664,2021726,2021808,2021904,2021944,2022010,2022066,2022136,2022148,2022218,2022336,2022396,2022438,2022498,2022582,2022628,2022670,2022734,2022782,2022844,2022964,2023022,2023094,2023154,2023214,2023294,2023390,2023430,2023496,2023552,2023620,2023692,2023764,2023816,2023876,2023920,2023984,2024060,2024144,2024210,2024260,2024322,2024430,2024488,2024496,2024566,2024626,2024684,2024762,2024856,2024898,2024964,2025020,2025086,2025156,2025226,2025232,2025334,2025378,2025436,2025516,2025566,2025612,2025680,2025732,2025792,2025888,2025946,2025956,2026024,2026084,2026142,2026218,2026310,2026352,2026418,2026426,2026538,2026544,2026676,2026776,2026820,2026878,2026956,2027008,2027056,2027064,2027134,2027188,2027246,2027330,2027388,2027400,2027466,2027526,2027584,2027658,2027784,2027850,2027906,2027968,2028038,2028104,2028202,2028246,2028304,2028380,2028434,2028484,2028492,2028564,2028622,2028678,2028750,2028814,2028878,2028938,2028996,2029068,2029156,2029198,2029264,2029320,2029380,2029450,2029514,2029610,2029654,2029712,2029786,2029842,2029894,2029906,2030028,2030086,2030156,2030214,2030230,2030292,2030352,2030410,2030480,2030566,2030608,2030674,2030730,2030788,2030858,2030920,2031014,2031056,2031114,2031186,2031242,2031294,2031308,2031378,2031438,2031496,2031558,2031616,2031634,2031696,2031754,2031812,2031880,2031964,2032006,2032072,2032128,2032184,2032250,2032310,2032402,2032446,2032456,2032514,2032582,2032640,2032692,2032708,2032820,2032832,2032890,2032950,2033008,2033028,2033088,2033146,2033204,2033270,2033352,2033394,2033504,2033558,2033630,2033688,2033778,2033824,2033882,2033948,2034006,2034058,2034076,2034140,2034200,2034258,2034316,2034374,2034396,2034454,2034512,2034570,2034634,2034714,2034756,2034822,2034900,2034980,2035004,2035060,2035146,2035192,2035248,2035312,2035370,2035422,2035442,2035504,2035564,2035620,2035676,2035752,2035810,2035866,2035924,2035986,2036064,2036106,2036172,2036248,2036326,2036352,2036408,2036490,2036538,2036594,2036656,2036714,2036766,2036792,2036892,2036908,2036964,2037016,2037022,2037098,2037179,2037210,2037284,2037328,2037404,2037448,2037512,2037586,2037684,2037740,2037820,2037868,2037924,2037984,2038042,2038094,2038122,2038218,2038236,2038292,2038342,2038350,2038432,2038526,2038536,2038608,2038652,2038726,2038772,2038898,2038972,2039002,2039008,2039136,2039184,2039240,2039298,2039356,2039362,2039414,2039444,2039536,2039556,2039654,2039664,2039746,2039836,2039848,2039952,2040024,2040070,2040132,2040200,2040272,2040304,2040360,2040478,2040532,2040590,2040646,2040698,2040730,2040818,2040840,2040896,2040942,2040954,2041034,2041122,2041136,2041236,2041306,2041352,2041414,2041480,2041551,2041586,2041702,2041708,2041760,2041864,2041918,2041970,2042004,2042088,2042112,2042168,2042214,2042228,2042306,2042392,2042408,2042504,2042572,2042622,2042680,2042800,2042836,2042890,2042960,2043012,2043064,2043070,2043126,2043180,2043232,2043268,2043348,2043374,2043430,2043476,2043492,2043568,2043652,2043670,2043762,2043828,2043880,2043936,2044052,2044090,2044144,2044212,2044266,2044318,2044374,2044428,2044436,2044488,2044526,2044604,2044632,2044688,2044734,2044752,2044828,2044910,2044930,2045020,2045084,2045138,2045192,2045304,2045344,2045398,2045464,2045518,2045570,2045628,2045682,2045734,2045774,2045850,2045880,2045938,2045984,2046004,2046080,2046160,2046182,2046270,2046332,2046386,2046440,2046548,2046636,2046644,2046754,2046806,2046862,2046879,2046928,2046980,2047020,2047095,2047126,2047180,2047226,2047248,2047324,2047402,2047426,2047512,2047572,2047628,2047680,2047784,2047828,2047882,2047944,2047998,2048050,2048106,2048160,2048174,2048226,2048270,2048342,2048420,2048466,2048490,2048566,2048642,2048668,2048752,2048768,2048822,2048878,2048926,2049026,2049072,2049126,2049186,2049238,2049340,2049394,2049410,2049464,2049510,2049578,2049656,2049702,2049728,2049804,2049880,2049908,2049990,2050008,2050060,2050116,2050164,2050264,2050308,2050366,2050394,2050441,2050462,2050463,2050465,2050468,2050491,2050513,2050514,2050515,2050516,2050517,2050518,2050519,2050520,2050521,2050547,2050576,2050580,2050581,2050582,2050604,2050626,2050627,2050628,2050629,2050636,2050643,2050644,2050645,2050646,2050671,2050696,2050697,2050698,2050720,2050742,2050743,2050744,2050745,2050776,2050807,2050808,2050809,2050810,2050847,2050884,2050885,2050886,2050887,2050908,2050929,2050930,2050931,2050932,2050944,2050956,2050957,2050958,2050959,2050995,2051031,2051032,2051033,2051034,2051069,2051104,2051105,2051106,2051107,2051120,2051133,2051134,2051135,2051173,2051211,2051212,2051213,2051214,2051222,2051230,2051231,2051232,2051233,2051256,2051279,2051280,2051281,2051282,2051309,2051336,2051337,2051338,2051339,2051361,2051383,2051384,2051385,2051386,2051431,2051476,2051477,2051478,2051479,2051500,2051521,2051522,2051523,2051524,2051551,2051578,2051579,2051580,2051581,2051626,2051671,2051672,2051674,2051677,2051699,2051720,2051721,2051722,2051723,2051724,2051725,2051726,2051727,2051728,2051753,2051781,2051785,2051786,2051787,2051808,2051829,2051830,2051831,2051832,2051839,2051846,2051847,2051848,2051872,2051896,2051897,2051898,2051899,2051921,2051943,2051944,2051945,2051946,2051975,2052004,2052005,2052006,2052042,2052078,2052079,2052080,2052081,2052102,2052123,2052124,2052125,2052137,2052149,2052150,2052151,2052152,2052187,2052222,2052223,2052224,2052257,2052290,2052291,2052292,2052293,2052306,2052319,2052320,2052356,2052392,2052393,2052394,2052402,2052410,2052411,2052412,2052413,2052435,2052457,2052458,2052459,2052460,2052486,2052512,2052513,2052514,2052515,2052536,2052557,2052558,2052559,2052560,2052602,2052644,2052645,2052646,2052666,2052686,2052687,2052688,2052689,2052715,2052741,2052742,2052743,2052744,2052786,2052828,2052829,2052831,2052834,2052855,2052875,2052876,2052877,2052878,2052879,2052880,2052881,2052882,2052883,2052907,2052934,2052938,2052939,2052940,2052960,2052980,2052981,2052982,2052983,2052990,2052997,2052998,2052999,2053022,2053045,2053046,2053047,2053048,2053070,2053092,2053093,2053094,2053095,2053122,2053149,2053150,2053151,2053152,2053187,2053222,2053223,2053224,2053225,2053245,2053265,2053266,2053267,2053268,2053280,2053292,2053293,2053294,2053301,2053335,2053363,2053364,2053365,2053396,2053427,2053428,2053429,2053430,2053431,2053444,2053457,2053458,2053492,2053526,2053527,2053528,2053529,2053537,2053545,2053546,2053547,2053548,2053569,2053590,2053591,2053592,2053593,2053618,2053643,2053644,2053645,2053646,2053666,2053686,2053687,2053688,2053689,2053728,2053767,2053768,2053769,2053770,2053789,2053808,2053809,2053810,2053811,2053836,2053861,2053862,2053863,2053903,2053943,2053944,2053946,2053949,2053969,2053988,2053989,2053990,2053991,2053992,2053993,2053994,2053995,2053996,2054019,2054045,2054049,2054050,2054053,2054072,2054089,2054090,2054091,2054098,2054105,2054106,2054128,2054150,2054151,2054152,2054153,2054154,2054176,2054198,2054199,2054200,2054201,2054226,2054251,2054252,2054253,2054254,2054288,2054322,2054323,2054324,2054325,2054344,2054363,2054364,2054365,2054366,2054367,2054379,2054391,2054392,2054393,2054400,2054433,2054460,2054461,2054462,2054491,2054520,2054521,2054522,2054523,2054536,2054549,2054550,2054551,2054583,2054615,2054616,2054617,2054618,2054626,2054634,2054635,2054636,2054637,2054657,2054677,2054678,2054679,2054680,2054681,2054705,2054729,2054730,2054731,2054732,2054751,2054770,2054771,2054772,2054773,2054809,2054845,2054846,2054847,2054864,2054883,2054886,2054887,2054888,2054889,2054913,2054937,2054938,2054939,2054977,2055015,2055016,2055018,2055021,2055040,2055058,2055059,2055060,2055061,2055062,2055063,2055064,2055065,2055066,2055067,2055089,2055114,2055118,2055119,2055120,2055123,2055141,2055157,2055158,2055159,2055160,2055161,2055168,2055175,2055176,2055197,2055218,2055219,2055220,2055221,2055222,2055244,2055266,2055267,2055268,2055269,2055292,2055315,2055316,2055317,2055318,2055319,2055352,2055385,2055386,2055387,2055388,2055406,2055424,2055425,2055426,2055427,2055428,2055440,2055452,2055453,2055454,2055461,2055492,2055517,2055518,2055545,2055572,2055573,2055574,2055575,2055576,2055589,2055602,2055603,2055604,2055634,2055664,2055665,2055666,2055667,2055675,2055683,2055684,2055685,2055686,2055705,2055724,2055725,2055726,2055727,2055728,2055751,2055774,2055775,2055776,2055777,2055795,2055813,2055814,2055815,2055849,2055883,2055884,2055885,2055886,2055902,2055920,2055923,2055924,2055925,2055926,2055927,2055950,2055973,2055974,2055975,2056011,2056047,2056048,2056049,2056051,2056054,2056072,2056089,2056090,2056091,2056092,2056093,2056094,2056095,2056096,2056097,2056102,2056123,2056143,2056147,2056148,2056151,2056168,2056183,2056184,2056185,2056186,2056193,2056200,2056201,2056221,2056241,2056242,2056243,2056244,2056245,2056267,2056289,2056290,2056291,2056312,2056333,2056334,2056335,2056336,2056337,2056369,2056401,2056402,2056403,2056404,2056421,2056438,2056439,2056440,2056441,2056442,2056454,2056466,2056467,2056468,2056469,2056476,2056505,2056528,2056529,2056554,2056579,2056580,2056581,2056582,2056583,2056584,2056597,2056610,2056611,2056612,2056640,2056668,2056669,2056670,2056678,2056686,2056687,2056688,2056689,2056707,2056725,2056726,2056727,2056728,2056729,2056751,2056773,2056774,2056775,2056776,2056793,2056810,2056811,2056812,2056844,2056876,2056877,2056878,2056879,2056880,2056897,2056914,2056915,2056916,2056917,2056918,2056940,2056962,2056963,2056964,2056998,2057032,2057033,2057034,2057036,2057039,2057056,2057072,2057073,2057074,2057075,2057076,2057077,2057078,2057079,2057080,2057085,2057105,2057124,2057128,2057129,2057132,2057148,2057162,2057163,2057164,2057165,2057172,2057179,2057180,2057199,2057218,2057219,2057220,2057221,2057222,2057243,2057264,2057265,2057284,2057303,2057304,2057305,2057306,2057307,2057338,2057369,2057370,2057371,2057372,2057388,2057404,2057405,2057406,2057407,2057408,2057420,2057432,2057433,2057434,2057435,2057442,2057469,2057490,2057491,2057514,2057537,2057538,2057539,2057540,2057541,2057542,2057555,2057568,2057569,2057570,2057596,2057622,2057623,2057624,2057632,2057640,2057641,2057642,2057643,2057660,2057677,2057678,2057679,2057680,2057681,2057702,2057723,2057724,2057725,2057726,2057742,2057758,2057759,2057760,2057789,2057818,2057819,2057820,2057821,2057822,2057839,2057856,2057857,2057858,2057859,2057860,2057881,2057902,2057903,2057904,2057936,2057968,2057969,2057970,2057972,2057975,2057991,2058006,2058007,2058008,2058009,2058010,2058011,2058012,2058013,2058014,2058015,2058020,2058039,2058057,2058061,2058062,2058065,2058080,2058093,2058094,2058095,2058096,2058097,2058104,2058111,2058112,2058130,2058148,2058149,2058150,2058151,2058152,2058172,2058192,2058193,2058211,2058229,2058230,2058231,2058232,2058233,2058262,2058291,2058292,2058293,2058294,2058295,2058311,2058327,2058328,2058329,2058330,2058342,2058354,2058355,2058356,2058357,2058358,2058364,2058388,2058407,2058408,2058430,2058452,2058453,2058454,2058455,2058456,2058457,2058470,2058483,2058484,2058485,2058509,2058533,2058534,2058535,2058543,2058551,2058552,2058553,2058554,2058570,2058586,2058587,2058588,2058589,2058590,2058610,2058630,2058631,2058632,2058633,2058634,2058649,2058664,2058665,2058666,2058693,2058720,2058721,2058722,2058723,2058724,2058740,2058756,2058757,2058758,2058759,2058760,2058780,2058800,2058801,2058802,2058832,2058862,2058863,2058864,2058866,2058869,2058884,2058898,2058899,2058900,2058901,2058902,2058903,2058904,2058905,2058906,2058907,2058912,2058930,2058947,2058951,2058952,2058966,2058980,2058981,2058982,2058983,2058984,2058991,2058998,2058999,2059016,2059033,2059034,2059035,2059036,2059037,2059056,2059075,2059076,2059093,2059110,2059111,2059112,2059113,2059114,2059141,2059168,2059169,2059170,2059171,2059172,2059188,2059204,2059205,2059206,2059207,2059219,2059231,2059232,2059233,2059234,2059235,2059240,2059262,2059280,2059281,2059301,2059321,2059322,2059323,2059324,2059325,2059326,2059339,2059352,2059353,2059354,2059376,2059398,2059399,2059407,2059415,2059416,2059417,2059418,2059433,2059448,2059449,2059450,2059451,2059452,2059471,2059490,2059491,2059492,2059506,2059520,2059521,2059546,2059571,2059572,2059573,2059574,2059589,2059604,2059605,2059606,2059607,2059626,2059645,2059646,2059674,2059702,2059703,2059704,2059706,2059709,2059724,2059738,2059739,2059740,2059741,2059742,2059743,2059744,2059745,2059746,2059763,2059783,2059787,2059788,2059801,2059814,2059815,2059816,2059817,2059824,2059831,2059832,2059848,2059864,2059865,2059866,2059867,2059884,2059901,2059917,2059933,2059934,2059935,2059936,2059962,2059988,2059989,2059990,2059991,2060003,2060018,2060022,2060023,2060024,2060036,2060048,2060049,2060050,2060051,2060056,2060076,2060092,2060110,2060128,2060129,2060130,2060131,2060132,2060133,2060146,2060159,2060160,2060161,2060181,2060201,2060202,2060210,2060218,2060219,2060220,2060221,2060235,2060249,2060250,2060251,2060252,2060270,2060288,2060289,2060290,2060291,2060304,2060317,2060318,2060319,2060342,2060365,2060366,2060367,2060398,2060429,2060455,2060481,2060482,2060483,2060484,2060486,2060489,2060503,2060516,2060517,2060518,2060519,2060520,2060521,2060522,2060523,2060524,2060540,2060556,2060560,2060564,2060565,2060577,2060589,2060590,2060591,2060598,2060605,2060606,2060621,2060636,2060637,2060638,2060639,2060640,2060656,2060672,2060687,2060702,2060703,2060704,2060705,2060729,2060753,2060754,2060755,2060756,2060767,2060778,2060782,2060786,2060787,2060788,2060800,2060812,2060813,2060814,2060819,2060837,2060851,2060852,2060868,2060884,2060885,2060886,2060887,2060888,2060901,2060914,2060915,2060916,2060934,2060952,2060953,2060961,2060969,2060970,2060971,2060972,2060985,2060998,2060999,2061000,2061017,2061034,2061035,2061036,2061048,2061060,2061061,2061062,2061083,2061104,2061105,2061106,2061107,2061108,2061109,2061110,2061111,2061112,2061113,2061128,2061157,2061172,2061196,2061220,2061221,2061222,2061224,2061227,2061240,2061252,2061253,2061254,2061255,2061256,2061257,2061258,2061259,2061274,2061289,2061293,2061297,2061298,2061309,2061320,2061321,2061322,2061329,2061336,2061337,2061351,2061365,2061366,2061367,2061368,2061382,2061396,2061397,2061411,2061425,2061426,2061427,2061431,2061453,2061472,2061473,2061474,2061475,2061486,2061497,2061501,2061505,2061506,2061507,2061519,2061531,2061532,2061533,2061537,2061552,2061564,2061565,2061580,2061595,2061596,2061597,2061598,2061599,2061612,2061625,2061626,2061627,2061643,2061659,2061660,2061668,2061676,2061677,2061678,2061679,2061691,2061703,2061704,2061705,2061706,2061722,2061738,2061739,2061740,2061741,2061752,2061763,2061764,2061765,2061784,2061803,2061804,2061805,2061806,2061807,2061808,2061809,2061810,2061811,2061812,2061826,2061853,2061867,2061889,2061911,2061912,2061913,2061915,2061918,2061930,2061941,2061942,2061943,2061944,2061945,2061946,2061947,2061948,2061962,2061976,2061980,2061984,2061985,2061995,2062005,2062006,2062007,2062014,2062021,2062022,2062035,2062048,2062049,2062050,2062051,2062052,2062065,2062078,2062079,2062092,2062105,2062106,2062107,2062110,2062130,2062148,2062149,2062150,2062151,2062161,2062171,2062175,2062179,2062180,2062181,2062193,2062205,2062206,2062210,2062223,2062233,2062234,2062247,2062260,2062261,2062262,2062263,2062264,2062277,2062290,2062291,2062292,2062306,2062320,2062321,2062329,2062337,2062338,2062339,2062340,2062351,2062362,2062363,2062364,2062365,2062380,2062395,2062396,2062397,2062398,2062408,2062418,2062419,2062420,2062437,2062454,2062455,2062456,2062457,2062458,2062459,2062460,2062461,2062462,2062463,2062476,2062501,2062514,2062534,2062554,2062555,2062557,2062560,2062571,2062581,2062582,2062583,2062584,2062585,2062586,2062587,2062588,2062601,2062614,2062618,2062622,2062623,2062632,2062641,2062642,2062643,2062650,2062657,2062658,2062670,2062682,2062683,2062684,2062685,2062686,2062698,2062710,2062711,2062723,2062735,2062736,2062737,2062739,2062757,2062774,2062775,2062776,2062785,2062794,2062798,2062802,2062803,2062804,2062816,2062828,2062829,2062833,2062845,2062854,2062855,2062867,2062879,2062880,2062881,2062882,2062883,2062895,2062907,2062908,2062909,2062921,2062933,2062934,2062942,2062950,2062951,2062952,2062953,2062963,2062973,2062974,2062975,2062976,2062990,2063004,2063005,2063006,2063015,2063024,2063025,2063026,2063041,2063056,2063057,2063058,2063059,2063060,2063061,2063062,2063063,2063064,2063065,2063077,2063100,2063112,2063130,2063148,2063149,2063151,2063154,2063164,2063173,2063174,2063175,2063176,2063177,2063178,2063179,2063180,2063192,2063204,2063208,2063212,2063213,2063221,2063229,2063230,2063231,2063238,2063245,2063256,2063267,2063268,2063269,2063270,2063271,2063282,2063293,2063294,2063305,2063316,2063317,2063318,2063320,2063336,2063351,2063352,2063353,2063361,2063369,2063373,2063377,2063378,2063379,2063390,2063401,2063402,2063406,2063417,2063425,2063426,2063437,2063448,2063449,2063450,2063451,2063452,2063463,2063474,2063475,2063476,2063487,2063498,2063505,2063512,2063513,2063514,2063515,2063525,2063535,2063536,2063537,2063549,2063561,2063562,2063563,2063571,2063579,2063580,2063581,2063595,2063609,2063610,2063611,2063612,2063613,2063614,2063615,2063616,2063617,2063618,2063629,2063650,2063661,2063666,2063682,2063694,2063695,2063697,2063700,2063709,2063717,2063718,2063719,2063720,2063721,2063722,2063723,2063729,2063740,2063746,2063750,2063754,2063761,2063768,2063769,2063770,2063777,2063784,2063785,2063795,2063805,2063806,2063807,2063808,2063809,2063819,2063829,2063830,2063840,2063850,2063851,2063852,2063854,2063868,2063881,2063882,2063883,2063890,2063897,2063901,2063905,2063906,2063907,2063917,2063927,2063928,2063932,2063942,2063949,2063950,2063954,2063964,2063971,2063972,2063973,2063974,2063980,2063990,2063995,2138057,2138251,2138311,2138351,2138416,2138460,2138489,2138519,2138521,2138544,2138567,2138570,2138592,2138626,2138658,2138687,2138717,2138755,2138786,2138820,2138850,2138883,2138925,2138969,2139010,2139032,2139053,2139077,2139109,2139142,2139171,2139207,2139232,2139260,2139305,2139344,2139369,2139392,2139426,2139447,2139480,2139513,2139515,2139542,2139583,2139623,2139652,2139683,2139734,2139763,2139789,2139810,2139837,2139883,2139921,2139947,2139975,2140002,2140023,2140047,2140057,2140058,2140059,2140102,2140173,2140223,2140247,2140268,2140300,2140331,2140360,2140389,2140424,2140453,2140486,2140515,2140546,2140586,2140629,2140668,2140689,2140709,2140732,2140763,2140795,2140823,2140857,2140881,2140908,2140951,2140988,2141012,2141034,2141067,2141088,2141119,2141150,2141152,2141178,2141217,2141255,2141283,2141313,2141362,2141390,2141414,2141433,2141459,2141504,2141540,2141564,2141591,2141617,2141637,2141660,2141670,2141671,2141672,2141713,2141781,2141829,2141852,2141872,2141902,2141932,2141950,2141962,2141989,2142021,2142049,2142081,2142109,2142138,2142160,2142177,2142219,2142256,2142276,2142295,2142317,2142347,2142377,2142404,2142437,2142460,2142485,2142525,2142561,2142584,2142605,2142637,2142657,2142687,2142717,2142719,2142744,2142781,2142817,2142844,2142872,2142918,2142945,2142968,2142986,2143011,2143055,2143089,2143111,2143143,2143180,2143202,2143212,2143213,2143214,2143253,2143318,2143366,2143404,2143432,2143460,2143488,2143514,2143544,2143570,2143600,2143647,2143675,2143691,2143731,2143766,2143785,2143814,2143852,2143880,2143906,2143938,2143960,2144003,2144055,2144077,2144097,2144128,2144148,2144176,2144204,2144206,2144230,2144265,2144299,2144325,2144351,2144394,2144436,2144458,2144482,2144525,2144545,2144558,2144578,2144609,2144633,2144645,2144666,2144676,2144677,2144678,2144715,2144777,2144803,2144824,2144860,2144879,2144890,2144913,2144940,2144965,2144993,2145018,2145047,2145066,2145092,2145118,2145134,2145172,2145205,2145216,2145225,2145253,2145289,2145316,2145341,2145356,2145372,2145393,2145434,2145483,2145504,2145520,2145547,2145569,2145574,2145600,2145626,2145628,2145651,2145685,2145717,2145741,2145766,2145807,2145847,2145868,2145891,2145933,2145953,2145964,2145982,2146012,2146035,2146047,2146068,2146078,2146079,2146080,2146114,2146172,2146197,2146218,2146253,2146271,2146281,2146302,2146328,2146352,2146378,2146402,2146430,2146448,2146472,2146496,2146512,2146548,2146579,2146590,2146599,2146626,2146660,2146685,2146709,2146724,2146739,2146759,2146798,2146844,2146864,2146879,2146905,2146927,2146932,2146956,2146980,2147003,2147035,2147065,2147088,2147112,2147151,2147170,2147190,2147210,2147232,2147272,2147291,2147301,2147318,2147347,2147369,2147380,2147400,2147410,2147411,2147412,2147444,2147499,2147523,2147524,2147544,2147577,2147594,2147603,2147623,2147649,2147684,2147718,2147745,2147762,2147784,2147806,2147822,2147856,2147885,2147896,2147905,2147931,2147963,2147987,2148010,2148037,2148056,2148093,2148136,2148155,2148170,2148195,2148216,2148221,2148223,2148245,2148268,2148290,2148320,2148348,2148389,2148429,2148447,2148466,2148485,2148506,2148544,2148562,2148578,2148614,2148635,2148645,2148664,2148674,2148675,2148705,2148757,2148780,2148781,2148800,2148831,2148847,2148855,2148874,2148900,2148912,2148934,2148965,2148990,2149006,2149027,2149048,2149063,2149095,2149123,2149134,2149142,2149167,2149198,2149221,2149243,2149268,2149281,2149316,2149351,2149362,2149380,2149394,2149418,2149439,2149444,2149446,2149466,2149487,2149508,2149537,2149564,2149582,2149604,2149642,2149659,2149677,2149695,2149714,2149750,2149768,2149783,2149798,2149818,2149838,2149847,2149865,2149875,2149876,2149904,2149953,2149975,2149976,2149994,2150023,2150038,2150045,2150063,2150089,2150101,2150121,2150149,2150172,2150187,2150188,2150208,2150228,2150242,2150272,2150299,2150310,2150317,2150340,2150369,2150391,2150412,2150435,2150447,2150480,2150513,2150514,2150524,2150541,2150554,2150576,2150596,2150601,2150603,2150622,2150642,2150662,2150689,2150714,2150731,2150752,2150788,2150804,2150821,2150838,2150855,2150888,2150905,2150919,2150933,2150952,2150971,2150980,2150997,2151006,2151007,2151033,2151079,2151100,2151117,2151144,2151158,2151164,2151181,2151207,2151219,2151237,2151262,2151283,2151297,2151298,2151317,2151336,2151349,2151377,2151403,2151414,2151420,2151441,2151468,2151489,2151509,2151530,2151541,2151572,2151603,2151604,2151613,2151629,2151642,2151663,2151682,2151687,2151689,2151706,2151724,2151743,2151769,2151793,2151809,2151828,2151861,2151876,2151892,2151908,2151909,2151925,2151956,2151972,2151986,2152000,2152017,2152034,2152043,2152059,2152067,2152068,2152093,2152136,2152155,2152156,2152172,2152197,2152210,2152216,2152232,2152257,2152269,2152285,2152307,2152326,2152339,2152340,2152358,2152376,2152388,2152414,2152439,2152450,2152455,2152474,2152499,2152519,2152538,2152557,2152595,2152624,2152625,2152633,2152648,2152660,2152679,2152697,2152702,2152704,2152720,2152737,2152755,2152779,2152801,2152816,2152834,2152865,2152879,2152894,2152909,2152910,2152925,2152954,2152969,2152982,2152995,2153011,2153027,2153035,2153050,2153058,2153059,2153082,2153121,2153138,2153139,2153154,2153178,2153191,2153196,2153211,2153236,2153248,2153263,2153284,2153302,2153314,2153315,2153331,2153347,2153359,2153384,2153407,2153417,2153422,2153440,2153463,2153481,2153499,2153517,2153537,2153564,2153580,2153581,2153588,2153602,2153613,2153630,2153647,2153652,2153654,2153669,2153685,2153729,2153758,2153800,2153814,2153828,2153842,2153843,2153857,2153884,2153898,2153910,2153922,2153937,2153952,2153959,2153973,2153981,2153982,2154003,2154039,2154055,2154056,2154070,2154092,2154104,2154109,2154123,2154146,2154157,2154171,2154191,2154207,2154217,2154232,2154247,2154258,2154281,2154303,2154313,2154317,2154333,2154355,2154372,2154388,2154404,2154422,2154447,2154462,2154469,2154482,2154492,2154508,2154524,2154529,2154531,2154544,2154557,2154559,2154564,2154585,2154603,2154629,2154667,2154680,2154681,2154694,2154707,2154708,2154721,2154746,2154759,2154771,2154783,2154796,2154809,2154816,2154829,2154836,2154856,2154889,2154903,2154904,2154917,2154930,2154939,2154950,2154954,2154967,2154988,2154998,2155017,2155036,2155045,2155066,2155079,2155090,2155112,2155132,2155141,2155145,2155158,2155170,2155181,2155197,2155212,2155226,2155242,2155265,2155279,2155285,2155297,2155306,2155320,2155335,2155340,2155342,2155354,2155366,2155368,2155373,2155392,2155408,2155432,2155467,2155479,2155480,2155492,2155504,2155505,2155517,2155540,2155552,2155563,2155574,2155586,2155598,2155605,2155617,2155623,2155642,2155672,2155684,2155685,2155697,2155709,2155718,2155728,2155731,2155743,2155762,2155771,2155789,2155807,2155815,2155834,2155846,2155856,2155876,2155894,2155902,2155906,2155918,2155929,2155939,2155954,2155968,2155980,2155994,2156015,2156028,2156034,2156045,2156053,2156066,2156080,2156085,2156087,2156098,2156109,2156111,2156115,2156132,2156147,2156168,2156199,2156210,2156211,2156222,2156233,2156234,2156245,2156266,2156277,2156288,2156299,2156310,2156321,2156327,2156338,2156344,2156361,2156388,2156399,2156400,2156404,2156415,2156423,2156431,2156440,2156443,2156454,2156471,2156479,2156496,2156513,2156520,2156536,2156546,2156556,2156575,2156591,2156598,2156602,2156613,2156623,2156632,2156646,2156659,2156669,2156681,2156700,2156712,2156718,2156728,2156735,2156747,2156760,2156765,2156767,2156777,2156787,2156789,2156793,2156808,2156821,2156840,2156868,2156878,2156879,2156889,2156899,2156900,2156910,2156929,2156939,2156949,2156959,2156969,2156979,2156985,2156995,2157000,2157016,2157040,2157049,2157050,2157054,2157064,2157071,2157078,2157086,2157089,2157099,2157114,2157121,2157137,2157153,2157159,2157173,2157182,2157186,2157195,2157209,2157223,2157229,2157233,2157243,2157252,2157261,2157274,2157285,2157294,2157305,2157322,2157333,2157338,2157347,2157354,2157364,2157375,2157380,2157382,2157391,2157400,2157402,2157406,2157419,2157430,2157447,2157472,2157481,2157482,2157491,2157500,2157501,2157510,2157527,2157536,2157545,2157554,2157563,2157572,2157578,2157587,2157591,2157605,2157626,2157634,2157635,2157639,2157648,2157654,2157660,2157667,2157670,2157679,2157692,2157698,2157713,2157728,2157740,2157752,2157755,2157763,2157776,2157788,2157796,2157805,2157813,2157821,2157832,2157842,2157850,2157859,2157874,2157888,2157896,2157902,2157911,2157921,2157926,2157934,2157941,2157943,2157947,2157959,2157969,2157991,2158013,2158014,2158022,2158030,2158031,2158039,2158054,2158062,2158070,2158085,2158093,2158098,2158106,2158110,2158122,2158140,2158147,2158150,2158158,2158164,2158169,2158175,2158178,2158186,2158197,2158202,2158215,2158228,2158238,2158248,2158251,2158258,2158269,2158280,2158291,2158298,2158301,2158309,2158322,2158333,2158341,2158354,2158366,2158373,2158379,2158386,2158394,2158399,2158406,2158412,2158413,2158415,2158419,2158429,2158437,2158456,2158475,2158476,2158483,2158490,2158491,2158498,2158511,2158518,2158525,2158538,2158545,2158550,2158557,2158560,2158571,2158587,2158593,2158595,2158601,2158606,2158611,2158617,2158619,2158625,2158635,2158640,2158651,2158662,2158670,2158678,2158680,2158686,2158696,2158705,2158714,2158720,2158723,2158730,2158741,2158751,2158758,2158769,2158777,2158780,2158786,2158791,2158797,2158804,2158808,2158814,2158819,2158820,2158822,2158826,2158834,2158840,2158856,2158872,2158873,2158879,2158885,2158886,2158892,2158903,2158909,2158915,2158926,2158936,2158942,2158944,2158954,2158968,2158973,2158974,2158979,2158984,2158988,2158993,2158995,2159000,2159008,2159012,2159021,2159030,2159037,2159044,2159045,2159050,2159059,2159066,2159073,2159078,2159081,2159087,2159096,2159104,2159110,2159119,2159125,2159128,2159133,2159137,2159142,2159148,2159152,2159157,2159161,2159162,2159164,2159167,2159173,2159178,2159191,2159204,2159205,2159210,2159215,2159216,2159221,2159230,2159235,2159240,2159249,2159257,2159262,2159264,2159272,2159283,2159287,2159288,2159292,2159296,2159299,2159303,2159305,2159309,2159315,2159318,2159325,2159332,2159337,2159342,2159343,2159347,2159354,2159360,2159366,2159370,2159372,2159377,2159384,2159390,2159395,2159402,2159407,2159409,2159413,2159417,2159421,2159425,2159428,2159432,2159435,2159436,2159438,2159441,2159445,2159448,2159458,2159468,2159469,2159473,2159477,2159478,2159482,2159489,2159493,2159497,2159504,2159511,2159515,2159516,2159522,2159530,2159533,2159534,2159537,2159540,2159543,2159546,2159547,2159550,2159555,2159558,2159563,2159568,2159571,2159574,2159575,2159578,2159583,2159588,2159593,2159596,2159597,2159600,2159605,2159608,2159611,2159615,2159620,2159624,2159625,2159628,2159631,2159634,2159637,2159639,2159642,2159644,2159645,2159647,2159650,2159652,2159653,2159660,2159667,2159668,2159671,2159674,2159675,2159678,2159683,2159686,2159689,2159694,2159699,2159702,2159703,2159707,2159712,2159714,2159715,2159717,2159719,2159721,2159723,2159724,2159726,2159729,2159731,2159734,2159737,2159739,2159741,2159742,2159744,2159747,2159750,2159753,2159755,2159756,2159758,2159761,2159763,2159765,2159767,2159770,2159773,2159774,2159776,2159778,2159780,2159782,2159784,2159786,2159787,2159788,2159790,2159793,2159795,2159796,2159800,2159804,2159805,2159807,2159809,2159810,2159812,2159815,2159817,2159819,2159822,2159825,2159827,2159828,2159830,2159832,2159833,2159834,2159835,2159836,2159837,2159838,2159839,2159840,2159841,2159842,2159843,2159844,2159845,2159846,2159847,2159848,2159850,2159853,2159856,2159858,2159859,2159861,2159864,2159866,2159868,2159870,2159873,2159876,2159877,2159879,2159881,2159883,2159885,2159887,2159889,2159890,2159891,2159893,2159896,2159898,2159899,2159903,2159907,2159908,2159910,2159912,2159913,2159915,2159918,2159920,2159922,2159925,2159928,2159930,2159931,2159933,2159935,2159936,2159937,2159938,2159939,2159940,2159941,2159942,2159943,2159944,2159945,2159946,2159947,2159948,2159949,2159950,2159951,2159953,2159956,2159959,2159961,2159962,2159964,2159966,2159968,2159970,2159972,2159974,2159977,2159980,2159982,2159984,2159985,2159987,2159990,2159992,2159993,2159994,2159995,2159997,2160000,2160002,2160003,2160007,2160011,2160013,2160015,2160016,2160018,2160021,2160023,2160025,2160028,2160031,2160033,2160034,2160036,2160038,2160039,2160040,2160041,2160042,2160043,2160044,2160045,2160046,2160047,2160048,2160049,2160050,2160051,2160052,2160053,2160055,2160058,2160061,2160063,2160064,2160066,2160069,2160071,2160073,2160075,2160078,2160081,2160083,2160085,2160086,2160088,2160091,2160093,2160094,2160095,2160096,2160098,2160101,2160103,2160107,2160111,2160113,2160115,2160116,2160118,2160121,2160123,2160125,2160128,2160131,2160133,2160134,2160136,2160138,2160139,2160140,2160141,2160142,2160143,2160144,2160145,2160146,2160147,2160148,2160149,2160150,2160151,2160152,2160153,2160155,2160158,2160161,2160163,2160164,2160166,2160169,2160171,2160173,2160175,2160178,2160181,2160183,2160185,2160186,2160188,2160190,2160192,2160194,2160195,2160196,2160197,2160199,2160202,2160204,2160208,2160212,2160214,2160216,2160217,2160219,2160222,2160224,2160226,2160229,2160232,2160234,2160235,2160237,2160239,2160240,2160241,2160242,2160243,2160244,2160245,2160246,2160247,2160248,2160249,2160250,2160251,2160252,2160253,2160254,2160256,2160259,2160262,2160264,2160265,2160267,2160270,2160272,2160274,2160276,2160279,2160282,2160284,2160286,2160287,2160288,2160290,2160292,2160294,2160296,2160297,2160298,2160299,2160301,2160304,2160306,2160310,2160314,2160316,2160318,2160319,2160321,2160324,2160326,2160328,2160331,2160334,2160336,2160337,2160339,2160341,2160342,2160343,2160344,2160345,2160346,2160347,2160348,2160349,2160350,2160351,2160352,2160353,2160354,2160355,2160356,2160358,2160361,2160364,2160366,2160367,2160369,2160372,2160374,2160376,2160378,2160381,2160384,2160386,2160388,2186792,2186986,2187042,2187094,2187260,2187334,2187388,2187462,2187516,2187598,2187658,2187742,2187776,2187860,2187926,2187986,2188044,2188124,2188180,2188280,2188334,2188416,2188496,2188528,2188590,2188680,2188798,2188850,2188922,2188974,2188980,2189136,2189220,2189290,2189346,2189436,2189518,2189568,2189644,2189710,2189757,2189852,2189908,2189948,2190046,2190142,2190208,2190242,2190332,2190398,2190458,2190552,2190624,2190682,2190776,2190784,2190896,2190972,2191028,2191118,2191194,2191256,2191320,2191390,2191446,2191512,2191576,2191652,2191708,2191750,2191844,2191938,2192002,2192038,2192126,2192192,2192238,2192342,2192414,2192472,2192490,2192573,2192606,2192688,2192794,2192832,2192922,2192986,2193048,2193110,2193180,2193234,2193326,2193364,2193488,2193532,2193624,2193714,2193776,2193814,2193900,2193966,2194026,2194058,2194164,2194216,2194258,2194340,2194352,2194454,2194550,2194596,2194684,2194748,2194810,2194870,2194940,2194994,2195060,2195122,2195206,2195282,2195336,2195424,2195478,2195554,2195630,2195666,2195760,2195806,2195900,2195962,2195996,2196084,2196098,2196198,2196292,2196338,2196424,2196488,2196550,2196608,2196678,2196732,2196796,2196860,2196944,2197018,2197032,2197156,2197258,2197300,2197382,2197446,2197506,2197586,2197656,2197714,2197800,2197816,2197912,2197988,2198016,2198064,2198145,2198208,2198270,2198328,2198396,2198450,2198514,2198573,2198658,2198730,2198784,2198830,2198890,2198970,2199064,2199104,2199190,2199236,2199294,2199362,2199420,2199504,2199522,2199616,2199690,2199748,2199828,2199896,2199918,2200001,2200030,2200096,2200148,2200212,2200272,2200388,2200432,2200516,2200558,2200610,2200682,2200752,2200794,2200878,2200924,2200980,2201048,2201106,2201188,2201208,2201298,2201372,2201428,2201508,2201574,2201598,2201692,2201758,2201812,2201876,2201934,2202006,2202062,2202106,2202188,2202244,2202282,2202352,2202444,2202506,2202566,2202636,2202702,2202712,2202770,2202850,2202872,2202960,2203032,2203088,2203166,2203232,2203290,2203358,2203424,2203476,2203558,2203596,2203660,2203714,2203760,2203838,2203894,2203932,2204002,2204092,2204152,2204212,2204280,2204344,2204356,2204414,2204492,2204516,2204662,2204718,2204732,2204860,2204884,2204974,2205040,2205094,2205158,2205212,2205250,2205338,2205384,2205430,2205502,2205524,2205564,2205632,2205720,2205780,2205840,2205908,2205972,2206030,2206106,2206132,2206166,2206282,2206338,2206412,2206476,2206502,2206590,2206654,2206708,2206772,2206826,2206864,2206950,2206996,2207042,2207112,2207136,2207176,2207244,2207330,2207390,2207450,2207516,2207578,2207636,2207710,2207738,2207772,2207884,2207940,2208012,2208080,2208131,2208202,2208252,2208320,2208394,2208434,2208496,2208550,2208596,2208668,2208722,2208762,2208830,2208914,2208925,2209034,2209063,2209154,2209168,2209230,2209302,2209332,2209446,2209514,2209536,2209616,2209662,2209726,2209784,2209846,2209900,2209972,2210014,2210074,2210128,2210174,2210244,2210298,2210338,2210404,2210486,2210546,2210606,2210664,2210722,2210738,2210800,2210870,2210902,2211012,2211078,2211102,2211180,2211226,2211290,2211346,2211408,2211462,2211532,2211594,2211674,2211690,2211736,2211820,2211858,2211898,2211962,2212042,2212102,2212162,2212218,2212276,2212294,2212356,2212362,2212458,2212464,2212630,2212636,2212709,2212768,2212785,2212846,2212902,2213012,2213080,2213142,2213220,2213237,2213314,2213376,2213406,2213412,2213450,2213570,2213644,2213652,2213712,2213818,2213838,2213900,2213966,2214002,2214102,2214168,2214196,2214298,2214314,2214376,2214432,2214494,2214548,2214614,2214676,2214752,2214802,2214848,2214908,2214940,2214978,2215040,2215116,2215176,2215184,2215290,2215346,2215368,2215430,2215436,2215500,2215538,2215634,2215700,2215728,2215826,2215844,2215906,2215962,2216024,2216078,2216084,2216148,2216210,2216284,2216334,2216432,2216498,2216560,2216634,2216694,2216752,2216806,2216862,2216886,2216948,2217010,2217052,2217144,2217208,2217238,2217332,2217352,2217416,2217470,2217532,2217586,2217650,2217710,2217780,2217832,2217878,2217936,2217942,2218008,2218068,2218140,2218200,2218256,2218310,2218384,2218446,2218457,2218516,2218636,2218700,2218736,2218826,2218902,2218912,2219020,2219074,2219192,2219258,2219312,2219392,2219414,2219482,2219540,2219658,2219714,2219772,2219846,2219908,2219966,2220010,2220098,2220160,2220194,2220280,2220360,2220414,2220472,2220580,2220640,2220752,2220798,2220854,2220864,2220930,2221094,2221150,2221252,2221282,2221344,2221406,2221518,2221573,2221590,2221624,2221708,2221788,2221853,2221898,2222002,2222062,2222171,2222216,2222274,2222342,2222400,2222506,2222566,2222662,2222694,2222756,2222848,2222924,2222986,2223022,2223102,2223112,2223192,2223266,2223302,2223402,2223462,2223568,2223642,2223670,2223738,2223794,2223902,2223994,2224048,2224082,2224142,2224236,2224306,2224368,2224406,2224482,2224494,2224574,2224646,2224684,2224780,2224840,2224942,2225014,2225044,2225112,2225166,2225270,2225360,2225414,2225450,2225550,2225602,2225668,2225728,2225768,2225842,2225856,2225936,2226004,2226044,2226138,2226196,2226360,2226390,2226458,2226464,2226612,2226700,2226754,2226792,2226888,2226942,2227006,2227066,2227108,2227180,2227196,2227276,2227342,2227382,2227472,2227530,2227626,2227696,2227728,2227796,2227850,2227948,2228034,2228088,2228128,2228222,2228276,2228338,2228398,2228442,2228520,2228600,2228664,2228708,2228796,2228854,2228946,2229016,2229050,2229088,2229126,2229180,2229274,2229358,2229410,2229452,2229544,2229598,2229660,2229718,2229764,2229832,2229852,2229984,2230030,2230116,2230174,2230262,2230332,2230368,2230436,2230490,2230580,2230662,2230716,2230760,2230898,2230958,2230968,2231064,2231118,2231152,2231232,2231292,2231336,2231420,2231476,2231564,2231632,2231670,2231738,2231792,2231878,2231958,2232012,2232060,2232068,2232199,2232258,2232316,2232364,2232416,2232452,2232530,2232590,2232634,2232716,2232772,2232858,2232926,2232964,2233032,2233164,2233242,2233296,2233346,2233356,2233484,2233540,2233598,2233650,2233712,2233738,2233834,2233904,2233984,2234042,2234102,2234108,2234202,2234240,2234310,2234364,2234444,2234520,2234574,2234628,2234638,2234762,2234816,2234874,2234930,2234988,2235016,2235108,2235178,2235256,2235314,2235372,2235408,2235474,2235514,2235630,2235708,2235782,2235836,2235890,2235896,2235908,2236076,2236082,2236138,2236246,2236276,2236364,2236434,2236510,2236516,2236626,2236662,2236728,2236764,2236836,2236888,2236964,2237036,2237090,2237145,2237160,2237274,2237330,2237436,2237492,2237524,2237606,2237677,2237684,2237758,2237818,2237874,2237962,2238004,2238072,2238126,2238200,2238270,2238324,2238380,2238396,2238506,2238560,2238616,2238674,2238730,2238764,2238844,2238914,2238986,2239044,2239098,2239138,2239200,2239244,2239308,2239360,2239432,2239544,2239602,2239620,2239724,2239778,2239836,2239892,2239948,2239984,2240062,2240132,2240202,2240258,2240294,2240352,2240408,2240454,2240518,2240572,2240644,2240708,2240762,2240820,2240840,2240935,2240937,2240961,2240985,2240987,2240989,2240990,2240991,2241017,2241044,2241046,2241071,2241097,2241099,2241123,2241148,2241160,2241177,2241184,2241219,2241255,2241257,2241289,2241322,2241324,2241355,2241387,2241389,2241413,2241438,2241440,2241455,2241480,2241491,2241508,2241526,2241528,2241553,2241582,2241587,2241604,2241624,2241628,2241655,2241685,2241689,2241711,2241735,2241738,2241769,2241801,2241830,2241880,2241903,2241906,2241933,2241958,2241961,2241970,2241977,2241980,2242026,2242070,2242073,2242098,2242122,2242124,2242125,2242150,2242176,2242178,2242202,2242227,2242233,2242255,2242274,2242286,2242303,2242310,2242343,2242377,2242393,2242424,2242442,2242444,2242473,2242503,2242505,2242528,2242552,2242554,2242568,2242591,2242601,2242618,2242636,2242638,2242661,2242688,2242693,2242710,2242730,2242734,2242759,2242787,2242811,2242834,2242837,2242866,2242896,2242923,2242970,2242992,2242995,2243021,2243045,2243048,2243057,2243064,2243067,2243070,2243111,2243152,2243172,2243196,2243202,2243204,2243205,2243229,2243254,2243256,2243279,2243303,2243309,2243330,2243348,2243360,2243377,2243384,2243414,2243445,2243461,2243491,2243508,2243510,2243537,2243565,2243567,2243589,2243612,2243614,2243627,2243648,2243657,2243674,2243692,2243694,2243715,2243740,2243745,2243762,2243782,2243786,2243809,2243834,2243838,2243859,2243881,2243884,2243911,2243939,2243964,2244008,2244029,2244032,2244057,2244080,2244089,2244098,2244101,2244104,2244142,2244180,2244199,2244222,2244228,2244230,2244253,2244277,2244279,2244301,2244324,2244330,2244350,2244367,2244379,2244396,2244403,2244430,2244458,2244474,2244503,2244519,2244545,2244571,2244573,2244594,2244616,2244618,2244637,2244656,2244673,2244691,2244693,2244712,2244735,2244740,2244757,2244777,2244781,2244802,2244825,2244829,2244849,2244870,2244873,2244898,2244924,2244947,2244988,2245008,2245011,2245035,2245057,2245066,2245075,2245076,2245079,2245082,2245117,2245152,2245170,2245192,2245198,2245200,2245222,2245245,2245247,2245268,2245290,2245295,2245314,2245330,2245332,2245344,2245361,2245368,2245392,2245417,2245432,2245460,2245476,2245500,2245524,2245564,2245582,2245600,2245617,2245635,2245637,2245654,2245675,2245680,2245697,2245717,2245721,2245740,2245761,2245764,2245766,2245785,2245805,2245808,2245831,2245855,2245876,2245914,2245933,2245936,2245959,2245980,2245989,2245998,2246001,2246004,2246036,2246068,2246069,2246086,2246107,2246113,2246115,2246136,2246158,2246160,2246180,2246201,2246206,2246224,2246239,2246241,2246253,2246270,2246281,2246303,2246334,2246361,2246376,2246398,2246420,2246422,2246441,2246460,2246461,2246478,2246495,2246511,2246528,2246530,2246546,2246566,2246571,2246587,2246606,2246610,2246627,2246646,2246649,2246651,2246669,2246688,2246691,2246712,2246733,2246735,2246754,2246789,2246807,2246810,2246832,2246852,2246861,2246870,2246873,2246876,2246905,2246934,2246935,2246951,2246971,2246977,2246979,2246998,2247018,2247020,2247039,2247059,2247064,2247081,2247095,2247097,2247109,2247126,2247135,2247138,2247156,2247186,2247211,2247225,2247245,2247265,2247267,2247285,2247303,2247304,2247319,2247334,2247350,2247367,2247369,2247383,2247401,2247406,2247422,2247441,2247445,2247461,2247479,2247482,2247484,2247501,2247519,2247522,2247541,2247560,2247562,2247564,2247581,2247614,2247633,2247654,2247673,2247682,2247691,2247694,2247697,2247723,2247749,2247750,2247765,2247784,2247790,2247792,2247809,2247827,2247829,2247847,2247866,2247871,2247887,2247900,2247902,2247914,2247931,2247939,2247941,2247958,2247986,2248009,2248022,2248040,2248058,2248060,2248077,2248094,2248095,2248109,2248123,2248138,2248154,2248156,2248169,2248186,2248191,2248206,2248224,2248228,2248242,2248258,2248261,2248263,2248279,2248296,2248299,2248316,2248333,2248335,2248352,2248368,2248384,2248402,2248422,2248440,2248449,2248458,2248461,2248464,2248487,2248510,2248511,2248525,2248543,2248549,2248566,2248583,2248585,2248602,2248620,2248625,2248640,2248652,2248654,2248666,2248683,2248691,2248693,2248708,2248744,2248767,2248784,2248801,2248803,2248819,2248835,2248836,2248849,2248862,2248876,2248890,2248891,2248893,2248895,2248896,2248897,2248909,2248921,2248926,2248931,2248932,2248933,2248947,2248964,2248968,2248969,2248970,2248983,2248996,2248999,2249002,2249003,2249004,2249006,2249008,2249022,2249036,2249039,2249042,2249043,2249044,2249060,2249076,2249077,2249078,2249080,2249096,2249111,2249112,2249113,2249128,2249143,2249146,2249149,2249166,2249183,2249184,2249185,2249194,2249203,2249204,2249205,2249206,2249209,2249212,2249213,2249214,2249235,2249256,2249257,2249258,2249259,2249260,2249261,2249274,2249287,2249292,2249297,2249299,2249301,2249316,2249331,2249333,2249335,2249336,2249337,2249353,2249369,2249370,2249372,2249374,2249377,2249380,2249392,2249404,2249405,2249406,2249408,2249419,2249429,2249436,2249443,2249445,2249447,2249448,2249449,2249450,2249464,2249478,2249479,2249499,2249519,2249521,2249523,2249538,2249553,2249555,2249557,2249558,2249559,2249574,2249589,2249590,2249591,2249592,2249593,2249605,2249617,2249618,2249632,2249646,2249647,2249649,2249651,2249652,2249653,2249664,2249675,2249680,2249685,2249686,2249687,2249700,2249716,2249720,2249721,2249722,2249723,2249735,2249747,2249750,2249753,2249754,2249755,2249757,2249759,2249772,2249785,2249788,2249791,2249792,2249793,2249808,2249823,2249824,2249825,2249827,2249842,2249856,2249857,2249858,2249872,2249886,2249889,2249892,2249908,2249924,2249925,2249926,2249935,2249944,2249945,2249946,2249947,2249948,2249951,2249954,2249955,2249974,2249993,2249994,2249995,2249996,2249997,2249998,2249999,2250011,2250027,2250032,2250034,2250036,2250050,2250064,2250066,2250068,2250069,2250070,2250085,2250100,2250101,2250103,2250105,2250107,2250109,2250121,2250133,2250134,2250136,2250146,2250155,2250162,2250169,2250171,2250173,2250174,2250175,2250188,2250201,2250202,2250220,2250238,2250240,2250242,2250256,2250270,2250272,2250274,2250275,2250286,2250300,2250304,2250305,2250306,2250307,2250308,2250320,2250332,2250333,2250346,2250359,2250360,2250362,2250364,2250365,2250366,2250376,2250386,2250391,2250396,2250397,2250398,2250410,2250425,2250429,2250430,2250431,2250432,2250443,2250454,2250457,2250460,2250461,2250462,2250464,2250466,2250478,2250490,2250493,2250496,2250497,2250498,2250512,2250526,2250527,2250528,2250530,2250544,2250557,2250558,2250559,2250572,2250585,2250588,2250591,2250606,2250621,2250622,2250623,2250632,2250641,2250642,2250643,2250644,2250645,2250646,2250649,2250652,2250653,2250670,2250687,2250688,2250689,2250690,2250691,2250692,2250693,2250694,2250705,2250720,2250725,2250727,2250729,2250742,2250755,2250756,2250758,2250760,2250761,2250762,2250776,2250790,2250791,2250793,2250795,2250797,2250799,2250810,2250821,2250822,2250823,2250825,2250834,2250842,2250843,2250850,2250857,2250859,2250861,2250862,2250863,2250875,2250887,2250888,2250889,2250905,2250921,2250923,2250925,2250938,2250951,2250952,2250954,2250956,2250957,2250967,2250980,2250984,2250985,2250986,2250987,2250988,2251000,2251012,2251013,2251025,2251037,2251038,2251040,2251042,2251043,2251044,2251053,2251062,2251067,2251072,2251073,2251074,2251085,2251099,2251103,2251104,2251105,2251106,2251116,2251126,2251129,2251132,2251133,2251134,2251136,2251138,2251149,2251160,2251163,2251166,2251167,2251168,2251181,2251194,2251195,2251196,2251198,2251211,2251223,2251224,2251225,2251237,2251249,2251252,2251255,2251269,2251283,2251284,2251293,2251302,2251303,2251304,2251305,2251306,2251307,2251310,2251313,2251328,2251343,2251344,2251345,2251346,2251347,2251348,2251349,2251359,2251373,2251378,2251380,2251382,2251394,2251406,2251407,2251409,2251411,2251412,2251425,2251438,2251439,2251441,2251443,2251445,2251447,2251457,2251467,2251468,2251470,2251478,2251485,2251486,2251493,2251500,2251502,2251504,2251505,2251506,2251517,2251528,2251529,2251530,2251544,2251558,2251560,2251562,2251574,2251586,2251587,2251589,2251591,2251592,2251601,2251613,2251617,2251618,2251619,2251620,2251621,2251633,2251645,2251646,2251657,2251668,2251669,2251671,2251673,2251674,2251675,2251683,2251691,2251696,2251701,2251702,2251703,2251713,2251726,2251730,2251739,2251750,2251753,2251755,2251766,2251778,2251781,2251793,2251806,2251818,2251829,2251840,2251853,2251868,2251889,2251898,2251901,2251916,2251929,2251930,2251931,2251944,2251958,2251970,2251982,2251995,2252007,2252009,2252012,2252022,2252032,2252039,2252051,2252059,2252061,2252071,2252081,2252095,2252119,2252130,2252132,2252144,2252155,2252156,2252167,2252188,2252199,2252201,2252203,2252214,2252225,2252234,2252246,2252250,2252258,2252268,2252271,2252273,2252283,2252294,2252297,2252308,2252320,2252331,2252341,2252351,2252363,2252377,2252397,2252406,2252407,2252410,2252423,2252434,2252435,2252436,2252448,2252461,2252472,2252483,2252495,2252506,2252508,2252511,2252520,2252529,2252535,2252546,2252554,2252556,2252565,2252574,2252587,2252609,2252619,2252630,2252641,2252642,2252652,2252671,2252681,2252683,2252685,2252696,2252707,2252715,2252726,2252730,2252737,2252746,2252749,2252751,2252760,2252770,2252773,2252783,2252794,2252804,2252813,2252822,2252833,2252845,2252863,2252872,2252873,2252876,2252888,2252898,2252899,2252900,2252911,2252923,2252933,2252943,2252953,2252962,2252964,2252967,2252976,2252985,2252990,2253000,2253008,2253010,2253018,2253026,2253037,2253056,2253065,2253075,2253085,2253086,2253096,2253114,2253123,2253124,2253126,2253128,2253138,2253148,2253155,2253165,2253169,2253175,2253183,2253186,2253188,2253196,2253205,2253208,2253217,2253227,2253236,2253244,2253252,2253262,2253272,2253288,2253297,2253298,2253301,2253311,2253319,2253320,2253321,2253331,2253342,2253351,2253360,2253369,2253377,2253379,2253382,2253390,2253398,2253403,2253412,2253419,2253421,2253429,2253437,2253446,2253455,2253463,2253471,2253480,2253489,2253490,2253500,2253517,2253525,2253526,2253528,2253530,2253539,2253548,2253554,2253563,2253567,2253572,2253579,2253582,2253584,2253591,2253599,2253602,2253610,2253619,2253627,2253634,2253641,2253650,2253659,2253674,2253683,2253684,2253687,2253696,2253703,2253704,2253705,2253714,2253724,2253732,2253740,2253748,2253755,2253757,2253760,2253762,2253768,2253774,2253776,2253778,2253781,2253784,2253790,2253796,2253798,2253800,2253801,2253802,2253809,2253816,2253817,2253818,2253826,2253834,2253835,2253836,2253843,2253850,2253851,2253852,2253860,2253868,2253869,2253870,2253871,2253872,2253881,2253896,2253903,2253904,2253905,2253906,2253907,2253909,2253911,2253912,2253913,2253921,2253929,2253930,2253931,2253935,2253940,2253945,2253949,2253950,2253951,2253952,2253956,2253960,2253963,2253966,2253967,2253968,2253970,2253972,2253977,2253982,2253985,2253988,2253989,2253990,2253997,2254004,2254005,2254007,2254009,2254015,2254021,2254022,2254023,2254029,2254035,2254038,2254041,2254047,2254053,2254061,2254069,2254070,2254071,2254072,2254073,2254076,2254079,2254085,2254091,2254092,2254093,2254094,2254095,2254096,2254097,2254105,2254113,2254115,2254117,2254123,2254129,2254131,2254133,2254139,2254145,2254146,2254147,2254149,2254151,2254153,2254155,2254160,2254165,2254167,2254169,2254171,2254173,2254179,2254185,2254187,2254189,2254190,2254191,2254192,2254198,2254204,2254205,2254206,2254213,2254220,2254221,2254222,2254228,2254234,2254235,2254236,2254243,2254250,2254251,2254252,2254253,2254254,2254262,2254275,2254281,2254282,2254283,2254284,2254285,2254287,2254289,2254290,2254291,2254298,2254305,2254306,2254307,2254311,2254316,2254320,2254323,2254324,2254325,2254326,2254330,2254334,2254336,2254338,2254339,2254341,2254343,2254348,2254353,2254358,2254359,2254365,2254376,2254382,2254383,2254388,2254393,2254394,2254397,2254400,2254405,2254410,2254417,2254424,2254425,2254426,2254427,2254428,2254431,2254434,2254439,2254444,2254445,2254446,2254447,2254448,2254449,2254450,2254457,2254465,2254467,2254472,2254477,2254478,2254480,2254482,2254487,2254492,2254493,2254495,2254497,2254499,2254501,2254505,2254509,2254511,2254513,2254515,2254517,2254522,2254527,2254529,2254531,2254532,2254533,2254534,2254539,2254544,2254545,2254546,2254552,2254558,2254559,2254560,2254565,2254570,2254571,2254572,2254578,2254584,2254585,2254586,2254587,2254598,2254609,2254610,2254612,2254614,2254620,2254626,2254630,2254636,2254639,2254642,2254646,2254648,2254653,2254658,2254661,2254664,2254669,2254678,2254683,2254687,2254693,2254699,2254708,2254714,2254715,2254718,2254724,2254728,2254729,2254735,2254742,2254747,2254752,2254757,2254761,2254763,2254766,2254771,2254776,2254781,2254786,2254788,2254789,2254793,2254801,2254806,2254810,2254814,2254819,2254824,2254825,2254834,2254843,2254844,2254846,2254848,2254853,2254858,2254862,2254867,2254869,2254872,2254876,2254878,2254882,2254886,2254889,2254892,2254896,2254903,2254907,2254910,2254915,2254920,2254927,2254932,2254933,2254936,2254941,2254944,2254945,2254950,2254956,2254960,2254964,2254968,2254971,2254973,2254976,2254980,2254984,2254988,2254992,2254994,2254995,2254998,2255004,2255008,2255011,2255014,2255015,2255019,2255023,2255024,2255025,2255026,2255027,2255034,2255041,2255042,2255043,2255044,2255045,2255047,2255049,2255050,2255051,2255055,2255059,2255060,2255061,2255064,2255067,2255069,2255071,2255072,2255073,2255076,2255079,2255080,2255081,2255082,2255083,2255084,2255088,2255092,2255093,2255094,2255096,2255098,2255099,2255100,2255103,2255106,2255110,2255114,2255115,2255116,2255118,2255120,2255123,2255126,2255128,2255130,2255134,2255138,2255139,2255140,2255141,2255142,2255145,2255148,2255150,2255152,2255153,2255154,2255155,2255156,2255160,2255164,2255166,2255168,2255170,2255172,2255174,2255176,2255178,2255180,2255181,2255182,2255184,2255186,2255187,2255188,2255191,2255194,2255195,2255196,2255197,2255200,2255203,2255204,2255205,2255206,2255207,2255208,2255209,2255218,2255228,2255236,2255246,2255260,2255266,2255278,2255286,2255296,2255302,2255312,2255320,2255332,2255342,2255354,2255362,2255370,2255380,2255388,2255396,2255404,2255412,2255418,2255428,2255438,2255450,2255462,2255470,2255480,2255490,2255500,2255510,2255518,2255528,2255538,2255548,2255558,2255570,2255582,2255592,2255602,2255610,2255620,2255630,2255640,2255652,2255666,2255676,2255690,2255700,2255712,2255724,2255736,2255748,2255758,2255770,2255782,2255794,2255806,2255818,2255832,2255844,2255856,2255866,2255878,2255890,2255902,2255916,2255932,2255944,2255960,2255972,2255986,2256000,2256014,2256028,2256040,2256054,2256068,2256082,2256096,2256110,2256124,2256138,2256152,2256164,2256178,2256192,2256206,2256222,2256240,2256262,2256272,2256286,2256302,2256318,2256334,2256350,2256364,2256380,2256396,2256412,2256428,2256444,2256460,2256474,2256490,2256504,2256520,2256536,2256552,2256570,2256590,2256614,2256626,2256642,2256660,2256678,2256696,2256714,2256730,2256748,2256766,2256784,2256802,2256820,2256838,2256854,2256870,2256886,2256904,2256922,2256940,2256960,2256982,2257008,2257022,2257040,2257060,2257080,2257100,2257120,2257138,2257158,2257178,2257198,2257218,2257238,2257258,2257276,2257294,2257312,2257330,2257350,2257370,2257392,2257398,2257422,2257450,2257466,2257486,2257508,2257530,2257552,2257574,2257594,2257616,2257638,2257660,2257682,2257704,2257726,2257746,2257766,2257786,2257806,2257826,2257866,2257892,2257922,2257940,2257962,2257986,2258010,2258018,2258042,2258066,2258088,2258128,2258146,2258176,2258200,2258224,2258246,2258268,2258290,2258312,2258334,2258356,2258380,2258408,2258440,2258460,2258484,2258510,2258536,2258562,2258588,2258612,2258638,2258664,2258690,2258716,2258742,2258768,2258792,2258816,2258840,2258864,2258888,2258912,2258938,2258966,2259000,2259022,2259048,2259076,2259104,2259132,2259160,2259186,2259214,2259242,2259270,2259298,2259326,2259354,2259380,2259406,2259432,2259458,2259484,2259510,2259538,2259566,2259602,2259626,2259654,2259684,2259714,2259744,2259774,2259802,2259832,2259862,2259892,2259910,2259928,2259958,2259988,2260016,2260044,2260072,2260078,2260106,2260134,2260162,2260192,2260222,2260228,2260264,2260290,2260320,2260352,2260384,2260390,2260422,2260454,2260484,2260516,2260548,2260567,2260587,2260618,2260650,2260682,2260710,2260720,2260750,2260780,2260810,2260840,2260872,2260878,2260938,2260972,2261002,2261021,2261068,2261079,2261109,2261142,2261176,2261184,2261216,2261250,2261284,2261318,2261353,2261386,2261420,2261430,2261464,2261494,2261526,2261558,2261590,2261600,2261633,2261666,2261700,2261736,2261766,2261776,2261838,2261865,2261884,2261918,2261956,2261990,2262026,2262062,2262098,2262134,2262146,2262180,2262216,2262230,2262258,2262292,2262326,2262360,2262394,2262406,2262440,2262476,2262498,2262550,2262582,2262594,2262630,2262666,2262702,2262740,2262752,2262790,2262826,2262864,2262902,2262940,2262978,2263016,2263057,2263094,2263110,2263170,2263195,2263220,2263256,2263292,2263330,2263340,2263408,2263422,2263456,2263494,2263532,2263570,2263608,2263622,2263662,2263700,2263740,2263780,2263820,2263860,2263900,2263916,2263956,2263994,2264032,2264070,2264108,2264124,2264164,2264200,2264240,2264252,2264322,2264338,2264374,2264414,2264454,2264494,2264534,2264550,2264590,2264630,2264672,2264697,2264722,2264768,2264840,2264882,2264888,2264934,2264954,2264986,2265026,2265078,2265120,2265158,2265200,2265216,2265288,2265326,2265344,2265386,2265428,2265470,2265512,2265530,2265572,2265614,2265656,2265700,2265742,2265786,2265830,2265874,2265894,2265936,2265978,2266020,2266064,2266106,2266126,2266168,2266212,2266242,2266302,2266342,2266362,2266406,2266450,2266494,2266538,2266558,2266602,2266646,2266690,2266734,2266778,2266824,2266872,2266916,2266938,2266982,2267026,2267070,2267116,2267160,2267182,2267246,2267298,2267360,2267402,2267424,2267470,2267516,2267562,2267608,2267630,2267676,2267722,2267768,2267848,2267896,2267906,2268012,2268058,2268104,2268150,2268198,2268244,2268268,2268314,2268362,2268396,2268460,2268504,2268528,2268576,2268624,2268672,2268730,2268778,2268826,2268909,2268964,2269012,2269068,2269074,2269140,2269228,2269276,2269326,2269394,2269442,2269492,2269528,2269634,2269660,2269710,2269804,2269864,2269914,2269972,2270056,2270106,2270156,2270212,2270220,2270328,2270378,2270428,2270522,2270550,2270600,2270652,2270750,2270798,2270826,2270922,2271008,2271036,2271096,2271182,2271234,2271286,2271338,2271396,2271462,2271514,2271606,2271662,2271714,2271744,2271814,2271880,2271950,2272000,2272074,2272162,2272216,2272246,2272308,2272396,2272450,2272504,2272612,2272618,2272686,2272740,2272834,2272892,2272946,2272978,2273048,2273114,2273182,2273258,2273354,2273440,2273472,2273480,2273542,2273628,2273682,2273736,2273788,2273849,2273918,2273972,2274064,2274122,2274176,2274210,2274278,2274344,2274410,2274488,2274582,2274666,2274700,2274710,2274716,2274778,2274906,2274960,2275014,2275023,2275080,2275148,2275202,2275292,2275302,2275356,2275410,2275446,2275512,2275518,2275584,2275616,2275704,2275738,2275830,2275874,2275918,2275954,2275966,2276028,2276114,2276160,2276214,2276268,2276328,2276340,2276404,2276458,2276546,2276604,2276618,2276666,2276704,2276768,2276834,2276846,2276876,2276962,2276998,2277088,2277168,2277206,2277220,2277230,2277292,2277412,2277424,2277474,2277528,2277588,2277656,2277710,2277720,2277806,2277864,2277918,2277932,2278022,2278030,2278096,2278132,2278192,2278254,2278264,2278352,2278474,2278486,2278548,2278664,2278678,2278728,2278782,2278842,2278910,2278964,2278976,2279060,2279118,2279172,2279188,2279278,2279288,2279354,2279390,2279448,2279512,2279522,2279610,2279684,2279690,2279744,2279806,2279848,2279883,2279884,2279904,2279925,2279929,2279932,2279933,2279956,2279979,2279982,2280007,2280032,2280060,2280086,2280093,2280125,2280153,2280160,2280185,2280208,2280211,2280229,2280268,2280292,2280319,2280346,2280371,2280396,2280401,2280406,2280411,2280429,2280472,2280501,2280503,2280529,2280560,2280568,2280584,2280600,2280620,2280638,2280661,2280684,2280701,2280720,2280725,2280765,2280803,2280806,2280841,2280874,2280876,2280878,2280880,2280905,2280929,2280935,2280941,2280967,2280996,2281019,2281053,2281087,2281109,2281133,2281157,2281181,2281205,2281232,2281257,2281264,2281295,2281322,2281348,2281374,2281377,2281394,2281431,2281454,2281480,2281506,2281530,2281554,2281559,2281564,2281569,2281587,2281628,2281655,2281657,2281682,2281712,2281720,2281735,2281750,2281770,2281788,2281810,2281832,2281849,2281868,2281873,2281911,2281947,2281950,2281983,2282014,2282016,2282018,2282020,2282045,2282069,2282075,2282090,2282115,2282134,2282155,2282187,2282220,2282241,2282264,2282287,2282310,2282333,2282359,2282383,2282390,2282420,2282444,2282447,2282472,2282497,2282500,2282516,2282551,2282573,2282598,2282623,2282646,2282669,2282676,2282683,2282701,2282741,2282767,2282769,2282792,2282820,2282828,2282843,2282858,2282877,2282894,2282915,2282936,2282953,2282972,2282977,2283013,2283047,2283048,2283051,2283082,2283111,2283113,2283115,2283117,2283142,2283166,2283172,2283186,2283210,2283229,2283248,2283278,2283293,2283311,2283331,2283353,2283375,2283397,2283419,2283444,2283467,2283474,2283503,2283526,2283529,2283553,2283577,2283580,2283595,2283610,2283629,2283650,2283674,2283713,2283735,2283742,2283749,2283756,2283774,2283813,2283838,2283840,2283862,2283889,2283897,2283911,2283925,2283928,2283944,2283960,2283980,2284000,2284017,2284036,2284041,2284075,2284107,2284108,2284111,2284140,2284167,2284169,2284171,2284173,2284198,2284227,2284240,2284263,2284282,2284313,2284341,2284358,2284377,2284398,2284419,2284440,2284461,2284485,2284507,2284514,2284542,2284564,2284565,2284569,2284592,2284614,2284630,2284644,2284662,2284682,2284705,2284726,2284747,2284770,2284777,2284784,2284802,2284840,2284864,2284866,2284887,2284913,2284921,2284934,2284947,2284950,2284965,2284980,2284981,2285000,2285019,2285036,2285055,2285060,2285092,2285122,2285125,2285152,2285177,2285179,2285181,2285183,2285208,2285232,2285238,2285250,2285272,2285291,2285295,2285321,2285347,2285363,2285381,2285401,2285421,2285441,2285461,2285484,2285505,2285512,2285539,2285560,2285564,2285586,2285605,2285608,2285623,2285636,2285653,2285672,2285694,2285714,2285734,2285756,2285763,2285770,2285788,2285825,2285848,2285850,2285870,2285895,2285903,2285915,2285927,2285930,2285944,2285958,2285959,2285977,2285995,2286012,2286031,2286036,2286066,2286094,2286097,2286122,2286145,2286147,2286149,2286151,2286176,2286200,2286206,2286217,2286238,2286257,2286261,2286285,2286309,2286324,2286341,2286360,2286379,2286398,2286417,2286439,2286459,2286466,2286491,2286510,2286514,2286535,2286553,2286556,2286570,2286582,2286598,2286616,2286637,2286656,2286675,2286696,2286703,2286710,2286727,2286762,2286784,2286786,2286805,2286829,2286837,2286847,2286857,2286860,2286874,2286888,2286889,2286906,2286923,2286939,2286957,2286962,2286990,2287016,2287019,2287042,2287063,2287065,2287067,2287069,2287093,2287116,2287122,2287133,2287153,2287171,2287175,2287197,2287219,2287233,2287249,2287267,2287285,2287303,2287321,2287342,2287361,2287368,2287391,2287411,2287431,2287448,2287451,2287464,2287475,2287490,2287507,2287527,2287545,2287563,2287583,2287590,2287597,2287613,2287645,2287665,2287667,2287686,2287710,2287718,2287727,2287736,2287739,2287753,2287767,2287768,2287784,2287800,2287815,2287832,2287837,2287863,2287887,2287890,2287911,2287930,2287932,2287934,2287936,2287959,2287981,2287987,2287997,2288016,2288034,2288038,2288058,2288078,2288091,2288106,2288123,2288140,2288157,2288174,2288194,2288212,2288213,2288220,2288241,2288259,2288278,2288294,2288297,2288309,2288319,2288333,2288349,2288368,2288385,2288402,2288421,2288428,2288435,2288450,2288495,2288497,2288523,2288553,2288561,2288564,2288565,2288579,2288593,2288594,2288595,2288596,2288597,2288612,2288627,2288628,2288629,2288643,2288657,2288660,2288663,2288666,2288669,2288691,2288713,2288714,2288717,2288720,2288737,2288754,2288755,2288756,2288758,2288760,2288761,2288762,2288764,2288766,2288787,2288808,2288809,2288810,2288816,2288822,2288827,2288832,2288846,2288860,2288864,2288868,2288869,2288870,2288888,2288906,2288907,2288908,2288920,2288932,2288935,2288938,2288952,2288966,2288969,2288972,2288986,2289000,2289003,2289006,2289023,2289040,2289041,2289042,2289043,2289044,2289051,2289058,2289071,2289084,2289088,2289092,2289107,2289122,2289123,2289124,2289125,2289128,2289131,2289140,2289149,2289150,2289151,2289164,2289177,2289180,2289183,2289198,2289213,2289214,2289215,2289231,2289247,2289250,2289253,2289258,2289265,2289268,2289280,2289292,2289308,2289324,2289325,2289326,2289328,2289330,2289331,2289332,2289333,2289334,2289357,2289380,2289386,2289392,2289395,2289398,2289399,2289400,2289413,2289426,2289427,2289428,2289429,2289443,2289457,2289458,2289459,2289460,2289473,2289486,2289489,2289494,2289497,2289506,2289526,2289538,2289539,2289542,2289545,2289561,2289577,2289578,2289579,2289580,2289582,2289584,2289585,2289586,2289588,2289590,2289610,2289630,2289631,2289632,2289638,2289644,2289648,2289652,2289665,2289678,2289682,2289686,2289687,2289703,2289719,2289720,2289721,2289733,2289745,2289748,2289751,2289764,2289777,2289780,2289783,2289796,2289809,2289812,2289815,2289830,2289845,2289846,2289847,2289848,2289849,2289856,2289863,2289875,2289887,2289891,2289895,2289909,2289923,2289924,2289925,2289926,2289929,2289932,2289940,2289948,2289949,2289950,2289962,2289974,2289977,2289980,2289994,2290008,2290009,2290010,2290025,2290040,2290043,2290046,2290051,2290058,2290061,2290072,2290083,2290098,2290113,2290114,2290115,2290117,2290119,2290120,2290121,2290122,2290123,2290144,2290165,2290171,2290177,2290180,2290183,2290184,2290185,2290197,2290209,2290210,2290211,2290212,2290225,2290238,2290239,2290240,2290241,2290253,2290265,2290268,2290273,2290276,2290284,2290302,2290313,2290314,2290317,2290320,2290334,2290348,2290349,2290350,2290351,2290353,2290355,2290356,2290357,2290359,2290361,2290380,2290399,2290400,2290401,2290407,2290413,2290417,2290421,2290433,2290445,2290449,2290453,2290454,2290468,2290482,2290483,2290484,2290495,2290506,2290509,2290512,2290524,2290536,2290539,2290542,2290543,2290555,2290567,2290570,2290573,2290587,2290601,2290602,2290603,2290604,2290605,2290612,2290619,2290629,2290639,2290643,2290647,2290660,2290673,2290674,2290675,2290676,2290679,2290682,2290689,2290696,2290697,2290698,2290709,2290720,2290723,2290726,2290739,2290752,2290753,2290754,2290768,2290782,2290785,2290788,2290793,2290800,2290803,2290804,2290814,2290824,2290838,2290852,2290853,2290854,2290856,2290858,2290859,2290860,2290861,2290862,2290881,2290900,2290906,2290912,2290915,2290918,2290919,2290920,2290931,2290942,2290943,2290944,2290945,2290957,2290969,2290970,2290971,2290972,2290983,2290994,2290997,2291002,2291005,2291012,2291028,2291038,2291039,2291042,2291045,2291057,2291069,2291070,2291071,2291072,2291073,2291075,2291077,2291078,2291080,2291082,2291083,2291101,2291119,2291120,2291121,2291127,2291133,2291137,2291141,2291152,2291163,2291167,2291171,2291176,2291188,2291196,2291197,2291198,2291208,2291218,2291221,2291224,2291235,2291246,2291249,2291252,2291253,2291264,2291275,2291278,2291281,2291294,2291307,2291308,2291309,2291310,2291311,2291318,2291325,2291333,2291341,2291345,2291349,2291361,2291373,2291374,2291375,2291376,2291379,2291382,2291388,2291394,2291395,2291396,2291406,2291416,2291419,2291422,2291434,2291446,2291447,2291448,2291461,2291474,2291475,2291478,2291485,2291492,2291495,2291496,2291505,2291514,2291527,2291540,2291541,2291542,2291544,2291546,2291547,2291548,2291549,2291550,2291553,2291570,2291585,2291591,2291599,2291602,2291603,2291604,2291614,2291624,2291625,2291626,2291627,2291638,2291649,2291650,2291651,2291652,2291662,2291672,2291675,2291680,2291683,2291689,2291703,2291712,2291713,2291716,2291719,2291730,2291741,2291742,2291743,2291744,2291746,2291748,2291749,2291751,2291753,2291754,2291771,2291788,2291789,2291795,2291803,2291806,2291816,2291826,2291830,2291834,2291844,2291854,2291855,2291856,2291866,2291876,2291879,2291891,2291901,2291904,2291907,2291908,2291918,2291928,2291931,2291944,2291955,2291956,2291957,2291958,2291959,2291966,2291978,2291984,2291988,2291992,2292003,2292014,2292015,2292016,2292019,2292022,2292028,2292034,2292035,2292036,2292044,2292054,2292057,2292068,2292079,2292080,2292081,2292093,2292105,2292108,2292115,2292122,2292125,2292126,2292134,2292153,2292165,2292166,2292167,2292169,2292171,2292172,2292173,2292174,2292177,2292192,2292205,2292211,2292219,2292222,2292223,2292232,2292241,2292242,2292243,2292244,2292254,2292264,2292265,2292266,2292275,2292284,2292287,2292292,2292295,2292300,2292312,2292320,2292321,2292324,2292336,2292346,2292347,2292348,2292349,2292351,2292353,2292354,2292356,2292358,2292359,2292375,2292391,2292392,2292398,2292404,2292406,2292408,2292417,2292429,2292433,2292436,2292445,2292452,2292453,2292454,2292463,2292472,2292475,2292486,2292495,2292498,2292501,2292502,2292511,2292520,2292523,2292534,2292543,2292544,2292545,2292546,2292547,2292554,2292565,2292570,2292574,2292578,2292588,2292598,2292599,2292600,2292603,2292606,2292611,2292616,2292617,2292618,2292625,2292634,2292637,2292647,2292657,2292658,2292659,2292670,2292681,2292684,2292691,2292698,2292701,2292702,2292709,2292725,2292735,2292736,2292737,2292739,2292741,2292742,2292743,2292744,2292747,2292761,2292773,2292779,2292787,2292790,2292791,2292799,2292807,2292808,2292809,2292810,2292819,2292828,2292829,2292837,2292845,2292848,2292853,2292856,2292857,2292861,2292871,2292878,2292879,2292882,2292893,2292902,2292903,2292904,2292905,2292907,2292909,2292910,2292912,2292914,2292915,2292930,2292945,2292946,2292952,2292958,2292959,2292960,2292961,2292969,2292980,2292984,2292987,2292995,2293001,2293002,2293003,2293004,2293012,2293020,2293023,2293033,2293041,2293044,2293047,2293048,2293056,2293064,2293067,2293077,2293085,2293086,2293087,2293088,2293089,2293096,2293106,2293110,2293114,2293118,2293127,2293136,2293137,2293138,2293141,2293144,2293149,2293154,2293155,2293156,2293162,2293170,2293173,2293174,2293182,2293190,2293191,2293192,2293202,2293212,2293215,2293222,2293229,2293232,2293233,2293239,2293253,2293262,2293263,2293264,2293266,2293268,2293269,2293270,2293271,2293274,2293286,2293296,2293302,2293310,2293313,2293314,2293321,2293328,2293329,2293330,2293331,2293339,2293347,2293348,2293349,2293356,2293363,2293366,2293371,2293374,2293377,2293385,2293391,2293392,2293395,2293405,2293413,2293414,2293415,2293416,2293418,2293420,2293421,2293423,2293425,2293426,2293440,2293454,2293460,2293466,2293467,2293468,2293469,2293476,2293486,2293490,2293492,2293499,2293505,2293506,2293507,2293508,2293515,2293522,2293525,2293534,2293541,2293544,2293547,2293554,2293561,2293564,2293573,2293580,2293581,2293582,2293583,2293584,2293591,2293600,2293603,2293607,2293611,2293619,2293627,2293628,2293629,2293632,2293635,2293640,2293645,2293646,2293647,2293652,2293659,2293662,2293663,2293670,2293677,2293678,2293679,2293688,2293697,2293700,2293707,2293714,2293717,2293718,2293723,2293735,2293743,2293744,2293745,2293747,2293749,2293750,2293751,2293752,2293755,2293766,2293775,2293780,2293787,2293790,2293791,2293798,2293805,2293806,2293807,2293814,2293821,2293822,2293823,2293829,2293835,2293838,2293843,2293846,2293847,2293850,2293857,2293862,2293863,2293866,2293875,2293882,2293883,2293884,2293885,2293887,2293889,2293890,2293892,2293894,2293895,2293908,2293921,2293927,2293933,2293934,2293935,2293936,2293942,2293951,2293955,2293956,2293962,2293968,2293969,2293970,2293971,2293977,2293983,2293986,2293994,2294000,2294003,2294006,2294012,2294018,2294021,2294029,2294035,2294036,2294037,2294038,2294039,2294046,2294054,2294059,2294063,2294070,2294077,2294078,2294079,2294082,2294085,2294090,2294095,2294096,2294097,2294101,2294105,2294108,2294111,2294112,2294118,2294124,2294125,2294133,2294141,2294144,2294151,2294158,2294161,2294162,2294169,2294179,2294183,2294184,2294186,2294188,2294189,2294190,2294191,2294194,2294204,2294212,2294217,2294224,2294227,2294233,2294239,2294240,2294241,2294247,2294253,2294254,2294255,2294260,2294265,2294268,2294273,2294276,2294277,2294283,2294289,2294290,2294293,2294301,2294307,2294308,2294309,2294310,2294312,2294314,2294315,2294317,2294319,2294320,2294332,2294344,2294350,2294356,2294357,2294358,2294363,2294371,2294375,2294380,2294385,2294386,2294387,2294392,2294397,2294400,2294407,2294412,2294415,2294418,2294423,2294428,2294435,2294442,2294443,2294444,2294445,2294446,2294453,2294460,2294464,2294468,2294474,2294480,2294481,2294482,2294485,2294488,2294493,2294498,2294499,2294502,2294505,2294508,2294511,2294512,2294517,2294522,2294523,2294530,2294537,2294540,2294547,2294554,2294557,2294558,2294564,2294572,2294575,2294576,2294578,2294580,2294581,2294582,2294583,2294586,2294595,2294602,2294607,2294614,2294617,2294622,2294627,2294628,2294629,2294634,2294639,2294640,2294641,2294642,2294647,2294654,2294657,2294660,2294663,2294664,2294669,2294674,2294675,2294678,2294685,2294690,2294691,2294692,2294694,2294696,2294697,2294699,2294701,2294702,2294712,2294722,2294728,2294734,2294735,2294736,2294737,2294741,2294748,2294752,2294756,2294760,2294761,2294762,2294763,2294768,2294773,2294775,2294781,2294786,2294789,2294792,2294796,2294800,2294806,2294812,2294813,2294814,2294815,2294816,2294822,2294828,2294832,2294836,2294841,2294846,2294847,2294848,2294851,2294854,2294858,2294862,2294863,2294866,2294869,2294878,2294890,2294910,2294926,2294940,2294941,2294943,2294945,2294946,2294947,2294990,2295013,2295014,2295035,2295055,2295089,2295130,2295131,2295148,2295166,2295184,2295262,2295277,2295297,2295321,2295322,2295349,2295390,2295391,2295404,2295430,2295444,2295445,2295476,2295507,2295512,2295529,2295551,2295561,2295562,2295601,2295626,2295627,2295648,2295664,2295678,2295679,2295716,2295750,2295767,2295795,2295809,2295843,2295871,2295872,2295894,2295926,2295936,2296015,2296068,2296164,2296193,2296372,2296390,2296417,2296418,2296455,2296488,2296504,2296528,2296576,2296582,2296604,2296618,2296633,2296789,2296884,2296918,2296925,2296929,2297021,2297034,2297047,2297126,2297144,2297147,2297163,2297608,2297631,2297651,2297731,2297748,2297754,2297828,2297837,2297853,2297857,2297859,2297860,2297876,2297880,2297882,2297883,2297901,2297911,2297913,2297914,2297936,2297946,2297948,2297949,2297959,2297961,2297983,2297984,2297992,2297994,2298011,2298013,2298035,2298037,2298039,2298136,2298143,2298162,2298184,2298188,2298266,2298403,2298577,2298582,2298599,2298605,2298617,2298685,2298944,2298949,2298955,2299038,2299199,2299216,2299235,2299244,2299264,2299268,2299334,2299832,2300012,2300068,2300246,2300247,2300267,2300343,2300344,2300459,2300547,2300660,2300758,2300761,2300769,2300774,2300775,2300781,2300790,2300791,2300795,2300811,2300886,2300887,2301281,2301282,2301283,2301284,2301285,2301286,2301287,2301288,2301289,2301290,2301291,2301292,2301293,2301294,2301295,2301296,2301297,2301298,2301299,2301300,2301301,2301302,2301303,2301304,2301305,2301306,2301307,2301308,2301309,2301777,2301778,2301823,2301916,2301931,2302017,2302059,2302064,2302141,2302239,2302330,2302445,2302566,2304613,2304728,2304853,2304905,2304938,2304963,2305029,2305163,2306933,2306954,2307303,2307355,2307369,2307419,2307465,2307493,2307495,2309033,2309054,2309145,2309156,2309168,2309183,2309187,2309215,2309423,2309519,2309533,2310787,2310808,2310931,2310943,2311251,2311265,2311273,2311305,2312655,2312676,2312995,2313007,2313017,2313033,2313040,2313069,2313231,2313387,2314294,2314315,2314336,2314354,2314364,2314378,2314380,2314408,2315164,2315185,2315438,2315450,2315462,2315476,2315484,2315514,2316353,2316374,2316395,2316669,2316681,2316697,2316705,2316735,2317664,2317691,2317716,2317726,2317736,2317750,2317758,2318060,2319051,2319094,2319129,2319141,2319152,2319167,2319185,2319227,2320300,2320338,2320373,2320476,2320627,2320641,2320666,2320735,2320737,2321942,2321989,2322026,2322061,2322278,2322295,2322298,2322401,2322404,2323693,2323722,2323736,2323784,2323800,2323811,2323990,2323992,2323999,2324007,2324021,2324090,2325287,2325333,2325365,2325409,2325411,2325412,2325413,2325416,2325422,2325430,2325460,2325513,2326808,2326813,2326827,2327171,2327177,2327178,2327191,2327192,2327196,2327206,2327244,2327281,2327476,2327655,2328913,2328918,2328932,2329000,2329002,2329003,2329004,2329005,2329009,2329017,2329027,2329044,2330368,2330373,2330387,2330791,2330795,2330796,2330797,2330798,2330804,2330812,2330826,2330851,2331289,2331293,2434675,2448458,2566676,2595411,2595431,2595433,2595447,2595455,2595458,2595463,2595466,2595471,2595472,2595477,2595526,2595533,2595548,2595555,2595556,2595561,2595572,2595577,2595580,2595587,2595618,2595625,2595628,2595633,2595642,2595654,2595668,2595675,2595676,2595683,2595684,2595689,2595690,2595717,2595718,2595735,2595738,2595743,2595758,2595763,2595769,2606847,2606907,2607091,2607144,2607295,2607304,2607411,2607607,2607608,2607890,2607902,2607928,2607929,2607930,2607936,2607976,2608463,2609019,2609022,2609133,2609178,2609318,2609319,2609320,2609321,2609322,2609335,2609347,2609348,2609355,2609452,2609820,2609891,2610281,2610390,2610517,2610868,2611024,2611377,2611537,2611838,2611993,2612088,2615037,2617630,2617741,2618065,2618124,2618246,2618569,2618725,2618754,2619110,2619235,2619515,2619566,2619846,2619923,2619961,2620169,2620244,2620286,2620376,2620523,2620585,2620591,2620637,2620830,2620906,2620940,2620964,2621089,2621101,2621227,2621354,2621372,2621496,2621535,2621653,2621663,2621745,2621822,2621944,2621950,2621988,2622123,2622147,2622281,2622396,2622468,2622602,2622639,2622745,2622751,2622831,2622978,2623006,2623013,2623190,2623367,2623538,2623639,2623787,2623807,2623952,2624046,2624196,2624253,2624367,2624373,2624471,2624630,2624674,2624680,2624800,2625031,2625055,2625209,2625328,2625462,2625520,2625649,2625757,2625763,2625905,2626070,2626088,2626094,2626326,2626365,2626517,2626643,2626798,2626818,2626984,2627117,2627270,2627299,2627582,2627607,2627755,2629057,2629238,2629355,2629379,2630561,2630708,2630849,2630951,2630957,2632030,2632079,2632216,2632348,2632356,2633426,2633535,2633580,2633714,2633720,2634946,2635077,2635222,2635356,2635368,2636496,2636627,2636780,2636916,2636926,2638112,2638251,2638410,2638556,2638562,2639771,2639912,2639953,2640217,2640225,2641496,2641641,2641804,2641950,2641960,2643229,2643279,2643418,2643574,2643580,2644901,2645064,2645207,2645365,2645373,2646714,2646873,2647186,2647323,2647387,2647578,2647579,2647729,2647875,2647925,2647932,2648065,2648402,2648407,2649815,2650204,2650351,2650605,2650824,2651342,2651530,2651747,2652312,2652317,2652325,2652344,2652963,2652982,2652991,2653807,2665302,2665336,2665557,2666009,2666036,2666178,2666239,2666240,2666241,2666243,2666935,2666943,2666958,2666959,2666964,2666965,2666969,2666985,2668358,2668595,2669114,2669166,2669211,2669223,2669235,2669244,2670605,2671098,2671151,2671201,2671207,2671235,2671262,2672689,2673216,2673270,2673321,2673326,2673389,2673794,2673824,2673835,2673840,2673897,2675466,2676121,2676135,2676148,2676153,2676207,2676267,2676270,2677972,2678533,2678539,2678545,2678647,2678651,2680250,2680679,2680687,2680693,2680701,2680707,2681834,2682197,2682213,2682253,2682259,2682260,2683172,2683555,2683591,2683597,2683654,2683661,2684720,2684857,2684872,2684914,2684963,2685379,2685475,2687325,2687331,2689649,2689655,2691630,2695399,2715939,2799472,2829798,2857021,2857026,2857054,2857074,2857096,2857097,2857123,2857150,2857180,2857202,2857210,2857229,2857277,2857284,2857322,2857356,2857394,2857397,2857426,2857441,2857460,2857463,2857490,2857505,2857515,2857527,2857540,2857557,2857570,2857585,2857617,2857622,2857648,2857692,2857722,2857755,2857760,2857804,2857809,2857842,2857873,2857884,2857896,2857924,2857939,2857968,2857979,2857990,2858015,2858020,2858038,2858056,2858065,2858070,2858105,2858112,2858137,2858144,2858156,2858170,2858213,2858228,2858247,2858254,2858281,2858286,2858312,2858334,2858337,2858376,2858401,2858414,2858436,2858454,2858485,2858500,2858523,2858548,2858569,2858588,2858602,2858619,2858642,2858669,2858848,2858867,2858883,2858925,2858955,2859004,2859011,2859053,2859077,2859087,2859109,2859110,2859122,2859134,2859139,2859145,2859180,2859203,2859217,2859245,2859271,2859321,2859334,2859364,2859375,2859403,2859441,2859459,2859501,2859524,2859537,2859572,2859579,2859606,2859629,2859644,2859653,2859678,2859685,2859708,2859721,2859731,2859829,2859858,2859902,2859915,2859940,2859971,2859976,2859995,2860026,2860033,2860038,2860075,2860108,2860141,2860146,2860173,2860178,2860209,2860218,2860243,2860248,2860273,2860278,2860289,2860304,2860332,2860350,2860367,2860386,2860395,2860424,2860425,2860470,2860483,2860510,2860539,2860546,2860563,2860594,2860601,2860642,2860679,2860716,2860744,2860782,2860787,2860803,2860823,2860855,2860870,2860886,2860915,2860942,2860963,2860979,2861011,2861012,2861065,2861066,2861120,2861141,2861147,2861179,2861203,2861255,2861262,2861298,2861328,2861373,2861386,2861408,2861440,2861452,2861488,2861511,2861529,2861559,2861565,2861566,2861580,2861594,2861595,2861618,2862136,2862143,2862173,2862214,2862219,2862252,2862273,2862289,2862310,2862327,2862339,2862365,2862399,2862430,2862437,2862460,2862465,2862496,2862509,2862530,2862535,2862562,2862571,2862585,2862591,2862620,2862651,2862662,2862677,2862696,2862708,2862730,2862737,2862778,2862801,2862830,2862851,2862854,2862885,2862896,2862903,2862962,2862993,2863019,2863053,2863059,2863070,2863093,2863098,2863144,2863151,2863185,2863217,2863243,2863260,2863299,2863304,2863352,2863376,2863410,2863437,2863468,2863484,2863518,2863552,2863581,2863583,2863594,2863605,2863606,2863622,2863638,2863645,2863677,2863686,2863730,2863740,2863776,2863808,2863831,2864917,2864948,2864988,2864995,2866088,2866133,2866143,2866181,2866223,2866246,2866301,2866308,2866340,2866348,2866362,2866415,2866425,2866426,2866428,2866438,2866447,2866489,2866494,2866502,2866530,2866567,2866577,2866608,2866617,2866642,2866647,2866688,2866697,2866724,2866737,2866774,2866797,2866802,2866833,2866854,2866859,2866888,2866893,2866906,2866947,2866968,2866973,2866992,2866997,2867026,2867039,2867044,2867053,2867074,2867081,2867115,2867151,2867160,2867189,2867190,2867197,2867217,2867269,2867278,2867283,2867340,2867349,2867395,2867399,2867708,2867721,2867751,2867759,2867969,2867976,2868010,2868028,2868050,2868239,2868244,2868284,2868300,2868330,2868335,2868345,2868412,2868428,2868466,2868492,2868519,2868542,2868548,2868578,2868589,2868602,2868637,2868648,2868664,2868705,2868710,2868734,2868746,2868776,2868821,2868826,2868872,2868897,2868904,2868908,2868914,2868951,2868984,2868995,2869044,2869055,2869060,2869101,2869108,2869134,2869142,2869156,2869164,2869211,2869222,2869241,2869264,2869279,2869290,2869299,2869304,2869346,2869368,2869375,2869406,2869421,2869446,2869453,2869522,2869577,2869592,2869623,2869640,2869667,2869686,2869737,2869756,2869764,2869804,2869824,2869833,2869844,2869871,2869915,2869922,2869954,2869998,2870004,2870010,2870080,2870085,2870145,2870151,2870187,2870238,2870247,2870265,2870313,2870331,2870342,2870352,2870353,2874359,2874368,2874424,2874466,2874494,2874495,2874531,2874536,2874561,2874584,2874609,2874629,2877782,2877803,2877811,2877849,2877869,2877875,2878809,2878814,2878840,2878850,2878884,2878888,2881406,2881451,2881489,2881525,2881547,2881576,2891814,2892066,2892622,2901338,2901486,2901940,2902404,2902839,2903278,2903723,2904073,2904495,2904893,2905245,2905379,2905851,2906142,2912716,2912804]},"uniswap-v3-core_d8b1c63":{"timeMs":17686.640661999998,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,2702,2715,2718,2731,2734,2747,2750,2753,2756,2759,2762,2765,2768,2771,2775,2784,2787,2790,2793,2796,2799,2802,2805,2808,2812,2821,2824,2827,2830,2833,2836,2839,2842,2845,2849,4326,4344,4353,4399,4424,4442,4481,4506,4524,4582,4602,4613,4633,4648,4650,4653,4659,4672,4697,4717,4730,4732,4735,4741,4754,4779,4893,4905,4913,4932,4947,4965,4977,4989,4995,5014,5029,5047,5636,5654,5666,5671,5682,5686,5694,5702,5706,5712,5715,5721,5725,5736,5737,5740,5750,5754,5755,5758,5766,5770,5778,5784,5788,5794,5797,5803,5807,5818,5819,5822,5832,5836,5837,5840,6152,6199,6214,6234,6243,6253,6268,6278,6286,6298,6316,6325,6335,6350,6360,6368,15803,15823,15836,15870,15904,15938,15972,16006,16040,16074,16108,16142,16176,16210,16244,16278,16312,16326,17482,17502,17515,17549,17583,17617,17651,17665,17699,17713,17747,17781,17815,17849,17883,17917,17931,17945,19493,19504,19525,19542,19559,19593,19610,19629,19663,19680,19697,19731,19748,19765,19799,19816,19833,19867,19884,19901,19918,19935,19969,20000,21199,21209,21224,21229,21245,21279,21297,21313,21347,21365,21381,21413,21429,21461,21477,21511,21529,21545,21579,21611,21627,21645,21661,22855,22860,22866,22873,22887,22904,22907,22921,22935,22952,22955,22969,22983,23000,23003,23017,23031,23048,23051,23065,23079,23096,23099,23113,23127,23144,23147,23158,23161,23175,23189,23209,23223,23240,23243]}} diff --git a/crates/tools/python/ejs-benchmark/3.json b/crates/tools/python/ejs-benchmark/3.json deleted file mode 100644 index 14b5acd091..0000000000 --- a/crates/tools/python/ejs-benchmark/3.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":400649.937104,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":71894.456943,"failures":[39,75,110,172,183,187,189,193,195,199,201,243,350,632,646,655,664,673,687,696,705,717,726,735,748,760,773,786,799,813,825,837,849,858,874,883,896,908,920,935,952,962,974,987,1003,1018,1028,1039,1051,1064,1075,1088,1099,1112,1121,1146,1157,1170,1181,1194,1203,1228,1239,1252,1263,1276,1291,1302,1313,1324,1335,1346,1711,1715,1783,1870,1885,1888,1894,1909,1912,1918,1933,1936,1957,1974,1989,2063,2073,2104,2114,2123,2133,2143,2153,2192,2204,2216,2228,2265,2284,2290,2303,2332,2396,2408,2414,2420,2432,2438,2444,2457,2463,2469,2482,2488,2494,2506,2524,2530,2536,2548,2554,2560,2573,2579,2585,2598,2604,2610,2622,2640,2646,2652,2664,2670,2676,2689,2695,2701,2714,2720,2726,2738,2756,2768,2781,2794,2800,2812,2818,2831,2837,2850,2856,2947,2959,2965,2971,2983,2989,2995,3008,3014,3020,3033,3039,3045,3057,3075,3081,3087,3099,3105,3111,3124,3130,3136,3149,3155,3161,3173,3191,3197,3203,3215,3221,3227,3240,3246,3252,3265,3271,3277,3289,3307,3319,3332,3345,3351,3363,3369,3382,3388,3401,3407,3498,3510,3516,3522,3534,3540,3546,3559,3565,3571,3584,3590,3596,3608,3626,3632,3638,3650,3656,3662,3675,3681,3687,3700,3706,3712,3724,3742,3748,3754,3766,3772,3778,3791,3797,3803,3816,3822,3828,3840,3858,3870,3883,3896,3902,3914,3920,3933,3939,3952,3958,4037,4049,4055,4061,4073,4079,4085,4098,4104,4110,4123,4129,4135,4147,4165,4171,4177,4189,4195,4201,4214,4220,4226,4239,4245,4251,4263,4281,4287,4293,4305,4311,4317,4330,4336,4342,4355,4361,4367,4379,4397,4409,4422,4435,4441,4453,4459,4472,4478,4491,4497,4548,4558,4567,4577,4586,4596,4629,4641,4647,4653,4665,4671,4677,4690,4696,4702,4715,4721,4727,4739,4757,4763,4769,4781,4787,4793,4806,4812,4818,4831,4837,4843,4855,4873,4879,4885,4897,4903,4909,4922,4928,4934,4947,4953,4959,4971,4989,5001,5014,5027,5033,5045,5051,5064,5070,5083,5089,5140,5150,5159,5169,5178,5188,5269,5289,5292,5298,5318,5321,5327,5348,5351,5357,5378,5381,5387,5407,5430,5450,5471,5492,5498,5518,5524,5545,5551,5572,5578,5701,5713,5716,5722,5734,5737,5743,5756,5759,5765,5778,5781,5787,5799,5814,5826,5839,5852,5858,5870,5876,5889,5895,5908,5914,6010,6022,6025,6031,6043,6046,6052,6065,6068,6074,6087,6090,6096,6108,6123,6135,6148,6161,6167,6179,6185,6198,6204,6217,6223,6347,6368,6371,6377,6398,6401,6407,6429,6432,6438,6460,6463,6469,6490,6514,6535,6557,6579,6585,6606,6612,6634,6640,6662,6668,6764,6793,6800,6822,6852,6882,6910,6918,6941,6949,6972,7002,7030,7038,7061,7069,7164,7188,7191,7197,7221,7224,7230,7255,7258,7264,7289,7292,7298,7322,7349,7373,7398,7423,7429,7453,7459,7484,7490,7515,7521,7629,7653,7795,7813,7816,7822,7840,7843,7849,7868,7871,7877,7896,7899,7905,7923,7944,7962,7981,8000,8006,8024,8030,8049,8055,8074,8080,8167,8201,8207,8214,8232,8244,8249,8261,8265,8277,8292,8309,8346,8367,8389,8410,8431,8470,8485,8490,8509,8517,8549,8554,8641,8662,8665,8692,8695,8701,8723,8726,8732,8754,8757,8784,8808,8829,8852,8858,8879,8885,8907,8913,8935,8941,9031,9037,9054,9060,9081,9087,9116,9134,9140,9153,9159,9172,9178,9191,9197,9209,9215,9228,9234,9473,9477,9478,9479,9482,9484,9485,9486,9488,9489,9492,9493,9496,9497,9500,9501,9504,9505,9508,9509,9512,9513,9516,9517,9520,9521,9524,9525,9528,9529,9532,9533,9536,9537,9540,9541,9544,9545,9548,9549,9552,9553,9556,9557,9560,9561,9564,9565,9568,9569,9572,9573,9576,9577,9580,9581,9584,9585,9588,9589,9592,9593,9596,9597,9600,9601,9604,9605,9608,9609,9612,9613,9616,9617,9620,9621,9624,9625,9628,9629,9632,9633,9636,9637,9640,9641,9644,9645,9648,9649,9652,9653,9656,9657,9660,9661,9664,9665,9668,9669,9672,9673,9676,9677,9680,9681,9684,9685,9688,9689,9692,9693,9696,9697,9700,9701,9704,9705,9708,9709,9712,9713,9716,9717,9720,9721,9724,9725,9728,9729,9732,9733,9736,9737,9741,9750,9752,9761,9763,9772,9774,9783,9785,9794,9796,9805,9807,9816,9818,9827,9829,9838,9840,9849,9851,9860,9862,9871,9873,9882,9884,9893,9895,9904,9906,9915,9917,9926,9928,9937,9939,9948,9950,9959,9961,9970,9972,9981,9983,9992,9994,10003,10005,10014,10016,10025,10027,10036,10038,10047,10049,10058,10060,10069,10071,10080,10082,10091,10093,10102,10104,10113,10115,10124,10126,10135,10137,10146,10148,10157,10159,10168,10170,10179,10181,10190,10192,10201,10203,10212,10214,10223,10225,10234,10236,10245,10247,10256,10258,10267,10269,10278,10280,10289,10291,10300,10302,10311,10313,10322,10324,10333,10335,10344,10346,10355,10357,10366,10368,10377,10379,10388,10390,10399,10401,10410,10412,10421,10423,10432,10434,10443,10445,10464,10466,10469,10470,10473,10474,10477,10478,10481,10482,10485,10486,10489,10490,10493,10494,10497,10498,10501,10502,10505,10506,10509,10510,10513,10514,10517,10518,10521,10522,10525,10526,10529,10530,10533,10534,10537,10538,10541,10542,10545,10546,10549,10550,10553,10554,10557,10558,10561,10562,10565,10566,10569,10570,10573,10574,10577,10578,10581,10582,10585,10586,10589,10590,10593,10594,10597,10598,10601,10602,10605,10606,10609,10610,10613,10614,10617,10618,10621,10622,10625,10626,10629,10630,10633,10634,10637,10638,10641,10642,10645,10646,10649,10650,10653,10654,10657,10658,10661,10662,10665,10666,10669,10670,10673,10674,10677,10678,10681,10682,10685,10686,10689,10690,10693,10694,10697,10698,10701,10702,10705,10706,10709,10710,10713,10714,10717,10718,10721,10724,10726,10727,10728,10730,10731,10732,10734,10735,10736,10738,10739,10740,10742,10743,10744,10746,10747,10748,10750,10751,10752,10754,10755,10756,10758,10759,10760,10762,10763,10764,10766,10767,10768,10770,10771,10772,10774,10775,10776,10778,10779,10780,10782,10783,10784,10786,10787,10788,10790,10791,10792,10794,10795,10796,10798,10799,10800,10802,10803,10804,10806,10807,10808,10810,10811,10812,10814,10815,10816,10818,10819,10820,10822,10823,10824,10826,10827,10828,10830,10831,10832,10834,10835,10836,10838,10839,10840,10842,10843,10844,10846,10847,10848,10850,10851,10852,10854,10855,10856,10858,10859,10860,10862,10863,10864,10866,10867,10868,10870,10871,10872,10874,10875,10876,10878,10879,10880,10882,10883,10884,10886,10887,10888,10890,10891,10892,10894,10895,10896,10898,10899,10900,10902,10903,10904,10906,10907,10908,10910,10911,10912,10914,10915,10916,10918,10919,10920,10922,10923,10924,10926,10927,10928,10930,10931,10932,10934,10935,10936,10938,10939,10940,10942,10943,10944,10946,10947,10948,10950,10951,10952,10954,10955,10956,10958,10959,10960,10962,10963,10964,10966,10967,10968,10970,10971,10972,10974,10975,10976,10978,10979,10983,10998,11000,11014,11016,11030,11032,11046,11048,11062,11064,11078,11080,11094,11096,11110,11112,11126,11128,11142,11144,11158,11160,11174,11176,11190,11192,11206,11208,11222,11224,11238,11240,11254,11256,11270,11272,11286,11288,11302,11304,11318,11320,11334,11336,11350,11352,11366,11368,11382,11384,11398,11400,11414,11416,11430,11432,11446,11448,11462,11464,11478,11480,11494,11496,11510,11512,11526,11528,11542,11544,11558,11560,11574,11576,11590,11592,11606,11608,11622,11624,11638,11640,11654,11656,11670,11672,11686,11688,11702,11704,11718,11720,11734,11736,11750,11752,11766,11768,11782,11784,11798,11800,11814,11816,11830,11832,11846,11848,11862,11864,11878,11880,11894,11896,11910,11912,11926,11928,11942,11944,11958,11960,11974,11976,11990,11992,12006,12008,12031,12034,12035,12038,12039,12042,12043,12046,12047,12050,12051,12054,12055,12058,12059,12062,12063,12066,12067,12070,12071,12074,12075,12078,12079,12082,12083,12086,12087,12090,12091,12094,12095,12098,12099,12102,12103,12106,12107,12110,12111,12114,12115,12118,12119,12122,12123,12126,12127,12130,12131,12134,12135,12138,12139,12142,12143,12146,12147,12150,12151,12154,12155,12158,12159,12162,12163,12166,12167,12170,12171,12174,12175,12178,12179,12182,12183,12186,12187,12190,12191,12194,12195,12198,12199,12202,12203,12206,12207,12210,12211,12214,12215,12218,12219,12222,12223,12226,12227,12230,12231,12234,12235,12238,12239,12242,12243,12246,12247,12250,12251,12254,12255,12258,12259,12262,12263,12266,12267,12270,12271,12274,12275,12278,12279,12282,12283,12286,12306,12584,12595,12606,12617,12628,12639,12650,12661,12672,12683,12694,12705,12716,12727,12738,12749,12760,12771,12782,12793,12804,12815,12826,12837,12848,12859,12870,12881,12892,12903,12914,12925,12936,12947,12958,12969,12980,12991,13002,13013,13024,13035,13046,13057,13068,13079,13090,13101,13112,13123,13134,13145,13156,13167,13178,13189,13200,13211,13222,13233,13244,13255,13266,13277,13300,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13372,13376,13380,13384,13388,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476,13480,13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13558,13562,13566,13570,13574,13578,13582,13586,13590,13594,13598,13602,13606,13610,13614,13618,13622,13626,13630,13634,13638,13642,13646,13650,13654,13658,13662,13666,13670,13674,13678,13682,13686,13690,13694,13698,13702,13706,13710,13714,13718,13722,13726,13730,13734,13738,13742,13746,13750,13754,13758,13762,13766,13770,13774,13778,13782,13786,13790,13794,13798,13802,13806,13810,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14865,14869,14873,14877,14881,14885,14889,14893,14897,14901,14905,14909,14913,14917,14921,14925,14929,14933,14937,14941,14945,14949,14953,14957,14961,14965,14969,14973,14977,14981,14985,14989,14993,14997,15001,15005,15009,15013,15017,15021,15025,15029,15033,15037,15041,15045,15049,15053,15057,15061,15065,15069,15073,15077,15081,15085,15089,15093,15097,15101,15105,15109,15113,15117,15132,15947,16002,16021,16042,16048,16094,16103,16127,16136,16177,16187,16200,16213,16229,16242,16248,16262,16275,16288,16301,16307,16317,16323,16333,16339,16356,16360,16369,16373,16382,16388,16392,16401,16407,16427,16437,16447,16457,16463,16477,16483,16515,16525,16538,16544,16554,16560,16665,16671,16684,16690,16703,16709,16719,16725,16780,17718,17728,17811,17828,17838,17857,17867,17877,17887,17897,17907,17957,17973,17986,18000,18012,18022,18032,18042,18057,18071,18126,18238,18309,18328,18492,18496,18497,18502,18503,18508,18509,18514,18515,18531,18546,18572,18585,18589,18603,18609,18631,18711,18759,18815,18830,18839,18887,19111,19132,19160,19198,19354,19390,19441,19474,19547,19558,19683,19733,19785,19791,19806,19812,19827,19833,19850,19856,19919,19925,19945,19951,19957,19966,19972,19978,19994,20000,20006,20032,20038,20044,20140,20146,20163,20169,20186,20192,20200,20219,20225,20236,20252,20258,20270,20276,20287,20303,20309,20320,20336,20342,20362,20368,20374,20380,20393,20404,20431,20437,20469,20475,20486,20492,20517,20523,20529,20553,20559,20580,20656,20781,20870,20888,20926,20973,20996,21048,21063,21072,21088,21094,21107,21113,21125,21131,21142,21148,21162,21168,21185,21191,21197,21243,21249,21264,21270,21286,21292,21298,21304,21330,21336,21342,21377,21383,21389,21411,21507,21537,21620,21646,21754,21793,21816,21852,21910,21982,21997,22006,22024,22030,22036,22048,22054,22068,22074,22086,22092,22107,22113,22119,22133,22139,22145,22159,22165,22181,22187,22206,22212,22241,22247,22253,22280,22286,22292,22315,22339,22345,22351,22405,22537,22585,22591,22602,22608,22622,22628,22647,22653,22883,22898,22914,22931,22956,22977,22993,24625,24630,24637,24644,24651,24656,24663,24670,24677,24682,24689,24696,24703,24710,24717,24724,24731,24738,24745,24750,24757,24764,24771,24778,24785,24792,24955,24959,24967,24976,24980,24988,24996,25004,25008,25012,25023,25026,25048,25053,25086,25135,25144,25149,25157,25164,25172,25179,25187,25194,25202,25207,25215,25222,25230,25237,25245,25252,25260,25265,25273,25280,25288,25295,25303,25310,25318,25325,25333,25340,25348,25355,25363,25370,25378,25385,25393,25400,25408,25413,25421,25428,25436,25443,25451,25458,25466,25473,25481,25488,25496,25503,25511,25516,25527,25538,25549,25561,25579,25597,25615,25633,25651,25669,25685,25701,25721,25741,25769,25798,25834,25871,25887,25903,25915,25931,25945,25961,25976,25992,26010,26026,26044,26060,26077,26093,26110,26126,26370,26373,26406,26461,29526,49565,49763,49961,50017,50021,50025,50029,60479,60483,60487,60669]},"rocketpool_6a9dbfd8":{"timeMs":153591.01232399998,"failures":[2253,2256,2280,2284,2719,2722,2758,2829,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,6508,6620,6704,6736,6748,6828,6869,6882,6912,6916,6954,6967,7008,7013,7065,7073,7090,7105,7330,7372,7446,7503,7538,7553,7594,7599,7612,7641,7702,7705,7749,7770,7809,8334,8370,8415,8483,8487,8498,8553,8627,8632,8645,8712,8739,8764,8808,8819,8850,8893,9338,9372,9419,9489,9502,9544,9559,9635,9639,9705,9721,9749,9764,9828,9839,9840,10358,10400,10449,10521,10579,10582,10620,10625,11171,11215,11267,11314,11362,11394,11403,11438,11466,12017,12039,12158,12196,12337,12389,12454,12478,12532,12550,13065,13101,13198,13288,13318,13323,13338,13373,13440,13467,13979,14031,14259,14291,14390,14494,14512,14521,14567,14612,14638,14651,14676,14694,14758,14775,15370,15426,15463,15543,15722,15814,15889,15891,15937,15974,16464,16536,16665,16687,16705,16727,16759,16780,16916,16935,16938,17464,17554,17631,17675,17743,17748,17833,17854,17891,17908,17916,17957,18614,18666,18760,18796,18842,18845,18888,18904,18915,18981,19066,19084,19138,19737,19825,19879,19919,19939,19970,19987,20001,20006,20085,20086,20147,20777,20871,20943,20959,21049,21050,21065,21066,21081,21112,21179,21209,21762,21763,21782,21793,22085,22777,22839,23073,23075,23599,24154,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,27837,28420,28421,28932,28975,29355,29458,29786,29805,30179,30201,30245,30323,30341,30344,30405,30408,30431,30449,30870,30916,30983,30999,31019,31030,31053,31056,31114,31116,31279,31313,31355,31373,31398,31447,31453,31469,31490,31535,31539,31697,31740,32061,32409,32434,32493,32828,32829,33151,33168,33430,33804,33823,34103,34146,34440,34481,34789,34790,35078,35134,35262,35298,36252,36279,36280,36355,36460,36556,36574,36592,36605,36787,37139,37209,38091,38345,38364,38392,38393,38713,38804,38805,38889,39062,39087,39088,39332,39361,39540,39541,39803,39814,39823,39832,39973,39982,40656,40681,40941,41056,41080,41083,41379,41388,41420,41559,41658,41841,41850,41869,41994,42128,42293,42610,42627,42628,42950,43005,43066,43089,43090,43314,43533,43542,43567,43578,43794,43811,43999,44021,44146,44402,44663,44666,44739,45094,45114,45931,45948,46954,46976,46994,47411,47702,47721,47739,48401,48419,48551,48573,48592,48668,48878,48901,48987,49009,49034,49052,49067,49084,49684,49778,49779,50086,50535,50794,50825,51013,51062,51287,51432,51479,51814,52049,52050,52165,52286,52325,52542,52557,53176,53266,53454,53494,53541,53900,53947,53948,54578,54610,54611,54805,54806,55125,55132,55759,55768,55777,55788,55864,55966,56003,56023,56038,56052,56254,56271,56296,56321,58033,58044,58045,58634,58666,58693,59774,59811,60874,60910,61082,61653,61804,61823,61829,61830,62323,62324,62465,63029,63032,63189,63206,63716,63752,64440,64441,64562,65060,65186,65187,65852,66353,66354,66491,66509,66656,67551,67558,67689,67690,68367,68368,68883,69047,69048,69726,70392,70430,71134,71314,71824,72510,72650,72677,73195,73222,74038,74039,74182,74183,74674,74696,74706,75363,75404,75427,75580,75955,75956,75961,75967,75968,75973,75974,75995,76009,76193,76852,76872,76892,77989,78007,78029,78683,78729,79254,79295,79826,79872,79933,79934,80621,80624,81107,81291,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,85051,85069,85137,85160,85766,85786,85804,85829,86279,86297,86315,86338,87514,87588,87606,87633,88239,88261,88307,88330,88736,88754,88772,88795,89922,89931,89940,90026,90052,90071,90145,90167,90714,90732,90769,90786,90905,90929,92169,93185,93388,93412,93574,94726,95864,95873,95882,95958,95982,96011,96029,96049,96067,96086,96104,96118,96142,96172,96190,96208,96696,102590,102613,102622,102633,102709,102731,103429,103461,103567,103597,103631,103649,103663,103695,103727,103755,104137,104171,104307,104328,104329,105077,105088,105226,105264,105648,105649,105678,105679,105812,105838,105839,106586,106588,106714,106816,107166,107242,107268,107315,107329,107351,107356,107373,107379,107396,107406,108040,108047,108074,108102,108319,108767,108799,108847,108875,108898,108901,109655,109672,109683,109702,109796,109826,110191,110348,110472,110496,110537,110554,110572,111275,111397,111437,111509,111512,111883,111969,112017,112020,112085,112123,112171,112180,112223,112271,112893,112902,113138,113139,113713,113741,113761,113795,114493,114516,114525,114534,114608,114630,114810,114872,115366,115412,115454,115468,115500,115533,115565,115615,116200,116246,116375,116482,116483,117037,117040,117231,117265,117305,117318,117671,117775,118052,118076,118077,118497,118648,118869,118977,119027,119638,119686,119725,119735,119757,119761,119777,119781,119797,119827,119910,119923,119950,120004,120634,120738,121344,121423,121445,121466,121469,122089,122148,122178,122207,122218,122334,122386,122533,123490,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,127450,128010,128019,128050,128562,129710,130110,130323,130354,130382,130383,130985,131359,131370,131393,131412,131490,131503,131504,132005,132006,132188,132204,132205,133245,133269,133337,133338,133389,133390,133889,133900,134041,134052,134110,134112,134744,134745,135246,135259,135685,135952,135953,136386,136396,136397,136597,137590,137631,137779,137790,137866,137890,138932,139727,139728,139798,140204,140260,140859,140899,140900,140995,141019,141433,141436,141723,141748,141769,142740,142746,142819,142877,142915,143596,143597,143981,144157,144654,144792,144814,145450,146514,146521,146617,146715,147353,147393,147394,147880,147881,148605,148616,148626,148704,148728,149453,149482,149483,150509,150510,150713,150779,152548,152654,152712,154580,154630,155766,156612,156621,156630,157786,157808,157833,157851,157869,157884,158463,158600,158680,164880,165031,165180,165181,167481,167529,167571,167614,167615,167640,167641,167665,167701,167732,167762,167763,167787,167808,167809,168149,168811,169401,169463,169565,169583,169777,169797,171747,171767,171903,171933,173683,173720,174017,174037,175592,175771,175789,175926,176013,177671,177685,177696,177705,177730,177745,177756,177767,177776,177862,177884,178068,178092,178132,178146,179860,179952,180096,181779,181780,182118,183873,183874,184091,184105,184119,185979,185993,186220,186498,186499,188290,188308,188323,188340,188388,188576,188604,188852,190204,190238,190272,190372,190402,190712,190732,192087,192248,192294,192436,192741,192759,192778,193125,194286,194326,194346,194347,194721,194743,194758,194777,194818,196292,196334,196374,196492,196530,196688,196716,196717,196741,196742,196772,196773,196799,196804,198498,198516,198539,198556,198593,198797,198839,200187,200231,200297,200325,200415,200755,200773,200788,201693,202092,202138,202212,202309,202354,202390,202558,202591,204047,204129,204146,204172,204212,204254,204422,204423,205811,205831,205908,205933,205980,206022,206894,207382,207432,207883,207901,207916,207933,208043,208721,209261,209283,209364,209476,209514,209530,209548,209551,209564,209567,209702,209708,209722,209728,209739,211149,211179,211194,211223,211258,211406,211450,211522,212482,212540,212618,212652,212790,212840,212985,213018,213068,213274,214094,214130,214250,214350,214402,214444,214576,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":6933.748425000001,"failures":[195,271,281,306,316,324,338,351,361,367,465,480,486,496,503,505,510,512,517,523,534,554,576,598,605,629,632,643,647,649,651,661,665,667,670,673,674,675,676,687,690,692,695,698,699,700,701,709,713,716,724,728,731,739,743,746,748,756,767,770,772,784,799,814,819,872,898,906,1242,1250,1258,1266,1280,1288,1296,1304,1318,1329,1337,1343,1351,1357,1365,1371,1379,1385,1393,1399,1407,1413,1421,1427,1435,1443,1491,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1586,1598,1620,1621,1623,1639,1642,1647,1652,1657,1662,1667,1672,1677,1682,1692,1710,1718,1728,1741,1753,1761,1772,1780,1785,1822,1836,1841,1846,1879,1885,1887,1907,1919,1939,1959,1987,2023,2043,2049,2055,2076,2097,2117,2145,2181,2196,2203,2210,2232,2260,2289,2324,2339,2345,2351,2358,2384,2412,2448,2511,2544,2550,2556,2563,2590,2619,2656,2721,2758,2762,2766,2769,2801,2806,2815,2816,2818,2825,2831,2838,2842,2847,2852,2858,2861,2862,2864,2871,2877,2886,2894,2898,2905,2908,2909,2914,2917,2919,2923,2934,2935,2937,2969,2986,2988,2992,2993,3020,3047,3052,3064,3071,3076,3108,3119,3125,3156,3178,3179,3189,3192,3194,3195,3257,3261,3265,3275,3277,3284,3287,3311,3359,3366,3455,3456,3458,3479,3489,3490,3492,3498,3535,3571,3572,3595,3610,3643,3657,3677,3716,3777,3784,3829,3838,3848,3863,3874,3891,3931,3937,3982,3991,4006,4017,4029,4035,4061,4072,4075,4077,4091,4095,4099,4103,4114,4122,4130,4134,4138,4142,4147,4155,4162,4171,4175,4179,4183,4279,4294,4297,4299,4317,4321,4328,4332,4334,4338,4348,4356,4419,4423,4428,4432,4436,4438,4442,4452,4459,4525,4529,4534,4538,4543,4545,4549,4554,4558,4562,4571,4578,4657,4662,4668,4669,4673,4677,4681,4685,4687,4691,4697,4705,4711,4740,4744,4772,4778,4813,4824,4839,4842,4844,4935,4937,4938,4940,4943,4945,4947,4994,5006,5014,5031,5059,5134,5152,5174,5248,5267]},"seaport_4f4e7c20":{"timeMs":33036.88153,"failures":[263,272,283,292,303,328,352,361,372,381,392,417,441,450,461,470,481,506,530,539,550,559,570,595,621,630,641,650,661,684,691,711,720,731,740,751,776,800,809,820,829,840,865,889,898,909,918,936,947,972,1000,1010,1021,1030,1057,1083,1092,1103,1112,1123,1144,1156,1165,1176,1185,1196,1217,1229,1238,1249,1258,1269,1290,1302,1311,1322,1331,1341,1362,1374,1383,1394,1403,1414,1435,1447,1454,1465,1474,1485,1506,1518,1527,1538,1547,1558,1579,1591,1600,1611,1620,1631,1652,1664,1673,1684,1693,1704,1725,1737,1746,1757,1766,1777,1798,1810,1819,1830,1839,1850,1871,1883,1892,1903,1912,1923,1944,1956,1965,1976,1985,1996,2005,2015,2036,2048,2057,2068,2077,2088,2111,2118,2130,2139,2148,2157,2168,2177,2188,2209,2221,2230,2241,2250,2261,2282,2294,2303,2314,2323,2334,2355,2367,2376,2387,2396,2407,2428,2440,2449,2460,2471,2492,2504,2513,2524,2533,2544,2573,2585,2594,2605,2616,2637,2649,2658,2669,2678,2689,2710,2722,2731,2740,2749,2758,2767,2785,2876,2897,2918,2942,2951,2960,2969,2978,2987,2996,3005,3016,3025,3036,3045,3056,3065,3076,3085,3096,3117,3136,3157,3174,3186,3195,3224,3257,3290,3320,3329,3358,3391,3424,3454,3463,3494,3521,3548,3572,3581,3590,3599,3624,3647,3661,3670,3679,3688,3713,3736,3748,3755,3762,3773,3802,3832,3841,3868,3896,3903,3910,3919,3948,3978,3985,3992,4001,4030,4050,4059,4088,4108,4115,4122,4131,4160,4180,4187,4194,4203,4212,4221,4246,4274,4283,4292,4301,4324,4352,4361,4368,4377,4402,4430,4439,4448,4457,4466,4475,4503,4529,4538,4547,4556,4565,4574,4603,4629,4638,4657,4669,4678,4711,4739,4748,4781,4809,4818,4851,4879,4888,4917,4947,4956,4965,4974,4985,5014,5050,5059,5090,5114,5123,5132,5141,5150,5159,5198,5224,5233,5242,5251,5290,5314,5323,5332,5341,5377,5389,5398,5407,5416,5457,5481,5490,5499,5508,5549,5573,5582,5591,5600,5641,5665,5672,5681,5710,5732,5739,5746,5755,5784,5808,5815,5822,5831,5860,5884,5891,5898,5907,5936,5960,5967,5974,5983,6012,6036,6043,6052,6081,6103,6112,6141,6161,6170,6199,6219,6226,6235,6246,6275,6287,6296,6305,6312,6321,6350,6362,6371,6380,6387,6394,6403,6432,6446,6455,6482,6514,6523,6550,6582,6591,6616,6644,6653,6698,6736,6745,6790,6823,6832,6877,6915,6926,6971,7009,7018,7063,7101,7110,7149,7177,7186,7221,7249,7258,7297,7324,7355,7383,7392,7431,7458,7489,7517,7526,7535,7542,7549,7558,7595,7623,7632,7659,7675,7684,7711,7966,7975,8002,8034,8043,8070,8102,8111,8138,8170,8179,8206,8238,8247,8272,8369,8378,8401,8429,8438,8461,8487,8496,8528,8556,8565,8582,8597,8625,8634,8657,8682,8691,8708,8723,8751,8760,8783,8811,8820,8837,8852,8880,8889,8922,8960,8969,8995,9027,9036,9063,9093,9102,9131,9163,9172,9189,9208,9240,9249,9276,9308,9317,9344,9376,9385,9412,9434,9443,9470,9492,9501,9528,9550,9559,9568,9577,9606,9644,9653,9660,9669,9698,9736,9745,9752,9761,9790,9828,9837,9844,9853,9882,9918,9927,9936,9945,9974,10012,10019,10037,10046,10074,10112,10119,10128,10137,10146,10186,10229,10238,10247,10256,10275,10286,10303,10341,10350,10357,10366,10395,10423,10432,10439,10448,10477,10503,10512,10521,10530,10541,10570,10606,10615,10624,10633,10644,10673,10709,10718,10727,10736,10747,10775,10811,10820,10829,10838,10849,10878,10914,10923,10932,10941,10970,11006,11015,11024,11033,11058,11086,11095,11104,11113,11140,11172,11181,11190,11199,11228,11264,11273,11282,11291,11418,11650,11661,11670,11679,11708,11744,11753,11762,11771,11800,11826,11835,11844,11853,11882,11908,11917,11926,11935,11964,11992,12001,12028,12056,12065,12092,12120,12129,12156,12184,12193,12220,12248,12257,12286,12306,12315,12344,12364,12373,12382,12391,12416,12450,12459,12468,12477,12504,12538,12547,12556,12565,12592,12626,12635,12644,12653,12680,12714,12723,12732,12741,12770,12796,12805,12814,12823,12852,12878,12887,12896,12905,12916,12943,12977,12986,12995,13004,13015,13042,13076,13085,13094,13103,13130,13164,13173,13182,13191,13218,13252,13261,13270,13279,13308,13334,13343,13352,13361,13389,13575,13651,13658,13665,13672,13679,13688,13697,13709,13718,13725,13738,13747,13763,13770,13781,13792,13803,13812,13830,13837,13848,13857,13866,13877,13893,13900,13911,13920,13929,13940,13960,13967,13976,13985,13994,14003,14012,14021,14043,14052,14061,14070,14081,14090,14099,14128,14157,15903,16143,16150,16157,16166,16175,16187,16194,16201,16210,16219,16231,16238,16252,16258,16265,16272,16279,16286,16293,16300,16309,16318,16332,16339,16346,16360,16367,16374,16381,16388,16395,16402,16409,16416,16423,16430,16437,16446,16455,16469,16476,16483,16490,16497,16504,16513,16520,16527,16534,16541,16550,16559,16568,16579,16590,16599,16631,16638,16645,16652,16661,16672,16701,16713,16727,16739,16751,16809,16820,16831,16836,16846,16857,16868,16884,16893,16905,16917,16929,16948,16955,16962,16971,16980,16987,16992,16999,17008,17015,17024,17031,17038,17250,17257,17321,17335,17344,17365,17374,17402,17448,17457,17464,17473,17480,17496,17505,17526,17535,17544,17601,17610,17627,17641,17650,17667,17676,17685,17701,17710,17727,17736,17747,17756,17772,17781,17798,17816,17832,17841,17860,17869,17878,17887,17903,17912,17931,17940,17949,17990,18006,18015,18036,18049,18076,18108,18117,18136,18147,18160,18187,18219,18228,18247,18258,18271,18298,18552,18855,19087,19749,19758,19767,19814,19823,19844,19861,19891,19900,19921,19937,19967,19976,20005,20030,20042,20051,20080,20105,20119,20130,20147,20163,20172,20183,20209,20223,20232,20251,20265,20274,20293,20307,20316,20337,20349,20358,20379,20391,20400,20421,20433,20442,20463,20477,20486,20513,20520,20542,20551,20570,20578,20595,20625,20634,20643,20652,20671,20685,20692,20701,20719,20738,20752,20759,20768,20777,20786,20807,20830,20839,20856,20863,20877,20886,20903,20910,20917,20931,20940,20965,20972,20979,20988,21010,21019,21044,21053,21075,21084,21109,21123,21132,21157,21169,21176,21185,21212,21224,21231,21240,21267,21279,21286,21295,21332,21344,21351,21360,21397,21409,21416,21425,21462,21474,21481,21490,21527,21539,21548,21585,21597,21606,21643,21655,21664,21701,21713,21722,21759,21771,21778,21787,21814,21828,21837,21862,21874,21883,21902,21916,21925,21950,21964,21973,21990,22002,22011,22030,22042,22051,22070,22084,22093,22110,22124,22133,22150,22164,22173,22190,22202,22211,22267,22290,22302,22309,22316,22325,22344,22351,22358,22375,22405,22412,22421,22432,22451,22458,22473,22503,22510,22517,22526,22545,22559,22568,22577,22586,22595,22622,22636,22645,22654,22663,22672,22699,22706,22720,22729,22738,22747,22756,22783,22797,22808,22817,22826,22835,22861,22873,22880,22887,22896,22915,22932,22962,22969,22976,22985,23014,23026,23033,23040,23049,23068,23085,23117,23126,23143,23157,23166,23183,23197,23206,23223,23237,23246,23263,23277,23286,23303,23317,23326,23343,23357,23366,23383,23397,23406,23431,23445,23454,23479,23493,23502,23519,23536,23568,23577,23594,23601,23618,23668,23675,23682,23694,23703,23724,23733,23750,23782,23791,23816,23823,23830,23860,23880,23889,23896,23905,23916,23930,23948,23955,23975,23999,24013,24022,24029,24038,24049,24068,24080,24089,24098,24115,24126,24143,24179,24196,24208,24225,24243,24252,24261,24270,24284,24291,24300,24309,24318,24342,24354,24363,24372,24381,24400,24412,24421,24430,24439,24468,24480,24489,24498,24505,24524,24533,24542,24559,24595,24604,24613,24622,24641,24658,24689,24703,24712,24721,24730,24741,24760,24774,24783,24798,24834,24843,24852,24861,24872,24891,24908,24944,24951,24976,24988,24995,25020,25031,25042,25064,25073,25092,25114,25136,25158,25170,25179,25198,25210,25219,25238,25260,25272,25279,25304,25336,25352,25361,25378,25392,25401,25418,25427,25436,25458,25470,25482,25496,25505,25524,25533,25547,25556,25573,25582,25596,25605,25622,25631,25643,25652,25673,25682,25696,25705,25722,25731,25745,25754,25771,25780,25794,25803,25830,25839,25851,25860,25889,25898,25912,25921,25940,25949,25965,25974,25993,26002,26016,26025,26044,26053,26077,26101,26125,26149,26163,26199,26213,26249,26265,26272,26302,26318,26325,26352,26382,26389,26410,26426,26433,26454,26470,26477,26498,26514,26521,26538,26571,26585,26594,26601,26610,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34474,34483,34494,34503,34528,34558,34567,34578,34587,34612,34642,34651,34662,34671,34680,34754,34770,34779,34790,34799,34808,34817,34826,34835,34874,34887,34903,34912,34921,34937,34946,34957,34973,34982,35002,35018,35027,35034,35048,35057,35068,35077,35097,35098,35112,35121,35132,35146,35155,35166,35175,35194,35201,35215,35224,35235,35244,35270,35286,35300,35309,35320,35327,35341,35350,35361,35370,35387,35401,35410,35421,35430,35449,35463,35472,35483,35492,35501,35510,35519,35530,35548,35799,35808,35817,35841,35871,35880,35889,35914,35944,35953,35964,36007]},"synthetix_9a3a109f":{"timeMs":388026.64951200003,"failures":[12,13,18,19,24,25,30,31,36,37,42,43,48,49,54,55,60,61,66,67,72,73,78,79,84,85,90,91,96,97,102,103,108,109,114,115,120,121,139,140,145,146,151,152,237,266,1361,1362,1373,1374,1391,1392,1729,1908,2038,2042,2178,2208,2210,2211,2212,2297,2375,2376,2414,2415,2478,2483,2486,2496,2500,2501,2503,2505,2605,2610,2615,2622,2813,2814,2815,2865,2873,2956,2957,2959,2960,2979,2981,2984,2986,2997,2998,3006,3008,3013,3014,3019,3020,3027,3030,3037,3042,3050,3054,3063,3068,3079,3082,3091,3096,3106,3110,3119,3122,3128,3134,3144,3148,3157,3160,3167,3170,3179,3183,3191,3193,3201,3204,3211,3214,3246,3249,3260,3263,3270,3273,3280,3285,3294,3299,3306,3309,3314,3327,3334,3337,3356,3358,3366,3367,3376,3386,3396,3399,3408,3413,3422,3425,3432,3435,3442,3445,3465,3471,3478,3481,3491,3494,3504,3514,3557,3562,3573,3576,3585,3588,3593,3602,3611,3612,3631,3636,3643,3645,3651,3655,3663,3664,3671,3674,3681,3682,3689,3692,3699,3706,3716,3718,3725,3726,3735,3742,3751,3754,3763,3765,3771,3776,3783,3787,3808,3809,3814,3815,3820,3821,3826,3827,3832,3833,3838,3839,3844,3845,3850,3851,3856,3857,3862,3863,3868,3869,3874,3875,3880,3946,3956,3963,3968,3969,3974,3975,3980,3984,3992,3993,3998,3999,4006,4007,4023,4025,4031,4035,4041,4048,4067,4070,4075,4079,4087,4090,4095,4096,4101,4102,4108,4110,4115,4116,4121,4122,4127,4128,4141,4144,4154,4157,4165,4166,4171,4172,4225,4241,4254,4264,4273,4275,4283,4286,4316,4318,4328,4331,4337,4339,4346,4348,4354,4355,4362,4363,4368,4369,4376,4379,4388,4391,4398,4399,4404,4406,4414,4415,4420,4421,4426,4427,4432,4435,4442,4445,4452,4456,4464,4468,4478,4481,4488,4493,4534,4537,4548,4552,4557,4560,4569,4570,4579,4583,4591,4592,4601,4604,4611,4614,4621,4626,4633,4636,4645,4650,4655,4660,4669,4674,4679,4684,4689,4694,4701,4704,4713,4718,4724,4727,4749,4766,4781,4787,4838,4843,4854,4857,4862,4870,4879,4889,4897,4901,4913,4919,4928,4933,4942,4947,4958,4963,4972,4975,4982,4991,5000,5001,5020,5027,5032,5035,5043,5047,5052,5055,5062,5065,5072,5075,5082,5091,5100,5101,5135,5139,5147,5151,5163,5164,5170,5174,5179,5180,5185,5186,5191,5192,5197,5198,5203,5204,5209,5210,5215,5216,5221,5287,5303,5304,5309,5310,5315,5322,5327,5328,5335,5336,5343,5346,5353,5354,5361,5366,5406,5407,5412,5415,5420,5421,5426,5427,5432,5435,5440,5447,5454,5457,5466,5469,5476,5477,5482,5483,5554,5567,5578,5580,5589,5592,5600,5603,5612,5617,5624,5627,5634,5637,5648,5651,5656,5660,5666,5668,5691,5694,5701,5702,5707,5709,5715,5720,5729,5734,5741,5748,5757,5764,5773,5780,5791,5796,5803,5808,5817,5822,5833,5836,5854,5862,5869,5874,5883,5887,5897,5901,5909,5914,5925,5928,5935,5940,5947,5954,6024,6045,6056,6066,6074,6128,6164,6202,6226,6278,6292,6321,6344,6358,6535,6605,6669,6759,7090,7135,7247,7473,7498,7529,7546,7563,7636,7649,7720,7743,7760,7766,7788,7790,7815,7832,7849,7855,8039,8078,8107,8111,8173,8194,8411,8423,8430,8490,8547,8698,8700,8701,8708,9092,9169,9177,9182,9763,9791,9816,9821,9831,9834,10134,10139,10141,10146,10152,11003,11115,11800,11927,11933,11947,11952,12038,12548,12554,13307,13338,13348,13353,13396,13443,13955,13961,14584,14607,14910,14920,15159,15165,15372,15828,16113,16177,16658,16694,16797,17007,17023,17029,17030,17288,17304,17529,17537,17538,18166,18308,18309,18879,18907,18924,19049,19051,19052,19282,19312,19325,19330,19341,19417,19441,19448,19458,19464,19473,19478,19487,19491,19499,19500,19505,19506,19511,19512,19517,19519,19531,19578,19586,19591,19597,19598,19603,19604,19609,19614,19627,19632,19645,19652,19665,19671,19681,19686,19697,19702,20329,20447,20525,20562,21169,21389,21396,21586,21704,21748,22290,22692,23389,23714,23720,23726,24342,24688,25014,25399,25475,25546,26360,26384,26400,26401,28336,28353,28359,29615,29621,30355,31566,31754,31770,31771,33580,33586,35769,35793,36140,36204,37021,37554,38292,38783,39456,39483,39901,40687,41352,41853,41859,42895,43065,43071,43571,44078,44121,44139,45383,45396,45399,45434,45447,45449,45486,45499,45505,45506,45511,45512,45517,45518,45523,45524,45529,45530,45535,45536,45541,45542,45547,45548,45553,45554,45559,45560,45565,45566,45571,45612,46503,46504,46528,46530,46535,46536,46541,46542,46547,46548,46553,46554,46559,46560,46565,46637,49961,49973,49978,59592,61615,64104,66412,69197,71535,73603,75493,77617,79784,82276,84850,87244,89788,92341,95111,97739,100571,103834,106740,110018,113263,113508,113509,113515,113662,113663,113664,113665,113666,113667,113668,113669,113670,113671,113672,113673,113674,113675,113676,113677,113678,113679,113680,113681,113682,113683,113684,113685,113686,113687,113688,113689,113690,115629,115790,115805,115843,115886,115894,115895,115900,115901,115906,116047,116102,116103,116108,116242,116414,116415,116422,116423,116428,116437,116442,116443,116448,116449,116504,116505,116510,116511,116540,116541,116547,116549,116554,116559,116564,116565,116570,116571,116576,116577,117026,117027,117065,117698,118168,118181,118194,118611,118612,118613,118614,118615,118616,118617,118618,118619,118620,118621,118622,118623,118624,118625,118626,118627,118628,118629,118630,118631,118632,118633,118634,118635,118636,118637,118638,118639,120530,120893,120955,121022,121082,123863,124080,124126,126845,127231,127244,127264,127265,127272,127563,127564,127565,127566,127567,127568,127569,127570,127571,127572,127573,127574,127575,127576,127577,127578,127579,127580,127581,127582,127583,127584,127585,127586,127587,127588,127589,127590,127591,129433,129438,129571,129577,129583,129680,129688,129878,129902,129929,129941,130120,133147,136122,136253,136544,136554,136555,136873,136874,136875,136876,136877,136878,136879,136880,136881,136882,136883,136884,136885,136886,136887,136888,136889,136890,136891,136892,136893,136894,136895,136896,136897,136898,136899,136900,136901,138735,138740,138951,139002,139017,139035,139040,139362,139389,139634,139644,139645,140005,140006,140007,140008,140009,140010,140011,140012,140013,140014,140015,140016,140017,140018,140019,140020,140021,140022,140023,140024,140025,140026,140027,140028,140029,140030,140031,140032,140033,141718,141772,141793,142068,142239,142270,142577,142647,142648,142850,142851,142852,142853,142854,142855,142856,142857,142858,142859,142860,142861,142862,142863,142864,142865,142866,142867,142868,142869,142870,142871,142872,142873,142874,142875,142876,142877,142878,144572,144705,144788,144903,145095,145263,145491,145501,145502,145664,145665,145666,145667,145668,145669,145670,145671,145672,145673,145674,145675,145676,145677,145678,145679,145680,145681,145682,145683,145684,145685,145686,145687,145688,145689,145690,145691,145692,147598,147603,147626,147711,148012,148111,148295,148310,148320,148735,148736,148737,148738,148739,148740,148741,148742,148743,148744,148745,148746,148747,148748,148749,148750,148751,148752,148753,148754,148755,148756,148757,148758,148759,148760,148761,148762,148763,150735,150766,151270,151383,151390,151391,151396,151397,151402,151419,151562,151563,151568,151629,151722,151723,151910,151914,151926,151929,151934,151997,152002,152003,152026,152037,152042,152215,152254,152257,152262,152263,152268,152269,152274,152507,152564,152697,152706,152707,152718,152721,153407,155510,155511,155516,155517,155654,155655,155660,155831,155836,155847,155852,155855,155860,155923,155928,155947,155952,155961,155966,156040,156152,156155,156160,156161,156166,156167,156342,156455,156460,156595,156602,156603,156616,156671,156732,156733,156758,156761,156784,156919,159814,159850,159858,159860,159884,159890,160060,160176,160178,160301,160433,160441,160465,160515,160638,160868,160916,160991,160997,161007,161153,161158,161160,161162,162277,162289,162297,162343,162388,162427,162437,162507,162595,162685,162715,162831,162887,163009,163019,163027,163038,163139,163390,163490,163506,163528,163587,164551,164697,164841,164891,164901,164951,164957,164969,165008,165023,165035,165040,165073,165199,166308,167309,167487,167488,167491,167742,167881,168128,168129,168445,168446,168557,168638,168645,168648,168659,168685,168686,168687,168718,168734,168743,168921,169046,169047,172487,172490,172611,172616,172654,172942,172960,173076,173096,173101,173250,173401,173511,173642,173721,173878,175003,175026,175049,175201,175356,175377,175655,175703,176730,176751,176874,176902,176926,177083,177393,177521,177522,177527,177528,177533,177534,177633,177634,177639,177640,177645,177646,177651,177652,177657,177834,178169,178174,178219,178220,178255,178268,178283,178292,178297,178302,178311,178314,178321,178323,178329,178330,178510,178580,178587,178591,178599,178600,178607,178612,179179,179196,179213,179230,179309,179388,179964,180318,180319,180330,180331,180338,180339,180384,180443,180456,180459,180470,180475,180482,180489,180494,180593,180636,180641,180648,180760,180786,180791,180798,180799,180804,180805,180810,180811,180946,180947,180952,180953,180958,180961,180968,180969,180976,180979,180984,180987,181714,181731,181748,181765,182082,182107,182393,182617,182620,182625,182628,182633,182634,182641,182644,182649,182652,182657,182660,182665,182668,182673,182774,182779,182782,182787,182790,182795,182884,182889,182892,182897,182898,182903,182904,182909,182910,183044,183271,183401,183402,183407,183408,183413,183414,183419,183420,183993,184028,184045,184062,184079,184204,184350,184957,184975,184980,184981,184986,184987,184992,184993,184998,185001,185006,185009,185014,185017,185022,185025,185030,185033,185038,185041,185046,185240,185326,185327,185334,185337,185344,185431,185442,185447,185456,185457,185462,185463,185468,185469,185474,185483,185864,185893,185910,185927,185944,185961,186605,186998,187002,187007,187008,187013,187014,187019,187088,187118,187123,187129,187131,187137,187140,187145,187148,187153,187156,187161,187164,187169,187172,187177,187180,187185,187188,187193,187384,187391,187393,187401,187404,187409,187410,187415,187416,187421,187422,188041,188064,188081,188098,188115,188132,188644,188860,188866,188872,188873,188878,188893,188900,188904,188912,188915,188922,188925,188932,189041,189449,189451,189456,189459,189472,189475,189482,189485,189494,189497,189504,189507,189864,189869,189874,189875,189980,189981,189986,189987,189992,189993,189998,189999,190251,190527,190798,190815,190842,190862,190901,191287,191288,191293,191294,191299,191300,191305,191306,191311,191312,191317,191318,191511,191512,191517,191524,191529,191530,191535,191536,191541,191542,191547,191548,191567,191568,191577,191578,191585,191586,191593,191594,191599,191602,191607,191610,191615,191618,191623,191626,192175,192204,192221,192238,192255,192272,192680,192851,192873,193119,193376,193414,193448,193454,193455,194020,194042,194087,194483,194508,194525,194551,194626,194643,195036,195097,195127,195671,195679,195767,195817,196181,196241,196258,196275,196421,196882,196899,196916,196947,197019,197045,197415,197426,197491,197492,197555,197856,198106,198121,198133,198654,198671,198688,198705,198722,198855,199335,199372,199389,199488,199881,199947,199967,199973,199980,200527,200570,200591,200757,201043,201060,201077,201163,201192,201340,201712,201737,201771,201797,201803,201896,202199,202286,202307,202755,202780,202800,202817,202843,203080,203097,203278,203357,203381,203405,203411,203798,203836,203853,203886,203921,204010,204099,204619,204636,204653,204670,204687,204737,204804,204995,205012,205118,205228,205266,205548,205552,205561,205627,205632,205652,205672,205689,205791,205895,205915,205936,206140,206143,206465,206482,206499,206516,206533,206589,206778,206971,206989,207043,207270,207288,207368,207372,207379,207458,207459,207464,208066,208083,208100,208131,208183,208235,208265,208346,208363,208461,208737,209003,209021,209025,209034,209149,209152,209162,209163,209288,209412,209502,209981,209998,210015,210032,210053,210070,210096,210533,210550,210567,210860,210870,210996,211000,211009,211047,211053,211056,211068,211551,211783,211918,211935,211952,211994,212014,212031,212057,212780,212799,212816,212837,212969,212989,212993,213002,213051,213085,213133,213800,213809,213822,213962,213970,213980,213994,214000,214052,214063,214770,214794,214800,214946,214961,215721,215742,215763,215780,215797,215950,215978,216059,216076,216093,216118,216804,216838,216848,216849,216850,217017,217034,217051,217068,217155,217174,217216,217891,217929,217957,217983,218140,218160,218168,218169,218288,218305,218322,218339,218358,219015,219091,219266,219287,219310,219335,219433,219467,219477,219641,219970,220138,220208,220383,220405,220434,220459,220483,220509,220640,220657,221306,221343,221377,221401,221567,221621,221639,221656,221675,221800,221809,222412,222453,222664,222681,222698,222715,222788,222809,222843,223546,223582,223618,223639,223849,223869,223878,223885,223917,223953,223980,224005,224026,224030,224773,224790,224807,224824,224841,225064,225106,225215,225232,225255,225276,226018,226042,226052,226277,226308,226325,226346,226474,226491,226508,227239,227260,227281,227321,227584,227601,227670,227741,227767,227785,227795,228152,228543,228554,228565,228566,228943,228960,228977,228994,229033,229054,229088,229833,229850,229867,230134,230264,230284,230300,230303,230310,231042,231107,231126,231147,231168,231189,231463,231622,231639,231695,231727,232409,232479,232489,232492,232777,232794,232811,232900,232995,233015,233102,233816,233844,233872,233902,234168,234188,234197,234201,234207,234210,234448,234465,234482,235135,235160,235236,235297,235578,235603,235720,235803,235883,235903,235911,235919,235929,236566,236691,236708,236989,237010,237041,237091,237262,237365,237386,238025,238118,238162,238182,238190,238462,238476,238479,238692,238709,238726,238828,238856,239010,239595,239658,239953,239987,240025,240205,240227,240235,240325,240354,240361,241080,241097,241158,241185,241481,241519,241611,241856,241891,241927,242625,242651,242673,242725,242741,243057,243162,243171,243176,243178,243179,243184,243185,244144,244161,244178,244195,244223,244253,244623,244756,244775,244792,244957,245775,245801,245809,245839,245849,245864,245866,245867,246321,246345,246367,246388,246551,246568,246594,247449,247488,247505,247860,247972,248010,248020,248030,248192,248194,248195,248197,248205,248207,248221,249062,249082,249125,249146,249493,249520,249679,249858,249881,249904,249912,250762,250790,250973,251153,251161,251330,252365,252382,252399,252416,252433,252784,252814,252827,253012,253197,253218,254054,254106,254114,254472,254484,254662,254848,254853,255458,256425,256444,256461,256478,256495,256512,256538,256758,257742,257759,257780,258142,258168,258176,258186,258195,258200,258208,259368,259372,259751,259768,259785,259802,259837,259854,259884,259897,261024,261041,261062,261440,261464,261472,261516,261524,262067,262612,262620,263053,263054,264117,264134,264151,264168,264185,264202,264228,264241,264688,264705,264726,265788,265812,265829,265849,265855,266077,266298,266303,266834,267365,267374,267833,267850,267867,267884,267901,267927,267940,268973,268990,269011,269017,269483,269517,269524,269528,269533,270265,271000,271037,271054,271071,271088,271105,271122,271148,271161,272608,272631,272664,272678,272698,272734,272741,272747,272749,272766,272787,273515,274245,274289,274308,274325,274342,274359,274376,274402,274415,275842,275869,275890,275912,275938,275972,275979,275989,277472,277489,277526,277533,277550,277567,277584,278995,279012,279064,279083,279100,279131,279152,279158,279178,279188,279893,280605,280643,280644,280690,280707,280724,280741,280758,280778,280817,282210,282229,282248,282269,282309,282333,282341,282344,282387,282404,282421,282438,283807,283836,283888,283945,283968,283990,284016,284052,284072,284089,285615,285632,285649,285666,285713,285734,285776,287155,287174,287193,287252,287300,287322,287332,287342,287416,287433,287546,288769,288838,288862,288933,289008,289025,289083,289111,289139,289161,290506,290567,290638,290655,290729,290757,290784,290843,290883,292178,292251,292283,292315,292363,292383,292527,292528,292538,292590,292623,293496,293936,294014,294049,294078,294104,294281,294342,294383,294404,294412,295700,295790,295826,295854,296010,296044,296115,296165,296187,296215,297542,297559,297606,297629,297637,297801,297823,297882,297938,297939,297959,297960,299306,299327,299344,299361,299378,299395,299595,299728,299745,299764,299785,301119,301157,301165,301193,301199,301373,301378,301380,301526,301543,301560,301577,301594,301932,302939,302978,303170,303188,303209,303359,303383,303391,304705,304711,304713,304718,304720,304948,304965,304982,304999,305016,305181,305223,306478,306511,306544,306743,306761,306785,306793,306973,306979,306993,306995,307000,307002,308454,308471,308488,308505,308522,308553,308597,308798,308817,308834,308855,310303,310329,310337,310381,310387,310405,310407,310412,310414,311336,311353,311370,311387,311404,312001,312139,312185,312207,312667,313127,313861,313874,313934,313957,313967,315121,315508,316526,317005,317022,317039,317056,317073,317099,317393,317421,317846,318501,318777,318790,319098,319127,319137,320449,320621,322040,322057,322074,322091,322108,322125,322465,322471,322511,323124,323737,324095,324108,324128,324133,324179,325425,325609,325781,325828,327004,327021,327038,327176,327416,327433,327459,327509,327515,328070,328624,329013,329026,329044,329095,329107,330419,330635,331384,332166,332183,332200,332217,332234,332251,332277,333619,333625,333670,333715,333749,335086,335106,335111,335121,335254,336581,336644,337950,337967,337984,338001,338018,338035,338061,338191,338197,338818,339438,339483,339496,339514,339645,339657,340925,340969,342298,342333,342350,342367,342384,342401,342418,342444,342450,342456,343083,343723,343754,343769,343775,343797,343810,343815,343834,345136,345171,345211,345228,346453,346470,346490,346526,346552,346570,346576,346591,346606,347826,347869,347875,347895,347908,347927,347946,348000,348621,349374,349401,349487,349511,349512,350861,351009,351010,351044,351045,351052,351084,351085,351092,351110,351111,351115,352552,352553,352554,352555,352556,352557,352558,352559,352560,352561,352562,352563,352564,352565,352566,352567,352568,352569,352570,352571,352572,352573,352574,352575,352576,352577,352578,352579,352580,353837,353857,353904,355648,355658,355676,355795,357016,357050,357205,358048,358072,358073,358141,358147,358181,358200,358261,358279,358280,358281,358282,358291,358317,358335,358336,358342,360339,360342,360366,361084,361098,361110,361125,362452,362454,366644,366675,367781,367784,367894,367895,367896,367897,367898,367899,367900,367901,367902,367903,367904,367905,367906,367907,367908,367909,367910,367911,367912,367913,367914,367915,367916,367917,367918,367919,367920,367921,367922,368870,368875,369073,369084,369091,369104,369111,369120,369125,369132,369143,369150,369159,369164,370505,370539,370629,370660,371791,371795,371842,371878,371940,372045,372118,372187,372195,372205,372206,372220,372221,372756,373474,373491,373584,373585,373586,373587,373588,373589,373590,373591,373592,373593,373594,373595,373596,373597,373598,373599,373600,373601,373602,373603,373604,373605,373606,373607,373608,373609,373610,373611,373612,374824,374953,374970,375054,376055,376102,376103,376104,376105,376106,376278,376290,376410,376412,376504,376631,377496,377523,377524,377528,377553,377557,377574,377578,377581,377585,377586,377590,377591,377595,377596,377600,377601,377605,377706,377710,377711,377726,377740,377773,377781,377787,377804,377812,377813,377817,377818,377822,377823,377827,377828,377832,377833,377857,377858,377862,377863,378915,378938,379641,380068,380809,381305,381563,381565,381566,381567,381568,381574,382549,382555,382818,382824,382855,382861,383790,383791,384077,384082,385547,386042,386160,386161,386162,386163,386164,386165,386166,386172,386215,386216,386217,386218,386219,387223,387228,388164,388169,388182,388195,388196,388202,389093,389094,389118,389136,389137,389138,389144,389923,389995,390000,390779,390806,391179,391512,391535,391558,391564,391607,391608,391609,392353,392358,392360,392752,393111,393166,393179,393523,393867,393873,393918,393919,393923,393925,393926,393932,394633,394639,394691,395358,395363,395365,395370,395374,395388,395401,395402,395407,395412,395998,396005,396051,396062,396067,396069,396075,396081,396086,396668,396705,396707,396729,396730,396778,396783,396989,397193,397280,397283,397285,397699,397704,397708,397745,397785,397836,397838,397839,397841,397850,398165,398171,398266,398272,398330,398339,398649,398792,398797,398799,398800,398801,399104,399106,399107,399108,399114,399219,399222,399304,399591,399640,399687,399772,399774,399780,400099,400281,400286,400288,400294,400622,400623,400813,400820,400824,400857,401348,401361,401378,401391,401812,401863,401897,401912,401923,401979,402362,402370,402374,402380,402381,402489,402494,402500,402506,402508,402536,403014,403091,403099,403101,403109,403114,403172,403185,403193,403199,403201,403207,403815,403826,403828,403831,403835,403850,403864,403865,403868,403872,404431,404444,404486,404869,404874,404876,404882,404944,405005,405079,405114,405116,405122,405530,405733,405770,405774,406179,406390,406397,406402,406403,406407,406412,406416,406417,406455,406456,406464,406467,406471,406474,406478,406479,406483,406484,406488,406683,406861,406862,406866,406873,406877,406878,406882,406883,406889,406890,406894,406895,407029,407030,407034,407035,407039,407058,407062,407063,407077,407182,407547,407565,407578,407801,407840,407854,407861,408266,408271,408277,408286,408483,408496,408500,409460,409753,410450,410488,411433,411715,411778,411813,411814,411818,411820,412390,412399,413075,413127,413769,413770,413771,413775,413778,414321,414326,414749,415058,415097,415098,415102,415104,415717,415733,416047,416333,416337,416398,416407,416409,417588,417610,418476,418743,419346,419374,419639,419876,419877,419878,419879,419883,419885,419973,419978,420209,420438,420529,420538,420990,421018,421046,421054,421530,421532,421590,421593,422101,422106,422111,422114,422156,422571,422864,423085,423186,423191,423192,423658,423663,423975,424201,424314,424320,424325,424804,424891,425140,425457,425502,425507,425508,426086,426091,426397,426679,426734,426740,426745,427334,427343,427667,427963,428034,428035,428671,428676,428981,429282,429317,429322,429323,429959,429964,429969,429971,429972,429973,430009,430014,430019,430021,430022,430023,430627,430632,430684,431302,431309,431365,431368,431377,431992,432123,432684,433275,433352,433917,434060,434567,435178,435183,435450,435715,435746,436278,436279,436337,436400,436421,436425,436426,437002,437007,437250,437528,437542,437843,438100,438106,438153,438172,438176,438177,438679,438681,438682,438786,438791,438793,438794,439274,439281,439283,439345,439352,439358,439360,439677,439931,439989,440015,440019,440021,440559,440568,440570,440899,441163,441251,441252,441806,441811,441817,442164,442435,442534,442539,442540,443100,443105,443111,443470,443745,443850,443856,443861,444496,444505,444511,444846,445159,445204,445209,445210,445844,445857,445863,446206,446521,446572,446578,446583,447220,447229,447237,447590,447905,447974,447975,448649,448654,448660,449282,449314,449925,449930,449931,450587,450592,450594,451245,451283,452270,452552,453241,453285,454405,454414,455267,455533,455568,455575,455579,455581,456111,456249,456250,456283,456298,456299,456322,456323,456346,456347,456357,456363,456365,456366,456367,456475,456477,456478,456479,456997,456998,457003,457004,457009,457014,457021,457024,457033,457036,457041,457042,457047,457048,457081,457084,457089,457092,457111,457114,457121,457124,457131,457132,457137,457138,457143,457144,457150,457168,457173,457176,457181,457182,457187,457190,457195,457198,457203,457204,457728,457734,457739,457746,457747,457752,457753,457758,457787,457794,457797,457802,457817,457826,457829,457836,457837,457842,457843,457848,457849,457854,457873,457878,457879,457886,457887,457892,457894,457900,457903,457908,457909,457916,457921,457930,457931,457936,457939,457946,458504,458512,460090,460092,460097,460100,460127,460139,460150,460175,460176,460229,460282,460620,460628,460635,460640,460642,461431,462270,462288,462290,462316,462317,462328,462331,462344,462347,462358,462361,462368,462373,462380,462385,462398,462401,462410,462415,462426,462427,462538,462741,462754,462759,462766,462767,462774,462781,462790,462801,462806,462815,462822,462823,462830,462833,462868,462875,462888,462893,462900,462918,463049,463055,463059,463065,463071,463077,463090,463099,463106,463117,463118,463225,463402,463415,463420,463427,463428,463435,463442,463451,463457,463467,463476,463483,463484,463491,463494,463529,463536,463551,463556,463561,463580,463593,463596,463609,463614,463621,463630,463637,463809,463815,463866,463920,464030,464361,464364,464377,464381,464389,464394,464403,464406,464429,464436,464445,464450,464461,464466,464473,464474,464485,464486,464494,464498,464513,464515,464530,464534,464543,464544,464553,464556,464565,464578,464591,464594,464605,464613,464621,464714,464763,464833,464881,464885,465070,465082,465083,465114,465117,465126,465133,465142,465145,465150,465157,465162,465169,465174,465185,465194,465203,465212,465215,465224,465227,465236,465247,465258,465263,465276,465284,465292,465383,465418,465449,465512,465523,465530,465535,465548,465555,465572,465573,465588,465783,465793,465826,465879,465903,465909,465941,465942,465959,465964,465977,465980,465993,466000,466007,466096,466123,466144,466149,466206,466221,466224,466233,466242,466253,466266,466271,466282,466295,466298,466307,466338,466353,466366,466377,466378,466403,466414,466421,466430,466439,466446,466455,466463,466469,466470,466642,467393,467484,467492,467503,467514,467563,467569,467578,467629,467640,467641,467645,467690,467712,467721,467729,467730,467764,467774,467779,467783,467784,467820,467821,467854,467855,467872,467879,467888,467893,467908,467911,467923,467927,467944,467947,467966,467973,467982,467985,467998,467999,468016,468021,468034,468041,468060,468063,468070,468101,468127,468133,468140,468183,468192,468207,468214,468229,468234,468255,468264,468277,468513,468519,468534,468539,468550,468555,468564,468577,468592,468599,468608,468613,468621,468629,468642,468651,468660,468671,468686,468693,468696,468711,468732,468739,468750,468781,468786,468804,468808,468813,468828,468853,468859,468873,468884,468891,468900,468908,468944,468955,469162,469180,469227,469237,469272,469280,469300,469314,469320,469362,469365,469374,469384,469396,469429,469436,469451,469458,469461,469480,469481,469506,469521,469528,469539,469544,469553,469562,469597,469608,469621,469638,469657,469678,469681,469696,469699,469710,469719,469728,469739,469746,469747,469780,469781,469800,469807,469818,469827,470041,470049,470064,470071,470074,470093,470113,470133,470136,470151,470152,470165,470204,470209,470228,470233,470246,470269,470286,470293,470306,470311,470318,470331,470344,470353,470354,470359,470388,470393,470408,470421,470428,470439,470450,470455,470468,470487,470492,470513,470740,470746,470783,470797,470818,470842,470853,470898,470904,470924,470945,470980,470981,470982,470986,471033,471043,471045,471046,471047,471095,471115,471121,471126,471130,471173,471182,471191,471199,471215,471232,471249,471256,471267,471276,471283,471298,471309,471322,471333,471350,471359,471362,471371,471378,471385,471408,471417,471432,471439,471440,471447,471462,471467,471498,471513,471528,471535,471538,471553,471594,471599,471620,471641,471662,471886,471904,471911,471922,471931,471938,471953,471964,471977,471988,472005,472014,472017,472026,472031,472040,472061,472070,472085,472092,472095,472100,472115,472142,472160,472168,472182,472190,472196,472206,472247,472272,472289,472314,472333,472338,472356,472364,472371,472384,472607,472619,472678,472684,472715,472725,472735,472757,472761,472803,472806,472811,472826,472869,472872,472891,472894,472901,472912,472957,472958,472983,473000,473025,473044,473049,473060,473075,473082,473095,473108,473125,473128,473133,473150,473159,473176,473184,473198,473209,473218,473229,473241,473247,473264,473273,473292,473311,473318,473554,473559,473564,473575,473592,473593,473616,473631,473642,473655,473660,473677,473684,473691,473704,473723,473734,473737,473742,473755,473762,473777,473792,473799,473812,473823,473834,473839,473852,473857,473876,473879,473898,473905,473916,473921,473930,473942,473956,474165,474171,474234,474252,474275,474317,474341,474346,474354,474407,474477,474605,474606,474671,474706,474761,474808,474884,474918,474951,474952,474953,475038,475097,475168,475169,475262,475265,475275,475280,475281,475289,475309,475310,475311,475340,475341,475402,475403,475404,475919,475920,475921,475922,475923,475924,475925,475926,475927,475928,475929,475930,475931,475932,475933,475934,475935,475936,475937,475938,475939,475940,475941,475942,475943,475944,475945,475946,475947,476470,476471,476472,476473,476586,476639,476668,476714,476769,476779,476818,476820,476835,476837,476852,476854,476892,476921,476925,476936,477016,477018,477019,477020,477032,477062,477091,477092,477104,477159,477193,477219,477244,477245,477266,477329,477346,477423,477507,477601,477611,477629,477678,477700,477712,477723,477724,477735,477795,477831,477836,477838,477840,477842,477871,477927,477930,477932,477933,477945,478009,478012,478014,478015,478041,478115,478134,478162,478163,478193,478280,478299,478308,478309,478314,478315,478322,478376,478388,478429,478434,478463,478468,478479,478484,478485,478490,478505,478568,478571,478576,478595,478620,478621,478630,478643,478650,478651,478656,478673,478678,478701,478726,478729,478758,478760,478772,478773,478778,478814,478815,478820,478826,478832,478835,478840,478847,478852,478853,478858,478911,478916,478921,478926,478927,478934,478935,478940,479001,479006,479007,479016,479017,479022,479025,479034,479035,479040,479041,479134,479135,479156,479159,479164,479165,479170,479177,479182,479192,479193,479198,479275,479300,479301,479310,479311,479316,479317,479330,479378,479390,479431,479436,479461,479470,479481,479486,479487,479492,479507,479570,479573,479578,479613,479622,479623,479633,479644,479652,479653,479658,479675,479680,479701,479706,479727,479732,480044,480583,480630,480650,481236,481242,481243,481248,481249,481254,481285,481318,481319,481324,481325,481330,481331,481336,481409,481420,481433,481438,481439,481476,481479,481484,481485,481490,481491,481496,481497,481502,481519,481524,481525,481576,481583,481590,481591,481596,481601,481650,481651,481656,481657,481662,481663,481668,481681,481686,481687,481692,481758,481780,481781,481806,481807,481812,481821,481826,481827,481832,481833,481838,481839,481844,481845,481956,481959,481964,481965,481970,482021,482040,482041,482046,482047,482052,482053,482058,482075,482156,482216,482222,482224,482483,482538,482539,482604,482693,482742,482790,482998,483000,483061,483063,483064,483186,483188,483189,483562,483564,483565,483774,483775,483957,483959,483964,484032,484033,484218,484221,484236,484250,484383,484386,484599,484605,484794,484801,484816,484822,484893,484899,484955,484972,485736,485851,485853,486386,486389,486404,486410,486663,486666,486681,486687,487056,487059,487074,487190,487195,487201,487205,487222,487980,488005,488007,488008,488769,488772,488787,489349,489368,489371,489386,489392,489559,489562,489577,489583,489588,489594,489598,489615,490929,490944,490946,491113,492983,880744,1215934,1217163,1217461,1254856,1277384,1277385,1278777,1279075,1279079,1279107,1279117,1279123,1279128,1279246,1279301,1284380,1287277,1287315,1289019,1289020,1289021,1289022,1289023,1289024,1289025,1289026,1289027,1289028,1289029,1289030,1289031,1289032,1289033,1289034,1289035,1289036,1289037,1289038,1289039,1289040,1289041,1289042,1289043,1289044,1289045,1289046,1289047,1291084,1346824,1347577,1348680,1349773,1571147,1571731,1572504,1572678,1572795,1572873,1573121,1573131,1573300,1573301,1573348,1573349,1573350,1620388,1621870,1621949,1622866,1622951,1626073,1626079,1626109,1626110,1626111,1626112,1626113,1626114,1626115,1626281,1626282,1626283,1626284,1626285,1626286,1626287,1626288,1626289,1626290,1626291,1626292,1626293,1626294,1626295,1626296,1626297,1626298,1626299,1626300,1626301,1626302,1626303,1626304,1626305,1626306,1626307,1626308,1626421,1626422,1626423,1626424,1626425,1626426,1626449,1626450,1626451,1626452,1633137,1633143,1633393,1642382,1642383,1642384,1642385,1642386,1645383,1645384,1645385,1645386,1645852,1646134,1646536,1646602,1646603,1646665,1646668,1646680,1646681,1646695,1646700,1646712,1646727,1646728,1647106,1647676,1647694,1647730,1647748,1647778,1647781,1647796,1647798,1647823,1647834,1647864,1647866,1647881,1647887,1647895,1647918,1648444,1648468,1648473,1648474,1648567,1648568,1648569,1648570,1648571,1648572,1648573,1648574,1648575,1648576,1648577,1648578,1648579,1648580,1648581,1648651,1648657,1648662,1648667,1648672,1649394,1649667,1649668,1649669,1649670,1649671,1649672,1649673,1649674,1649675,1649676,1649677,1649678,1649679,1649680,1649681,1649682,1649683,1649684,1649685,1649686,1649687,1649688,1649689,1649690,1649691,1649692,1649693,1649694,1649695,1649696,1649892,1649911,1649929,1649934,1649939,1650796,1650980,1650981,1650984,1650985,1650986,1650987,1650988,1650989,1650990,1650991,1650992,1650993,1650994,1650995,1650998,1651168,1651183,1652203,1652348,1652349,1652350,1652351,1652352,1652353,1652354,1652355,1652356,1652357,1652358,1652359,1652360,1652361,1652362,1652486,1652535,1652553,1653805,1653825,1653842,1653858,1653859,1653860,1655058,1655134,1655196,1655257,1655258,1655262,1656554,1656680,1656737,1656793,1656794,1656957,1656958,1656959,1656960,1656961,1656962,1656963,1656964,1656965,1656966,1656967,1656968,1656969,1656970,1656971,1657167,1657187,1657255,1657318,1657319,1658745,1658815,1658816,1658924,1658925,1660571,1660845,1660846,1660847,1660848,1660849,1660850,1660851,1660852,1660853,1660854,1660855,1660856,1660857,1660858,1660859,1661029,1661030,1661035,1661158,1661169,1661170,1661207,1661208,1661213,1661214,1661229,1661256,1661305,1661316,1661321,1661322,1661327,1661328,1661333,1661340,1661405,1661406,1661507,1661510,1661515,1661516,1661521,1661522,1661527,1661626,1661647,1661648,1661718,1661805,1661859,1661861,1661869,1661870,1661875,1661915,1661940,1661967,1662026,1662031,1662032,1662037,1662038,1662151,1662184,1662191,1662192,1662197,1662214,1662223,1662224,1662229,1662230,1662235,1662240,1662367,1662368,1662373,1662378,1662383,1662384,1662419,1662420,1662425,1662548,1662559,1662576,1662597,1662598,1662603,1662604,1662609,1662624,1662651,1662711,1662712,1662717,1662718,1662788,1662790,1662795,1662892,1662899,1662900,1662905,1662906,1662911,1662912,1663021,1663030,1663035,1663148,1663153,1663237,1663247,1663251,1663257,1663258,1663263,1663264,1663269,1663306,1663353,1663405,1663421,1663422,1663427,1663428,1663433,1663500,1663579,1663582,1663587,1663613,1663614,1663619,1663685,1663751,1663752,1663757,1663762,1663767,1663798,1663803,1663804,1663809,1663935,1663943,1663976,1663981,1663982,1663987,1664002,1664007,1664074,1664089,1664090,1664095,1664098,1664103,1664104,1664109,1664176,1664181,1664278,1664285,1664286,1664291,1664292,1664297,1664298,1666162,1666308,1666311,1668099,1668151,1668232,1669989,1670989,1672699,1672721,1672800,1672971,1673085,1673294,1673471,1674927,1675132,1675282,1675370,1675535,1676925,1677053,1677054,1677059,1677060,1677065,1677066,1677071,1677238,1677243,1677244,1677249,1677356,1677361,1677362,1677367,1677368,1677375,1677409,1677505,1677506,1677515,1677516,1677521,1677522,1677527,1677528,1677533,1677706,1677729,1677730,1677735,1677736,1677771,1677772,1677777,1677778,1677921,1677944,1677961,1677964,1677969,1677970,1677975,1677976,1678038,1678118,1678127,1678144,1678197,1678202,1678207,1678208,1678213,1678341,1678369,1678370,1678375,1678376,1678381,1678408,1678481,1678482,1678487,1678548,1678553,1678554,1678559,1678560,1678565,1678622,1678737,1678738,1678743,1678744,1678855,1678856,1678861,1678862,1678867,1678868,1680288,1680354,1680426,1681884,1681983,1682084,1683612,1683792,1683793,1683798,1683799,1683804,1683805,1683942,1683951,1683956,1684011,1684026,1684031,1684036,1684037,1684042,1684147,1684196,1684197,1684202,1684203,1684208,1684210,1684244,1684245,1684314,1684317,1684382,1684385,1684390,1684391,1684396,1684397,1684402,1684403,1684574,1684577,1684582,1684691,1684696,1684697,1686227,1686243,1686244,1686271,1686274,1686406,1686412,1686417,1686418,1686423,1686424,1686461,1686462,1686467,1686488,1686665,1686666,1686671,1686672,1686677,1686740,1686745,1686746,1686751,1686917,1686933,1686934,1686939,1686940,1687077,1687086,1687091,1687151,1687161,1687166,1687171,1687172,1687187,1687303,1687329,1687330,1688579,1689213,1689214,1689215,1689216,1689217,1689218,1689219,1689220,1689221,1689222,1689223,1689224,1689225,1689226,1689227,1690407,1690532,1690755,1690757,1691104,1691173,1692095,1692097,1693954,1693955,1693956,1693957,1693958,1693959,1693960,1693961,1693962,1693963,1693964,1693965,1693966,1693967,1693968,1695124,1695214,1695636,1695762,1695982,1695992,1696340,1696409,1697883,1697893,1697895,1698079,1698081,1698227,1698228,1698238,1698241,1698251,1698254,1698266,1698650,1698653,1698663,1698665,1698676,1698682,1698871,1698881,1698883,1698893,1698895,1698905,1698907,1698989,1699357,1699358,1699370,1699372,1699377,1699380,1699381,1699391,1699393,1699398,1699402,1699451,1700940,1700948,1701974,1702667,1702717,1703713,1703714,1703715,1703716,1703717,1703718,1703719,1703720,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091,1704092,1704093,1704853,1704859,1704973,1704974,1704975,1704976,1704977,1704978,1704979,1704980,1704981,1704982,1704983,1704984,1704985,1704986,1704987,1704988,1704989,1704990,1704991,1704992,1704993,1704994,1704995,1704996,1704997,1704998,1704999,1705000,1706133,1706549,1706564,1708806,1708812,1710344,1710736,1710751,1711044,1711276,1711525,1713777,1714889,1715331,1715773,1715788,1715790,1715791,1716324,1716857,1716858,1716859,1719837,1719843,1721039,1721880,1721896,1723014,1723015,1723016,1723017,1723018,1723019,1723020,1723021,1723150,1723151,1723152,1723153,1723154,1723155,1723156,1723157,1723158,1723159,1723160,1723161,1723162,1723163,1723164,1723165,1723166,1723167,1723168,1723169,1723170,1723171,1723172,1723173,1723174,1723175,1723176,1723177,1724066,1724072,1724186,1724187,1724188,1724189,1724190,1724191,1724192,1724193,1724194,1724195,1724196,1724197,1724198,1724199,1724200,1724201,1724202,1724203,1724204,1724205,1724206,1724207,1724208,1724209,1724210,1724211,1724212,1724213,1725272,1725376,1725391,1727595,1727601,1729499,1729669,1729684,1729785,1730004,1730566,1732502,1733502,1733900,1735248,1735263,1735265,1735266,1738634,1738640,1738822,1740246,1740261,1740389,1740390,1740391,1740392,1740393,1740394,1740395,1740396,1740521,1740522,1740523,1740524,1740525,1740526,1740527,1740528,1740529,1740530,1740531,1740532,1740533,1740534,1740535,1740536,1740537,1740538,1740539,1740540,1740541,1740542,1740543,1740544,1740545,1740546,1740547,1740548,1741983,1741989,1742103,1742104,1742105,1742106,1742107,1742108,1742109,1742110,1742111,1742112,1742113,1742114,1742115,1742116,1742117,1742118,1742119,1742120,1742121,1742122,1742123,1742124,1742125,1742126,1742127,1742128,1742129,1742130,1742233,1742327,1742342,1744180,1744186,1745696,1745872,1745887,1746032,1746036,1746051,1748895,1749137,1749747,1750357,1750372,1750374,1751758,1751759,1751760,1751761,1751762,1751763,1753092,1753242,1753243,1753244,1753245,1753246,1753247,1753248,1753249,1753250,1753251,1753252,1753253,1753254,1753255,1753256,1753257,1753258,1753259,1753260,1753261,1753262,1753263,1753264,1753265,1753266,1753267,1753268,1753269,1753270,1753271,1753306,1753308,1754653,1754803,1754804,1754805,1754806,1754807,1754808,1754809,1754810,1754811,1754812,1754813,1754814,1754815,1754816,1754817,1754818,1754819,1754820,1754821,1754822,1754823,1754824,1754825,1754826,1754827,1754828,1754829,1754830,1754831,1754832,1756227,1756237,1757652,1757802,1757803,1757804,1757805,1757806,1757807,1757808,1757809,1757810,1757811,1757812,1757813,1757814,1757815,1757816,1757817,1757818,1757819,1757820,1757821,1757822,1757823,1757824,1757825,1757826,1757827,1757828,1757829,1757830,1757831,1757950,1757958,1759447,1759663,1759664,1759665,1759666,1759667,1759668,1759669,1759670,1759671,1759672,1759673,1759674,1759675,1759676,1759677,1759678,1759679,1759680,1759681,1759682,1759683,1759684,1759685,1759686,1759687,1759688,1759689,1759690,1759691,1759692,1761105,1761112,1761382,1762968,1762969,1762970,1762971,1762972,1762973,1762974,1762975,1762976,1762977,1762978,1762979,1762980,1762981,1762982,1762986,1762987,1762988,1762989,1762990,1762991,1762992,1762993,1762994,1762995,1762996,1762997,1762998,1762999,1763000,1763132,1763146,1764715,1764956,1764957,1764958,1764959,1764960,1764961,1764962,1764963,1764964,1764965,1764966,1764967,1764968,1764969,1764970,1764971,1764972,1764973,1764974,1764975,1764976,1764977,1764978,1764979,1764980,1764981,1764982,1764983,1764984,1764985,1766447,1766601,1766884,1768392,1768393,1768394,1768395,1768396,1768397,1768398,1768399,1768400,1768401,1768402,1768403,1768404,1768405,1768406,1768407,1768408,1768409,1768412,1768413,1768414,1768415,1768416,1768417,1768418,1768419,1768420,1768421,1768422,1768524,1768650,1768784,1770439,1770641,1770642,1770643,1770644,1770645,1770646,1770647,1770648,1770649,1770650,1770651,1770652,1770653,1770654,1770655,1770656,1770657,1770658,1770659,1770660,1770661,1770662,1770663,1770664,1770665,1770666,1770667,1770668,1770669,1770670,1771059,1772329,1772848,1773846,1773847,1773848,1773849,1773850,1773851,1773852,1773853,1773854,1773855,1773856,1773857,1773858,1773859,1773860,1773861,1773862,1773863,1773864,1773865,1773866,1773867,1773868,1773869,1773870,1773871,1773872,1773873,1773874,1773875,1774686,1774774,1776747,1777076,1777077,1777085,1778769,1778787,1778789,1778790,1778995,1779036,1779175,1779189,1779249,1779250,1779422,1779423,1779749,1779750,1785181,1820619,1820627,1820711,1820717,1820826,1821258,1821304,1821392,1822408,1822420,1822470,1822478,1822489,1822940,1822948,1822955,1822958,1822995,1823007,1823008,1823065,1823071,1823083,1823085,1823092,1823449,1823468,1823537,1823553,1823573,1823581,1823590,1823610,1823651,1823669,1823685,1823698,1823714,1823999,1824036,1824046,1824086,1824118,1824158,1824166,1824174,1824180,1824205,1824231,1824239,1824247,1824329,1824455,1824469,1824483,1824531,1824545,1824577,1824593,1824603,1824647,1824659,1824679,1824689,1824701,1824719,1824733,1824751,1824767,1824797,1824883,1824893,1824907,1824921,1824937,1824951,1824963,1825003,1825015,1825041,1825053,1825061,1825081,1825109,1825122,1825173,1825207,1825267,1825289,1825321,1825347,1825359,1825387,1825407,1825433,1825445,1825461,1825473,1825491,1825503,1825519,1825537,1825549,1825590,1825673,1825685,1825701,1825719,1825737,1825751,1825787,1825811,1825837,1825851,1825865,1825885,1825895,1825927,1825973,1825979,1826063,1826087,1826117,1826145,1826159,1826189,1826211,1826235,1826249,1826267,1826286,1826303,1826325,1826343,1826359,1826377,1826395,1826475,1826491,1826509,1826529,1826547,1826563,1826601,1826627,1826656,1826677,1826699,1826713,1826747,1826763,1826779,1826797,1826833,1826859,1826891,1826921,1826937,1826969,1826993,1827019,1827035,1827055,1827077,1827095,1827119,1827139,1827157,1827191,1827215,1827232,1827259,1827275,1827295,1827313,1827341,1827365,1827399,1827417,1827439,1827455,1827485,1827503,1827519,1827539,1827567,1827595,1827619,1827649,1827667,1827699,1827725,1827753,1827771,1827797,1827828,1827853,1827876,1827897,1827919,1827929,1845790,1845796,1845865,1845913,1845945,1845951,1845999,1846051,1846057,1846129,1846135,1846181,1846231,1846237,1846285,1846339,1846345,1846405,1846443,1846449,1846531,1846547,1846552,1846618,1846683,1846684,1846923,1846953,1847011,1847021,1847067,1847117,1847135,1847159,1847182,1847183,1847184,1847185,1847208,1847260,1847438,1847490,1847560,1847640,1847692,1847746,1847820,1847845,1847867,1847869,1847871,1847872,1847896,1847975,1847983,1848039,1848101,1848109,1848149,1848259,1848265,1848271,1848277,1848413,1848548,1848550,1848572,1848605,1848619,1848662,1848720,1848772,1848784,1848810,1848840,1848912,1848962,1848980,1848988,1849160,1849216,1849286,1849292,1849332,1849371,1849373,1849375,1849398,1849422,1849428,1849486,1849562,1849614,1849639,1849663,1849665,1849688,1849711,1849714,1849722,1849782,1849844,1849888,1849912,1849933,1849944,1849962,1849970,1849980,1850027,1850033,1850333,1850365,1850401,1850461,1850515,1850549,1850583,1850601,1850655,1850707,1850727,1850739,1850745,1850937,1850961,1851027,1851035,1851121,1851173,1851229,1851311,1851365,1851421,1851473,1851537,1851594,1851599,1851601,1851602,1851622,1851643,1851666,1851698,1851716,1851733,1851743,1851745,1851747,1851749,1851752,1851754,1851756,1851759,1851761,1851763,1851765,1851767,1851769,1851770,1851817,1851946,1852204,1852328,1852352,1852406,1852472,1852494,1852502,1852508,1852712,1852774,1852784,1852790,1852874,1852928,1853002,1853104,1853116,1853212,1853274,1853338,1853354,1853438,1853496,1853508,1853520,1853528,1853834,1853880,1853914,1853941,1853942,1853943,1853966,1853989,1853991,1854007,1854023,1854037,1854053,1854057,1854065,1854073,1854074,1854099,1854124,1854125,1854126,1854127,1854128,1854129,1854130,1854131,1854166,1854204,1854223,1854235,1854397,1854435,1854489,1854501,1854513,1854519,1854605,1854657,1854663,1854721,1854791,1854797,1854853,1854873,1854953,1854982,1855019,1855081,1855087,1855139,1855185,1855209,1855251,1855257,1855285,1855291,1855383,1855389,1855592,1855636,1855662,1855688,1855689,1855711,1855733,1855735,1855751,1855781,1855804,1855812,1855836,1855860,1855861,1855862,1855863,1855864,1855901,1855940,1855944,1855948,1856018,1856095,1856122,1856163,1856216,1856304,1856354,1856406,1856418,1856486,1856542,1856550,1856602,1856650,1856710,1856718,1856780,1856800,1856840,1856912,1856956,1856970,1856976,1857080,1857236,1857242,1857248,1857386,1857432,1857466,1857516,1857566,1857572,1857578,1857658,1857670,1857818,1857900,1857914,1857919,1857920,1857931,1857971,1858004,1858008,1858010,1858033,1858058,1858086,1858112,1858143,1858174,1858176,1858178,1858204,1858229,1858233,1858259,1858282,1858304,1858326,1858354,1858384,1858414,1858450,1858502,1858510,1858574,1858622,1858642,1858648,1858654,1858896,1858904,1858992,1859088,1859150,1859172,1859196,1859219,1859220,1859222,1859224,1859225,1859226,1859227,1859263,1859299,1859303,1859308,1859310,1859311,1859374,1859437,1859438,1859439,1859448,1859474,1859492,1859493,1859514,1859539,1859544,1859545,1859560,1859648,1859696,1859754,1859785,1859814,1859816,1859818,1859843,1859867,1859927,1860861,1860869,1860991,1861011,1861051,1861103,1861119,1861207,1861255,1861313,1861375,1861427,1861439,1861487,1861533,1861539,1861545,1861551,1861557,1861563,1861569,1861575,1861581,1861587,1861593,1861599,1861605,1861611,1861617,1861623,1861629,1861635,1861641,1861647,1861653,1862491,1862507,1862625,1862633,1862687,1862731,1862747,1862779,1862855,1862907,1862961,1863019,1863071,1863125,1863171,1863179,1863187,1863195,1863203,1863211,1863219,1863227,1863235,1863243,1863251,1863259,1863267,1863275,1863283,1863291,1863299,1863307,1863315,1863323,1863331,1863745,1864141,1864159,1864269,1864293,1864335,1864387,1864407,1864495,1864543,1864601,1864659,1864711,1864727,1864801,1864819,1864831,1864841,1864851,1864861,1864871,1864881,1864891,1864899,1864911,1864919,1864931,1864941,1864951,1864961,1864971,1864981,1864991,1865001,1865011,1865021,1865721,1865804,1865815,1865921,1865975,1866019,1866039,1866059,1866151,1866203,1866257,1866311,1866363,1866417,1866463,1866475,1866485,1866499,1866511,1866523,1866535,1866547,1866559,1866571,1866583,1866595,1866607,1866619,1866631,1866643,1866655,1866667,1866679,1866691,1866703,1866995,1867441,1867461,1867525,1867571,1867625,1867669,1867691,1867727,1867805,1867857,1867911,1867963,1868015,1868069,1868115,1868129,1868143,1868157,1868171,1868185,1868199,1868217,1868229,1868245,1868257,1868273,1868287,1868301,1868315,1868329,1868343,1868357,1868371,1868385,1868399,1868755,1869101,1869129,1869217,1869275,1869319,1869341,1869367,1869453,1869489,1869563,1869615,1869667,1869721,1869767,1869783,1869799,1869815,1869831,1869847,1869863,1869879,1869891,1869905,1869923,1869937,1869955,1869971,1869991,1870007,1870023,1870039,1870055,1870071,1870087,1870351,1870705,1870787,1870845,1870889,1870945,1870987,1871013,1871053,1871125,1871155,1871229,1871281,1871333,1871427,1871445,1871451,1871469,1871489,1871507,1871525,1871545,1871567,1871583,1871602,1871619,1871639,1871657,1871679,1871691,1871709,1871727,1871751,1871763,1871784,1871950,1872123,1872439,1872469,1872517,1872561,1872617,1872659,1872687,1872747,1872821,1872895,1872947,1872999,1873053,1873099,1873119,1873139,1873159,1873183,1873203,1873221,1873245,1873263,1873285,1873303,1873325,1873345,1873365,1873385,1873405,1873425,1873445,1873465,1873485,1873505,1873755,1874115,1874147,1874191,1874235,1874291,1874344,1874399,1874467,1874497,1874571,1874621,1874673,1874727,1874773,1874795,1874817,1874841,1874863,1874883,1874905,1874933,1874953,1874977,1874997,1875021,1875043,1875065,1875087,1875109,1875131,1875154,1875175,1875205,1875439,1875527,1875797,1875861,1875873,1875961,1875971,1876035,1876061,1876087,1876153,1876251,1876303,1876355,1876407,1876453,1876477,1876501,1876529,1876553,1876577,1876601,1876631,1876653,1876679,1876701,1876727,1876751,1876779,1876797,1876821,1876845,1876875,1876905,1876923,1877147,1877229,1877487,1877551,1877563,1877623,1877661,1877697,1877731,1877779,1877845,1877873,1877947,1877999,1878051,1878103,1878149,1878175,1878201,1878241,1878267,1878293,1878319,1878341,1878365,1878393,1878417,1878445,1878471,1878501,1878521,1878547,1878573,1878605,1878637,1878657,1878883,1878947,1879209,1879257,1879301,1879357,1879401,1879436,1879488,1879569,1879643,1879695,1879747,1879799,1879845,1879873,1879901,1879933,1879961,1879989,1880017,1880051,1880077,1880107,1880133,1880163,1880187,1880199,1880231,1880273,1880301,1880335,1880369,1880391,1880593,1880663,1880877,1880955,1880999,1881055,1881097,1881135,1881185,1881245,1881251,1881281,1881401,1881453,1881505,1881551,1881581,1881611,1881645,1881675,1881705,1881735,1881771,1881799,1881831,1881859,1881891,1881917,1881931,1881965,1882009,1882028,1882075,1882111,1882135,1882327,1882391,1882589,1882667,1882711,1882767,1882809,1882849,1882899,1882959,1882989,1883063,1883115,1883167,1883219,1883265,1883297,1883329,1883365,1883397,1883429,1883461,1883499,1883529,1883563,1883593,1883627,1883655,1883671,1883707,1883753,1883785,1883823,1883861,1883887,1884083,1884127,1884381,1884425,1884481,1884523,1884565,1884617,1884675,1884705,1884779,1884831,1884883,1884935,1884981,1885015,1885049,1885099,1885133,1885167,1885201,1885231,1885263,1885323,1885359,1885395,1885433,1885461,1885493,1885527,1885567,1885607,1885635,1885821,1885859,1886025,1886107,1886147,1886203,1886245,1886289,1886343,1886399,1886429,1886503,1886555,1886607,1886659,1886705,1886741,1886777,1886829,1886867,1886931,1886963,1886993,1887033,1887067,1887105,1887141,1887181,1887211,1887245,1887291,1887323,1887389,1887565,1887599,1887749,1887831,1887873,1887927,1887971,1888017,1888071,1888123,1888155,1888185,1888277,1888327,1888379,1888391,1888431,1888499,1888553,1888591,1888645,1888689,1888725,1888765,1888803,1888843,1888881,1888923,1888955,1888991,1889029,1889073,1889117,1889167,1889333,1889425,1889509,1889553,1889595,1889647,1889691,1889739,1889795,1889847,1889879,1889949,1890001,1890051,1890105,1890153,1890193,1890265,1890319,1890359,1890421,1890459,1890501,1890539,1890579,1890623,1890667,1890677,1890711,1890749,1890799,1890835,1890879,1890929,1891079,1891257,1891273,1891315,1891367,1891413,1891461,1891517,1891569,1891603,1891671,1891725,1891773,1891829,1891849,1891921,1891995,1892051,1892093,1892157,1892163,1892241,1892247,1892323,1892329,1892415,1892423,1892463,1892499,1892555,1892631,1892639,1892691,1892819,1892887,1892985,1893003,1893045,1893097,1893145,1893193,1893249,1893327,1893395,1893447,1893497,1893551,1893561,1893613,1893657,1893733,1893791,1893835,1893901,1893943,1893989,1894031,1894075,1894123,1894171,1894181,1894217,1894259,1894303,1894353,1894403,1894455,1894571,1894642,1894733,1894753,1894797,1894803,1894899,1894909,1895001,1895079,1895147,1895199,1895249,1895303,1895329,1895401,1895445,1895507,1895551,1895597,1895665,1895709,1895757,1895805,1895847,1895899,1895949,1895989,1896033,1896079,1896131,1896183,1896237,1896303,1896367,1896415,1896503,1896525,1896571,1896621,1896671,1896719,1896771,1896847,1896913,1896965,1897015,1897067,1897073,1897103,1897173,1897277,1897323,1897371,1897377,1897487,1897537,1897587,1897612,1897685,1897737,1897779,1897827,1897874,1897929,1897981,1898037,1898087,1898143,1898191,1898281,1898305,1898353,1898405,1898457,1898507,1898559,1898635,1898697,1898749,1898799,1898849,1898879,1898951,1898999,1899065,1899113,1899163,1899235,1899283,1899335,1899387,1899433,1899443,1899537,1899557,1899595,1899645,1899693,1899755,1899803,1899887,1899919,1899979,1900061,1900087,1900093,1900189,1900241,1900293,1900345,1900423,1900487,1900541,1900593,1900645,1900677,1900751,1900801,1900869,1900942,1901039,1901089,1901143,1901197,1901249,1901303,1901363,1901407,1901459,1901509,1901567,1901623,1901683,1901711,1901773,1901787,1901869,1901897,1901949,1902003,1902057,1902111,1902165,1902243,1902305,1902359,1902413,1902465,1902499,1902573,1902687,1902739,1902793,1902869,1902921,1902981,1903033,1903087,1903093,1903193,1903217,1903259,1903313,1903363,1903423,1903483,1903563,1903573,1903637,1903691,1903753,1903763,1903815,1903913,1903921,1903975,1904099,1904159,1904167,1904221,1904275,1904327,1904361,1904435,1904545,1904597,1904651,1904725,1904779,1904871,1904891,1904943,1904999,1905061,1905107,1905163,1905213,1905323,1905385,1905417,1905483,1905491,1905543,1905605,1905617,1905669,1905765,1905775,1905829,1905951,1906009,1906055,1906117,1906169,1906203,1906277,1906287,1906393,1906445,1906499,1906540,1906627,1906633,1906737,1906785,1906799,1906893,1906921,1906965,1907059,1907117,1907173,1907235,1907269,1907335,1907347,1907427,1907459,1907473,1907525,1907619,1907631,1907685,1907805,1907861,1907907,1907969,1908021,1908055,1908129,1908141,1908243,1908295,1908349,1908421,1908475,1908563,1908587,1908639,1908695,1908761,1908803,1908815,1908907,1908965,1909019,1909081,1909117,1909183,1909205,1909275,1909309,1909363,1909377,1909469,1909483,1909537,1909655,1909709,1909755,1909817,1909869,1909905,1909977,1909991,1910031,1910135,1910189,1910201,1910273,1910327,1910413,1910453,1910495,1910547,1910611,1910661,1910687,1910759,1910815,1910869,1910931,1910969,1911053,1911119,1911155,1911209,1911225,1911315,1911331,1911385,1911501,1911555,1911601,1911667,1911745,1911817,1911865,1911965,1912019,1912033,1912103,1912157,1912241,1912269,1912321,1912377,1912443,1912493,1912501,1912639,1912647,1912753,1912793,1912859,1912885,1912949,1912987,1913041,1913059,1913147,1913165,1913219,1913377,1913423,1913485,1913537,1913575,1913645,1913693,1913789,1913843,1913859,1913927,1913981,1914065,1914105,1914151,1914252,1914303,1914321,1914407,1914461,1914513,1914575,1914617,1914683,1914711,1914771,1914811,1914865,1914885,1914971,1915035,1915143,1915197,1915243,1915305,1915359,1915397,1915509,1915601,1915655,1915673,1915739,1915795,1915875,1915915,1916002,1916067,1916113,1916133,1916217,1916271,1916323,1916383,1916427,1916493,1916523,1916581,1916623,1916689,1916737,1916797,1916851,1916989,1917005,1917068,1917113,1917167,1917232,1917315,1917405,1917411,1917479,1917487,1917598,1917677,1917700,1917805,1917869,1917915,1917937,1918019,1918073,1918125,1918183,1918229,1918295,1918327,1918383,1918471,1918495,1918577,1918601,1918655,1918795,1918841,1918903,1918957,1918999,1919065,1919113,1919201,1919255,1919279,1919339,1919395,1919471,1919511,1919599,1919663,1919709,1919733,1919813,1919825,1919919,1919977,1920023,1920089,1920095,1920129,1920265,1920291,1920371,1920397,1920451,1920457,1920591,1920693,1920699,1920764,1920797,1920861,1920909,1920995,1921049,1921075,1921133,1921189,1921263,1921305,1921391,1921455,1921501,1921527,1921607,1921659,1921711,1921782,1921872,1921909,1921963,1921969,1922057,1922085,1922163,1922191,1922245,1922373,1922419,1922481,1922535,1922579,1922643,1922691,1922773,1922827,1922855,1922913,1922969,1923041,1923083,1923167,1923231,1923277,1923305,1923383,1923437,1923489,1923545,1923593,1923655,1923693,1923747,1923835,1923865,1923941,1923971,1924025,1924147,1924193,1924255,1924309,1924355,1924405,1924427,1924499,1924585,1924629,1924685,1924743,1924811,1924855,1924939,1925001,1925049,1925079,1925155,1925208,1925259,1925317,1925363,1925423,1925463,1925517,1925607,1925639,1925713,1925747,1925801,1925917,1925963,1926025,1926079,1926125,1926187,1926235,1926313,1926367,1926399,1926453,1926509,1926579,1926624,1926703,1926769,1926813,1926847,1926919,1926975,1927025,1927081,1927129,1927189,1927231,1927283,1927371,1927405,1927457,1927485,1927561,1927599,1927685,1927759,1927793,1927847,1927893,1927953,1928001,1928077,1928131,1928167,1928217,1928327,1928341,1928443,1928517,1928563,1928597,1928669,1928723,1928775,1928825,1928881,1928931,1928951,1928995,1929051,1929137,1929213,1929243,1929279,1929347,1929437,1929483,1929545,1929555,1929609,1929657,1929755,1929830,1929883,1929919,1929969,1930079,1930095,1930195,1930269,1930315,1930351,1930421,1930475,1930527,1930577,1930633,1930683,1930705,1930751,1930807,1930891,1930965,1930999,1931074,1931113,1931191,1931263,1931299,1931353,1931403,1931459,1931509,1931581,1931635,1931675,1931725,1931827,1931845,1931943,1932015,1932063,1932101,1932169,1932223,1932275,1932325,1932381,1932431,1932455,1932503,1932559,1932641,1932715,1932749,1932825,1932863,1932937,1933009,1933045,1933099,1933149,1933205,1933255,1933327,1933381,1933423,1933473,1933571,1933589,1933673,1933743,1933763,1933845,1933911,1933965,1934017,1934067,1934125,1934173,1934199,1934249,1934305,1934385,1934457,1934463,1934499,1934575,1934613,1934685,1934787,1934841,1934891,1934947,1934997,1935067,1935073,1935165,1935215,1935309,1935331,1935423,1935493,1935543,1935585,1935649,1935703,1935755,1935805,1935863,1935911,1935939,1935991,1936047,1936125,1936195,1936233,1936309,1936347,1936417,1936519,1936573,1936623,1936679,1936729,1936797,1936851,1936897,1936947,1937037,1937061,1937151,1937219,1937271,1937315,1937377,1937431,1937483,1937533,1937591,1937639,1937669,1937721,1937777,1937853,1937921,1937959,1938035,1938073,1938141,1938207,1938249,1938303,1938353,1938409,1938459,1938525,1938579,1938659,1938677,1938775,1938789,1938877,1938943,1938995,1939041,1939101,1939155,1939185,1939257,1939263,1939323,1939369,1939401,1939455,1939511,1939641,1939683,1939739,1939797,1939809,1939895,1939937,1940027,1940077,1940133,1940183,1940247,1940301,1940381,1940401,1940497,1940513,1940597,1940663,1940715,1940763,1940821,1940875,1940929,1940977,1941058,1941111,1941119,1941195,1941229,1941353,1941397,1941453,1941513,1941577,1941641,1941685,1941739,1941789,1941845,1941895,1941957,1942011,1942091,1942113,1942207,1942225,1942305,1942371,1942423,1942473,1942529,1942583,1942637,1942685,1942745,1942793,1942836,1942904,1942939,1943059,1943107,1943183,1943221,1943281,1943345,1943389,1943443,1943493,1943549,1943601,1943659,1943713,1943793,1943817,1943909,1943929,1944005,1944069,1944123,1944173,1944229,1944283,1944374,1944435,1944481,1944519,1944573,1944629,1944641,1944761,1944767,1944881,1944919,1944977,1944983,1945047,1945091,1945145,1945197,1945251,1945305,1945361,1945415,1945495,1945521,1945611,1945633,1945707,1945769,1945823,1945875,1945929,1945983,1946073,1946153,1946213,1946267,1946323,1946337,1946366,1946460,1946573,1946611,1946669,1946731,1946741,1946830,1946839,1946891,1946945,1946999,1947053,1947107,1947185,1947213,1947302,1947325,1947395,1947457,1947511,1947563,1947617,1947671,1947759,1947819,1947865,1947907,1947961,1948017,1948033,1948143,1948191,1948263,1948301,1948359,1948419,1948467,1948521,1948577,1948627,1948683,1948739,1948793,1948869,1948901,1948987,1949013,1949131,1949185,1949212,1949293,1949347,1949431,1949493,1949539,1949583,1949637,1949693,1949711,1949817,1949865,1949935,1949975,1950031,1950091,1950139,1950193,1950245,1950299,1950353,1950407,1950465,1950537,1950575,1950675,1950689,1950799,1950853,1950907,1950961,1951015,1951097,1951159,1951205,1951251,1951307,1951361,1951370,1951378,1951380,1951382,1951430,1951478,1951480,1951482,1951503,1951524,1951525,1951526,1951527,1951559,1951591,1951592,1951593,1951612,1951631,1951632,1951633,1951658,1951683,1951684,1951712,1951740,1951742,1951744,1951765,1951787,1951789,1951813,1951837,1951838,1951839,1951863,1951890,1951894,1951916,1951938,1951942,1951948,1951951,1951971,1951994,1951998,1951999,1952021,1952046,1952070,1952091,1952096,1952131,1952162,1952163,1952165,1952180,1952194,1952195,1952196,1952235,1952274,1952275,1952276,1952289,1952302,1952303,1952304,1952333,1952362,1952363,1952364,1952391,1952418,1952419,1952420,1952445,1952470,1952471,1952472,1952497,1952522,1952523,1952524,1952549,1952574,1952575,1952576,1952601,1952626,1952627,1952665,1952703,1952704,1952705,1952734,1952763,1952764,1952765,1952786,1952807,1952808,1952830,1952852,1952853,1952854,1952879,1952905,1952907,1952908,1952933,1952958,1952959,1952968,1952978,1952980,1953025,1953071,1953073,1953093,1953113,1953114,1953115,1953145,1953175,1953176,1953195,1953214,1953215,1953216,1953239,1953262,1953263,1953264,1953291,1953318,1953320,1953322,1953342,1953363,1953365,1953366,1953389,1953412,1953413,1953414,1953437,1953463,1953467,1953488,1953509,1953513,1953519,1953522,1953523,1953542,1953564,1953568,1953569,1953590,1953614,1953637,1953657,1953662,1953695,1953724,1953726,1953741,1953755,1953756,1953757,1953758,1953794,1953830,1953831,1953832,1953845,1953858,1953859,1953860,1953887,1953914,1953915,1953916,1953942,1953968,1953969,1953970,1953994,1954018,1954019,1954020,1954044,1954068,1954069,1954070,1954071,1954095,1954119,1954120,1954121,1954145,1954169,1954170,1954171,1954207,1954243,1954244,1954245,1954273,1954301,1954302,1954303,1954323,1954343,1954344,1954366,1954388,1954389,1954390,1954414,1954439,1954441,1954442,1954443,1954467,1954491,1954492,1954501,1954511,1954513,1954516,1954558,1954599,1954601,1954620,1954639,1954640,1954641,1954642,1954670,1954698,1954699,1954700,1954719,1954738,1954739,1954740,1954762,1954784,1954785,1954810,1954835,1954836,1954838,1954840,1954860,1954881,1954883,1954905,1954927,1954928,1954929,1954951,1954976,1954980,1955000,1955023,1955029,1955032,1955033,1955051,1955072,1955076,1955077,1955097,1955120,1955142,1955161,1955192,1955223,1955224,1955226,1955241,1955255,1955256,1955257,1955258,1955292,1955326,1955327,1955328,1955341,1955354,1955355,1955356,1955381,1955406,1955407,1955408,1955409,1955434,1955459,1955460,1955461,1955484,1955507,1955508,1955509,1955532,1955555,1955556,1955557,1955558,1955581,1955604,1955605,1955606,1955629,1955652,1955653,1955654,1955688,1955722,1955723,1955724,1955751,1955778,1955779,1955780,1955799,1955818,1955819,1955841,1955863,1955864,1955865,1955888,1955912,1955914,1955915,1955916,1955939,1955962,1955963,1955972,1955982,1955984,1955987,1956026,1956064,1956066,1956084,1956102,1956103,1956104,1956105,1956131,1956157,1956158,1956177,1956196,1956197,1956198,1956219,1956240,1956241,1956265,1956289,1956290,1956292,1956294,1956313,1956333,1956335,1956336,1956357,1956378,1956379,1956380,1956401,1956425,1956429,1956448,1956467,1956471,1956477,1956480,1956481,1956498,1956518,1956522,1956523,1956542,1956564,1956585,1956603,1956632,1956661,1956662,1956664,1956679,1956693,1956694,1956695,1956696,1956728,1956760,1956761,1956762,1956775,1956788,1956789,1956790,1956813,1956836,1956837,1956838,1956839,1956863,1956887,1956888,1956910,1956932,1956933,1956934,1956956,1956978,1956979,1956980,1956981,1956982,1957004,1957026,1957027,1957028,1957050,1957072,1957073,1957074,1957107,1957140,1957141,1957142,1957167,1957192,1957193,1957194,1957213,1957232,1957233,1957254,1957275,1957276,1957277,1957299,1957322,1957324,1957325,1957326,1957348,1957370,1957371,1957380,1957390,1957392,1957395,1957431,1957466,1957468,1957486,1957504,1957505,1957506,1957530,1957554,1957555,1957574,1957593,1957594,1957595,1957596,1957616,1957636,1957637,1957659,1957681,1957682,1957684,1957686,1957705,1957725,1957727,1957728,1957748,1957768,1957769,1957789,1957812,1957816,1957834,1957852,1957856,1957862,1957865,1957866,1957882,1957901,1957905,1957906,1957924,1957945,1957965,1957982,1958009,1958036,1958038,1958053,1958067,1958068,1958069,1958070,1958100,1958130,1958131,1958132,1958145,1958158,1958159,1958160,1958181,1958202,1958203,1958204,1958227,1958250,1958251,1958272,1958293,1958294,1958295,1958316,1958337,1958338,1958339,1958340,1958341,1958362,1958383,1958384,1958385,1958406,1958427,1958428,1958436,1958468,1958493,1958516,1958539,1958540,1958541,1958560,1958579,1958580,1958600,1958620,1958621,1958642,1958663,1958665,1958667,1958668,1958669,1958690,1958711,1958712,1958721,1958731,1958735,1958768,1958799,1958801,1958803,1958821,1958839,1958840,1958841,1958863,1958885,1958886,1958905,1958924,1958925,1958926,1958927,1958928,1958947,1958966,1958986,1959006,1959007,1959008,1959010,1959012,1959031,1959051,1959053,1959054,1959073,1959092,1959093,1959112,1959131,1959135,1959139,1959156,1959173,1959177,1959183,1959186,1959187,1959202,1959220,1959224,1959225,1959242,1959262,1959281,1959297,1959322,1959347,1959349,1959364,1959378,1959379,1959380,1959403,1959431,1959437,1959438,1959439,1959452,1959465,1959466,1959467,1959487,1959507,1959508,1959509,1959530,1959551,1959552,1959572,1959592,1959593,1959594,1959614,1959634,1959635,1959636,1959637,1959638,1959658,1959678,1959679,1959680,1959700,1959720,1959721,1959729,1959737,1959761,1959785,1959806,1959827,1959828,1959829,1959848,1959867,1959868,1959887,1959906,1959907,1959927,1959947,1959949,1959951,1959952,1959969,1959989,1959993,1960002,1960012,1960016,1960046,1960074,1960076,1960078,1960079,1960097,1960115,1960116,1960136,1960156,1960157,1960176,1960195,1960196,1960197,1960198,1960199,1960217,1960235,1960254,1960273,1960275,1960277,1960295,1960314,1960316,1960317,1960335,1960353,1960354,1960372,1960390,1960394,1960398,1960414,1960430,1960434,1960440,1960443,1960444,1960458,1960475,1960479,1960495,1960514,1960532,1960547,1960570,1960593,1960595,1960610,1960624,1960625,1960626,1960647,1960673,1960679,1960680,1960681,1960694,1960707,1960708,1960709,1960728,1960747,1960748,1960767,1960786,1960787,1960803,1960822,1960826,1960827,1960846,1960865,1960866,1960867,1960868,1960869,1960870,1960889,1960908,1960909,1960913,1960932,1960948,1960949,1960957,1960965,1960987,1961009,1961010,1961030,1961050,1961051,1961052,1961071,1961090,1961091,1961109,1961127,1961128,1961129,1961148,1961167,1961169,1961171,1961172,1961188,1961207,1961219,1961229,1961232,1961260,1961287,1961289,1961291,1961292,1961309,1961326,1961327,1961345,1961363,1961364,1961382,1961400,1961401,1961402,1961403,1961404,1961410,1961427,1961439,1961457,1961475,1961476,1961478,1961480,1961497,1961515,1961517,1961534,1961551,1961552,1961570,1961588,1961592,1961596,1961611,1961626,1961630,1961635,1961637,1961638,1961652,1961669,1961673,1961674,1961689,1961707,1961724,1961738,1961759,1961780,1961781,1961783,1961798,1961812,1961813,1961831,1961854,1961860,1961861,1961874,1961887,1961888,1961889,1961890,1961908,1961926,1961927,1961945,1961963,1961964,1961965,1961980,1961998,1962002,1962003,1962021,1962039,1962040,1962041,1962042,1962043,1962044,1962062,1962080,1962081,1962085,1962103,1962118,1962125,1962132,1962133,1962154,1962175,1962176,1962195,1962214,1962215,1962233,1962251,1962252,1962265,1962283,1962289,1962290,1962308,1962326,1962327,1962329,1962331,1962332,1962346,1962363,1962375,1962384,1962386,1962413,1962439,1962440,1962442,1962444,1962460,1962476,1962477,1962478,1962495,1962512,1962513,1962530,1962547,1962548,1962549,1962550,1962551,1962557,1962573,1962584,1962601,1962618,1962619,1962621,1962623,1962639,1962656,1962658,1962674,1962690,1962691,1962708,1962725,1962726,1962730,1962734,1962748,1962765,1962769,1962771,1962773,1962786,1962799,1962803,1962807,1962821,1962835,1962851,1962867,1962887,1962907,1962908,1962909,1962911,1962925,1962938,1962939,1962940,1962956,1962977,1962983,1962984,1962997,1963010,1963011,1963012,1963013,1963030,1963047,1963048,1963065,1963082,1963083,1963084,1963098,1963115,1963119,1963120,1963137,1963154,1963155,1963156,1963157,1963158,1963175,1963192,1963193,1963196,1963213,1963228,1963234,1963240,1963260,1963280,1963281,1963299,1963317,1963334,1963351,1963352,1963364,1963381,1963387,1963388,1963405,1963422,1963424,1963426,1963427,1963440,1963456,1963468,1963477,1963479,1963504,1963528,1963530,1963532,1963547,1963562,1963563,1963564,1963580,1963596,1963612,1963628,1963629,1963630,1963631,1963636,1963651,1963662,1963678,1963694,1963695,1963697,1963699,1963714,1963730,1963746,1963761,1963762,1963778,1963794,1963798,1963802,1963815,1963831,1963835,1963836,1963849,1963862,1963866,1963870,1963883,1963896,1963911,1963926,1963944,1963962,1963963,1963965,1963979,1963992,1963993,1964007,1964021,1964027,1964033,1964046,1964059,1964060,1964061,1964062,1964078,1964094,1964095,1964111,1964127,1964128,1964129,1964142,1964158,1964162,1964178,1964194,1964195,1964196,1964197,1964198,1964214,1964230,1964231,1964234,1964250,1964264,1964269,1964274,1964293,1964312,1964313,1964330,1964347,1964363,1964379,1964380,1964391,1964407,1964413,1964414,1964430,1964446,1964448,1964450,1964451,1964463,1964478,1964490,1964499,1964501,1964524,1964546,1964548,1964550,1964564,1964578,1964579,1964580,1964595,1964610,1964625,1964640,1964641,1964642,1964643,1964647,1964661,1964672,1964673,1964688,1964703,1964704,1964706,1964708,1964722,1964737,1964752,1964766,1964767,1964782,1964797,1964798,1964802,1964806,1964818,1964833,1964837,1964838,1964850,1964862,1964866,1964870,1964882,1964894,1964908,1964922,1964938,1964954,1964955,1964957,1964971,1964984,1964985,1964997,1965009,1965015,1965021,1965034,1965047,1965048,1965049,1965050,1965065,1965080,1965081,1965096,1965111,1965112,1965124,1965139,1965143,1965158,1965173,1965174,1965175,1965176,1965177,1965192,1965207,1965208,1965211,1965226,1965239,1965243,1965247,1965265,1965283,1965284,1965300,1965316,1965331,1965346,1965347,1965348,1965358,1965373,1965379,1965380,1965395,1965410,1965412,1965414,1965415,1965426,1965440,1965452,1965461,1965462,1965464,1965484,1965503,1965505,1965507,1965520,1965533,1965534,1965535,1965549,1965563,1965564,1965578,1965592,1965593,1965594,1965595,1965599,1965612,1965622,1965623,1965637,1965651,1965652,1965654,1965656,1965669,1965683,1965697,1965710,1965711,1965725,1965739,1965740,1965744,1965748,1965759,1965773,1965777,1965778,1965789,1965800,1965804,1965808,1965819,1965830,1965843,1965856,1965871,1965886,1965887,1965889,1965902,1965914,1965915,1965926,1965937,1965942,1965947,1965960,1965973,1965974,1965975,1965976,1965990,1966004,1966005,1966006,1966020,1966034,1966035,1966046,1966060,1966064,1966078,1966092,1966093,1966094,1966095,1966096,1966110,1966124,1966125,1966128,1966142,1966154,1966158,1966162,1966178,1966194,1966195,1966210,1966225,1966239,1966253,1966254,1966255,1966264,1966278,1966284,1966298,1966312,1966314,1966316,1966317,1966327,1966340,1966352,1966361,1966362,1966364,1966382,1966399,1966401,1966414,1966426,1966427,1966428,1966441,1966454,1966455,1966468,1966481,1966482,1966483,1966484,1966488,1966500,1966509,1966510,1966523,1966536,1966537,1966539,1966541,1966553,1966566,1966579,1966591,1966592,1966605,1966618,1966619,1966623,1966627,1966637,1966650,1966654,1966655,1966665,1966675,1966679,1966683,1966693,1966703,1966715,1966727,1966740,1966753,1966754,1966756,1966769,1966781,1966782,1966792,1966802,1966806,1966810,1966823,1966836,1966837,1966838,1966839,1966852,1966865,1966866,1966867,1966880,1966893,1966894,1966904,1966917,1966921,1966934,1966947,1966948,1966949,1966950,1966951,1966964,1966977,1966980,1966983,1966994,1967005,1967009,1967013,1967027,1967041,1967055,1967069,1967082,1967095,1967096,1967097,1967105,1967118,1967124,1967137,1967150,1967151,1967153,1967155,1967156,1967165,1967177,1967189,1967198,1967200,1967216,1967232,1967244,1967255,1967256,1967257,1967269,1967281,1967282,1967294,1967306,1967307,1967308,1967309,1967313,1967324,1967332,1967333,1967345,1967357,1967358,1967360,1967362,1967373,1967385,1967397,1967408,1967409,1967421,1967433,1967434,1967438,1967442,1967451,1967463,1967467,1967468,1967477,1967486,1967490,1967494,1967503,1967512,1967523,1967534,1967546,1967558,1967560,1967572,1967583,1967584,1967593,1967602,1967606,1967610,1967622,1967634,1967635,1967636,1967648,1967660,1967661,1967662,1967674,1967686,1967695,1967704,1967708,1967723,1967735,1967736,1967737,1967738,1967739,1967751,1967763,1967764,1967767,1967779,1967789,1967793,1967797,1967809,1967821,1967822,1967835,1967848,1967860,1967872,1967873,1967874,1967881,1967893,1967899,1967911,1967923,1967924,1967926,1967928,1967936,1967947,1967959,1967968,1967969,1967971,1967985,1967999,1968001,1968011,1968021,1968022,1968025,1968036,1968045,1968056,1968067,1968068,1968069,1968070,1968074,1968084,1968091,1968102,1968113,1968114,1968116,1968118,1968128,1968139,1968150,1968160,1968161,1968172,1968183,1968184,1968188,1968192,1968200,1968211,1968215,1968223,1968231,1968232,1968236,1968240,1968248,1968265,1968275,1968286,1968297,1968298,1968300,1968311,1968321,1968322,1968330,1968338,1968342,1968346,1968357,1968368,1968369,1968370,1968381,1968392,1968393,1968394,1968405,1968416,1968424,1968432,1968436,1968450,1968461,1968462,1968463,1968464,1968465,1968476,1968487,1968488,1968491,1968502,1968511,1968515,1968519,1968529,1968539,1968551,1968563,1968564,1968575,1968586,1968587,1968593,1968599,1968605,1968621,1968632,1968633,1968635,1968637,1968638,1968645,1968655,1968667,1968676,1968677,1968679,1968692,1968704,1968713,1968722,1968723,1968726,1968736,1968744,1968754,1968764,1968765,1968766,1968767,1968770,1968779,1968786,1968796,1968806,1968808,1968810,1968819,1968829,1968839,1968848,1968849,1968850,1968886,1969230,1969256,1969284,1969291,1969316,1969368,1969374,1969396,1969418,1969426,1969462,1969468,1969496,1969514,1969528,1969534,1969540,1969546,1969552,1969558,1969564,1969570,1969576,1969582,1969588,1969594,1969600,1969606,1969612,1969618,1969624,1969630,1969636,1969924,1969946,1969974,1969998,1970018,1970024,1970060,1970068,1970090,1970112,1970134,1970156,1970178,1970194,1970218,1970226,1970234,1970242,1970250,1970258,1970266,1970274,1970282,1970290,1970300,1970308,1970315,1970324,1970332,1970340,1970348,1970356,1970594,1970616,1970638,1970666,1970690,1970710,1970718,1970752,1970762,1970790,1970806,1970830,1970850,1970872,1970890,1970914,1970926,1970936,1970946,1970956,1970966,1970976,1970984,1970993,1971004,1971012,1971022,1971032,1971042,1971052,1971062,1971072,1971082,1971092,1971298,1971324,1971346,1971370,1971396,1971414,1971424,1971456,1971468,1971500,1971512,1971536,1971556,1971578,1971598,1971624,1971636,1971648,1971660,1971672,1971684,1971696,1971708,1971720,1971732,1971744,1971756,1971768,1971780,1971792,1971804,1971816,1971828,1971886,1972024,1972050,1972074,1972100,1972118,1972130,1972160,1972174,1972196,1972218,1972242,1972262,1972284,1972306,1972331,1972346,1972360,1972374,1972388,1972402,1972416,1972430,1972444,1972456,1972468,1972482,1972502,1972516,1972530,1972544,1972555,1972572,1972622,1972736,1972762,1972786,1972811,1972830,1972844,1972852,1972880,1972896,1972924,1972940,1972976,1972997,1973012,1973026,1973057,1973068,1973084,1973100,1973118,1973134,1973150,1973166,1973182,1973198,1973214,1973230,1973246,1973264,1973278,1973296,1973312,1973328,1973378,1973460,1973486,1973510,1973536,1973554,1973570,1973596,1973614,1973636,1973658,1973682,1973702,1973723,1973731,1973752,1973778,1973796,1973814,1973832,1973850,1973868,1973888,1973906,1973924,1973942,1973960,1973980,1973990,1974018,1974035,1974054,1974072,1974090,1974122,1974192,1974208,1974224,1974248,1974272,1974292,1974310,1974334,1974368,1974383,1974414,1974436,1974458,1974480,1974506,1974526,1974546,1974566,1974576,1974598,1974618,1974646,1974658,1974684,1974700,1974718,1974738,1974758,1974780,1974800,1974820,1974840,1974860,1974890,1974932,1974958,1974982,1975006,1975026,1975046,1975068,1975092,1975112,1975136,1975156,1975178,1975200,1975224,1975250,1975272,1975294,1975316,1975338,1975360,1975382,1975404,1975426,1975446,1975472,1975484,1975506,1975528,1975552,1975574,1975596,1975618,1975656,1975662,1975706,1975734,1975760,1975786,1975810,1975830,1975856,1975896,1975922,1975943,1975950,1975974,1976016,1976044,1976068,1976092,1976116,1976130,1976166,1976190,1976212,1976238,1976259,1976288,1976302,1976326,1976349,1976376,1976400,1976438,1976446,1976481,1976492,1976538,1976568,1976596,1976624,1976652,1976674,1976702,1976726,1976750,1976778,1976802,1976828,1976854,1976882,1976912,1976938,1976982,1976990,1977036,1977050,1977086,1977094,1977138,1977156,1977184,1977210,1977254,1977280,1977306,1977332,1977358,1977382,1977428,1977460,1977490,1977520,1977546,1977572,1977600,1977630,1977656,1977686,1977712,1977740,1977768,1977798,1977828,1977858,1977886,1977914,1977942,1977970,1977998,1978026,1978054,1978080,1978112,1978124,1978152,1978180,1978210,1978238,1978266,1978294,1978322,1978348,1978394,1978428,1978460,1978492,1978520,1978548,1978578,1978610,1978638,1978670,1978698,1978728,1978758,1978792,1978824,1978856,1978884,1978914,1978952,1978982,1979004,1979034,1979064,1979104,1979132,1979162,1979192,1979224,1979254,1979284,1979314,1979344,1979372,1979418,1979454,1979488,1979522,1979552,1979582,1979590,1979648,1979656,1979712,1979742,1979774,1979806,1979840,1979874,1979908,1979940,1979972,1980004,1980038,1980068,1980100,1980132,1980176,1980198,1980238,1980252,1980304,1980336,1980368,1980400,1980432,1980462,1980508,1980546,1980582,1980618,1980650,1980684,1980692,1980754,1980762,1980820,1980852,1980888,1980920,1980960,1980992,1981032,1981062,1981098,1981140,1981174,1981200,1981250,1981268,1981312,1981344,1981386,1981414,1981450,1981484,1981544,1981568,1981598,1981656,1981696,1981734,1981772,1981806,1981842,1981852,1981916,1981926,1981986,1982020,1982058,1982092,1982134,1982168,1982210,1982242,1982280,1982324,1982355,1982384,1982422,1982458,1982504,1982539,1982574,1982610,1982648,1982686,1982722,1982758,1982794,1982828,1982874,1982916,1982956,1982996,1983054,1983068,1983120,1983148,1983210,1983246,1983284,1983296,1983370,1983406,1983450,1983484,1983524,1983570,1983608,1983634,1983678,1983712,1983761,1983796,1983834,1983870,1983910,1983954,1984018,1984056,1984092,1984138,1984182,1984224,1984266,1984304,1984344,1984358,1984426,1984440,1984504,1984542,1984584,1984622,1984668,1984700,1984742,1984785,1984822,1984878,1984918,1984946,1984988,1985030,1985080,1985118,1985156,1985195,1985238,1985274,1985314,1985356,1985396,1985434,1985480,1985526,1985570,1985614,1985652,1985694,1985716,1985780,1985826,1985872,1985930,1985946,1985986,1986060,1986104,1986146,1986188,1986230,1986274,1986314,1986358,1986400,1986452,1986492,1986534,1986576,1986626,1986664,1986706,1986750,1986792,1986832,1986878,1986926,1986972,1987018,1987058,1987102,1987126,1987192,1987240,1987288,1987322,1987364,1987406,1987484,1987530,1987548,1987588,1987634,1987686,1987730,1987790,1987836,1987892,1987934,1987978,1988022,1988068,1988112,1988156,1988200,1988244,1988286,1988332,1988382,1988430,1988480,1988522,1988572,1988598,1988666,1988716,1988766,1988828,1988848,1988892,1988970,1989018,1989064,1989080,1989128,1989182,1989228,1989290,1989338,1989396,1989440,1989486,1989532,1989580,1989630,1989676,1989724,1989907,1990084,1990160,1990212,1990264,1990328,1990350,1990396,1990476,1990528,1990574,1990624,1990670,1990720,1990766,1990822,1990864,1990930,1990976,1991026,1991070,1991120,1991164,1991246,1991294,1991300,1991346,1991352,1991358,1991364,1991370,1991378,1991642,1991716,1991744,1991828,1991852,1991928,1991942,1992032,1992080,1992136,1992176,1992226,1992274,1992326,1992374,1992432,1992476,1992544,1992592,1992630,1992680,1992732,1992748,1992794,1992878,1992928,1992976,1992984,1992992,1993000,1993008,1993016,1993062,1993290,1993380,1993406,1993482,1993532,1993586,1993602,1993694,1993744,1993802,1993844,1993896,1993946,1994044,1994104,1994150,1994156,1994270,1994324,1994372,1994426,1994474,1994560,1994612,1994622,1994672,1994682,1994692,1994702,1994714,1994762,1994992,1995084,1995112,1995162,1995242,1995299,1995400,1995450,1995510,1995554,1995608,1995660,1995716,1995824,1995938,1995990,1996046,1996096,1996152,1996158,1996290,1996298,1996352,1996404,1996416,1996428,1996440,1996452,1996468,1996549,1996736,1996836,1996898,1996974,1997030,1997050,1997140,1997188,1997248,1997292,1997298,1997398,1997454,1997504,1997566,1997612,1997684,1997736,1997792,1997842,1997898,1997948,1998038,1998092,1998144,1998162,1998178,1998192,1998206,1998218,1998302,1998478,1998576,1998638,1998712,1998768,1998790,1998878,1998926,1998986,1999030,1999084,1999136,1999192,1999242,1999304,1999350,1999422,1999474,1999530,1999628,1999678,1999762,1999816,1999832,1999884,1999900,1999918,1999934,1999950,1999983,2000046,2000216,2000326,2000376,2000446,2000502,2000526,2000612,2000660,2000720,2000789,2000865,2000920,2000970,2001068,2001138,2001148,2001248,2001298,2001352,2001402,2001484,2001538,2001594,2001610,2001628,2001648,2001666,2001684,2001736,2001780,2001955,2002090,2002162,2002218,2002244,2002328,2002336,2002384,2002444,2002486,2002540,2002594,2002648,2002698,2002794,2002862,2002874,2002972,2003022,2003076,2003082,2003132,2003212,2003266,2003322,2003340,2003360,2003382,2003402,2003422,2003483,2003651,2003749,2003802,2003824,2003894,2003950,2003978,2004064,2004112,2004172,2004216,2004312,2004368,2004385,2004426,2004520,2004588,2004602,2004698,2004748,2004804,2004854,2004932,2004986,2005042,2005062,2005084,2005108,2005130,2005152,2005236,2005388,2005476,2005536,2005606,2005662,2005692,2005772,2005820,2005880,2005924,2005978,2006032,2006086,2006136,2006230,2006296,2006312,2006406,2006456,2006510,2006560,2006636,2006690,2006746,2006768,2006792,2006820,2006844,2006868,2006950,2007096,2007182,2007242,2007310,2007366,2007398,2007478,2007526,2007586,2007630,2007730,2007782,2007836,2007930,2007994,2008096,2008148,2008208,2008318,2008376,2008446,2008472,2008504,2008530,2008628,2008770,2008878,2008972,2009030,2009130,2009182,2009249,2009330,2009384,2009438,2009491,2009582,2009644,2009744,2009752,2009846,2009896,2009972,2010070,2010098,2010128,2010176,2010206,2010284,2010418,2010549,2010618,2010696,2010770,2010808,2010888,2010968,2010998,2011051,2011105,2011138,2011280,2011340,2011385,2011436,2011530,2011570,2011611,2011732,2011762,2011812,2011844,2011920,2012114,2012174,2012270,2012320,2012396,2012490,2012534,2012588,2012642,2012696,2012752,2012836,2012908,2012994,2013046,2013106,2013146,2013218,2013312,2013346,2013378,2013430,2013464,2013538,2013722,2013780,2013874,2013926,2013998,2014004,2014096,2014142,2014196,2014250,2014304,2014403,2014442,2014514,2014598,2014650,2014710,2014750,2014820,2014912,2014948,2014982,2015036,2015072,2015144,2015318,2015460,2015514,2015584,2015598,2015682,2015728,2015780,2015882,2015938,2016018,2016090,2016170,2016224,2016284,2016324,2016392,2016482,2016520,2016556,2016612,2016650,2016720,2016882,2016940,2017028,2017082,2017150,2017238,2017286,2017340,2017394,2017448,2017504,2017580,2017652,2017730,2017784,2017844,2017884,2017950,2018040,2018080,2018116,2018174,2018216,2018284,2018488,2018570,2018626,2018692,2018778,2018830,2018914,2018980,2019036,2019110,2019118,2019190,2019266,2019320,2019380,2019420,2019484,2019572,2019614,2019652,2019712,2019756,2019822,2019962,2020020,2020098,2020156,2020220,2020304,2020379,2020440,2020506,2020562,2020634,2020644,2020714,2020790,2020898,2020938,2021000,2021086,2021130,2021170,2021232,2021278,2021342,2021472,2021530,2021606,2021664,2021726,2021808,2021904,2021944,2022010,2022066,2022136,2022148,2022218,2022336,2022396,2022438,2022498,2022582,2022628,2022670,2022734,2022782,2022844,2022964,2023022,2023094,2023154,2023214,2023294,2023390,2023430,2023496,2023552,2023620,2023692,2023764,2023816,2023876,2023920,2023984,2024060,2024144,2024210,2024260,2024322,2024430,2024488,2024496,2024566,2024626,2024684,2024762,2024856,2024898,2024964,2025020,2025086,2025156,2025226,2025232,2025334,2025378,2025436,2025516,2025566,2025612,2025680,2025732,2025792,2025888,2025946,2025956,2026024,2026084,2026142,2026218,2026310,2026352,2026418,2026426,2026538,2026544,2026676,2026776,2026820,2026878,2026956,2027008,2027056,2027064,2027134,2027188,2027246,2027330,2027388,2027400,2027466,2027526,2027584,2027658,2027784,2027850,2027906,2027968,2028038,2028104,2028202,2028246,2028304,2028380,2028434,2028484,2028492,2028564,2028622,2028678,2028750,2028814,2028878,2028938,2028996,2029068,2029156,2029198,2029264,2029320,2029380,2029450,2029514,2029610,2029654,2029712,2029786,2029842,2029894,2029906,2030028,2030086,2030156,2030214,2030230,2030292,2030352,2030410,2030480,2030566,2030608,2030674,2030730,2030788,2030858,2030920,2031014,2031056,2031114,2031186,2031242,2031294,2031308,2031378,2031438,2031496,2031558,2031616,2031634,2031696,2031754,2031812,2031880,2031964,2032006,2032072,2032128,2032184,2032250,2032310,2032402,2032446,2032456,2032514,2032582,2032640,2032692,2032708,2032820,2032832,2032890,2032950,2033008,2033028,2033088,2033146,2033204,2033270,2033352,2033394,2033504,2033558,2033630,2033688,2033778,2033824,2033882,2033948,2034006,2034058,2034076,2034140,2034200,2034258,2034316,2034374,2034396,2034454,2034512,2034570,2034634,2034714,2034756,2034822,2034900,2034980,2035004,2035060,2035146,2035192,2035248,2035312,2035370,2035422,2035442,2035504,2035564,2035620,2035676,2035752,2035810,2035866,2035924,2035986,2036064,2036106,2036172,2036248,2036326,2036352,2036408,2036490,2036538,2036594,2036656,2036714,2036766,2036792,2036892,2036908,2036964,2037016,2037022,2037098,2037179,2037210,2037284,2037328,2037404,2037448,2037512,2037586,2037684,2037740,2037820,2037868,2037924,2037984,2038042,2038094,2038122,2038218,2038236,2038292,2038342,2038350,2038432,2038526,2038536,2038608,2038652,2038726,2038772,2038898,2038972,2039002,2039008,2039136,2039184,2039240,2039298,2039356,2039362,2039414,2039444,2039536,2039556,2039654,2039664,2039746,2039836,2039848,2039952,2040024,2040070,2040132,2040200,2040272,2040304,2040360,2040478,2040532,2040590,2040646,2040698,2040730,2040818,2040840,2040896,2040942,2040954,2041034,2041122,2041136,2041236,2041306,2041352,2041414,2041480,2041551,2041586,2041702,2041708,2041760,2041864,2041918,2041970,2042004,2042088,2042112,2042168,2042214,2042228,2042306,2042392,2042408,2042504,2042572,2042622,2042680,2042800,2042836,2042890,2042960,2043012,2043064,2043070,2043126,2043180,2043232,2043268,2043348,2043374,2043430,2043476,2043492,2043568,2043652,2043670,2043762,2043828,2043880,2043936,2044052,2044090,2044144,2044212,2044266,2044318,2044374,2044428,2044436,2044488,2044526,2044604,2044632,2044688,2044734,2044752,2044828,2044910,2044930,2045020,2045084,2045138,2045192,2045304,2045344,2045398,2045464,2045518,2045570,2045628,2045682,2045734,2045774,2045850,2045880,2045938,2045984,2046004,2046080,2046160,2046182,2046270,2046332,2046386,2046440,2046548,2046636,2046644,2046754,2046806,2046862,2046879,2046928,2046980,2047020,2047095,2047126,2047180,2047226,2047248,2047324,2047402,2047426,2047512,2047572,2047628,2047680,2047784,2047828,2047882,2047944,2047998,2048050,2048106,2048160,2048174,2048226,2048270,2048342,2048420,2048466,2048490,2048566,2048642,2048668,2048752,2048768,2048822,2048878,2048926,2049026,2049072,2049126,2049186,2049238,2049340,2049394,2049410,2049464,2049510,2049578,2049656,2049702,2049728,2049804,2049880,2049908,2049990,2050008,2050060,2050116,2050164,2050264,2050308,2050366,2050394,2050441,2050462,2050463,2050465,2050468,2050491,2050513,2050514,2050515,2050516,2050517,2050518,2050519,2050520,2050521,2050547,2050576,2050580,2050581,2050582,2050604,2050626,2050627,2050628,2050629,2050636,2050643,2050644,2050645,2050646,2050671,2050696,2050697,2050698,2050720,2050742,2050743,2050744,2050745,2050776,2050807,2050808,2050809,2050810,2050847,2050884,2050885,2050886,2050887,2050908,2050929,2050930,2050931,2050932,2050944,2050956,2050957,2050958,2050959,2050995,2051031,2051032,2051033,2051034,2051069,2051104,2051105,2051106,2051107,2051120,2051133,2051134,2051135,2051173,2051211,2051212,2051213,2051214,2051222,2051230,2051231,2051232,2051233,2051256,2051279,2051280,2051281,2051282,2051309,2051336,2051337,2051338,2051339,2051361,2051383,2051384,2051385,2051386,2051431,2051476,2051477,2051478,2051479,2051500,2051521,2051522,2051523,2051524,2051551,2051578,2051579,2051580,2051581,2051626,2051671,2051672,2051674,2051677,2051699,2051720,2051721,2051722,2051723,2051724,2051725,2051726,2051727,2051728,2051753,2051781,2051785,2051786,2051787,2051808,2051829,2051830,2051831,2051832,2051839,2051846,2051847,2051848,2051872,2051896,2051897,2051898,2051899,2051921,2051943,2051944,2051945,2051946,2051975,2052004,2052005,2052006,2052042,2052078,2052079,2052080,2052081,2052102,2052123,2052124,2052125,2052137,2052149,2052150,2052151,2052152,2052187,2052222,2052223,2052224,2052257,2052290,2052291,2052292,2052293,2052306,2052319,2052320,2052356,2052392,2052393,2052394,2052402,2052410,2052411,2052412,2052413,2052435,2052457,2052458,2052459,2052460,2052486,2052512,2052513,2052514,2052515,2052536,2052557,2052558,2052559,2052560,2052602,2052644,2052645,2052646,2052666,2052686,2052687,2052688,2052689,2052715,2052741,2052742,2052743,2052744,2052786,2052828,2052829,2052831,2052834,2052855,2052875,2052876,2052877,2052878,2052879,2052880,2052881,2052882,2052883,2052907,2052934,2052938,2052939,2052940,2052960,2052980,2052981,2052982,2052983,2052990,2052997,2052998,2052999,2053022,2053045,2053046,2053047,2053048,2053070,2053092,2053093,2053094,2053095,2053122,2053149,2053150,2053151,2053152,2053187,2053222,2053223,2053224,2053225,2053245,2053265,2053266,2053267,2053268,2053280,2053292,2053293,2053294,2053301,2053335,2053363,2053364,2053365,2053396,2053427,2053428,2053429,2053430,2053431,2053444,2053457,2053458,2053492,2053526,2053527,2053528,2053529,2053537,2053545,2053546,2053547,2053548,2053569,2053590,2053591,2053592,2053593,2053618,2053643,2053644,2053645,2053646,2053666,2053686,2053687,2053688,2053689,2053728,2053767,2053768,2053769,2053770,2053789,2053808,2053809,2053810,2053811,2053836,2053861,2053862,2053863,2053903,2053943,2053944,2053946,2053949,2053969,2053988,2053989,2053990,2053991,2053992,2053993,2053994,2053995,2053996,2054019,2054045,2054049,2054050,2054053,2054072,2054089,2054090,2054091,2054098,2054105,2054106,2054128,2054150,2054151,2054152,2054153,2054154,2054176,2054198,2054199,2054200,2054201,2054226,2054251,2054252,2054253,2054254,2054288,2054322,2054323,2054324,2054325,2054344,2054363,2054364,2054365,2054366,2054367,2054379,2054391,2054392,2054393,2054400,2054433,2054460,2054461,2054462,2054491,2054520,2054521,2054522,2054523,2054536,2054549,2054550,2054551,2054583,2054615,2054616,2054617,2054618,2054626,2054634,2054635,2054636,2054637,2054657,2054677,2054678,2054679,2054680,2054681,2054705,2054729,2054730,2054731,2054732,2054751,2054770,2054771,2054772,2054773,2054809,2054845,2054846,2054847,2054864,2054883,2054886,2054887,2054888,2054889,2054913,2054937,2054938,2054939,2054977,2055015,2055016,2055018,2055021,2055040,2055058,2055059,2055060,2055061,2055062,2055063,2055064,2055065,2055066,2055067,2055089,2055114,2055118,2055119,2055120,2055123,2055141,2055157,2055158,2055159,2055160,2055161,2055168,2055175,2055176,2055197,2055218,2055219,2055220,2055221,2055222,2055244,2055266,2055267,2055268,2055269,2055292,2055315,2055316,2055317,2055318,2055319,2055352,2055385,2055386,2055387,2055388,2055406,2055424,2055425,2055426,2055427,2055428,2055440,2055452,2055453,2055454,2055461,2055492,2055517,2055518,2055545,2055572,2055573,2055574,2055575,2055576,2055589,2055602,2055603,2055604,2055634,2055664,2055665,2055666,2055667,2055675,2055683,2055684,2055685,2055686,2055705,2055724,2055725,2055726,2055727,2055728,2055751,2055774,2055775,2055776,2055777,2055795,2055813,2055814,2055815,2055849,2055883,2055884,2055885,2055886,2055902,2055920,2055923,2055924,2055925,2055926,2055927,2055950,2055973,2055974,2055975,2056011,2056047,2056048,2056049,2056051,2056054,2056072,2056089,2056090,2056091,2056092,2056093,2056094,2056095,2056096,2056097,2056102,2056123,2056143,2056147,2056148,2056151,2056168,2056183,2056184,2056185,2056186,2056193,2056200,2056201,2056221,2056241,2056242,2056243,2056244,2056245,2056267,2056289,2056290,2056291,2056312,2056333,2056334,2056335,2056336,2056337,2056369,2056401,2056402,2056403,2056404,2056421,2056438,2056439,2056440,2056441,2056442,2056454,2056466,2056467,2056468,2056469,2056476,2056505,2056528,2056529,2056554,2056579,2056580,2056581,2056582,2056583,2056584,2056597,2056610,2056611,2056612,2056640,2056668,2056669,2056670,2056678,2056686,2056687,2056688,2056689,2056707,2056725,2056726,2056727,2056728,2056729,2056751,2056773,2056774,2056775,2056776,2056793,2056810,2056811,2056812,2056844,2056876,2056877,2056878,2056879,2056880,2056897,2056914,2056915,2056916,2056917,2056918,2056940,2056962,2056963,2056964,2056998,2057032,2057033,2057034,2057036,2057039,2057056,2057072,2057073,2057074,2057075,2057076,2057077,2057078,2057079,2057080,2057085,2057105,2057124,2057128,2057129,2057132,2057148,2057162,2057163,2057164,2057165,2057172,2057179,2057180,2057199,2057218,2057219,2057220,2057221,2057222,2057243,2057264,2057265,2057284,2057303,2057304,2057305,2057306,2057307,2057338,2057369,2057370,2057371,2057372,2057388,2057404,2057405,2057406,2057407,2057408,2057420,2057432,2057433,2057434,2057435,2057442,2057469,2057490,2057491,2057514,2057537,2057538,2057539,2057540,2057541,2057542,2057555,2057568,2057569,2057570,2057596,2057622,2057623,2057624,2057632,2057640,2057641,2057642,2057643,2057660,2057677,2057678,2057679,2057680,2057681,2057702,2057723,2057724,2057725,2057726,2057742,2057758,2057759,2057760,2057789,2057818,2057819,2057820,2057821,2057822,2057839,2057856,2057857,2057858,2057859,2057860,2057881,2057902,2057903,2057904,2057936,2057968,2057969,2057970,2057972,2057975,2057991,2058006,2058007,2058008,2058009,2058010,2058011,2058012,2058013,2058014,2058015,2058020,2058039,2058057,2058061,2058062,2058065,2058080,2058093,2058094,2058095,2058096,2058097,2058104,2058111,2058112,2058130,2058148,2058149,2058150,2058151,2058152,2058172,2058192,2058193,2058211,2058229,2058230,2058231,2058232,2058233,2058262,2058291,2058292,2058293,2058294,2058295,2058311,2058327,2058328,2058329,2058330,2058342,2058354,2058355,2058356,2058357,2058358,2058364,2058388,2058407,2058408,2058430,2058452,2058453,2058454,2058455,2058456,2058457,2058470,2058483,2058484,2058485,2058509,2058533,2058534,2058535,2058543,2058551,2058552,2058553,2058554,2058570,2058586,2058587,2058588,2058589,2058590,2058610,2058630,2058631,2058632,2058633,2058634,2058649,2058664,2058665,2058666,2058693,2058720,2058721,2058722,2058723,2058724,2058740,2058756,2058757,2058758,2058759,2058760,2058780,2058800,2058801,2058802,2058832,2058862,2058863,2058864,2058866,2058869,2058884,2058898,2058899,2058900,2058901,2058902,2058903,2058904,2058905,2058906,2058907,2058912,2058930,2058947,2058951,2058952,2058966,2058980,2058981,2058982,2058983,2058984,2058991,2058998,2058999,2059016,2059033,2059034,2059035,2059036,2059037,2059056,2059075,2059076,2059093,2059110,2059111,2059112,2059113,2059114,2059141,2059168,2059169,2059170,2059171,2059172,2059188,2059204,2059205,2059206,2059207,2059219,2059231,2059232,2059233,2059234,2059235,2059240,2059262,2059280,2059281,2059301,2059321,2059322,2059323,2059324,2059325,2059326,2059339,2059352,2059353,2059354,2059376,2059398,2059399,2059407,2059415,2059416,2059417,2059418,2059433,2059448,2059449,2059450,2059451,2059452,2059471,2059490,2059491,2059492,2059506,2059520,2059521,2059546,2059571,2059572,2059573,2059574,2059589,2059604,2059605,2059606,2059607,2059626,2059645,2059646,2059674,2059702,2059703,2059704,2059706,2059709,2059724,2059738,2059739,2059740,2059741,2059742,2059743,2059744,2059745,2059746,2059763,2059783,2059787,2059788,2059801,2059814,2059815,2059816,2059817,2059824,2059831,2059832,2059848,2059864,2059865,2059866,2059867,2059884,2059901,2059917,2059933,2059934,2059935,2059936,2059962,2059988,2059989,2059990,2059991,2060003,2060018,2060022,2060023,2060024,2060036,2060048,2060049,2060050,2060051,2060056,2060076,2060092,2060110,2060128,2060129,2060130,2060131,2060132,2060133,2060146,2060159,2060160,2060161,2060181,2060201,2060202,2060210,2060218,2060219,2060220,2060221,2060235,2060249,2060250,2060251,2060252,2060270,2060288,2060289,2060290,2060291,2060304,2060317,2060318,2060319,2060342,2060365,2060366,2060367,2060398,2060429,2060455,2060481,2060482,2060483,2060484,2060486,2060489,2060503,2060516,2060517,2060518,2060519,2060520,2060521,2060522,2060523,2060524,2060540,2060556,2060560,2060564,2060565,2060577,2060589,2060590,2060591,2060598,2060605,2060606,2060621,2060636,2060637,2060638,2060639,2060640,2060656,2060672,2060687,2060702,2060703,2060704,2060705,2060729,2060753,2060754,2060755,2060756,2060767,2060778,2060782,2060786,2060787,2060788,2060800,2060812,2060813,2060814,2060819,2060837,2060851,2060852,2060868,2060884,2060885,2060886,2060887,2060888,2060901,2060914,2060915,2060916,2060934,2060952,2060953,2060961,2060969,2060970,2060971,2060972,2060985,2060998,2060999,2061000,2061017,2061034,2061035,2061036,2061048,2061060,2061061,2061062,2061083,2061104,2061105,2061106,2061107,2061108,2061109,2061110,2061111,2061112,2061113,2061128,2061157,2061172,2061196,2061220,2061221,2061222,2061224,2061227,2061240,2061252,2061253,2061254,2061255,2061256,2061257,2061258,2061259,2061274,2061289,2061293,2061297,2061298,2061309,2061320,2061321,2061322,2061329,2061336,2061337,2061351,2061365,2061366,2061367,2061368,2061382,2061396,2061397,2061411,2061425,2061426,2061427,2061431,2061453,2061472,2061473,2061474,2061475,2061486,2061497,2061501,2061505,2061506,2061507,2061519,2061531,2061532,2061533,2061537,2061552,2061564,2061565,2061580,2061595,2061596,2061597,2061598,2061599,2061612,2061625,2061626,2061627,2061643,2061659,2061660,2061668,2061676,2061677,2061678,2061679,2061691,2061703,2061704,2061705,2061706,2061722,2061738,2061739,2061740,2061741,2061752,2061763,2061764,2061765,2061784,2061803,2061804,2061805,2061806,2061807,2061808,2061809,2061810,2061811,2061812,2061826,2061853,2061867,2061889,2061911,2061912,2061913,2061915,2061918,2061930,2061941,2061942,2061943,2061944,2061945,2061946,2061947,2061948,2061962,2061976,2061980,2061984,2061985,2061995,2062005,2062006,2062007,2062014,2062021,2062022,2062035,2062048,2062049,2062050,2062051,2062052,2062065,2062078,2062079,2062092,2062105,2062106,2062107,2062110,2062130,2062148,2062149,2062150,2062151,2062161,2062171,2062175,2062179,2062180,2062181,2062193,2062205,2062206,2062210,2062223,2062233,2062234,2062247,2062260,2062261,2062262,2062263,2062264,2062277,2062290,2062291,2062292,2062306,2062320,2062321,2062329,2062337,2062338,2062339,2062340,2062351,2062362,2062363,2062364,2062365,2062380,2062395,2062396,2062397,2062398,2062408,2062418,2062419,2062420,2062437,2062454,2062455,2062456,2062457,2062458,2062459,2062460,2062461,2062462,2062463,2062476,2062501,2062514,2062534,2062554,2062555,2062557,2062560,2062571,2062581,2062582,2062583,2062584,2062585,2062586,2062587,2062588,2062601,2062614,2062618,2062622,2062623,2062632,2062641,2062642,2062643,2062650,2062657,2062658,2062670,2062682,2062683,2062684,2062685,2062686,2062698,2062710,2062711,2062723,2062735,2062736,2062737,2062739,2062757,2062774,2062775,2062776,2062785,2062794,2062798,2062802,2062803,2062804,2062816,2062828,2062829,2062833,2062845,2062854,2062855,2062867,2062879,2062880,2062881,2062882,2062883,2062895,2062907,2062908,2062909,2062921,2062933,2062934,2062942,2062950,2062951,2062952,2062953,2062963,2062973,2062974,2062975,2062976,2062990,2063004,2063005,2063006,2063015,2063024,2063025,2063026,2063041,2063056,2063057,2063058,2063059,2063060,2063061,2063062,2063063,2063064,2063065,2063077,2063100,2063112,2063130,2063148,2063149,2063151,2063154,2063164,2063173,2063174,2063175,2063176,2063177,2063178,2063179,2063180,2063192,2063204,2063208,2063212,2063213,2063221,2063229,2063230,2063231,2063238,2063245,2063256,2063267,2063268,2063269,2063270,2063271,2063282,2063293,2063294,2063305,2063316,2063317,2063318,2063320,2063336,2063351,2063352,2063353,2063361,2063369,2063373,2063377,2063378,2063379,2063390,2063401,2063402,2063406,2063417,2063425,2063426,2063437,2063448,2063449,2063450,2063451,2063452,2063463,2063474,2063475,2063476,2063487,2063498,2063505,2063512,2063513,2063514,2063515,2063525,2063535,2063536,2063537,2063549,2063561,2063562,2063563,2063571,2063579,2063580,2063581,2063595,2063609,2063610,2063611,2063612,2063613,2063614,2063615,2063616,2063617,2063618,2063629,2063650,2063661,2063666,2063682,2063694,2063695,2063697,2063700,2063709,2063717,2063718,2063719,2063720,2063721,2063722,2063723,2063729,2063740,2063746,2063750,2063754,2063761,2063768,2063769,2063770,2063777,2063784,2063785,2063795,2063805,2063806,2063807,2063808,2063809,2063819,2063829,2063830,2063840,2063850,2063851,2063852,2063854,2063868,2063881,2063882,2063883,2063890,2063897,2063901,2063905,2063906,2063907,2063917,2063927,2063928,2063932,2063942,2063949,2063950,2063954,2063964,2063971,2063972,2063973,2063974,2063980,2063990,2063995,2138057,2138251,2138311,2138351,2138416,2138460,2138489,2138519,2138521,2138544,2138567,2138570,2138592,2138626,2138658,2138687,2138717,2138755,2138786,2138820,2138850,2138883,2138925,2138969,2139010,2139032,2139053,2139077,2139109,2139142,2139171,2139207,2139232,2139260,2139305,2139344,2139369,2139392,2139426,2139447,2139480,2139513,2139515,2139542,2139583,2139623,2139652,2139683,2139734,2139763,2139789,2139810,2139837,2139883,2139921,2139947,2139975,2140002,2140023,2140047,2140057,2140058,2140059,2140102,2140173,2140223,2140247,2140268,2140300,2140331,2140360,2140389,2140424,2140453,2140486,2140515,2140546,2140586,2140629,2140668,2140689,2140709,2140732,2140763,2140795,2140823,2140857,2140881,2140908,2140951,2140988,2141012,2141034,2141067,2141088,2141119,2141150,2141152,2141178,2141217,2141255,2141283,2141313,2141362,2141390,2141414,2141433,2141459,2141504,2141540,2141564,2141591,2141617,2141637,2141660,2141670,2141671,2141672,2141713,2141781,2141829,2141852,2141872,2141902,2141932,2141950,2141962,2141989,2142021,2142049,2142081,2142109,2142138,2142160,2142177,2142219,2142256,2142276,2142295,2142317,2142347,2142377,2142404,2142437,2142460,2142485,2142525,2142561,2142584,2142605,2142637,2142657,2142687,2142717,2142719,2142744,2142781,2142817,2142844,2142872,2142918,2142945,2142968,2142986,2143011,2143055,2143089,2143111,2143143,2143180,2143202,2143212,2143213,2143214,2143253,2143318,2143366,2143404,2143432,2143460,2143488,2143514,2143544,2143570,2143600,2143647,2143675,2143691,2143731,2143766,2143785,2143814,2143852,2143880,2143906,2143938,2143960,2144003,2144055,2144077,2144097,2144128,2144148,2144176,2144204,2144206,2144230,2144265,2144299,2144325,2144351,2144394,2144436,2144458,2144482,2144525,2144545,2144558,2144578,2144609,2144633,2144645,2144666,2144676,2144677,2144678,2144715,2144777,2144803,2144824,2144860,2144879,2144890,2144913,2144940,2144965,2144993,2145018,2145047,2145066,2145092,2145118,2145134,2145172,2145205,2145216,2145225,2145253,2145289,2145316,2145341,2145356,2145372,2145393,2145434,2145483,2145504,2145520,2145547,2145569,2145574,2145600,2145626,2145628,2145651,2145685,2145717,2145741,2145766,2145807,2145847,2145868,2145891,2145933,2145953,2145964,2145982,2146012,2146035,2146047,2146068,2146078,2146079,2146080,2146114,2146172,2146197,2146218,2146253,2146271,2146281,2146302,2146328,2146352,2146378,2146402,2146430,2146448,2146472,2146496,2146512,2146548,2146579,2146590,2146599,2146626,2146660,2146685,2146709,2146724,2146739,2146759,2146798,2146844,2146864,2146879,2146905,2146927,2146932,2146956,2146980,2147003,2147035,2147065,2147088,2147112,2147151,2147170,2147190,2147210,2147232,2147272,2147291,2147301,2147318,2147347,2147369,2147380,2147400,2147410,2147411,2147412,2147444,2147499,2147523,2147524,2147544,2147577,2147594,2147603,2147623,2147649,2147684,2147718,2147745,2147762,2147784,2147806,2147822,2147856,2147885,2147896,2147905,2147931,2147963,2147987,2148010,2148037,2148056,2148093,2148136,2148155,2148170,2148195,2148216,2148221,2148223,2148245,2148268,2148290,2148320,2148348,2148389,2148429,2148447,2148466,2148485,2148506,2148544,2148562,2148578,2148614,2148635,2148645,2148664,2148674,2148675,2148705,2148757,2148780,2148781,2148800,2148831,2148847,2148855,2148874,2148900,2148912,2148934,2148965,2148990,2149006,2149027,2149048,2149063,2149095,2149123,2149134,2149142,2149167,2149198,2149221,2149243,2149268,2149281,2149316,2149351,2149362,2149380,2149394,2149418,2149439,2149444,2149446,2149466,2149487,2149508,2149537,2149564,2149582,2149604,2149642,2149659,2149677,2149695,2149714,2149750,2149768,2149783,2149798,2149818,2149838,2149847,2149865,2149875,2149876,2149904,2149953,2149975,2149976,2149994,2150023,2150038,2150045,2150063,2150089,2150101,2150121,2150149,2150172,2150187,2150188,2150208,2150228,2150242,2150272,2150299,2150310,2150317,2150340,2150369,2150391,2150412,2150435,2150447,2150480,2150513,2150514,2150524,2150541,2150554,2150576,2150596,2150601,2150603,2150622,2150642,2150662,2150689,2150714,2150731,2150752,2150788,2150804,2150821,2150838,2150855,2150888,2150905,2150919,2150933,2150952,2150971,2150980,2150997,2151006,2151007,2151033,2151079,2151100,2151117,2151144,2151158,2151164,2151181,2151207,2151219,2151237,2151262,2151283,2151297,2151298,2151317,2151336,2151349,2151377,2151403,2151414,2151420,2151441,2151468,2151489,2151509,2151530,2151541,2151572,2151603,2151604,2151613,2151629,2151642,2151663,2151682,2151687,2151689,2151706,2151724,2151743,2151769,2151793,2151809,2151828,2151861,2151876,2151892,2151908,2151909,2151925,2151956,2151972,2151986,2152000,2152017,2152034,2152043,2152059,2152067,2152068,2152093,2152136,2152155,2152156,2152172,2152197,2152210,2152216,2152232,2152257,2152269,2152285,2152307,2152326,2152339,2152340,2152358,2152376,2152388,2152414,2152439,2152450,2152455,2152474,2152499,2152519,2152538,2152557,2152595,2152624,2152625,2152633,2152648,2152660,2152679,2152697,2152702,2152704,2152720,2152737,2152755,2152779,2152801,2152816,2152834,2152865,2152879,2152894,2152909,2152910,2152925,2152954,2152969,2152982,2152995,2153011,2153027,2153035,2153050,2153058,2153059,2153082,2153121,2153138,2153139,2153154,2153178,2153191,2153196,2153211,2153236,2153248,2153263,2153284,2153302,2153314,2153315,2153331,2153347,2153359,2153384,2153407,2153417,2153422,2153440,2153463,2153481,2153499,2153517,2153537,2153564,2153580,2153581,2153588,2153602,2153613,2153630,2153647,2153652,2153654,2153669,2153685,2153729,2153758,2153800,2153814,2153828,2153842,2153843,2153857,2153884,2153898,2153910,2153922,2153937,2153952,2153959,2153973,2153981,2153982,2154003,2154039,2154055,2154056,2154070,2154092,2154104,2154109,2154123,2154146,2154157,2154171,2154191,2154207,2154217,2154232,2154247,2154258,2154281,2154303,2154313,2154317,2154333,2154355,2154372,2154388,2154404,2154422,2154447,2154462,2154469,2154482,2154492,2154508,2154524,2154529,2154531,2154544,2154557,2154559,2154564,2154585,2154603,2154629,2154667,2154680,2154681,2154694,2154707,2154708,2154721,2154746,2154759,2154771,2154783,2154796,2154809,2154816,2154829,2154836,2154856,2154889,2154903,2154904,2154917,2154930,2154939,2154950,2154954,2154967,2154988,2154998,2155017,2155036,2155045,2155066,2155079,2155090,2155112,2155132,2155141,2155145,2155158,2155170,2155181,2155197,2155212,2155226,2155242,2155265,2155279,2155285,2155297,2155306,2155320,2155335,2155340,2155342,2155354,2155366,2155368,2155373,2155392,2155408,2155432,2155467,2155479,2155480,2155492,2155504,2155505,2155517,2155540,2155552,2155563,2155574,2155586,2155598,2155605,2155617,2155623,2155642,2155672,2155684,2155685,2155697,2155709,2155718,2155728,2155731,2155743,2155762,2155771,2155789,2155807,2155815,2155834,2155846,2155856,2155876,2155894,2155902,2155906,2155918,2155929,2155939,2155954,2155968,2155980,2155994,2156015,2156028,2156034,2156045,2156053,2156066,2156080,2156085,2156087,2156098,2156109,2156111,2156115,2156132,2156147,2156168,2156199,2156210,2156211,2156222,2156233,2156234,2156245,2156266,2156277,2156288,2156299,2156310,2156321,2156327,2156338,2156344,2156361,2156388,2156399,2156400,2156404,2156415,2156423,2156431,2156440,2156443,2156454,2156471,2156479,2156496,2156513,2156520,2156536,2156546,2156556,2156575,2156591,2156598,2156602,2156613,2156623,2156632,2156646,2156659,2156669,2156681,2156700,2156712,2156718,2156728,2156735,2156747,2156760,2156765,2156767,2156777,2156787,2156789,2156793,2156808,2156821,2156840,2156868,2156878,2156879,2156889,2156899,2156900,2156910,2156929,2156939,2156949,2156959,2156969,2156979,2156985,2156995,2157000,2157016,2157040,2157049,2157050,2157054,2157064,2157071,2157078,2157086,2157089,2157099,2157114,2157121,2157137,2157153,2157159,2157173,2157182,2157186,2157195,2157209,2157223,2157229,2157233,2157243,2157252,2157261,2157274,2157285,2157294,2157305,2157322,2157333,2157338,2157347,2157354,2157364,2157375,2157380,2157382,2157391,2157400,2157402,2157406,2157419,2157430,2157447,2157472,2157481,2157482,2157491,2157500,2157501,2157510,2157527,2157536,2157545,2157554,2157563,2157572,2157578,2157587,2157591,2157605,2157626,2157634,2157635,2157639,2157648,2157654,2157660,2157667,2157670,2157679,2157692,2157698,2157713,2157728,2157740,2157752,2157755,2157763,2157776,2157788,2157796,2157805,2157813,2157821,2157832,2157842,2157850,2157859,2157874,2157888,2157896,2157902,2157911,2157921,2157926,2157934,2157941,2157943,2157947,2157959,2157969,2157991,2158013,2158014,2158022,2158030,2158031,2158039,2158054,2158062,2158070,2158085,2158093,2158098,2158106,2158110,2158122,2158140,2158147,2158150,2158158,2158164,2158169,2158175,2158178,2158186,2158197,2158202,2158215,2158228,2158238,2158248,2158251,2158258,2158269,2158280,2158291,2158298,2158301,2158309,2158322,2158333,2158341,2158354,2158366,2158373,2158379,2158386,2158394,2158399,2158406,2158412,2158413,2158415,2158419,2158429,2158437,2158456,2158475,2158476,2158483,2158490,2158491,2158498,2158511,2158518,2158525,2158538,2158545,2158550,2158557,2158560,2158571,2158587,2158593,2158595,2158601,2158606,2158611,2158617,2158619,2158625,2158635,2158640,2158651,2158662,2158670,2158678,2158680,2158686,2158696,2158705,2158714,2158720,2158723,2158730,2158741,2158751,2158758,2158769,2158777,2158780,2158786,2158791,2158797,2158804,2158808,2158814,2158819,2158820,2158822,2158826,2158834,2158840,2158856,2158872,2158873,2158879,2158885,2158886,2158892,2158903,2158909,2158915,2158926,2158936,2158942,2158944,2158954,2158968,2158973,2158974,2158979,2158984,2158988,2158993,2158995,2159000,2159008,2159012,2159021,2159030,2159037,2159044,2159045,2159050,2159059,2159066,2159073,2159078,2159081,2159087,2159096,2159104,2159110,2159119,2159125,2159128,2159133,2159137,2159142,2159148,2159152,2159157,2159161,2159162,2159164,2159167,2159173,2159178,2159191,2159204,2159205,2159210,2159215,2159216,2159221,2159230,2159235,2159240,2159249,2159257,2159262,2159264,2159272,2159283,2159287,2159288,2159292,2159296,2159299,2159303,2159305,2159309,2159315,2159318,2159325,2159332,2159337,2159342,2159343,2159347,2159354,2159360,2159366,2159370,2159372,2159377,2159384,2159390,2159395,2159402,2159407,2159409,2159413,2159417,2159421,2159425,2159428,2159432,2159435,2159436,2159438,2159441,2159445,2159448,2159458,2159468,2159469,2159473,2159477,2159478,2159482,2159489,2159493,2159497,2159504,2159511,2159515,2159516,2159522,2159530,2159533,2159534,2159537,2159540,2159543,2159546,2159547,2159550,2159555,2159558,2159563,2159568,2159571,2159574,2159575,2159578,2159583,2159588,2159593,2159596,2159597,2159600,2159605,2159608,2159611,2159615,2159620,2159624,2159625,2159628,2159631,2159634,2159637,2159639,2159642,2159644,2159645,2159647,2159650,2159652,2159653,2159660,2159667,2159668,2159671,2159674,2159675,2159678,2159683,2159686,2159689,2159694,2159699,2159702,2159703,2159707,2159712,2159714,2159715,2159717,2159719,2159721,2159723,2159724,2159726,2159729,2159731,2159734,2159737,2159739,2159741,2159742,2159744,2159747,2159750,2159753,2159755,2159756,2159758,2159761,2159763,2159765,2159767,2159770,2159773,2159774,2159776,2159778,2159780,2159782,2159784,2159786,2159787,2159788,2159790,2159793,2159795,2159796,2159800,2159804,2159805,2159807,2159809,2159810,2159812,2159815,2159817,2159819,2159822,2159825,2159827,2159828,2159830,2159832,2159833,2159834,2159835,2159836,2159837,2159838,2159839,2159840,2159841,2159842,2159843,2159844,2159845,2159846,2159847,2159848,2159850,2159853,2159856,2159858,2159859,2159861,2159864,2159866,2159868,2159870,2159873,2159876,2159877,2159879,2159881,2159883,2159885,2159887,2159889,2159890,2159891,2159893,2159896,2159898,2159899,2159903,2159907,2159908,2159910,2159912,2159913,2159915,2159918,2159920,2159922,2159925,2159928,2159930,2159931,2159933,2159935,2159936,2159937,2159938,2159939,2159940,2159941,2159942,2159943,2159944,2159945,2159946,2159947,2159948,2159949,2159950,2159951,2159953,2159956,2159959,2159961,2159962,2159964,2159966,2159968,2159970,2159972,2159974,2159977,2159980,2159982,2159984,2159985,2159987,2159990,2159992,2159993,2159994,2159995,2159997,2160000,2160002,2160003,2160007,2160011,2160013,2160015,2160016,2160018,2160021,2160023,2160025,2160028,2160031,2160033,2160034,2160036,2160038,2160039,2160040,2160041,2160042,2160043,2160044,2160045,2160046,2160047,2160048,2160049,2160050,2160051,2160052,2160053,2160055,2160058,2160061,2160063,2160064,2160066,2160069,2160071,2160073,2160075,2160078,2160081,2160083,2160085,2160086,2160088,2160091,2160093,2160094,2160095,2160096,2160098,2160101,2160103,2160107,2160111,2160113,2160115,2160116,2160118,2160121,2160123,2160125,2160128,2160131,2160133,2160134,2160136,2160138,2160139,2160140,2160141,2160142,2160143,2160144,2160145,2160146,2160147,2160148,2160149,2160150,2160151,2160152,2160153,2160155,2160158,2160161,2160163,2160164,2160166,2160169,2160171,2160173,2160175,2160178,2160181,2160183,2160185,2160186,2160188,2160190,2160192,2160194,2160195,2160196,2160197,2160199,2160202,2160204,2160208,2160212,2160214,2160216,2160217,2160219,2160222,2160224,2160226,2160229,2160232,2160234,2160235,2160237,2160239,2160240,2160241,2160242,2160243,2160244,2160245,2160246,2160247,2160248,2160249,2160250,2160251,2160252,2160253,2160254,2160256,2160259,2160262,2160264,2160265,2160267,2160270,2160272,2160274,2160276,2160279,2160282,2160284,2160286,2160287,2160288,2160290,2160292,2160294,2160296,2160297,2160298,2160299,2160301,2160304,2160306,2160310,2160314,2160316,2160318,2160319,2160321,2160324,2160326,2160328,2160331,2160334,2160336,2160337,2160339,2160341,2160342,2160343,2160344,2160345,2160346,2160347,2160348,2160349,2160350,2160351,2160352,2160353,2160354,2160355,2160356,2160358,2160361,2160364,2160366,2160367,2160369,2160372,2160374,2160376,2160378,2160381,2160384,2160386,2160388,2186792,2186986,2187042,2187094,2187260,2187334,2187388,2187462,2187516,2187598,2187658,2187742,2187776,2187860,2187926,2187986,2188044,2188124,2188180,2188280,2188334,2188416,2188496,2188528,2188590,2188680,2188798,2188850,2188922,2188974,2188980,2189136,2189220,2189290,2189346,2189436,2189518,2189568,2189644,2189710,2189757,2189852,2189908,2189948,2190046,2190142,2190208,2190242,2190332,2190398,2190458,2190552,2190624,2190682,2190776,2190784,2190896,2190972,2191028,2191118,2191194,2191256,2191320,2191390,2191446,2191512,2191576,2191652,2191708,2191750,2191844,2191938,2192002,2192038,2192126,2192192,2192238,2192342,2192414,2192472,2192490,2192573,2192606,2192688,2192794,2192832,2192922,2192986,2193048,2193110,2193180,2193234,2193326,2193364,2193488,2193532,2193624,2193714,2193776,2193814,2193900,2193966,2194026,2194058,2194164,2194216,2194258,2194340,2194352,2194454,2194550,2194596,2194684,2194748,2194810,2194870,2194940,2194994,2195060,2195122,2195206,2195282,2195336,2195424,2195478,2195554,2195630,2195666,2195760,2195806,2195900,2195962,2195996,2196084,2196098,2196198,2196292,2196338,2196424,2196488,2196550,2196608,2196678,2196732,2196796,2196860,2196944,2197018,2197032,2197156,2197258,2197300,2197382,2197446,2197506,2197586,2197656,2197714,2197800,2197816,2197912,2197988,2198016,2198064,2198145,2198208,2198270,2198328,2198396,2198450,2198514,2198573,2198658,2198730,2198784,2198830,2198890,2198970,2199064,2199104,2199190,2199236,2199294,2199362,2199420,2199504,2199522,2199616,2199690,2199748,2199828,2199896,2199918,2200001,2200030,2200096,2200148,2200212,2200272,2200388,2200432,2200516,2200558,2200610,2200682,2200752,2200794,2200878,2200924,2200980,2201048,2201106,2201188,2201208,2201298,2201372,2201428,2201508,2201574,2201598,2201692,2201758,2201812,2201876,2201934,2202006,2202062,2202106,2202188,2202244,2202282,2202352,2202444,2202506,2202566,2202636,2202702,2202712,2202770,2202850,2202872,2202960,2203032,2203088,2203166,2203232,2203290,2203358,2203424,2203476,2203558,2203596,2203660,2203714,2203760,2203838,2203894,2203932,2204002,2204092,2204152,2204212,2204280,2204344,2204356,2204414,2204492,2204516,2204662,2204718,2204732,2204860,2204884,2204974,2205040,2205094,2205158,2205212,2205250,2205338,2205384,2205430,2205502,2205524,2205564,2205632,2205720,2205780,2205840,2205908,2205972,2206030,2206106,2206132,2206166,2206282,2206338,2206412,2206476,2206502,2206590,2206654,2206708,2206772,2206826,2206864,2206950,2206996,2207042,2207112,2207136,2207176,2207244,2207330,2207390,2207450,2207516,2207578,2207636,2207710,2207738,2207772,2207884,2207940,2208012,2208080,2208131,2208202,2208252,2208320,2208394,2208434,2208496,2208550,2208596,2208668,2208722,2208762,2208830,2208914,2208925,2209034,2209063,2209154,2209168,2209230,2209302,2209332,2209446,2209514,2209536,2209616,2209662,2209726,2209784,2209846,2209900,2209972,2210014,2210074,2210128,2210174,2210244,2210298,2210338,2210404,2210486,2210546,2210606,2210664,2210722,2210738,2210800,2210870,2210902,2211012,2211078,2211102,2211180,2211226,2211290,2211346,2211408,2211462,2211532,2211594,2211674,2211690,2211736,2211820,2211858,2211898,2211962,2212042,2212102,2212162,2212218,2212276,2212294,2212356,2212362,2212458,2212464,2212630,2212636,2212709,2212768,2212785,2212846,2212902,2213012,2213080,2213142,2213220,2213237,2213314,2213376,2213406,2213412,2213450,2213570,2213644,2213652,2213712,2213818,2213838,2213900,2213966,2214002,2214102,2214168,2214196,2214298,2214314,2214376,2214432,2214494,2214548,2214614,2214676,2214752,2214802,2214848,2214908,2214940,2214978,2215040,2215116,2215176,2215184,2215290,2215346,2215368,2215430,2215436,2215500,2215538,2215634,2215700,2215728,2215826,2215844,2215906,2215962,2216024,2216078,2216084,2216148,2216210,2216284,2216334,2216432,2216498,2216560,2216634,2216694,2216752,2216806,2216862,2216886,2216948,2217010,2217052,2217144,2217208,2217238,2217332,2217352,2217416,2217470,2217532,2217586,2217650,2217710,2217780,2217832,2217878,2217936,2217942,2218008,2218068,2218140,2218200,2218256,2218310,2218384,2218446,2218457,2218516,2218636,2218700,2218736,2218826,2218902,2218912,2219020,2219074,2219192,2219258,2219312,2219392,2219414,2219482,2219540,2219658,2219714,2219772,2219846,2219908,2219966,2220010,2220098,2220160,2220194,2220280,2220360,2220414,2220472,2220580,2220640,2220752,2220798,2220854,2220864,2220930,2221094,2221150,2221252,2221282,2221344,2221406,2221518,2221573,2221590,2221624,2221708,2221788,2221853,2221898,2222002,2222062,2222171,2222216,2222274,2222342,2222400,2222506,2222566,2222662,2222694,2222756,2222848,2222924,2222986,2223022,2223102,2223112,2223192,2223266,2223302,2223402,2223462,2223568,2223642,2223670,2223738,2223794,2223902,2223994,2224048,2224082,2224142,2224236,2224306,2224368,2224406,2224482,2224494,2224574,2224646,2224684,2224780,2224840,2224942,2225014,2225044,2225112,2225166,2225270,2225360,2225414,2225450,2225550,2225602,2225668,2225728,2225768,2225842,2225856,2225936,2226004,2226044,2226138,2226196,2226360,2226390,2226458,2226464,2226612,2226700,2226754,2226792,2226888,2226942,2227006,2227066,2227108,2227180,2227196,2227276,2227342,2227382,2227472,2227530,2227626,2227696,2227728,2227796,2227850,2227948,2228034,2228088,2228128,2228222,2228276,2228338,2228398,2228442,2228520,2228600,2228664,2228708,2228796,2228854,2228946,2229016,2229050,2229088,2229126,2229180,2229274,2229358,2229410,2229452,2229544,2229598,2229660,2229718,2229764,2229832,2229852,2229984,2230030,2230116,2230174,2230262,2230332,2230368,2230436,2230490,2230580,2230662,2230716,2230760,2230898,2230958,2230968,2231064,2231118,2231152,2231232,2231292,2231336,2231420,2231476,2231564,2231632,2231670,2231738,2231792,2231878,2231958,2232012,2232060,2232068,2232199,2232258,2232316,2232364,2232416,2232452,2232530,2232590,2232634,2232716,2232772,2232858,2232926,2232964,2233032,2233164,2233242,2233296,2233346,2233356,2233484,2233540,2233598,2233650,2233712,2233738,2233834,2233904,2233984,2234042,2234102,2234108,2234202,2234240,2234310,2234364,2234444,2234520,2234574,2234628,2234638,2234762,2234816,2234874,2234930,2234988,2235016,2235108,2235178,2235256,2235314,2235372,2235408,2235474,2235514,2235630,2235708,2235782,2235836,2235890,2235896,2235908,2236076,2236082,2236138,2236246,2236276,2236364,2236434,2236510,2236516,2236626,2236662,2236728,2236764,2236836,2236888,2236964,2237036,2237090,2237145,2237160,2237274,2237330,2237436,2237492,2237524,2237606,2237677,2237684,2237758,2237818,2237874,2237962,2238004,2238072,2238126,2238200,2238270,2238324,2238380,2238396,2238506,2238560,2238616,2238674,2238730,2238764,2238844,2238914,2238986,2239044,2239098,2239138,2239200,2239244,2239308,2239360,2239432,2239544,2239602,2239620,2239724,2239778,2239836,2239892,2239948,2239984,2240062,2240132,2240202,2240258,2240294,2240352,2240408,2240454,2240518,2240572,2240644,2240708,2240762,2240820,2240840,2240935,2240937,2240961,2240985,2240987,2240989,2240990,2240991,2241017,2241044,2241046,2241071,2241097,2241099,2241123,2241148,2241160,2241177,2241184,2241219,2241255,2241257,2241289,2241322,2241324,2241355,2241387,2241389,2241413,2241438,2241440,2241455,2241480,2241491,2241508,2241526,2241528,2241553,2241582,2241587,2241604,2241624,2241628,2241655,2241685,2241689,2241711,2241735,2241738,2241769,2241801,2241830,2241880,2241903,2241906,2241933,2241958,2241961,2241970,2241977,2241980,2242026,2242070,2242073,2242098,2242122,2242124,2242125,2242150,2242176,2242178,2242202,2242227,2242233,2242255,2242274,2242286,2242303,2242310,2242343,2242377,2242393,2242424,2242442,2242444,2242473,2242503,2242505,2242528,2242552,2242554,2242568,2242591,2242601,2242618,2242636,2242638,2242661,2242688,2242693,2242710,2242730,2242734,2242759,2242787,2242811,2242834,2242837,2242866,2242896,2242923,2242970,2242992,2242995,2243021,2243045,2243048,2243057,2243064,2243067,2243070,2243111,2243152,2243172,2243196,2243202,2243204,2243205,2243229,2243254,2243256,2243279,2243303,2243309,2243330,2243348,2243360,2243377,2243384,2243414,2243445,2243461,2243491,2243508,2243510,2243537,2243565,2243567,2243589,2243612,2243614,2243627,2243648,2243657,2243674,2243692,2243694,2243715,2243740,2243745,2243762,2243782,2243786,2243809,2243834,2243838,2243859,2243881,2243884,2243911,2243939,2243964,2244008,2244029,2244032,2244057,2244080,2244089,2244098,2244101,2244104,2244142,2244180,2244199,2244222,2244228,2244230,2244253,2244277,2244279,2244301,2244324,2244330,2244350,2244367,2244379,2244396,2244403,2244430,2244458,2244474,2244503,2244519,2244545,2244571,2244573,2244594,2244616,2244618,2244637,2244656,2244673,2244691,2244693,2244712,2244735,2244740,2244757,2244777,2244781,2244802,2244825,2244829,2244849,2244870,2244873,2244898,2244924,2244947,2244988,2245008,2245011,2245035,2245057,2245066,2245075,2245076,2245079,2245082,2245117,2245152,2245170,2245192,2245198,2245200,2245222,2245245,2245247,2245268,2245290,2245295,2245314,2245330,2245332,2245344,2245361,2245368,2245392,2245417,2245432,2245460,2245476,2245500,2245524,2245564,2245582,2245600,2245617,2245635,2245637,2245654,2245675,2245680,2245697,2245717,2245721,2245740,2245761,2245764,2245766,2245785,2245805,2245808,2245831,2245855,2245876,2245914,2245933,2245936,2245959,2245980,2245989,2245998,2246001,2246004,2246036,2246068,2246069,2246086,2246107,2246113,2246115,2246136,2246158,2246160,2246180,2246201,2246206,2246224,2246239,2246241,2246253,2246270,2246281,2246303,2246334,2246361,2246376,2246398,2246420,2246422,2246441,2246460,2246461,2246478,2246495,2246511,2246528,2246530,2246546,2246566,2246571,2246587,2246606,2246610,2246627,2246646,2246649,2246651,2246669,2246688,2246691,2246712,2246733,2246735,2246754,2246789,2246807,2246810,2246832,2246852,2246861,2246870,2246873,2246876,2246905,2246934,2246935,2246951,2246971,2246977,2246979,2246998,2247018,2247020,2247039,2247059,2247064,2247081,2247095,2247097,2247109,2247126,2247135,2247138,2247156,2247186,2247211,2247225,2247245,2247265,2247267,2247285,2247303,2247304,2247319,2247334,2247350,2247367,2247369,2247383,2247401,2247406,2247422,2247441,2247445,2247461,2247479,2247482,2247484,2247501,2247519,2247522,2247541,2247560,2247562,2247564,2247581,2247614,2247633,2247654,2247673,2247682,2247691,2247694,2247697,2247723,2247749,2247750,2247765,2247784,2247790,2247792,2247809,2247827,2247829,2247847,2247866,2247871,2247887,2247900,2247902,2247914,2247931,2247939,2247941,2247958,2247986,2248009,2248022,2248040,2248058,2248060,2248077,2248094,2248095,2248109,2248123,2248138,2248154,2248156,2248169,2248186,2248191,2248206,2248224,2248228,2248242,2248258,2248261,2248263,2248279,2248296,2248299,2248316,2248333,2248335,2248352,2248368,2248384,2248402,2248422,2248440,2248449,2248458,2248461,2248464,2248487,2248510,2248511,2248525,2248543,2248549,2248566,2248583,2248585,2248602,2248620,2248625,2248640,2248652,2248654,2248666,2248683,2248691,2248693,2248708,2248744,2248767,2248784,2248801,2248803,2248819,2248835,2248836,2248849,2248862,2248876,2248890,2248891,2248893,2248895,2248896,2248897,2248909,2248921,2248926,2248931,2248932,2248933,2248947,2248964,2248968,2248969,2248970,2248983,2248996,2248999,2249002,2249003,2249004,2249006,2249008,2249022,2249036,2249039,2249042,2249043,2249044,2249060,2249076,2249077,2249078,2249080,2249096,2249111,2249112,2249113,2249128,2249143,2249146,2249149,2249166,2249183,2249184,2249185,2249194,2249203,2249204,2249205,2249206,2249209,2249212,2249213,2249214,2249235,2249256,2249257,2249258,2249259,2249260,2249261,2249274,2249287,2249292,2249297,2249299,2249301,2249316,2249331,2249333,2249335,2249336,2249337,2249353,2249369,2249370,2249372,2249374,2249377,2249380,2249392,2249404,2249405,2249406,2249408,2249419,2249429,2249436,2249443,2249445,2249447,2249448,2249449,2249450,2249464,2249478,2249479,2249499,2249519,2249521,2249523,2249538,2249553,2249555,2249557,2249558,2249559,2249574,2249589,2249590,2249591,2249592,2249593,2249605,2249617,2249618,2249632,2249646,2249647,2249649,2249651,2249652,2249653,2249664,2249675,2249680,2249685,2249686,2249687,2249700,2249716,2249720,2249721,2249722,2249723,2249735,2249747,2249750,2249753,2249754,2249755,2249757,2249759,2249772,2249785,2249788,2249791,2249792,2249793,2249808,2249823,2249824,2249825,2249827,2249842,2249856,2249857,2249858,2249872,2249886,2249889,2249892,2249908,2249924,2249925,2249926,2249935,2249944,2249945,2249946,2249947,2249948,2249951,2249954,2249955,2249974,2249993,2249994,2249995,2249996,2249997,2249998,2249999,2250011,2250027,2250032,2250034,2250036,2250050,2250064,2250066,2250068,2250069,2250070,2250085,2250100,2250101,2250103,2250105,2250107,2250109,2250121,2250133,2250134,2250136,2250146,2250155,2250162,2250169,2250171,2250173,2250174,2250175,2250188,2250201,2250202,2250220,2250238,2250240,2250242,2250256,2250270,2250272,2250274,2250275,2250286,2250300,2250304,2250305,2250306,2250307,2250308,2250320,2250332,2250333,2250346,2250359,2250360,2250362,2250364,2250365,2250366,2250376,2250386,2250391,2250396,2250397,2250398,2250410,2250425,2250429,2250430,2250431,2250432,2250443,2250454,2250457,2250460,2250461,2250462,2250464,2250466,2250478,2250490,2250493,2250496,2250497,2250498,2250512,2250526,2250527,2250528,2250530,2250544,2250557,2250558,2250559,2250572,2250585,2250588,2250591,2250606,2250621,2250622,2250623,2250632,2250641,2250642,2250643,2250644,2250645,2250646,2250649,2250652,2250653,2250670,2250687,2250688,2250689,2250690,2250691,2250692,2250693,2250694,2250705,2250720,2250725,2250727,2250729,2250742,2250755,2250756,2250758,2250760,2250761,2250762,2250776,2250790,2250791,2250793,2250795,2250797,2250799,2250810,2250821,2250822,2250823,2250825,2250834,2250842,2250843,2250850,2250857,2250859,2250861,2250862,2250863,2250875,2250887,2250888,2250889,2250905,2250921,2250923,2250925,2250938,2250951,2250952,2250954,2250956,2250957,2250967,2250980,2250984,2250985,2250986,2250987,2250988,2251000,2251012,2251013,2251025,2251037,2251038,2251040,2251042,2251043,2251044,2251053,2251062,2251067,2251072,2251073,2251074,2251085,2251099,2251103,2251104,2251105,2251106,2251116,2251126,2251129,2251132,2251133,2251134,2251136,2251138,2251149,2251160,2251163,2251166,2251167,2251168,2251181,2251194,2251195,2251196,2251198,2251211,2251223,2251224,2251225,2251237,2251249,2251252,2251255,2251269,2251283,2251284,2251293,2251302,2251303,2251304,2251305,2251306,2251307,2251310,2251313,2251328,2251343,2251344,2251345,2251346,2251347,2251348,2251349,2251359,2251373,2251378,2251380,2251382,2251394,2251406,2251407,2251409,2251411,2251412,2251425,2251438,2251439,2251441,2251443,2251445,2251447,2251457,2251467,2251468,2251470,2251478,2251485,2251486,2251493,2251500,2251502,2251504,2251505,2251506,2251517,2251528,2251529,2251530,2251544,2251558,2251560,2251562,2251574,2251586,2251587,2251589,2251591,2251592,2251601,2251613,2251617,2251618,2251619,2251620,2251621,2251633,2251645,2251646,2251657,2251668,2251669,2251671,2251673,2251674,2251675,2251683,2251691,2251696,2251701,2251702,2251703,2251713,2251726,2251730,2251739,2251750,2251753,2251755,2251766,2251778,2251781,2251793,2251806,2251818,2251829,2251840,2251853,2251868,2251889,2251898,2251901,2251916,2251929,2251930,2251931,2251944,2251958,2251970,2251982,2251995,2252007,2252009,2252012,2252022,2252032,2252039,2252051,2252059,2252061,2252071,2252081,2252095,2252119,2252130,2252132,2252144,2252155,2252156,2252167,2252188,2252199,2252201,2252203,2252214,2252225,2252234,2252246,2252250,2252258,2252268,2252271,2252273,2252283,2252294,2252297,2252308,2252320,2252331,2252341,2252351,2252363,2252377,2252397,2252406,2252407,2252410,2252423,2252434,2252435,2252436,2252448,2252461,2252472,2252483,2252495,2252506,2252508,2252511,2252520,2252529,2252535,2252546,2252554,2252556,2252565,2252574,2252587,2252609,2252619,2252630,2252641,2252642,2252652,2252671,2252681,2252683,2252685,2252696,2252707,2252715,2252726,2252730,2252737,2252746,2252749,2252751,2252760,2252770,2252773,2252783,2252794,2252804,2252813,2252822,2252833,2252845,2252863,2252872,2252873,2252876,2252888,2252898,2252899,2252900,2252911,2252923,2252933,2252943,2252953,2252962,2252964,2252967,2252976,2252985,2252990,2253000,2253008,2253010,2253018,2253026,2253037,2253056,2253065,2253075,2253085,2253086,2253096,2253114,2253123,2253124,2253126,2253128,2253138,2253148,2253155,2253165,2253169,2253175,2253183,2253186,2253188,2253196,2253205,2253208,2253217,2253227,2253236,2253244,2253252,2253262,2253272,2253288,2253297,2253298,2253301,2253311,2253319,2253320,2253321,2253331,2253342,2253351,2253360,2253369,2253377,2253379,2253382,2253390,2253398,2253403,2253412,2253419,2253421,2253429,2253437,2253446,2253455,2253463,2253471,2253480,2253489,2253490,2253500,2253517,2253525,2253526,2253528,2253530,2253539,2253548,2253554,2253563,2253567,2253572,2253579,2253582,2253584,2253591,2253599,2253602,2253610,2253619,2253627,2253634,2253641,2253650,2253659,2253674,2253683,2253684,2253687,2253696,2253703,2253704,2253705,2253714,2253724,2253732,2253740,2253748,2253755,2253757,2253760,2253762,2253768,2253774,2253776,2253778,2253781,2253784,2253790,2253796,2253798,2253800,2253801,2253802,2253809,2253816,2253817,2253818,2253826,2253834,2253835,2253836,2253843,2253850,2253851,2253852,2253860,2253868,2253869,2253870,2253871,2253872,2253881,2253896,2253903,2253904,2253905,2253906,2253907,2253909,2253911,2253912,2253913,2253921,2253929,2253930,2253931,2253935,2253940,2253945,2253949,2253950,2253951,2253952,2253956,2253960,2253963,2253966,2253967,2253968,2253970,2253972,2253977,2253982,2253985,2253988,2253989,2253990,2253997,2254004,2254005,2254007,2254009,2254015,2254021,2254022,2254023,2254029,2254035,2254038,2254041,2254047,2254053,2254061,2254069,2254070,2254071,2254072,2254073,2254076,2254079,2254085,2254091,2254092,2254093,2254094,2254095,2254096,2254097,2254105,2254113,2254115,2254117,2254123,2254129,2254131,2254133,2254139,2254145,2254146,2254147,2254149,2254151,2254153,2254155,2254160,2254165,2254167,2254169,2254171,2254173,2254179,2254185,2254187,2254189,2254190,2254191,2254192,2254198,2254204,2254205,2254206,2254213,2254220,2254221,2254222,2254228,2254234,2254235,2254236,2254243,2254250,2254251,2254252,2254253,2254254,2254262,2254275,2254281,2254282,2254283,2254284,2254285,2254287,2254289,2254290,2254291,2254298,2254305,2254306,2254307,2254311,2254316,2254320,2254323,2254324,2254325,2254326,2254330,2254334,2254336,2254338,2254339,2254341,2254343,2254348,2254353,2254358,2254359,2254365,2254376,2254382,2254383,2254388,2254393,2254394,2254397,2254400,2254405,2254410,2254417,2254424,2254425,2254426,2254427,2254428,2254431,2254434,2254439,2254444,2254445,2254446,2254447,2254448,2254449,2254450,2254457,2254465,2254467,2254472,2254477,2254478,2254480,2254482,2254487,2254492,2254493,2254495,2254497,2254499,2254501,2254505,2254509,2254511,2254513,2254515,2254517,2254522,2254527,2254529,2254531,2254532,2254533,2254534,2254539,2254544,2254545,2254546,2254552,2254558,2254559,2254560,2254565,2254570,2254571,2254572,2254578,2254584,2254585,2254586,2254587,2254598,2254609,2254610,2254612,2254614,2254620,2254626,2254630,2254636,2254639,2254642,2254646,2254648,2254653,2254658,2254661,2254664,2254669,2254678,2254683,2254687,2254693,2254699,2254708,2254714,2254715,2254718,2254724,2254728,2254729,2254735,2254742,2254747,2254752,2254757,2254761,2254763,2254766,2254771,2254776,2254781,2254786,2254788,2254789,2254793,2254801,2254806,2254810,2254814,2254819,2254824,2254825,2254834,2254843,2254844,2254846,2254848,2254853,2254858,2254862,2254867,2254869,2254872,2254876,2254878,2254882,2254886,2254889,2254892,2254896,2254903,2254907,2254910,2254915,2254920,2254927,2254932,2254933,2254936,2254941,2254944,2254945,2254950,2254956,2254960,2254964,2254968,2254971,2254973,2254976,2254980,2254984,2254988,2254992,2254994,2254995,2254998,2255004,2255008,2255011,2255014,2255015,2255019,2255023,2255024,2255025,2255026,2255027,2255034,2255041,2255042,2255043,2255044,2255045,2255047,2255049,2255050,2255051,2255055,2255059,2255060,2255061,2255064,2255067,2255069,2255071,2255072,2255073,2255076,2255079,2255080,2255081,2255082,2255083,2255084,2255088,2255092,2255093,2255094,2255096,2255098,2255099,2255100,2255103,2255106,2255110,2255114,2255115,2255116,2255118,2255120,2255123,2255126,2255128,2255130,2255134,2255138,2255139,2255140,2255141,2255142,2255145,2255148,2255150,2255152,2255153,2255154,2255155,2255156,2255160,2255164,2255166,2255168,2255170,2255172,2255174,2255176,2255178,2255180,2255181,2255182,2255184,2255186,2255187,2255188,2255191,2255194,2255195,2255196,2255197,2255200,2255203,2255204,2255205,2255206,2255207,2255208,2255209,2255218,2255228,2255236,2255246,2255260,2255266,2255278,2255286,2255296,2255302,2255312,2255320,2255332,2255342,2255354,2255362,2255370,2255380,2255388,2255396,2255404,2255412,2255418,2255428,2255438,2255450,2255462,2255470,2255480,2255490,2255500,2255510,2255518,2255528,2255538,2255548,2255558,2255570,2255582,2255592,2255602,2255610,2255620,2255630,2255640,2255652,2255666,2255676,2255690,2255700,2255712,2255724,2255736,2255748,2255758,2255770,2255782,2255794,2255806,2255818,2255832,2255844,2255856,2255866,2255878,2255890,2255902,2255916,2255932,2255944,2255960,2255972,2255986,2256000,2256014,2256028,2256040,2256054,2256068,2256082,2256096,2256110,2256124,2256138,2256152,2256164,2256178,2256192,2256206,2256222,2256240,2256262,2256272,2256286,2256302,2256318,2256334,2256350,2256364,2256380,2256396,2256412,2256428,2256444,2256460,2256474,2256490,2256504,2256520,2256536,2256552,2256570,2256590,2256614,2256626,2256642,2256660,2256678,2256696,2256714,2256730,2256748,2256766,2256784,2256802,2256820,2256838,2256854,2256870,2256886,2256904,2256922,2256940,2256960,2256982,2257008,2257022,2257040,2257060,2257080,2257100,2257120,2257138,2257158,2257178,2257198,2257218,2257238,2257258,2257276,2257294,2257312,2257330,2257350,2257370,2257392,2257398,2257422,2257450,2257466,2257486,2257508,2257530,2257552,2257574,2257594,2257616,2257638,2257660,2257682,2257704,2257726,2257746,2257766,2257786,2257806,2257826,2257866,2257892,2257922,2257940,2257962,2257986,2258010,2258018,2258042,2258066,2258088,2258128,2258146,2258176,2258200,2258224,2258246,2258268,2258290,2258312,2258334,2258356,2258380,2258408,2258440,2258460,2258484,2258510,2258536,2258562,2258588,2258612,2258638,2258664,2258690,2258716,2258742,2258768,2258792,2258816,2258840,2258864,2258888,2258912,2258938,2258966,2259000,2259022,2259048,2259076,2259104,2259132,2259160,2259186,2259214,2259242,2259270,2259298,2259326,2259354,2259380,2259406,2259432,2259458,2259484,2259510,2259538,2259566,2259602,2259626,2259654,2259684,2259714,2259744,2259774,2259802,2259832,2259862,2259892,2259910,2259928,2259958,2259988,2260016,2260044,2260072,2260078,2260106,2260134,2260162,2260192,2260222,2260228,2260264,2260290,2260320,2260352,2260384,2260390,2260422,2260454,2260484,2260516,2260548,2260567,2260587,2260618,2260650,2260682,2260710,2260720,2260750,2260780,2260810,2260840,2260872,2260878,2260938,2260972,2261002,2261021,2261068,2261079,2261109,2261142,2261176,2261184,2261216,2261250,2261284,2261318,2261353,2261386,2261420,2261430,2261464,2261494,2261526,2261558,2261590,2261600,2261633,2261666,2261700,2261736,2261766,2261776,2261838,2261865,2261884,2261918,2261956,2261990,2262026,2262062,2262098,2262134,2262146,2262180,2262216,2262230,2262258,2262292,2262326,2262360,2262394,2262406,2262440,2262476,2262498,2262550,2262582,2262594,2262630,2262666,2262702,2262740,2262752,2262790,2262826,2262864,2262902,2262940,2262978,2263016,2263057,2263094,2263110,2263170,2263195,2263220,2263256,2263292,2263330,2263340,2263408,2263422,2263456,2263494,2263532,2263570,2263608,2263622,2263662,2263700,2263740,2263780,2263820,2263860,2263900,2263916,2263956,2263994,2264032,2264070,2264108,2264124,2264164,2264200,2264240,2264252,2264322,2264338,2264374,2264414,2264454,2264494,2264534,2264550,2264590,2264630,2264672,2264697,2264722,2264768,2264840,2264882,2264888,2264934,2264954,2264986,2265026,2265078,2265120,2265158,2265200,2265216,2265288,2265326,2265344,2265386,2265428,2265470,2265512,2265530,2265572,2265614,2265656,2265700,2265742,2265786,2265830,2265874,2265894,2265936,2265978,2266020,2266064,2266106,2266126,2266168,2266212,2266242,2266302,2266342,2266362,2266406,2266450,2266494,2266538,2266558,2266602,2266646,2266690,2266734,2266778,2266824,2266872,2266916,2266938,2266982,2267026,2267070,2267116,2267160,2267182,2267246,2267298,2267360,2267402,2267424,2267470,2267516,2267562,2267608,2267630,2267676,2267722,2267768,2267848,2267896,2267906,2268012,2268058,2268104,2268150,2268198,2268244,2268268,2268314,2268362,2268396,2268460,2268504,2268528,2268576,2268624,2268672,2268730,2268778,2268826,2268909,2268964,2269012,2269068,2269074,2269140,2269228,2269276,2269326,2269394,2269442,2269492,2269528,2269634,2269660,2269710,2269804,2269864,2269914,2269972,2270056,2270106,2270156,2270212,2270220,2270328,2270378,2270428,2270522,2270550,2270600,2270652,2270750,2270798,2270826,2270922,2271008,2271036,2271096,2271182,2271234,2271286,2271338,2271396,2271462,2271514,2271606,2271662,2271714,2271744,2271814,2271880,2271950,2272000,2272074,2272162,2272216,2272246,2272308,2272396,2272450,2272504,2272612,2272618,2272686,2272740,2272834,2272892,2272946,2272978,2273048,2273114,2273182,2273258,2273354,2273440,2273472,2273480,2273542,2273628,2273682,2273736,2273788,2273849,2273918,2273972,2274064,2274122,2274176,2274210,2274278,2274344,2274410,2274488,2274582,2274666,2274700,2274710,2274716,2274778,2274906,2274960,2275014,2275023,2275080,2275148,2275202,2275292,2275302,2275356,2275410,2275446,2275512,2275518,2275584,2275616,2275704,2275738,2275830,2275874,2275918,2275954,2275966,2276028,2276114,2276160,2276214,2276268,2276328,2276340,2276404,2276458,2276546,2276604,2276618,2276666,2276704,2276768,2276834,2276846,2276876,2276962,2276998,2277088,2277168,2277206,2277220,2277230,2277292,2277412,2277424,2277474,2277528,2277588,2277656,2277710,2277720,2277806,2277864,2277918,2277932,2278022,2278030,2278096,2278132,2278192,2278254,2278264,2278352,2278474,2278486,2278548,2278664,2278678,2278728,2278782,2278842,2278910,2278964,2278976,2279060,2279118,2279172,2279188,2279278,2279288,2279354,2279390,2279448,2279512,2279522,2279610,2279684,2279690,2279744,2279806,2279848,2279883,2279884,2279904,2279925,2279929,2279932,2279933,2279956,2279979,2279982,2280007,2280032,2280060,2280086,2280093,2280125,2280153,2280160,2280185,2280208,2280211,2280229,2280268,2280292,2280319,2280346,2280371,2280396,2280401,2280406,2280411,2280429,2280472,2280501,2280503,2280529,2280560,2280568,2280584,2280600,2280620,2280638,2280661,2280684,2280701,2280720,2280725,2280765,2280803,2280806,2280841,2280874,2280876,2280878,2280880,2280905,2280929,2280935,2280941,2280967,2280996,2281019,2281053,2281087,2281109,2281133,2281157,2281181,2281205,2281232,2281257,2281264,2281295,2281322,2281348,2281374,2281377,2281394,2281431,2281454,2281480,2281506,2281530,2281554,2281559,2281564,2281569,2281587,2281628,2281655,2281657,2281682,2281712,2281720,2281735,2281750,2281770,2281788,2281810,2281832,2281849,2281868,2281873,2281911,2281947,2281950,2281983,2282014,2282016,2282018,2282020,2282045,2282069,2282075,2282090,2282115,2282134,2282155,2282187,2282220,2282241,2282264,2282287,2282310,2282333,2282359,2282383,2282390,2282420,2282444,2282447,2282472,2282497,2282500,2282516,2282551,2282573,2282598,2282623,2282646,2282669,2282676,2282683,2282701,2282741,2282767,2282769,2282792,2282820,2282828,2282843,2282858,2282877,2282894,2282915,2282936,2282953,2282972,2282977,2283013,2283047,2283048,2283051,2283082,2283111,2283113,2283115,2283117,2283142,2283166,2283172,2283186,2283210,2283229,2283248,2283278,2283293,2283311,2283331,2283353,2283375,2283397,2283419,2283444,2283467,2283474,2283503,2283526,2283529,2283553,2283577,2283580,2283595,2283610,2283629,2283650,2283674,2283713,2283735,2283742,2283749,2283756,2283774,2283813,2283838,2283840,2283862,2283889,2283897,2283911,2283925,2283928,2283944,2283960,2283980,2284000,2284017,2284036,2284041,2284075,2284107,2284108,2284111,2284140,2284167,2284169,2284171,2284173,2284198,2284227,2284240,2284263,2284282,2284313,2284341,2284358,2284377,2284398,2284419,2284440,2284461,2284485,2284507,2284514,2284542,2284564,2284565,2284569,2284592,2284614,2284630,2284644,2284662,2284682,2284705,2284726,2284747,2284770,2284777,2284784,2284802,2284840,2284864,2284866,2284887,2284913,2284921,2284934,2284947,2284950,2284965,2284980,2284981,2285000,2285019,2285036,2285055,2285060,2285092,2285122,2285125,2285152,2285177,2285179,2285181,2285183,2285208,2285232,2285238,2285250,2285272,2285291,2285295,2285321,2285347,2285363,2285381,2285401,2285421,2285441,2285461,2285484,2285505,2285512,2285539,2285560,2285564,2285586,2285605,2285608,2285623,2285636,2285653,2285672,2285694,2285714,2285734,2285756,2285763,2285770,2285788,2285825,2285848,2285850,2285870,2285895,2285903,2285915,2285927,2285930,2285944,2285958,2285959,2285977,2285995,2286012,2286031,2286036,2286066,2286094,2286097,2286122,2286145,2286147,2286149,2286151,2286176,2286200,2286206,2286217,2286238,2286257,2286261,2286285,2286309,2286324,2286341,2286360,2286379,2286398,2286417,2286439,2286459,2286466,2286491,2286510,2286514,2286535,2286553,2286556,2286570,2286582,2286598,2286616,2286637,2286656,2286675,2286696,2286703,2286710,2286727,2286762,2286784,2286786,2286805,2286829,2286837,2286847,2286857,2286860,2286874,2286888,2286889,2286906,2286923,2286939,2286957,2286962,2286990,2287016,2287019,2287042,2287063,2287065,2287067,2287069,2287093,2287116,2287122,2287133,2287153,2287171,2287175,2287197,2287219,2287233,2287249,2287267,2287285,2287303,2287321,2287342,2287361,2287368,2287391,2287411,2287431,2287448,2287451,2287464,2287475,2287490,2287507,2287527,2287545,2287563,2287583,2287590,2287597,2287613,2287645,2287665,2287667,2287686,2287710,2287718,2287727,2287736,2287739,2287753,2287767,2287768,2287784,2287800,2287815,2287832,2287837,2287863,2287887,2287890,2287911,2287930,2287932,2287934,2287936,2287959,2287981,2287987,2287997,2288016,2288034,2288038,2288058,2288078,2288091,2288106,2288123,2288140,2288157,2288174,2288194,2288212,2288213,2288220,2288241,2288259,2288278,2288294,2288297,2288309,2288319,2288333,2288349,2288368,2288385,2288402,2288421,2288428,2288435,2288450,2288495,2288497,2288523,2288553,2288561,2288564,2288565,2288579,2288593,2288594,2288595,2288596,2288597,2288612,2288627,2288628,2288629,2288643,2288657,2288660,2288663,2288666,2288669,2288691,2288713,2288714,2288717,2288720,2288737,2288754,2288755,2288756,2288758,2288760,2288761,2288762,2288764,2288766,2288787,2288808,2288809,2288810,2288816,2288822,2288827,2288832,2288846,2288860,2288864,2288868,2288869,2288870,2288888,2288906,2288907,2288908,2288920,2288932,2288935,2288938,2288952,2288966,2288969,2288972,2288986,2289000,2289003,2289006,2289023,2289040,2289041,2289042,2289043,2289044,2289051,2289058,2289071,2289084,2289088,2289092,2289107,2289122,2289123,2289124,2289125,2289128,2289131,2289140,2289149,2289150,2289151,2289164,2289177,2289180,2289183,2289198,2289213,2289214,2289215,2289231,2289247,2289250,2289253,2289258,2289265,2289268,2289280,2289292,2289308,2289324,2289325,2289326,2289328,2289330,2289331,2289332,2289333,2289334,2289357,2289380,2289386,2289392,2289395,2289398,2289399,2289400,2289413,2289426,2289427,2289428,2289429,2289443,2289457,2289458,2289459,2289460,2289473,2289486,2289489,2289494,2289497,2289506,2289526,2289538,2289539,2289542,2289545,2289561,2289577,2289578,2289579,2289580,2289582,2289584,2289585,2289586,2289588,2289590,2289610,2289630,2289631,2289632,2289638,2289644,2289648,2289652,2289665,2289678,2289682,2289686,2289687,2289703,2289719,2289720,2289721,2289733,2289745,2289748,2289751,2289764,2289777,2289780,2289783,2289796,2289809,2289812,2289815,2289830,2289845,2289846,2289847,2289848,2289849,2289856,2289863,2289875,2289887,2289891,2289895,2289909,2289923,2289924,2289925,2289926,2289929,2289932,2289940,2289948,2289949,2289950,2289962,2289974,2289977,2289980,2289994,2290008,2290009,2290010,2290025,2290040,2290043,2290046,2290051,2290058,2290061,2290072,2290083,2290098,2290113,2290114,2290115,2290117,2290119,2290120,2290121,2290122,2290123,2290144,2290165,2290171,2290177,2290180,2290183,2290184,2290185,2290197,2290209,2290210,2290211,2290212,2290225,2290238,2290239,2290240,2290241,2290253,2290265,2290268,2290273,2290276,2290284,2290302,2290313,2290314,2290317,2290320,2290334,2290348,2290349,2290350,2290351,2290353,2290355,2290356,2290357,2290359,2290361,2290380,2290399,2290400,2290401,2290407,2290413,2290417,2290421,2290433,2290445,2290449,2290453,2290454,2290468,2290482,2290483,2290484,2290495,2290506,2290509,2290512,2290524,2290536,2290539,2290542,2290543,2290555,2290567,2290570,2290573,2290587,2290601,2290602,2290603,2290604,2290605,2290612,2290619,2290629,2290639,2290643,2290647,2290660,2290673,2290674,2290675,2290676,2290679,2290682,2290689,2290696,2290697,2290698,2290709,2290720,2290723,2290726,2290739,2290752,2290753,2290754,2290768,2290782,2290785,2290788,2290793,2290800,2290803,2290804,2290814,2290824,2290838,2290852,2290853,2290854,2290856,2290858,2290859,2290860,2290861,2290862,2290881,2290900,2290906,2290912,2290915,2290918,2290919,2290920,2290931,2290942,2290943,2290944,2290945,2290957,2290969,2290970,2290971,2290972,2290983,2290994,2290997,2291002,2291005,2291012,2291028,2291038,2291039,2291042,2291045,2291057,2291069,2291070,2291071,2291072,2291073,2291075,2291077,2291078,2291080,2291082,2291083,2291101,2291119,2291120,2291121,2291127,2291133,2291137,2291141,2291152,2291163,2291167,2291171,2291176,2291188,2291196,2291197,2291198,2291208,2291218,2291221,2291224,2291235,2291246,2291249,2291252,2291253,2291264,2291275,2291278,2291281,2291294,2291307,2291308,2291309,2291310,2291311,2291318,2291325,2291333,2291341,2291345,2291349,2291361,2291373,2291374,2291375,2291376,2291379,2291382,2291388,2291394,2291395,2291396,2291406,2291416,2291419,2291422,2291434,2291446,2291447,2291448,2291461,2291474,2291475,2291478,2291485,2291492,2291495,2291496,2291505,2291514,2291527,2291540,2291541,2291542,2291544,2291546,2291547,2291548,2291549,2291550,2291553,2291570,2291585,2291591,2291599,2291602,2291603,2291604,2291614,2291624,2291625,2291626,2291627,2291638,2291649,2291650,2291651,2291652,2291662,2291672,2291675,2291680,2291683,2291689,2291703,2291712,2291713,2291716,2291719,2291730,2291741,2291742,2291743,2291744,2291746,2291748,2291749,2291751,2291753,2291754,2291771,2291788,2291789,2291795,2291803,2291806,2291816,2291826,2291830,2291834,2291844,2291854,2291855,2291856,2291866,2291876,2291879,2291891,2291901,2291904,2291907,2291908,2291918,2291928,2291931,2291944,2291955,2291956,2291957,2291958,2291959,2291966,2291978,2291984,2291988,2291992,2292003,2292014,2292015,2292016,2292019,2292022,2292028,2292034,2292035,2292036,2292044,2292054,2292057,2292068,2292079,2292080,2292081,2292093,2292105,2292108,2292115,2292122,2292125,2292126,2292134,2292153,2292165,2292166,2292167,2292169,2292171,2292172,2292173,2292174,2292177,2292192,2292205,2292211,2292219,2292222,2292223,2292232,2292241,2292242,2292243,2292244,2292254,2292264,2292265,2292266,2292275,2292284,2292287,2292292,2292295,2292300,2292312,2292320,2292321,2292324,2292336,2292346,2292347,2292348,2292349,2292351,2292353,2292354,2292356,2292358,2292359,2292375,2292391,2292392,2292398,2292404,2292406,2292408,2292417,2292429,2292433,2292436,2292445,2292452,2292453,2292454,2292463,2292472,2292475,2292486,2292495,2292498,2292501,2292502,2292511,2292520,2292523,2292534,2292543,2292544,2292545,2292546,2292547,2292554,2292565,2292570,2292574,2292578,2292588,2292598,2292599,2292600,2292603,2292606,2292611,2292616,2292617,2292618,2292625,2292634,2292637,2292647,2292657,2292658,2292659,2292670,2292681,2292684,2292691,2292698,2292701,2292702,2292709,2292725,2292735,2292736,2292737,2292739,2292741,2292742,2292743,2292744,2292747,2292761,2292773,2292779,2292787,2292790,2292791,2292799,2292807,2292808,2292809,2292810,2292819,2292828,2292829,2292837,2292845,2292848,2292853,2292856,2292857,2292861,2292871,2292878,2292879,2292882,2292893,2292902,2292903,2292904,2292905,2292907,2292909,2292910,2292912,2292914,2292915,2292930,2292945,2292946,2292952,2292958,2292959,2292960,2292961,2292969,2292980,2292984,2292987,2292995,2293001,2293002,2293003,2293004,2293012,2293020,2293023,2293033,2293041,2293044,2293047,2293048,2293056,2293064,2293067,2293077,2293085,2293086,2293087,2293088,2293089,2293096,2293106,2293110,2293114,2293118,2293127,2293136,2293137,2293138,2293141,2293144,2293149,2293154,2293155,2293156,2293162,2293170,2293173,2293174,2293182,2293190,2293191,2293192,2293202,2293212,2293215,2293222,2293229,2293232,2293233,2293239,2293253,2293262,2293263,2293264,2293266,2293268,2293269,2293270,2293271,2293274,2293286,2293296,2293302,2293310,2293313,2293314,2293321,2293328,2293329,2293330,2293331,2293339,2293347,2293348,2293349,2293356,2293363,2293366,2293371,2293374,2293377,2293385,2293391,2293392,2293395,2293405,2293413,2293414,2293415,2293416,2293418,2293420,2293421,2293423,2293425,2293426,2293440,2293454,2293460,2293466,2293467,2293468,2293469,2293476,2293486,2293490,2293492,2293499,2293505,2293506,2293507,2293508,2293515,2293522,2293525,2293534,2293541,2293544,2293547,2293554,2293561,2293564,2293573,2293580,2293581,2293582,2293583,2293584,2293591,2293600,2293603,2293607,2293611,2293619,2293627,2293628,2293629,2293632,2293635,2293640,2293645,2293646,2293647,2293652,2293659,2293662,2293663,2293670,2293677,2293678,2293679,2293688,2293697,2293700,2293707,2293714,2293717,2293718,2293723,2293735,2293743,2293744,2293745,2293747,2293749,2293750,2293751,2293752,2293755,2293766,2293775,2293780,2293787,2293790,2293791,2293798,2293805,2293806,2293807,2293814,2293821,2293822,2293823,2293829,2293835,2293838,2293843,2293846,2293847,2293850,2293857,2293862,2293863,2293866,2293875,2293882,2293883,2293884,2293885,2293887,2293889,2293890,2293892,2293894,2293895,2293908,2293921,2293927,2293933,2293934,2293935,2293936,2293942,2293951,2293955,2293956,2293962,2293968,2293969,2293970,2293971,2293977,2293983,2293986,2293994,2294000,2294003,2294006,2294012,2294018,2294021,2294029,2294035,2294036,2294037,2294038,2294039,2294046,2294054,2294059,2294063,2294070,2294077,2294078,2294079,2294082,2294085,2294090,2294095,2294096,2294097,2294101,2294105,2294108,2294111,2294112,2294118,2294124,2294125,2294133,2294141,2294144,2294151,2294158,2294161,2294162,2294169,2294179,2294183,2294184,2294186,2294188,2294189,2294190,2294191,2294194,2294204,2294212,2294217,2294224,2294227,2294233,2294239,2294240,2294241,2294247,2294253,2294254,2294255,2294260,2294265,2294268,2294273,2294276,2294277,2294283,2294289,2294290,2294293,2294301,2294307,2294308,2294309,2294310,2294312,2294314,2294315,2294317,2294319,2294320,2294332,2294344,2294350,2294356,2294357,2294358,2294363,2294371,2294375,2294380,2294385,2294386,2294387,2294392,2294397,2294400,2294407,2294412,2294415,2294418,2294423,2294428,2294435,2294442,2294443,2294444,2294445,2294446,2294453,2294460,2294464,2294468,2294474,2294480,2294481,2294482,2294485,2294488,2294493,2294498,2294499,2294502,2294505,2294508,2294511,2294512,2294517,2294522,2294523,2294530,2294537,2294540,2294547,2294554,2294557,2294558,2294564,2294572,2294575,2294576,2294578,2294580,2294581,2294582,2294583,2294586,2294595,2294602,2294607,2294614,2294617,2294622,2294627,2294628,2294629,2294634,2294639,2294640,2294641,2294642,2294647,2294654,2294657,2294660,2294663,2294664,2294669,2294674,2294675,2294678,2294685,2294690,2294691,2294692,2294694,2294696,2294697,2294699,2294701,2294702,2294712,2294722,2294728,2294734,2294735,2294736,2294737,2294741,2294748,2294752,2294756,2294760,2294761,2294762,2294763,2294768,2294773,2294775,2294781,2294786,2294789,2294792,2294796,2294800,2294806,2294812,2294813,2294814,2294815,2294816,2294822,2294828,2294832,2294836,2294841,2294846,2294847,2294848,2294851,2294854,2294858,2294862,2294863,2294866,2294869,2294878,2294890,2294910,2294926,2294940,2294941,2294943,2294945,2294946,2294947,2294990,2295013,2295014,2295035,2295055,2295089,2295130,2295131,2295148,2295166,2295184,2295262,2295277,2295297,2295321,2295322,2295349,2295390,2295391,2295404,2295430,2295444,2295445,2295476,2295507,2295512,2295529,2295551,2295561,2295562,2295601,2295626,2295627,2295648,2295664,2295678,2295679,2295716,2295750,2295767,2295795,2295809,2295843,2295871,2295872,2295894,2295926,2295936,2296015,2296068,2296164,2296193,2296372,2296390,2296417,2296418,2296455,2296488,2296504,2296528,2296576,2296582,2296604,2296618,2296633,2296789,2296884,2296918,2296925,2296929,2297021,2297034,2297047,2297126,2297144,2297147,2297163,2297608,2297631,2297651,2297731,2297748,2297754,2297828,2297837,2297853,2297857,2297859,2297860,2297876,2297880,2297882,2297883,2297901,2297911,2297913,2297914,2297936,2297946,2297948,2297949,2297959,2297961,2297983,2297984,2297992,2297994,2298011,2298013,2298035,2298037,2298039,2298136,2298143,2298162,2298184,2298188,2298266,2298403,2298577,2298582,2298599,2298605,2298617,2298685,2298944,2298949,2298955,2299038,2299199,2299216,2299235,2299244,2299264,2299268,2299334,2299832,2300012,2300068,2300246,2300247,2300267,2300343,2300344,2300459,2300547,2300660,2300758,2300761,2300769,2300774,2300775,2300781,2300790,2300791,2300795,2300811,2300886,2300887,2301281,2301282,2301283,2301284,2301285,2301286,2301287,2301288,2301289,2301290,2301291,2301292,2301293,2301294,2301295,2301296,2301297,2301298,2301299,2301300,2301301,2301302,2301303,2301304,2301305,2301306,2301307,2301308,2301309,2301777,2301778,2301823,2301916,2301931,2302017,2302059,2302064,2302141,2302239,2302330,2302445,2302566,2304613,2304728,2304853,2304905,2304938,2304963,2305029,2305163,2306933,2306954,2307303,2307355,2307369,2307419,2307465,2307493,2307495,2309033,2309054,2309145,2309156,2309168,2309183,2309187,2309215,2309423,2309519,2309533,2310787,2310808,2310931,2310943,2311251,2311265,2311273,2311305,2312655,2312676,2312995,2313007,2313017,2313033,2313040,2313069,2313231,2313387,2314294,2314315,2314336,2314354,2314364,2314378,2314380,2314408,2315164,2315185,2315438,2315450,2315462,2315476,2315484,2315514,2316353,2316374,2316395,2316669,2316681,2316697,2316705,2316735,2317664,2317691,2317716,2317726,2317736,2317750,2317758,2318060,2319051,2319094,2319129,2319141,2319152,2319167,2319185,2319227,2320300,2320338,2320373,2320476,2320627,2320641,2320666,2320735,2320737,2321942,2321989,2322026,2322061,2322278,2322295,2322298,2322401,2322404,2323693,2323722,2323736,2323784,2323800,2323811,2323990,2323992,2323999,2324007,2324021,2324090,2325287,2325333,2325365,2325409,2325411,2325412,2325413,2325416,2325422,2325430,2325460,2325513,2326808,2326813,2326827,2327171,2327177,2327178,2327191,2327192,2327196,2327206,2327244,2327281,2327476,2327655,2328913,2328918,2328932,2329000,2329002,2329003,2329004,2329005,2329009,2329017,2329027,2329044,2330368,2330373,2330387,2330791,2330795,2330796,2330797,2330798,2330804,2330812,2330826,2330851,2331289,2331293,2434675,2448458,2566676,2595411,2595431,2595433,2595447,2595455,2595458,2595463,2595466,2595471,2595472,2595477,2595526,2595533,2595548,2595555,2595556,2595561,2595572,2595577,2595580,2595587,2595618,2595625,2595628,2595633,2595642,2595654,2595668,2595675,2595676,2595683,2595684,2595689,2595690,2595717,2595718,2595735,2595738,2595743,2595758,2595763,2595769,2606847,2606907,2607091,2607144,2607295,2607304,2607411,2607607,2607608,2607890,2607902,2607928,2607929,2607930,2607936,2607976,2608463,2609019,2609022,2609133,2609178,2609318,2609319,2609320,2609321,2609322,2609335,2609347,2609348,2609355,2609452,2609820,2609891,2610281,2610390,2610517,2610868,2611024,2611377,2611537,2611838,2611993,2612088,2615037,2617630,2617741,2618065,2618124,2618246,2618569,2618725,2618754,2619110,2619235,2619515,2619566,2619846,2619923,2619961,2620169,2620244,2620286,2620376,2620523,2620585,2620591,2620637,2620830,2620906,2620940,2620964,2621089,2621101,2621227,2621354,2621372,2621496,2621535,2621653,2621663,2621745,2621822,2621944,2621950,2621988,2622123,2622147,2622281,2622396,2622468,2622602,2622639,2622745,2622751,2622831,2622978,2623006,2623013,2623190,2623367,2623538,2623639,2623787,2623807,2623952,2624046,2624196,2624253,2624367,2624373,2624471,2624630,2624674,2624680,2624800,2625031,2625055,2625209,2625328,2625462,2625520,2625649,2625757,2625763,2625905,2626070,2626088,2626094,2626326,2626365,2626517,2626643,2626798,2626818,2626984,2627117,2627270,2627299,2627582,2627607,2627755,2629057,2629238,2629355,2629379,2630561,2630708,2630849,2630951,2630957,2632030,2632079,2632216,2632348,2632356,2633426,2633535,2633580,2633714,2633720,2634946,2635077,2635222,2635356,2635368,2636496,2636627,2636780,2636916,2636926,2638112,2638251,2638410,2638556,2638562,2639771,2639912,2639953,2640217,2640225,2641496,2641641,2641804,2641950,2641960,2643229,2643279,2643418,2643574,2643580,2644901,2645064,2645207,2645365,2645373,2646714,2646873,2647186,2647323,2647387,2647578,2647579,2647729,2647875,2647925,2647932,2648065,2648402,2648407,2649815,2650204,2650351,2650605,2650824,2651342,2651530,2651747,2652312,2652317,2652325,2652344,2652963,2652982,2652991,2653807,2665302,2665336,2665557,2666009,2666036,2666178,2666239,2666240,2666241,2666243,2666935,2666943,2666958,2666959,2666964,2666965,2666969,2666985,2668358,2668595,2669114,2669166,2669211,2669223,2669235,2669244,2670605,2671098,2671151,2671201,2671207,2671235,2671262,2672689,2673216,2673270,2673321,2673326,2673389,2673794,2673824,2673835,2673840,2673897,2675466,2676121,2676135,2676148,2676153,2676207,2676267,2676270,2677972,2678533,2678539,2678545,2678647,2678651,2680250,2680679,2680687,2680693,2680701,2680707,2681834,2682197,2682213,2682253,2682259,2682260,2683172,2683555,2683591,2683597,2683654,2683661,2684720,2684857,2684872,2684914,2684963,2685379,2685475,2687325,2687331,2689649,2689655,2691630,2695399,2715939,2799472,2829798,2857021,2857026,2857054,2857074,2857096,2857097,2857123,2857150,2857180,2857202,2857210,2857229,2857277,2857284,2857322,2857356,2857394,2857397,2857426,2857441,2857460,2857463,2857490,2857505,2857515,2857527,2857540,2857557,2857570,2857585,2857617,2857622,2857648,2857692,2857722,2857755,2857760,2857804,2857809,2857842,2857873,2857884,2857896,2857924,2857939,2857968,2857979,2857990,2858015,2858020,2858038,2858056,2858065,2858070,2858105,2858112,2858137,2858144,2858156,2858170,2858213,2858228,2858247,2858254,2858281,2858286,2858312,2858334,2858337,2858376,2858401,2858414,2858436,2858454,2858485,2858500,2858523,2858548,2858569,2858588,2858602,2858619,2858642,2858669,2858848,2858867,2858883,2858925,2858955,2859004,2859011,2859053,2859077,2859087,2859109,2859110,2859122,2859134,2859139,2859145,2859180,2859203,2859217,2859245,2859271,2859321,2859334,2859364,2859375,2859403,2859441,2859459,2859501,2859524,2859537,2859572,2859579,2859606,2859629,2859644,2859653,2859678,2859685,2859708,2859721,2859731,2859829,2859858,2859902,2859915,2859940,2859971,2859976,2859995,2860026,2860033,2860038,2860075,2860108,2860141,2860146,2860173,2860178,2860209,2860218,2860243,2860248,2860273,2860278,2860289,2860304,2860332,2860350,2860367,2860386,2860395,2860424,2860425,2860470,2860483,2860510,2860539,2860546,2860563,2860594,2860601,2860642,2860679,2860716,2860744,2860782,2860787,2860803,2860823,2860855,2860870,2860886,2860915,2860942,2860963,2860979,2861011,2861012,2861065,2861066,2861120,2861141,2861147,2861179,2861203,2861255,2861262,2861298,2861328,2861373,2861386,2861408,2861440,2861452,2861488,2861511,2861529,2861559,2861565,2861566,2861580,2861594,2861595,2861618,2862136,2862143,2862173,2862214,2862219,2862252,2862273,2862289,2862310,2862327,2862339,2862365,2862399,2862430,2862437,2862460,2862465,2862496,2862509,2862530,2862535,2862562,2862571,2862585,2862591,2862620,2862651,2862662,2862677,2862696,2862708,2862730,2862737,2862778,2862801,2862830,2862851,2862854,2862885,2862896,2862903,2862962,2862993,2863019,2863053,2863059,2863070,2863093,2863098,2863144,2863151,2863185,2863217,2863243,2863260,2863299,2863304,2863352,2863376,2863410,2863437,2863468,2863484,2863518,2863552,2863581,2863583,2863594,2863605,2863606,2863622,2863638,2863645,2863677,2863686,2863730,2863740,2863776,2863808,2863831,2864917,2864948,2864988,2864995,2866088,2866133,2866143,2866181,2866223,2866246,2866301,2866308,2866340,2866348,2866362,2866415,2866425,2866426,2866428,2866438,2866447,2866489,2866494,2866502,2866530,2866567,2866577,2866608,2866617,2866642,2866647,2866688,2866697,2866724,2866737,2866774,2866797,2866802,2866833,2866854,2866859,2866888,2866893,2866906,2866947,2866968,2866973,2866992,2866997,2867026,2867039,2867044,2867053,2867074,2867081,2867115,2867151,2867160,2867189,2867190,2867197,2867217,2867269,2867278,2867283,2867340,2867349,2867395,2867399,2867708,2867721,2867751,2867759,2867969,2867976,2868010,2868028,2868050,2868239,2868244,2868284,2868300,2868330,2868335,2868345,2868412,2868428,2868466,2868492,2868519,2868542,2868548,2868578,2868589,2868602,2868637,2868648,2868664,2868705,2868710,2868734,2868746,2868776,2868821,2868826,2868872,2868897,2868904,2868908,2868914,2868951,2868984,2868995,2869044,2869055,2869060,2869101,2869108,2869134,2869142,2869156,2869164,2869211,2869222,2869241,2869264,2869279,2869290,2869299,2869304,2869346,2869368,2869375,2869406,2869421,2869446,2869453,2869522,2869577,2869592,2869623,2869640,2869667,2869686,2869737,2869756,2869764,2869804,2869824,2869833,2869844,2869871,2869915,2869922,2869954,2869998,2870004,2870010,2870080,2870085,2870145,2870151,2870187,2870238,2870247,2870265,2870313,2870331,2870342,2870352,2870353,2874359,2874368,2874424,2874466,2874494,2874495,2874531,2874536,2874561,2874584,2874609,2874629,2877782,2877803,2877811,2877849,2877869,2877875,2878809,2878814,2878840,2878850,2878884,2878888,2881406,2881451,2881489,2881525,2881547,2881576,2891814,2892066,2892622,2901338,2901486,2901940,2902404,2902839,2903278,2903723,2904073,2904495,2904893,2905245,2905379,2905851,2906142,2912716,2912804]},"uniswap-v3-core_d8b1c63":{"timeMs":17834.916147999997,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,2702,2715,2718,2731,2734,2747,2750,2753,2756,2759,2762,2765,2768,2771,2775,2784,2787,2790,2793,2796,2799,2802,2805,2808,2812,2821,2824,2827,2830,2833,2836,2839,2842,2845,2849,4326,4344,4353,4399,4424,4442,4481,4506,4524,4582,4602,4613,4633,4648,4650,4653,4659,4672,4697,4717,4730,4732,4735,4741,4754,4779,4893,4905,4913,4932,4947,4965,4977,4989,4995,5014,5029,5047,5636,5654,5666,5671,5682,5686,5694,5702,5706,5712,5715,5721,5725,5736,5737,5740,5750,5754,5755,5758,5766,5770,5778,5784,5788,5794,5797,5803,5807,5818,5819,5822,5832,5836,5837,5840,6152,6199,6214,6234,6243,6253,6268,6278,6286,6298,6316,6325,6335,6350,6360,6368,15803,15823,15836,15870,15904,15938,15972,16006,16040,16074,16108,16142,16176,16210,16244,16278,16312,16326,17482,17502,17515,17549,17583,17617,17651,17665,17699,17713,17747,17781,17815,17849,17883,17917,17931,17945,19493,19504,19525,19542,19559,19593,19610,19629,19663,19680,19697,19731,19748,19765,19799,19816,19833,19867,19884,19901,19918,19935,19969,20000,21199,21209,21224,21229,21245,21279,21297,21313,21347,21365,21381,21413,21429,21461,21477,21511,21529,21545,21579,21611,21627,21645,21661,22855,22860,22866,22873,22887,22904,22907,22921,22935,22952,22955,22969,22983,23000,23003,23017,23031,23048,23051,23065,23079,23096,23099,23113,23127,23144,23147,23158,23161,23175,23189,23209,23223,23240,23243]}} diff --git a/crates/tools/python/ejs-benchmark/4.json b/crates/tools/python/ejs-benchmark/4.json deleted file mode 100644 index d81f00f00d..0000000000 --- a/crates/tools/python/ejs-benchmark/4.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":405027.11759100005,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":71823.752056,"failures":[39,75,110,172,183,187,189,193,195,199,201,243,350,632,646,655,664,673,687,696,705,717,726,735,748,760,773,786,799,813,825,837,849,858,874,883,896,908,920,935,952,962,974,987,1003,1018,1028,1039,1051,1064,1075,1088,1099,1112,1121,1146,1157,1170,1181,1194,1203,1228,1239,1252,1263,1276,1291,1302,1313,1324,1335,1346,1711,1715,1783,1870,1885,1888,1894,1909,1912,1918,1933,1936,1957,1974,1989,2063,2073,2104,2114,2123,2133,2143,2153,2192,2204,2216,2228,2265,2284,2290,2303,2332,2396,2408,2414,2420,2432,2438,2444,2457,2463,2469,2482,2488,2494,2506,2524,2530,2536,2548,2554,2560,2573,2579,2585,2598,2604,2610,2622,2640,2646,2652,2664,2670,2676,2689,2695,2701,2714,2720,2726,2738,2756,2768,2781,2794,2800,2812,2818,2831,2837,2850,2856,2947,2959,2965,2971,2983,2989,2995,3008,3014,3020,3033,3039,3045,3057,3075,3081,3087,3099,3105,3111,3124,3130,3136,3149,3155,3161,3173,3191,3197,3203,3215,3221,3227,3240,3246,3252,3265,3271,3277,3289,3307,3319,3332,3345,3351,3363,3369,3382,3388,3401,3407,3498,3510,3516,3522,3534,3540,3546,3559,3565,3571,3584,3590,3596,3608,3626,3632,3638,3650,3656,3662,3675,3681,3687,3700,3706,3712,3724,3742,3748,3754,3766,3772,3778,3791,3797,3803,3816,3822,3828,3840,3858,3870,3883,3896,3902,3914,3920,3933,3939,3952,3958,4037,4049,4055,4061,4073,4079,4085,4098,4104,4110,4123,4129,4135,4147,4165,4171,4177,4189,4195,4201,4214,4220,4226,4239,4245,4251,4263,4281,4287,4293,4305,4311,4317,4330,4336,4342,4355,4361,4367,4379,4397,4409,4422,4435,4441,4453,4459,4472,4478,4491,4497,4548,4558,4567,4577,4586,4596,4629,4641,4647,4653,4665,4671,4677,4690,4696,4702,4715,4721,4727,4739,4757,4763,4769,4781,4787,4793,4806,4812,4818,4831,4837,4843,4855,4873,4879,4885,4897,4903,4909,4922,4928,4934,4947,4953,4959,4971,4989,5001,5014,5027,5033,5045,5051,5064,5070,5083,5089,5140,5150,5159,5169,5178,5188,5269,5289,5292,5298,5318,5321,5327,5348,5351,5357,5378,5381,5387,5407,5430,5450,5471,5492,5498,5518,5524,5545,5551,5572,5578,5701,5713,5716,5722,5734,5737,5743,5756,5759,5765,5778,5781,5787,5799,5814,5826,5839,5852,5858,5870,5876,5889,5895,5908,5914,6010,6022,6025,6031,6043,6046,6052,6065,6068,6074,6087,6090,6096,6108,6123,6135,6148,6161,6167,6179,6185,6198,6204,6217,6223,6347,6368,6371,6377,6398,6401,6407,6429,6432,6438,6460,6463,6469,6490,6514,6535,6557,6579,6585,6606,6612,6634,6640,6662,6668,6764,6793,6800,6822,6852,6882,6910,6918,6941,6949,6972,7002,7030,7038,7061,7069,7164,7188,7191,7197,7221,7224,7230,7255,7258,7264,7289,7292,7298,7322,7349,7373,7398,7423,7429,7453,7459,7484,7490,7515,7521,7629,7653,7795,7813,7816,7822,7840,7843,7849,7868,7871,7877,7896,7899,7905,7923,7944,7962,7981,8000,8006,8024,8030,8049,8055,8074,8080,8167,8201,8207,8214,8232,8244,8249,8261,8265,8277,8292,8309,8346,8367,8389,8410,8431,8470,8485,8490,8509,8517,8549,8554,8641,8662,8665,8692,8695,8701,8723,8726,8732,8754,8757,8784,8808,8829,8852,8858,8879,8885,8907,8913,8935,8941,9031,9037,9054,9060,9081,9087,9116,9134,9140,9153,9159,9172,9178,9191,9197,9209,9215,9228,9234,9473,9477,9478,9479,9482,9484,9485,9486,9488,9489,9492,9493,9496,9497,9500,9501,9504,9505,9508,9509,9512,9513,9516,9517,9520,9521,9524,9525,9528,9529,9532,9533,9536,9537,9540,9541,9544,9545,9548,9549,9552,9553,9556,9557,9560,9561,9564,9565,9568,9569,9572,9573,9576,9577,9580,9581,9584,9585,9588,9589,9592,9593,9596,9597,9600,9601,9604,9605,9608,9609,9612,9613,9616,9617,9620,9621,9624,9625,9628,9629,9632,9633,9636,9637,9640,9641,9644,9645,9648,9649,9652,9653,9656,9657,9660,9661,9664,9665,9668,9669,9672,9673,9676,9677,9680,9681,9684,9685,9688,9689,9692,9693,9696,9697,9700,9701,9704,9705,9708,9709,9712,9713,9716,9717,9720,9721,9724,9725,9728,9729,9732,9733,9736,9737,9741,9750,9752,9761,9763,9772,9774,9783,9785,9794,9796,9805,9807,9816,9818,9827,9829,9838,9840,9849,9851,9860,9862,9871,9873,9882,9884,9893,9895,9904,9906,9915,9917,9926,9928,9937,9939,9948,9950,9959,9961,9970,9972,9981,9983,9992,9994,10003,10005,10014,10016,10025,10027,10036,10038,10047,10049,10058,10060,10069,10071,10080,10082,10091,10093,10102,10104,10113,10115,10124,10126,10135,10137,10146,10148,10157,10159,10168,10170,10179,10181,10190,10192,10201,10203,10212,10214,10223,10225,10234,10236,10245,10247,10256,10258,10267,10269,10278,10280,10289,10291,10300,10302,10311,10313,10322,10324,10333,10335,10344,10346,10355,10357,10366,10368,10377,10379,10388,10390,10399,10401,10410,10412,10421,10423,10432,10434,10443,10445,10464,10466,10469,10470,10473,10474,10477,10478,10481,10482,10485,10486,10489,10490,10493,10494,10497,10498,10501,10502,10505,10506,10509,10510,10513,10514,10517,10518,10521,10522,10525,10526,10529,10530,10533,10534,10537,10538,10541,10542,10545,10546,10549,10550,10553,10554,10557,10558,10561,10562,10565,10566,10569,10570,10573,10574,10577,10578,10581,10582,10585,10586,10589,10590,10593,10594,10597,10598,10601,10602,10605,10606,10609,10610,10613,10614,10617,10618,10621,10622,10625,10626,10629,10630,10633,10634,10637,10638,10641,10642,10645,10646,10649,10650,10653,10654,10657,10658,10661,10662,10665,10666,10669,10670,10673,10674,10677,10678,10681,10682,10685,10686,10689,10690,10693,10694,10697,10698,10701,10702,10705,10706,10709,10710,10713,10714,10717,10718,10721,10724,10726,10727,10728,10730,10731,10732,10734,10735,10736,10738,10739,10740,10742,10743,10744,10746,10747,10748,10750,10751,10752,10754,10755,10756,10758,10759,10760,10762,10763,10764,10766,10767,10768,10770,10771,10772,10774,10775,10776,10778,10779,10780,10782,10783,10784,10786,10787,10788,10790,10791,10792,10794,10795,10796,10798,10799,10800,10802,10803,10804,10806,10807,10808,10810,10811,10812,10814,10815,10816,10818,10819,10820,10822,10823,10824,10826,10827,10828,10830,10831,10832,10834,10835,10836,10838,10839,10840,10842,10843,10844,10846,10847,10848,10850,10851,10852,10854,10855,10856,10858,10859,10860,10862,10863,10864,10866,10867,10868,10870,10871,10872,10874,10875,10876,10878,10879,10880,10882,10883,10884,10886,10887,10888,10890,10891,10892,10894,10895,10896,10898,10899,10900,10902,10903,10904,10906,10907,10908,10910,10911,10912,10914,10915,10916,10918,10919,10920,10922,10923,10924,10926,10927,10928,10930,10931,10932,10934,10935,10936,10938,10939,10940,10942,10943,10944,10946,10947,10948,10950,10951,10952,10954,10955,10956,10958,10959,10960,10962,10963,10964,10966,10967,10968,10970,10971,10972,10974,10975,10976,10978,10979,10983,10998,11000,11014,11016,11030,11032,11046,11048,11062,11064,11078,11080,11094,11096,11110,11112,11126,11128,11142,11144,11158,11160,11174,11176,11190,11192,11206,11208,11222,11224,11238,11240,11254,11256,11270,11272,11286,11288,11302,11304,11318,11320,11334,11336,11350,11352,11366,11368,11382,11384,11398,11400,11414,11416,11430,11432,11446,11448,11462,11464,11478,11480,11494,11496,11510,11512,11526,11528,11542,11544,11558,11560,11574,11576,11590,11592,11606,11608,11622,11624,11638,11640,11654,11656,11670,11672,11686,11688,11702,11704,11718,11720,11734,11736,11750,11752,11766,11768,11782,11784,11798,11800,11814,11816,11830,11832,11846,11848,11862,11864,11878,11880,11894,11896,11910,11912,11926,11928,11942,11944,11958,11960,11974,11976,11990,11992,12006,12008,12031,12034,12035,12038,12039,12042,12043,12046,12047,12050,12051,12054,12055,12058,12059,12062,12063,12066,12067,12070,12071,12074,12075,12078,12079,12082,12083,12086,12087,12090,12091,12094,12095,12098,12099,12102,12103,12106,12107,12110,12111,12114,12115,12118,12119,12122,12123,12126,12127,12130,12131,12134,12135,12138,12139,12142,12143,12146,12147,12150,12151,12154,12155,12158,12159,12162,12163,12166,12167,12170,12171,12174,12175,12178,12179,12182,12183,12186,12187,12190,12191,12194,12195,12198,12199,12202,12203,12206,12207,12210,12211,12214,12215,12218,12219,12222,12223,12226,12227,12230,12231,12234,12235,12238,12239,12242,12243,12246,12247,12250,12251,12254,12255,12258,12259,12262,12263,12266,12267,12270,12271,12274,12275,12278,12279,12282,12283,12286,12306,12584,12595,12606,12617,12628,12639,12650,12661,12672,12683,12694,12705,12716,12727,12738,12749,12760,12771,12782,12793,12804,12815,12826,12837,12848,12859,12870,12881,12892,12903,12914,12925,12936,12947,12958,12969,12980,12991,13002,13013,13024,13035,13046,13057,13068,13079,13090,13101,13112,13123,13134,13145,13156,13167,13178,13189,13200,13211,13222,13233,13244,13255,13266,13277,13300,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13372,13376,13380,13384,13388,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476,13480,13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13558,13562,13566,13570,13574,13578,13582,13586,13590,13594,13598,13602,13606,13610,13614,13618,13622,13626,13630,13634,13638,13642,13646,13650,13654,13658,13662,13666,13670,13674,13678,13682,13686,13690,13694,13698,13702,13706,13710,13714,13718,13722,13726,13730,13734,13738,13742,13746,13750,13754,13758,13762,13766,13770,13774,13778,13782,13786,13790,13794,13798,13802,13806,13810,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14865,14869,14873,14877,14881,14885,14889,14893,14897,14901,14905,14909,14913,14917,14921,14925,14929,14933,14937,14941,14945,14949,14953,14957,14961,14965,14969,14973,14977,14981,14985,14989,14993,14997,15001,15005,15009,15013,15017,15021,15025,15029,15033,15037,15041,15045,15049,15053,15057,15061,15065,15069,15073,15077,15081,15085,15089,15093,15097,15101,15105,15109,15113,15117,15132,15947,16002,16021,16042,16048,16094,16103,16127,16136,16177,16187,16200,16213,16229,16242,16248,16262,16275,16288,16301,16307,16317,16323,16333,16339,16356,16360,16369,16373,16382,16388,16392,16401,16407,16427,16437,16447,16457,16463,16477,16483,16515,16525,16538,16544,16554,16560,16665,16671,16684,16690,16703,16709,16719,16725,16780,17718,17728,17811,17828,17838,17857,17867,17877,17887,17897,17907,17957,17973,17986,18000,18012,18022,18032,18042,18057,18071,18126,18238,18309,18328,18492,18496,18497,18502,18503,18508,18509,18514,18515,18531,18546,18572,18585,18589,18603,18609,18631,18711,18759,18815,18830,18839,18887,19111,19132,19160,19198,19354,19390,19441,19474,19547,19558,19683,19733,19785,19791,19806,19812,19827,19833,19850,19856,19919,19925,19945,19951,19957,19966,19972,19978,19994,20000,20006,20032,20038,20044,20140,20146,20163,20169,20186,20192,20200,20219,20225,20236,20252,20258,20270,20276,20287,20303,20309,20320,20336,20342,20362,20368,20374,20380,20393,20404,20431,20437,20469,20475,20486,20492,20517,20523,20529,20553,20559,20580,20656,20781,20870,20888,20926,20973,20996,21048,21063,21072,21088,21094,21107,21113,21125,21131,21142,21148,21162,21168,21185,21191,21197,21243,21249,21264,21270,21286,21292,21298,21304,21330,21336,21342,21377,21383,21389,21411,21507,21537,21620,21646,21754,21793,21816,21852,21910,21982,21997,22006,22024,22030,22036,22048,22054,22068,22074,22086,22092,22107,22113,22119,22133,22139,22145,22159,22165,22181,22187,22206,22212,22241,22247,22253,22280,22286,22292,22315,22339,22345,22351,22405,22537,22585,22591,22602,22608,22622,22628,22647,22653,22883,22898,22914,22931,22956,22977,22993,24625,24630,24637,24644,24651,24656,24663,24670,24677,24682,24689,24696,24703,24710,24717,24724,24731,24738,24745,24750,24757,24764,24771,24778,24785,24792,24955,24959,24967,24976,24980,24988,24996,25004,25008,25012,25023,25026,25048,25053,25086,25135,25144,25149,25157,25164,25172,25179,25187,25194,25202,25207,25215,25222,25230,25237,25245,25252,25260,25265,25273,25280,25288,25295,25303,25310,25318,25325,25333,25340,25348,25355,25363,25370,25378,25385,25393,25400,25408,25413,25421,25428,25436,25443,25451,25458,25466,25473,25481,25488,25496,25503,25511,25516,25527,25538,25549,25561,25579,25597,25615,25633,25651,25669,25685,25701,25721,25741,25769,25798,25834,25871,25887,25903,25915,25931,25945,25961,25976,25992,26010,26026,26044,26060,26077,26093,26110,26126,26370,26373,26406,26461,29526,49565,49763,49961,50017,50021,50025,50029,60479,60483,60487,60669]},"rocketpool_6a9dbfd8":{"timeMs":152873.902487,"failures":[2253,2256,2280,2284,2719,2722,2758,2829,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,6508,6620,6704,6736,6748,6828,6869,6882,6912,6916,6954,6967,7008,7013,7065,7073,7090,7105,7330,7372,7446,7503,7538,7553,7594,7599,7612,7641,7702,7705,7749,7770,7809,8334,8370,8415,8483,8487,8498,8553,8627,8632,8645,8712,8739,8764,8808,8819,8850,8893,9338,9372,9419,9489,9502,9544,9559,9635,9639,9705,9721,9749,9764,9828,9839,9840,10358,10400,10449,10521,10579,10582,10620,10625,11171,11215,11267,11314,11362,11394,11403,11438,11466,12017,12039,12158,12196,12337,12389,12454,12478,12532,12550,13065,13101,13198,13288,13318,13323,13338,13373,13440,13467,13979,14031,14259,14291,14390,14494,14512,14521,14567,14612,14638,14651,14676,14694,14758,14775,15370,15426,15463,15543,15722,15814,15889,15891,15937,15974,16464,16536,16665,16687,16705,16727,16759,16780,16916,16935,16938,17464,17554,17631,17675,17743,17748,17833,17854,17891,17908,17916,17957,18614,18666,18760,18796,18842,18845,18888,18904,18915,18981,19066,19084,19138,19737,19825,19879,19919,19939,19970,19987,20001,20006,20085,20086,20147,20777,20871,20943,20959,21049,21050,21065,21066,21081,21112,21179,21209,21762,21763,21782,21793,22085,22777,22839,23073,23075,23599,24154,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,27837,28420,28421,28932,28975,29355,29458,29786,29805,30179,30201,30245,30323,30341,30344,30405,30408,30431,30449,30870,30916,30983,30999,31019,31030,31053,31056,31114,31116,31279,31313,31355,31373,31398,31447,31453,31469,31490,31535,31539,31697,31740,32061,32409,32434,32493,32828,32829,33151,33168,33430,33804,33823,34103,34146,34440,34481,34789,34790,35078,35134,35262,35298,36252,36279,36280,36355,36460,36556,36574,36592,36605,36787,37139,37209,38091,38345,38364,38392,38393,38713,38804,38805,38889,39062,39087,39088,39332,39361,39540,39541,39803,39814,39823,39832,39973,39982,40656,40681,40941,41056,41080,41083,41379,41388,41420,41559,41658,41841,41850,41869,41994,42128,42293,42610,42627,42628,42950,43005,43066,43089,43090,43314,43533,43542,43567,43578,43794,43811,43999,44021,44146,44402,44663,44666,44739,45094,45114,45931,45948,46954,46976,46994,47411,47702,47721,47739,48401,48419,48551,48573,48592,48668,48878,48901,48987,49009,49034,49052,49067,49084,49684,49778,49779,50086,50535,50794,50825,51013,51062,51287,51432,51479,51814,52049,52050,52165,52286,52325,52542,52557,53176,53266,53454,53494,53541,53900,53947,53948,54578,54610,54611,54805,54806,55125,55132,55759,55768,55777,55788,55864,55966,56003,56023,56038,56052,56254,56271,56296,56321,58033,58044,58045,58634,58666,58693,59774,59811,60874,60910,61082,61653,61804,61823,61829,61830,62323,62324,62465,63029,63032,63189,63206,63716,63752,64440,64441,64562,65060,65186,65187,65852,66353,66354,66491,66509,66656,67551,67558,67689,67690,68367,68368,68883,69047,69048,69726,70392,70430,71134,71314,71824,72510,72650,72677,73195,73222,74038,74039,74182,74183,74674,74696,74706,75363,75404,75427,75580,75955,75956,75961,75967,75968,75973,75974,75995,76009,76193,76852,76872,76892,77989,78007,78029,78683,78729,79254,79295,79826,79872,79933,79934,80621,80624,81107,81291,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,85051,85069,85137,85160,85766,85786,85804,85829,86279,86297,86315,86338,87514,87588,87606,87633,88239,88261,88307,88330,88736,88754,88772,88795,89922,89931,89940,90026,90052,90071,90145,90167,90714,90732,90769,90786,90905,90929,92169,93185,93388,93412,93574,94726,95864,95873,95882,95958,95982,96011,96029,96049,96067,96086,96104,96118,96142,96172,96190,96208,96696,102590,102613,102622,102633,102709,102731,103429,103461,103567,103597,103631,103649,103663,103695,103727,103755,104137,104171,104307,104328,104329,105077,105088,105226,105264,105648,105649,105678,105679,105812,105838,105839,106586,106588,106714,106816,107166,107242,107268,107315,107329,107351,107356,107373,107379,107396,107406,108040,108047,108074,108102,108319,108767,108799,108847,108875,108898,108901,109655,109672,109683,109702,109796,109826,110191,110348,110472,110496,110537,110554,110572,111275,111397,111437,111509,111512,111883,111969,112017,112020,112085,112123,112171,112180,112223,112271,112893,112902,113138,113139,113713,113741,113761,113795,114493,114516,114525,114534,114608,114630,114810,114872,115366,115412,115454,115468,115500,115533,115565,115615,116200,116246,116375,116482,116483,117037,117040,117231,117265,117305,117318,117671,117775,118052,118076,118077,118497,118648,118869,118977,119027,119638,119686,119725,119735,119757,119761,119777,119781,119797,119827,119910,119923,119950,120004,120634,120738,121344,121423,121445,121466,121469,122089,122148,122178,122207,122218,122334,122386,122533,123490,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,127450,128010,128019,128050,128562,129710,130110,130323,130354,130382,130383,130985,131359,131370,131393,131412,131490,131503,131504,132005,132006,132188,132204,132205,133245,133269,133337,133338,133389,133390,133889,133900,134041,134052,134110,134112,134744,134745,135246,135259,135685,135952,135953,136386,136396,136397,136597,137590,137631,137779,137790,137866,137890,138932,139727,139728,139798,140204,140260,140859,140899,140900,140995,141019,141433,141436,141723,141748,141769,142740,142746,142819,142877,142915,143596,143597,143981,144157,144654,144792,144814,145450,146514,146521,146617,146715,147353,147393,147394,147880,147881,148605,148616,148626,148704,148728,149453,149482,149483,150509,150510,150713,150779,152548,152654,152712,154580,154630,155766,156612,156621,156630,157786,157808,157833,157851,157869,157884,158463,158600,158680,164880,165031,165180,165181,167481,167529,167571,167614,167615,167640,167641,167665,167701,167732,167762,167763,167787,167808,167809,168149,168811,169401,169463,169565,169583,169777,169797,171747,171767,171903,171933,173683,173720,174017,174037,175592,175771,175789,175926,176013,177671,177685,177696,177705,177730,177745,177756,177767,177776,177862,177884,178068,178092,178132,178146,179860,179952,180096,181779,181780,182118,183873,183874,184091,184105,184119,185979,185993,186220,186498,186499,188290,188308,188323,188340,188388,188576,188604,188852,190204,190238,190272,190372,190402,190712,190732,192087,192248,192294,192436,192741,192759,192778,193125,194286,194326,194346,194347,194721,194743,194758,194777,194818,196292,196334,196374,196492,196530,196688,196716,196717,196741,196742,196772,196773,196799,196804,198498,198516,198539,198556,198593,198797,198839,200187,200231,200297,200325,200415,200755,200773,200788,201693,202092,202138,202212,202309,202354,202390,202558,202591,204047,204129,204146,204172,204212,204254,204422,204423,205811,205831,205908,205933,205980,206022,206894,207382,207432,207883,207901,207916,207933,208043,208721,209261,209283,209364,209476,209514,209530,209548,209551,209564,209567,209702,209708,209722,209728,209739,211149,211179,211194,211223,211258,211406,211450,211522,212482,212540,212618,212652,212790,212840,212985,213018,213068,213274,214094,214130,214250,214350,214402,214444,214576,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":6868.023556,"failures":[195,271,281,306,316,324,338,351,361,367,465,480,486,496,503,505,510,512,517,523,534,554,576,598,605,629,632,643,647,649,651,661,665,667,670,673,674,675,676,687,690,692,695,698,699,700,701,709,713,716,724,728,731,739,743,746,748,756,767,770,772,784,799,814,819,872,898,906,1242,1250,1258,1266,1280,1288,1296,1304,1318,1329,1337,1343,1351,1357,1365,1371,1379,1385,1393,1399,1407,1413,1421,1427,1435,1443,1491,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1586,1598,1620,1621,1623,1639,1642,1647,1652,1657,1662,1667,1672,1677,1682,1692,1710,1718,1728,1741,1753,1761,1772,1780,1785,1822,1836,1841,1846,1879,1885,1887,1907,1919,1939,1959,1987,2023,2043,2049,2055,2076,2097,2117,2145,2181,2196,2203,2210,2232,2260,2289,2324,2339,2345,2351,2358,2384,2412,2448,2511,2544,2550,2556,2563,2590,2619,2656,2721,2758,2762,2766,2769,2801,2806,2815,2816,2818,2825,2831,2838,2842,2847,2852,2858,2861,2862,2864,2871,2877,2886,2894,2898,2905,2908,2909,2914,2917,2919,2923,2934,2935,2937,2969,2986,2988,2992,2993,3020,3047,3052,3064,3071,3076,3108,3119,3125,3156,3178,3179,3189,3192,3194,3195,3257,3261,3265,3275,3277,3284,3287,3311,3359,3366,3455,3456,3458,3479,3489,3490,3492,3498,3535,3571,3572,3595,3610,3643,3657,3677,3716,3777,3784,3829,3838,3848,3863,3874,3891,3931,3937,3982,3991,4006,4017,4029,4035,4061,4072,4075,4077,4091,4095,4099,4103,4114,4122,4130,4134,4138,4142,4147,4155,4162,4171,4175,4179,4183,4279,4294,4297,4299,4317,4321,4328,4332,4334,4338,4348,4356,4419,4423,4428,4432,4436,4438,4442,4452,4459,4525,4529,4534,4538,4543,4545,4549,4554,4558,4562,4571,4578,4657,4662,4668,4669,4673,4677,4681,4685,4687,4691,4697,4705,4711,4740,4744,4772,4778,4813,4824,4839,4842,4844,4935,4937,4938,4940,4943,4945,4947,4994,5006,5014,5031,5059,5134,5152,5174,5248,5267]},"seaport_4f4e7c20":{"timeMs":33046.500950999995,"failures":[263,272,283,292,303,328,352,361,372,381,392,417,441,450,461,470,481,506,530,539,550,559,570,595,621,630,641,650,661,684,691,711,720,731,740,751,776,800,809,820,829,840,865,889,898,909,918,936,947,972,1000,1010,1021,1030,1057,1083,1092,1103,1112,1123,1144,1156,1165,1176,1185,1196,1217,1229,1238,1249,1258,1269,1290,1302,1311,1322,1331,1341,1362,1374,1383,1394,1403,1414,1435,1447,1454,1465,1474,1485,1506,1518,1527,1538,1547,1558,1579,1591,1600,1611,1620,1631,1652,1664,1673,1684,1693,1704,1725,1737,1746,1757,1766,1777,1798,1810,1819,1830,1839,1850,1871,1883,1892,1903,1912,1923,1944,1956,1965,1976,1985,1996,2005,2015,2036,2048,2057,2068,2077,2088,2111,2118,2130,2139,2148,2157,2168,2177,2188,2209,2221,2230,2241,2250,2261,2282,2294,2303,2314,2323,2334,2355,2367,2376,2387,2396,2407,2428,2440,2449,2460,2471,2492,2504,2513,2524,2533,2544,2573,2585,2594,2605,2616,2637,2649,2658,2669,2678,2689,2710,2722,2731,2740,2749,2758,2767,2785,2876,2897,2918,2942,2951,2960,2969,2978,2987,2996,3005,3016,3025,3036,3045,3056,3065,3076,3085,3096,3117,3136,3157,3174,3186,3195,3224,3257,3290,3320,3329,3358,3391,3424,3454,3463,3494,3521,3548,3572,3581,3590,3599,3624,3647,3661,3670,3679,3688,3713,3736,3748,3755,3762,3773,3802,3832,3841,3868,3896,3903,3910,3919,3948,3978,3985,3992,4001,4030,4050,4059,4088,4108,4115,4122,4131,4160,4180,4187,4194,4203,4212,4221,4246,4274,4283,4292,4301,4324,4352,4361,4368,4377,4402,4430,4439,4448,4457,4466,4475,4503,4529,4538,4547,4556,4565,4574,4603,4629,4638,4657,4669,4678,4711,4739,4748,4781,4809,4818,4851,4879,4888,4917,4947,4956,4965,4974,4985,5014,5050,5059,5090,5114,5123,5132,5141,5150,5159,5198,5224,5233,5242,5251,5290,5314,5323,5332,5341,5377,5389,5398,5407,5416,5457,5481,5490,5499,5508,5549,5573,5582,5591,5600,5641,5665,5672,5681,5710,5732,5739,5746,5755,5784,5808,5815,5822,5831,5860,5884,5891,5898,5907,5936,5960,5967,5974,5983,6012,6036,6043,6052,6081,6103,6112,6141,6161,6170,6199,6219,6226,6235,6246,6275,6287,6296,6305,6312,6321,6350,6362,6371,6380,6387,6394,6403,6432,6446,6455,6482,6514,6523,6550,6582,6591,6616,6644,6653,6698,6736,6745,6790,6823,6832,6877,6915,6926,6971,7009,7018,7063,7101,7110,7149,7177,7186,7221,7249,7258,7297,7324,7355,7383,7392,7431,7458,7489,7517,7526,7535,7542,7549,7558,7595,7623,7632,7659,7675,7684,7711,7966,7975,8002,8034,8043,8070,8102,8111,8138,8170,8179,8206,8238,8247,8272,8369,8378,8401,8429,8438,8461,8487,8496,8528,8556,8565,8582,8597,8625,8634,8657,8682,8691,8708,8723,8751,8760,8783,8811,8820,8837,8852,8880,8889,8922,8960,8969,8995,9027,9036,9063,9093,9102,9131,9163,9172,9189,9208,9240,9249,9276,9308,9317,9344,9376,9385,9412,9434,9443,9470,9492,9501,9528,9550,9559,9568,9577,9606,9644,9653,9660,9669,9698,9736,9745,9752,9761,9790,9828,9837,9844,9853,9882,9918,9927,9936,9945,9974,10012,10019,10037,10046,10074,10112,10119,10128,10137,10146,10186,10229,10238,10247,10256,10275,10286,10303,10341,10350,10357,10366,10395,10423,10432,10439,10448,10477,10503,10512,10521,10530,10541,10570,10606,10615,10624,10633,10644,10673,10709,10718,10727,10736,10747,10775,10811,10820,10829,10838,10849,10878,10914,10923,10932,10941,10970,11006,11015,11024,11033,11058,11086,11095,11104,11113,11140,11172,11181,11190,11199,11228,11264,11273,11282,11291,11418,11650,11661,11670,11679,11708,11744,11753,11762,11771,11800,11826,11835,11844,11853,11882,11908,11917,11926,11935,11964,11992,12001,12028,12056,12065,12092,12120,12129,12156,12184,12193,12220,12248,12257,12286,12306,12315,12344,12364,12373,12382,12391,12416,12450,12459,12468,12477,12504,12538,12547,12556,12565,12592,12626,12635,12644,12653,12680,12714,12723,12732,12741,12770,12796,12805,12814,12823,12852,12878,12887,12896,12905,12916,12943,12977,12986,12995,13004,13015,13042,13076,13085,13094,13103,13130,13164,13173,13182,13191,13218,13252,13261,13270,13279,13308,13334,13343,13352,13361,13389,13575,13651,13658,13665,13672,13679,13688,13697,13709,13718,13725,13738,13747,13763,13770,13781,13792,13803,13812,13830,13837,13848,13857,13866,13877,13893,13900,13911,13920,13929,13940,13960,13967,13976,13985,13994,14003,14012,14021,14043,14052,14061,14070,14081,14090,14099,14128,14157,15903,16143,16150,16157,16166,16175,16187,16194,16201,16210,16219,16231,16238,16252,16258,16265,16272,16279,16286,16293,16300,16309,16318,16332,16339,16346,16360,16367,16374,16381,16388,16395,16402,16409,16416,16423,16430,16437,16446,16455,16469,16476,16483,16490,16497,16504,16513,16520,16527,16534,16541,16550,16559,16568,16579,16590,16599,16631,16638,16645,16652,16661,16672,16701,16713,16727,16739,16751,16809,16820,16831,16836,16846,16857,16868,16884,16893,16905,16917,16929,16948,16955,16962,16971,16980,16987,16992,16999,17008,17015,17024,17031,17038,17250,17257,17321,17335,17344,17365,17374,17402,17448,17457,17464,17473,17480,17496,17505,17526,17535,17544,17601,17610,17627,17641,17650,17667,17676,17685,17701,17710,17727,17736,17747,17756,17772,17781,17798,17816,17832,17841,17860,17869,17878,17887,17903,17912,17931,17940,17949,17990,18006,18015,18036,18049,18076,18108,18117,18136,18147,18160,18187,18219,18228,18247,18258,18271,18298,18552,18855,19087,19749,19758,19767,19814,19823,19844,19861,19891,19900,19921,19937,19967,19976,20005,20030,20042,20051,20080,20105,20119,20130,20147,20163,20172,20183,20209,20223,20232,20251,20265,20274,20293,20307,20316,20337,20349,20358,20379,20391,20400,20421,20433,20442,20463,20477,20486,20513,20520,20542,20551,20570,20578,20595,20625,20634,20643,20652,20671,20685,20692,20701,20719,20738,20752,20759,20768,20777,20786,20807,20830,20839,20856,20863,20877,20886,20903,20910,20917,20931,20940,20965,20972,20979,20988,21010,21019,21044,21053,21075,21084,21109,21123,21132,21157,21169,21176,21185,21212,21224,21231,21240,21267,21279,21286,21295,21332,21344,21351,21360,21397,21409,21416,21425,21462,21474,21481,21490,21527,21539,21548,21585,21597,21606,21643,21655,21664,21701,21713,21722,21759,21771,21778,21787,21814,21828,21837,21862,21874,21883,21902,21916,21925,21950,21964,21973,21990,22002,22011,22030,22042,22051,22070,22084,22093,22110,22124,22133,22150,22164,22173,22190,22202,22211,22267,22290,22302,22309,22316,22325,22344,22351,22358,22375,22405,22412,22421,22432,22451,22458,22473,22503,22510,22517,22526,22545,22559,22568,22577,22586,22595,22622,22636,22645,22654,22663,22672,22699,22706,22720,22729,22738,22747,22756,22783,22797,22808,22817,22826,22835,22861,22873,22880,22887,22896,22915,22932,22962,22969,22976,22985,23014,23026,23033,23040,23049,23068,23085,23117,23126,23143,23157,23166,23183,23197,23206,23223,23237,23246,23263,23277,23286,23303,23317,23326,23343,23357,23366,23383,23397,23406,23431,23445,23454,23479,23493,23502,23519,23536,23568,23577,23594,23601,23618,23668,23675,23682,23694,23703,23724,23733,23750,23782,23791,23816,23823,23830,23860,23880,23889,23896,23905,23916,23930,23948,23955,23975,23999,24013,24022,24029,24038,24049,24068,24080,24089,24098,24115,24126,24143,24179,24196,24208,24225,24243,24252,24261,24270,24284,24291,24300,24309,24318,24342,24354,24363,24372,24381,24400,24412,24421,24430,24439,24468,24480,24489,24498,24505,24524,24533,24542,24559,24595,24604,24613,24622,24641,24658,24689,24703,24712,24721,24730,24741,24760,24774,24783,24798,24834,24843,24852,24861,24872,24891,24908,24944,24951,24976,24988,24995,25020,25031,25042,25064,25073,25092,25114,25136,25158,25170,25179,25198,25210,25219,25238,25260,25272,25279,25304,25336,25352,25361,25378,25392,25401,25418,25427,25436,25458,25470,25482,25496,25505,25524,25533,25547,25556,25573,25582,25596,25605,25622,25631,25643,25652,25673,25682,25696,25705,25722,25731,25745,25754,25771,25780,25794,25803,25830,25839,25851,25860,25889,25898,25912,25921,25940,25949,25965,25974,25993,26002,26016,26025,26044,26053,26077,26101,26125,26149,26163,26199,26213,26249,26265,26272,26302,26318,26325,26352,26382,26389,26410,26426,26433,26454,26470,26477,26498,26514,26521,26538,26571,26585,26594,26601,26610,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34474,34483,34494,34503,34528,34558,34567,34578,34587,34612,34642,34651,34662,34671,34680,34754,34770,34779,34790,34799,34808,34817,34826,34835,34874,34887,34903,34912,34921,34937,34946,34957,34973,34982,35002,35018,35027,35034,35048,35057,35068,35077,35097,35098,35112,35121,35132,35146,35155,35166,35175,35194,35201,35215,35224,35235,35244,35270,35286,35300,35309,35320,35327,35341,35350,35361,35370,35387,35401,35410,35421,35430,35449,35463,35472,35483,35492,35501,35510,35519,35530,35548,35799,35808,35817,35841,35871,35880,35889,35914,35944,35953,35964,36007]},"synthetix_9a3a109f":{"timeMs":380693.096402,"failures":[12,13,18,19,24,25,30,31,36,37,42,43,48,49,54,55,60,61,66,67,72,73,78,79,84,85,90,91,96,97,102,103,108,109,114,115,120,121,139,140,145,146,151,152,237,266,1361,1362,1373,1374,1391,1392,1729,1908,2038,2042,2178,2208,2210,2211,2212,2297,2375,2376,2414,2415,2478,2483,2486,2496,2500,2501,2503,2505,2605,2610,2615,2622,2813,2814,2815,2865,2873,2956,2957,2959,2960,2979,2981,2984,2986,2997,2998,3006,3008,3013,3014,3019,3020,3027,3030,3037,3042,3050,3054,3063,3068,3079,3082,3091,3096,3106,3110,3119,3122,3128,3134,3144,3148,3157,3160,3167,3170,3179,3183,3191,3193,3201,3204,3211,3214,3246,3249,3260,3263,3270,3273,3280,3285,3294,3299,3306,3309,3314,3327,3334,3337,3356,3358,3366,3367,3376,3386,3396,3399,3408,3413,3422,3425,3432,3435,3442,3445,3465,3471,3478,3481,3491,3494,3504,3514,3557,3562,3573,3576,3585,3588,3593,3602,3611,3612,3631,3636,3643,3645,3651,3655,3663,3664,3671,3674,3681,3682,3689,3692,3699,3706,3716,3718,3725,3726,3735,3742,3751,3754,3763,3765,3771,3776,3783,3787,3808,3809,3814,3815,3820,3821,3826,3827,3832,3833,3838,3839,3844,3845,3850,3851,3856,3857,3862,3863,3868,3869,3874,3875,3880,3946,3956,3963,3968,3969,3974,3975,3980,3984,3992,3993,3998,3999,4006,4007,4023,4025,4031,4035,4041,4048,4067,4070,4075,4079,4087,4090,4095,4096,4101,4102,4108,4110,4115,4116,4121,4122,4127,4128,4141,4144,4154,4157,4165,4166,4171,4172,4225,4241,4254,4264,4273,4275,4283,4286,4316,4318,4328,4331,4337,4339,4346,4348,4354,4355,4362,4363,4368,4369,4376,4379,4388,4391,4398,4399,4404,4406,4414,4415,4420,4421,4426,4427,4432,4435,4442,4445,4452,4456,4464,4468,4478,4481,4488,4493,4534,4537,4548,4552,4557,4560,4569,4570,4579,4583,4591,4592,4601,4604,4611,4614,4621,4626,4633,4636,4645,4650,4655,4660,4669,4674,4679,4684,4689,4694,4701,4704,4713,4718,4724,4727,4749,4766,4781,4787,4838,4843,4854,4857,4862,4870,4879,4889,4897,4901,4913,4919,4928,4933,4942,4947,4958,4963,4972,4975,4982,4991,5000,5001,5020,5027,5032,5035,5043,5047,5052,5055,5062,5065,5072,5075,5082,5091,5100,5101,5135,5139,5147,5151,5163,5164,5170,5174,5179,5180,5185,5186,5191,5192,5197,5198,5203,5204,5209,5210,5215,5216,5221,5287,5303,5304,5309,5310,5315,5322,5327,5328,5335,5336,5343,5346,5353,5354,5361,5366,5406,5407,5412,5415,5420,5421,5426,5427,5432,5435,5440,5447,5454,5457,5466,5469,5476,5477,5482,5483,5554,5567,5578,5580,5589,5592,5600,5603,5612,5617,5624,5627,5634,5637,5648,5651,5656,5660,5666,5668,5691,5694,5701,5702,5707,5709,5715,5720,5729,5734,5741,5748,5757,5764,5773,5780,5791,5796,5803,5808,5817,5822,5833,5836,5854,5862,5869,5874,5883,5887,5897,5901,5909,5914,5925,5928,5935,5940,5947,5954,6024,6045,6056,6066,6074,6128,6164,6202,6226,6278,6292,6321,6344,6358,6535,6605,6669,6759,7090,7135,7247,7473,7498,7529,7546,7563,7636,7649,7720,7743,7760,7766,7788,7790,7815,7832,7849,7855,8039,8078,8107,8111,8173,8194,8411,8423,8430,8490,8547,8698,8700,8701,8708,9092,9169,9177,9182,9763,9791,9816,9821,9831,9834,10134,10139,10141,10146,10152,11003,11115,11800,11927,11933,11947,11952,12038,12548,12554,13307,13338,13348,13353,13396,13443,13955,13961,14584,14607,14910,14920,15159,15165,15372,15828,16113,16177,16658,16694,16797,17007,17023,17029,17030,17288,17304,17529,17537,17538,18166,18308,18309,18879,18907,18924,19049,19051,19052,19282,19312,19325,19330,19341,19417,19441,19448,19458,19464,19473,19478,19487,19491,19499,19500,19505,19506,19511,19512,19517,19519,19531,19578,19586,19591,19597,19598,19603,19604,19609,19614,19627,19632,19645,19652,19665,19671,19681,19686,19697,19702,20329,20447,20525,20562,21169,21389,21396,21586,21704,21748,22290,22692,23389,23714,23720,23726,24342,24688,25014,25399,25475,25546,26360,26384,26400,26401,28336,28353,28359,29615,29621,30355,31566,31754,31770,31771,33580,33586,35769,35793,36140,36204,37021,37554,38292,38783,39456,39483,39901,40687,41352,41853,41859,42895,43065,43071,43571,44078,44121,44139,45383,45396,45399,45434,45447,45449,45486,45499,45505,45506,45511,45512,45517,45518,45523,45524,45529,45530,45535,45536,45541,45542,45547,45548,45553,45554,45559,45560,45565,45566,45571,45612,46503,46504,46528,46530,46535,46536,46541,46542,46547,46548,46553,46554,46559,46560,46565,46637,49961,49973,49978,59592,61615,64104,66412,69197,71535,73603,75493,77617,79784,82276,84850,87244,89788,92341,95111,97739,100571,103834,106740,110018,113263,113508,113509,113515,113662,113663,113664,113665,113666,113667,113668,113669,113670,113671,113672,113673,113674,113675,113676,113677,113678,113679,113680,113681,113682,113683,113684,113685,113686,113687,113688,113689,113690,115629,115790,115805,115843,115886,115894,115895,115900,115901,115906,116047,116102,116103,116108,116242,116414,116415,116422,116423,116428,116437,116442,116443,116448,116449,116504,116505,116510,116511,116540,116541,116547,116549,116554,116559,116564,116565,116570,116571,116576,116577,117026,117027,117065,117698,118168,118181,118194,118611,118612,118613,118614,118615,118616,118617,118618,118619,118620,118621,118622,118623,118624,118625,118626,118627,118628,118629,118630,118631,118632,118633,118634,118635,118636,118637,118638,118639,120530,120893,120955,121022,121082,123863,124080,124126,126845,127231,127244,127264,127265,127272,127563,127564,127565,127566,127567,127568,127569,127570,127571,127572,127573,127574,127575,127576,127577,127578,127579,127580,127581,127582,127583,127584,127585,127586,127587,127588,127589,127590,127591,129433,129438,129571,129577,129583,129680,129688,129878,129902,129929,129941,130120,133147,136122,136253,136544,136554,136555,136873,136874,136875,136876,136877,136878,136879,136880,136881,136882,136883,136884,136885,136886,136887,136888,136889,136890,136891,136892,136893,136894,136895,136896,136897,136898,136899,136900,136901,138735,138740,138951,139002,139017,139035,139040,139362,139389,139634,139644,139645,140005,140006,140007,140008,140009,140010,140011,140012,140013,140014,140015,140016,140017,140018,140019,140020,140021,140022,140023,140024,140025,140026,140027,140028,140029,140030,140031,140032,140033,141718,141772,141793,142068,142239,142270,142577,142647,142648,142850,142851,142852,142853,142854,142855,142856,142857,142858,142859,142860,142861,142862,142863,142864,142865,142866,142867,142868,142869,142870,142871,142872,142873,142874,142875,142876,142877,142878,144572,144705,144788,144903,145095,145263,145491,145501,145502,145664,145665,145666,145667,145668,145669,145670,145671,145672,145673,145674,145675,145676,145677,145678,145679,145680,145681,145682,145683,145684,145685,145686,145687,145688,145689,145690,145691,145692,147598,147603,147626,147711,148012,148111,148295,148310,148320,148735,148736,148737,148738,148739,148740,148741,148742,148743,148744,148745,148746,148747,148748,148749,148750,148751,148752,148753,148754,148755,148756,148757,148758,148759,148760,148761,148762,148763,150735,150766,151270,151383,151390,151391,151396,151397,151402,151419,151562,151563,151568,151629,151722,151723,151910,151914,151926,151929,151934,151997,152002,152003,152026,152037,152042,152215,152254,152257,152262,152263,152268,152269,152274,152507,152564,152697,152706,152707,152718,152721,153407,155510,155511,155516,155517,155654,155655,155660,155831,155836,155847,155852,155855,155860,155923,155928,155947,155952,155961,155966,156040,156152,156155,156160,156161,156166,156167,156342,156455,156460,156595,156602,156603,156616,156671,156732,156733,156758,156761,156784,156919,159814,159850,159858,159860,159884,159890,160060,160176,160178,160301,160433,160441,160465,160515,160638,160868,160916,160991,160997,161007,161153,161158,161160,161162,162277,162289,162297,162343,162388,162427,162437,162507,162595,162685,162715,162831,162887,163009,163019,163027,163038,163139,163390,163490,163506,163528,163587,164551,164697,164841,164891,164901,164951,164957,164969,165008,165023,165035,165040,165073,165199,166308,167309,167487,167488,167491,167742,167881,168128,168129,168445,168446,168557,168638,168645,168648,168659,168685,168686,168687,168718,168734,168743,168921,169046,169047,172487,172490,172611,172616,172654,172942,172960,173076,173096,173101,173250,173401,173511,173642,173721,173878,175003,175026,175049,175201,175356,175377,175655,175703,176730,176751,176874,176902,176926,177083,177393,177521,177522,177527,177528,177533,177534,177633,177634,177639,177640,177645,177646,177651,177652,177657,177834,178169,178174,178219,178220,178255,178268,178283,178292,178297,178302,178311,178314,178321,178323,178329,178330,178510,178580,178587,178591,178599,178600,178607,178612,179179,179196,179213,179230,179309,179388,179964,180318,180319,180330,180331,180338,180339,180384,180443,180456,180459,180470,180475,180482,180489,180494,180593,180636,180641,180648,180760,180786,180791,180798,180799,180804,180805,180810,180811,180946,180947,180952,180953,180958,180961,180968,180969,180976,180979,180984,180987,181714,181731,181748,181765,182082,182107,182393,182617,182620,182625,182628,182633,182634,182641,182644,182649,182652,182657,182660,182665,182668,182673,182774,182779,182782,182787,182790,182795,182884,182889,182892,182897,182898,182903,182904,182909,182910,183044,183271,183401,183402,183407,183408,183413,183414,183419,183420,183993,184028,184045,184062,184079,184204,184350,184957,184975,184980,184981,184986,184987,184992,184993,184998,185001,185006,185009,185014,185017,185022,185025,185030,185033,185038,185041,185046,185240,185326,185327,185334,185337,185344,185431,185442,185447,185456,185457,185462,185463,185468,185469,185474,185483,185864,185893,185910,185927,185944,185961,186605,186998,187002,187007,187008,187013,187014,187019,187088,187118,187123,187129,187131,187137,187140,187145,187148,187153,187156,187161,187164,187169,187172,187177,187180,187185,187188,187193,187384,187391,187393,187401,187404,187409,187410,187415,187416,187421,187422,188041,188064,188081,188098,188115,188132,188644,188860,188866,188872,188873,188878,188893,188900,188904,188912,188915,188922,188925,188932,189041,189449,189451,189456,189459,189472,189475,189482,189485,189494,189497,189504,189507,189864,189869,189874,189875,189980,189981,189986,189987,189992,189993,189998,189999,190251,190527,190798,190815,190842,190862,190901,191287,191288,191293,191294,191299,191300,191305,191306,191311,191312,191317,191318,191511,191512,191517,191524,191529,191530,191535,191536,191541,191542,191547,191548,191567,191568,191577,191578,191585,191586,191593,191594,191599,191602,191607,191610,191615,191618,191623,191626,192175,192204,192221,192238,192255,192272,192680,192851,192873,193119,193376,193414,193448,193454,193455,194020,194042,194087,194483,194508,194525,194551,194626,194643,195036,195097,195127,195671,195679,195767,195817,196181,196241,196258,196275,196421,196882,196899,196916,196947,197019,197045,197415,197426,197491,197492,197555,197856,198106,198121,198133,198654,198671,198688,198705,198722,198855,199335,199372,199389,199488,199881,199947,199967,199973,199980,200527,200570,200591,200757,201043,201060,201077,201163,201192,201340,201712,201737,201771,201797,201803,201896,202199,202286,202307,202755,202780,202800,202817,202843,203080,203097,203278,203357,203381,203405,203411,203798,203836,203853,203886,203921,204010,204099,204619,204636,204653,204670,204687,204737,204804,204995,205012,205118,205228,205266,205548,205552,205561,205627,205632,205652,205672,205689,205791,205895,205915,205936,206140,206143,206465,206482,206499,206516,206533,206589,206778,206971,206989,207043,207270,207288,207368,207372,207379,207458,207459,207464,208066,208083,208100,208131,208183,208235,208265,208346,208363,208461,208737,209003,209021,209025,209034,209149,209152,209162,209163,209288,209412,209502,209981,209998,210015,210032,210053,210070,210096,210533,210550,210567,210860,210870,210996,211000,211009,211047,211053,211056,211068,211551,211783,211918,211935,211952,211994,212014,212031,212057,212780,212799,212816,212837,212969,212989,212993,213002,213051,213085,213133,213800,213809,213822,213962,213970,213980,213994,214000,214052,214063,214770,214794,214800,214946,214961,215721,215742,215763,215780,215797,215950,215978,216059,216076,216093,216118,216804,216838,216848,216849,216850,217017,217034,217051,217068,217155,217174,217216,217891,217929,217957,217983,218140,218160,218168,218169,218288,218305,218322,218339,218358,219015,219091,219266,219287,219310,219335,219433,219467,219477,219641,219970,220138,220208,220383,220405,220434,220459,220483,220509,220640,220657,221306,221343,221377,221401,221567,221621,221639,221656,221675,221800,221809,222412,222453,222664,222681,222698,222715,222788,222809,222843,223546,223582,223618,223639,223849,223869,223878,223885,223917,223953,223980,224005,224026,224030,224773,224790,224807,224824,224841,225064,225106,225215,225232,225255,225276,226018,226042,226052,226277,226308,226325,226346,226474,226491,226508,227239,227260,227281,227321,227584,227601,227670,227741,227767,227785,227795,228152,228543,228554,228565,228566,228943,228960,228977,228994,229033,229054,229088,229833,229850,229867,230134,230264,230284,230300,230303,230310,231042,231107,231126,231147,231168,231189,231463,231622,231639,231695,231727,232409,232479,232489,232492,232777,232794,232811,232900,232995,233015,233102,233816,233844,233872,233902,234168,234188,234197,234201,234207,234210,234448,234465,234482,235135,235160,235236,235297,235578,235603,235720,235803,235883,235903,235911,235919,235929,236566,236691,236708,236989,237010,237041,237091,237262,237365,237386,238025,238118,238162,238182,238190,238462,238476,238479,238692,238709,238726,238828,238856,239010,239595,239658,239953,239987,240025,240205,240227,240235,240325,240354,240361,241080,241097,241158,241185,241481,241519,241611,241856,241891,241927,242625,242651,242673,242725,242741,243057,243162,243171,243176,243178,243179,243184,243185,244144,244161,244178,244195,244223,244253,244623,244756,244775,244792,244957,245775,245801,245809,245839,245849,245864,245866,245867,246321,246345,246367,246388,246551,246568,246594,247449,247488,247505,247860,247972,248010,248020,248030,248192,248194,248195,248197,248205,248207,248221,249062,249082,249125,249146,249493,249520,249679,249858,249881,249904,249912,250762,250790,250973,251153,251161,251330,252365,252382,252399,252416,252433,252784,252814,252827,253012,253197,253218,254054,254106,254114,254472,254484,254662,254848,254853,255458,256425,256444,256461,256478,256495,256512,256538,256758,257742,257759,257780,258142,258168,258176,258186,258195,258200,258208,259368,259372,259751,259768,259785,259802,259837,259854,259884,259897,261024,261041,261062,261440,261464,261472,261516,261524,262067,262612,262620,263053,263054,264117,264134,264151,264168,264185,264202,264228,264241,264688,264705,264726,265788,265812,265829,265849,265855,266077,266298,266303,266834,267365,267374,267833,267850,267867,267884,267901,267927,267940,268973,268990,269011,269017,269483,269517,269524,269528,269533,270265,271000,271037,271054,271071,271088,271105,271122,271148,271161,272608,272631,272664,272678,272698,272734,272741,272747,272749,272766,272787,273515,274245,274289,274308,274325,274342,274359,274376,274402,274415,275842,275869,275890,275912,275938,275972,275979,275989,277472,277489,277526,277533,277550,277567,277584,278995,279012,279064,279083,279100,279131,279152,279158,279178,279188,279893,280605,280643,280644,280690,280707,280724,280741,280758,280778,280817,282210,282229,282248,282269,282309,282333,282341,282344,282387,282404,282421,282438,283807,283836,283888,283945,283968,283990,284016,284052,284072,284089,285615,285632,285649,285666,285713,285734,285776,287155,287174,287193,287252,287300,287322,287332,287342,287416,287433,287546,288769,288838,288862,288933,289008,289025,289083,289111,289139,289161,290506,290567,290638,290655,290729,290757,290784,290843,290883,292178,292251,292283,292315,292363,292383,292527,292528,292538,292590,292623,293496,293936,294014,294049,294078,294104,294281,294342,294383,294404,294412,295700,295790,295826,295854,296010,296044,296115,296165,296187,296215,297542,297559,297606,297629,297637,297801,297823,297882,297938,297939,297959,297960,299306,299327,299344,299361,299378,299395,299595,299728,299745,299764,299785,301119,301157,301165,301193,301199,301373,301378,301380,301526,301543,301560,301577,301594,301932,302939,302978,303170,303188,303209,303359,303383,303391,304705,304711,304713,304718,304720,304948,304965,304982,304999,305016,305181,305223,306478,306511,306544,306743,306761,306785,306793,306973,306979,306993,306995,307000,307002,308454,308471,308488,308505,308522,308553,308597,308798,308817,308834,308855,310303,310329,310337,310381,310387,310405,310407,310412,310414,311336,311353,311370,311387,311404,312001,312139,312185,312207,312667,313127,313861,313874,313934,313957,313967,315121,315508,316526,317005,317022,317039,317056,317073,317099,317393,317421,317846,318501,318777,318790,319098,319127,319137,320449,320621,322040,322057,322074,322091,322108,322125,322465,322471,322511,323124,323737,324095,324108,324128,324133,324179,325425,325609,325781,325828,327004,327021,327038,327176,327416,327433,327459,327509,327515,328070,328624,329013,329026,329044,329095,329107,330419,330635,331384,332166,332183,332200,332217,332234,332251,332277,333619,333625,333670,333715,333749,335086,335106,335111,335121,335254,336581,336644,337950,337967,337984,338001,338018,338035,338061,338191,338197,338818,339438,339483,339496,339514,339645,339657,340925,340969,342298,342333,342350,342367,342384,342401,342418,342444,342450,342456,343083,343723,343754,343769,343775,343797,343810,343815,343834,345136,345171,345211,345228,346453,346470,346490,346526,346552,346570,346576,346591,346606,347826,347869,347875,347895,347908,347927,347946,348000,348621,349374,349401,349487,349511,349512,350861,351009,351010,351044,351045,351052,351084,351085,351092,351110,351111,351115,352552,352553,352554,352555,352556,352557,352558,352559,352560,352561,352562,352563,352564,352565,352566,352567,352568,352569,352570,352571,352572,352573,352574,352575,352576,352577,352578,352579,352580,353837,353857,353904,355648,355658,355676,355795,357016,357050,357205,358048,358072,358073,358141,358147,358181,358200,358261,358279,358280,358281,358282,358291,358317,358335,358336,358342,360339,360342,360366,361084,361098,361110,361125,362452,362454,366644,366675,367781,367784,367894,367895,367896,367897,367898,367899,367900,367901,367902,367903,367904,367905,367906,367907,367908,367909,367910,367911,367912,367913,367914,367915,367916,367917,367918,367919,367920,367921,367922,368870,368875,369073,369084,369091,369104,369111,369120,369125,369132,369143,369150,369159,369164,370505,370539,370629,370660,371791,371795,371842,371878,371940,372045,372118,372187,372195,372205,372206,372220,372221,372756,373474,373491,373584,373585,373586,373587,373588,373589,373590,373591,373592,373593,373594,373595,373596,373597,373598,373599,373600,373601,373602,373603,373604,373605,373606,373607,373608,373609,373610,373611,373612,374824,374953,374970,375054,376055,376102,376103,376104,376105,376106,376278,376290,376410,376412,376504,376631,377496,377523,377524,377528,377553,377557,377574,377578,377581,377585,377586,377590,377591,377595,377596,377600,377601,377605,377706,377710,377711,377726,377740,377773,377781,377787,377804,377812,377813,377817,377818,377822,377823,377827,377828,377832,377833,377857,377858,377862,377863,378915,378938,379641,380068,380809,381305,381563,381565,381566,381567,381568,381574,382549,382555,382818,382824,382855,382861,383790,383791,384077,384082,385547,386042,386160,386161,386162,386163,386164,386165,386166,386172,386215,386216,386217,386218,386219,387223,387228,388164,388169,388182,388195,388196,388202,389093,389094,389118,389136,389137,389138,389144,389923,389995,390000,390779,390806,391179,391512,391535,391558,391564,391607,391608,391609,392353,392358,392360,392752,393111,393166,393179,393523,393867,393873,393918,393919,393923,393925,393926,393932,394633,394639,394691,395358,395363,395365,395370,395374,395388,395401,395402,395407,395412,395998,396005,396051,396062,396067,396069,396075,396081,396086,396668,396705,396707,396729,396730,396778,396783,396989,397193,397280,397283,397285,397699,397704,397708,397745,397785,397836,397838,397839,397841,397850,398165,398171,398266,398272,398330,398339,398649,398792,398797,398799,398800,398801,399104,399106,399107,399108,399114,399219,399222,399304,399591,399640,399687,399772,399774,399780,400099,400281,400286,400288,400294,400622,400623,400813,400820,400824,400857,401348,401361,401378,401391,401812,401863,401897,401912,401923,401979,402362,402370,402374,402380,402381,402489,402494,402500,402506,402508,402536,403014,403091,403099,403101,403109,403114,403172,403185,403193,403199,403201,403207,403815,403826,403828,403831,403835,403850,403864,403865,403868,403872,404431,404444,404486,404869,404874,404876,404882,404944,405005,405079,405114,405116,405122,405530,405733,405770,405774,406179,406390,406397,406402,406403,406407,406412,406416,406417,406455,406456,406464,406467,406471,406474,406478,406479,406483,406484,406488,406683,406861,406862,406866,406873,406877,406878,406882,406883,406889,406890,406894,406895,407029,407030,407034,407035,407039,407058,407062,407063,407077,407182,407547,407565,407578,407801,407840,407854,407861,408266,408271,408277,408286,408483,408496,408500,409460,409753,410450,410488,411433,411715,411778,411813,411814,411818,411820,412390,412399,413075,413127,413769,413770,413771,413775,413778,414321,414326,414749,415058,415097,415098,415102,415104,415717,415733,416047,416333,416337,416398,416407,416409,417588,417610,418476,418743,419346,419374,419639,419876,419877,419878,419879,419883,419885,419973,419978,420209,420438,420529,420538,420990,421018,421046,421054,421530,421532,421590,421593,422101,422106,422111,422114,422156,422571,422864,423085,423186,423191,423192,423658,423663,423975,424201,424314,424320,424325,424804,424891,425140,425457,425502,425507,425508,426086,426091,426397,426679,426734,426740,426745,427334,427343,427667,427963,428034,428035,428671,428676,428981,429282,429317,429322,429323,429959,429964,429969,429971,429972,429973,430009,430014,430019,430021,430022,430023,430627,430632,430684,431302,431309,431365,431368,431377,431992,432123,432684,433275,433352,433917,434060,434567,435178,435183,435450,435715,435746,436278,436279,436337,436400,436421,436425,436426,437002,437007,437250,437528,437542,437843,438100,438106,438153,438172,438176,438177,438679,438681,438682,438786,438791,438793,438794,439274,439281,439283,439345,439352,439358,439360,439677,439931,439989,440015,440019,440021,440559,440568,440570,440899,441163,441251,441252,441806,441811,441817,442164,442435,442534,442539,442540,443100,443105,443111,443470,443745,443850,443856,443861,444496,444505,444511,444846,445159,445204,445209,445210,445844,445857,445863,446206,446521,446572,446578,446583,447220,447229,447237,447590,447905,447974,447975,448649,448654,448660,449282,449314,449925,449930,449931,450587,450592,450594,451245,451283,452270,452552,453241,453285,454405,454414,455267,455533,455568,455575,455579,455581,456111,456249,456250,456283,456298,456299,456322,456323,456346,456347,456357,456363,456365,456366,456367,456475,456477,456478,456479,456997,456998,457003,457004,457009,457014,457021,457024,457033,457036,457041,457042,457047,457048,457081,457084,457089,457092,457111,457114,457121,457124,457131,457132,457137,457138,457143,457144,457150,457168,457173,457176,457181,457182,457187,457190,457195,457198,457203,457204,457728,457734,457739,457746,457747,457752,457753,457758,457787,457794,457797,457802,457817,457826,457829,457836,457837,457842,457843,457848,457849,457854,457873,457878,457879,457886,457887,457892,457894,457900,457903,457908,457909,457916,457921,457930,457931,457936,457939,457946,458504,458512,460090,460092,460097,460100,460127,460139,460150,460175,460176,460229,460282,460620,460628,460635,460640,460642,461431,462270,462288,462290,462316,462317,462328,462331,462344,462347,462358,462361,462368,462373,462380,462385,462398,462401,462410,462415,462426,462427,462538,462741,462754,462759,462766,462767,462774,462781,462790,462801,462806,462815,462822,462823,462830,462833,462868,462875,462888,462893,462900,462918,463049,463055,463059,463065,463071,463077,463090,463099,463106,463117,463118,463225,463402,463415,463420,463427,463428,463435,463442,463451,463457,463467,463476,463483,463484,463491,463494,463529,463536,463551,463556,463561,463580,463593,463596,463609,463614,463621,463630,463637,463809,463815,463866,463920,464030,464361,464364,464377,464381,464389,464394,464403,464406,464429,464436,464445,464450,464461,464466,464473,464474,464485,464486,464494,464498,464513,464515,464530,464534,464543,464544,464553,464556,464565,464578,464591,464594,464605,464613,464621,464714,464763,464833,464881,464885,465070,465082,465083,465114,465117,465126,465133,465142,465145,465150,465157,465162,465169,465174,465185,465194,465203,465212,465215,465224,465227,465236,465247,465258,465263,465276,465284,465292,465383,465418,465449,465512,465523,465530,465535,465548,465555,465572,465573,465588,465783,465793,465826,465879,465903,465909,465941,465942,465959,465964,465977,465980,465993,466000,466007,466096,466123,466144,466149,466206,466221,466224,466233,466242,466253,466266,466271,466282,466295,466298,466307,466338,466353,466366,466377,466378,466403,466414,466421,466430,466439,466446,466455,466463,466469,466470,466642,467393,467484,467492,467503,467514,467563,467569,467578,467629,467640,467641,467645,467690,467712,467721,467729,467730,467764,467774,467779,467783,467784,467820,467821,467854,467855,467872,467879,467888,467893,467908,467911,467923,467927,467944,467947,467966,467973,467982,467985,467998,467999,468016,468021,468034,468041,468060,468063,468070,468101,468127,468133,468140,468183,468192,468207,468214,468229,468234,468255,468264,468277,468513,468519,468534,468539,468550,468555,468564,468577,468592,468599,468608,468613,468621,468629,468642,468651,468660,468671,468686,468693,468696,468711,468732,468739,468750,468781,468786,468804,468808,468813,468828,468853,468859,468873,468884,468891,468900,468908,468944,468955,469162,469180,469227,469237,469272,469280,469300,469314,469320,469362,469365,469374,469384,469396,469429,469436,469451,469458,469461,469480,469481,469506,469521,469528,469539,469544,469553,469562,469597,469608,469621,469638,469657,469678,469681,469696,469699,469710,469719,469728,469739,469746,469747,469780,469781,469800,469807,469818,469827,470041,470049,470064,470071,470074,470093,470113,470133,470136,470151,470152,470165,470204,470209,470228,470233,470246,470269,470286,470293,470306,470311,470318,470331,470344,470353,470354,470359,470388,470393,470408,470421,470428,470439,470450,470455,470468,470487,470492,470513,470740,470746,470783,470797,470818,470842,470853,470898,470904,470924,470945,470980,470981,470982,470986,471033,471043,471045,471046,471047,471095,471115,471121,471126,471130,471173,471182,471191,471199,471215,471232,471249,471256,471267,471276,471283,471298,471309,471322,471333,471350,471359,471362,471371,471378,471385,471408,471417,471432,471439,471440,471447,471462,471467,471498,471513,471528,471535,471538,471553,471594,471599,471620,471641,471662,471886,471904,471911,471922,471931,471938,471953,471964,471977,471988,472005,472014,472017,472026,472031,472040,472061,472070,472085,472092,472095,472100,472115,472142,472160,472168,472182,472190,472196,472206,472247,472272,472289,472314,472333,472338,472356,472364,472371,472384,472607,472619,472678,472684,472715,472725,472735,472757,472761,472803,472806,472811,472826,472869,472872,472891,472894,472901,472912,472957,472958,472983,473000,473025,473044,473049,473060,473075,473082,473095,473108,473125,473128,473133,473150,473159,473176,473184,473198,473209,473218,473229,473241,473247,473264,473273,473292,473311,473318,473554,473559,473564,473575,473592,473593,473616,473631,473642,473655,473660,473677,473684,473691,473704,473723,473734,473737,473742,473755,473762,473777,473792,473799,473812,473823,473834,473839,473852,473857,473876,473879,473898,473905,473916,473921,473930,473942,473956,474165,474171,474234,474252,474275,474317,474341,474346,474354,474407,474477,474605,474606,474671,474706,474761,474808,474884,474918,474951,474952,474953,475038,475097,475168,475169,475262,475265,475275,475280,475281,475289,475309,475310,475311,475340,475341,475402,475403,475404,475919,475920,475921,475922,475923,475924,475925,475926,475927,475928,475929,475930,475931,475932,475933,475934,475935,475936,475937,475938,475939,475940,475941,475942,475943,475944,475945,475946,475947,476470,476471,476472,476473,476586,476639,476668,476714,476769,476779,476818,476820,476835,476837,476852,476854,476892,476921,476925,476936,477016,477018,477019,477020,477032,477062,477091,477092,477104,477159,477193,477219,477244,477245,477266,477329,477346,477423,477507,477601,477611,477629,477678,477700,477712,477723,477724,477735,477795,477831,477836,477838,477840,477842,477871,477927,477930,477932,477933,477945,478009,478012,478014,478015,478041,478115,478134,478162,478163,478193,478280,478299,478308,478309,478314,478315,478322,478376,478388,478429,478434,478463,478468,478479,478484,478485,478490,478505,478568,478571,478576,478595,478620,478621,478630,478643,478650,478651,478656,478673,478678,478701,478726,478729,478758,478760,478772,478773,478778,478814,478815,478820,478826,478832,478835,478840,478847,478852,478853,478858,478911,478916,478921,478926,478927,478934,478935,478940,479001,479006,479007,479016,479017,479022,479025,479034,479035,479040,479041,479134,479135,479156,479159,479164,479165,479170,479177,479182,479192,479193,479198,479275,479300,479301,479310,479311,479316,479317,479330,479378,479390,479431,479436,479461,479470,479481,479486,479487,479492,479507,479570,479573,479578,479613,479622,479623,479633,479644,479652,479653,479658,479675,479680,479701,479706,479727,479732,480044,480583,480630,480650,481236,481242,481243,481248,481249,481254,481285,481318,481319,481324,481325,481330,481331,481336,481409,481420,481433,481438,481439,481476,481479,481484,481485,481490,481491,481496,481497,481502,481519,481524,481525,481576,481583,481590,481591,481596,481601,481650,481651,481656,481657,481662,481663,481668,481681,481686,481687,481692,481758,481780,481781,481806,481807,481812,481821,481826,481827,481832,481833,481838,481839,481844,481845,481956,481959,481964,481965,481970,482021,482040,482041,482046,482047,482052,482053,482058,482075,482156,482216,482222,482224,482483,482538,482539,482604,482693,482742,482790,482998,483000,483061,483063,483064,483186,483188,483189,483562,483564,483565,483774,483775,483957,483959,483964,484032,484033,484218,484221,484236,484250,484383,484386,484599,484605,484794,484801,484816,484822,484893,484899,484955,484972,485736,485851,485853,486386,486389,486404,486410,486663,486666,486681,486687,487056,487059,487074,487190,487195,487201,487205,487222,487980,488005,488007,488008,488769,488772,488787,489349,489368,489371,489386,489392,489559,489562,489577,489583,489588,489594,489598,489615,490929,490944,490946,491113,492983,880744,1215934,1217163,1217461,1254856,1277384,1277385,1278777,1279075,1279079,1279107,1279117,1279123,1279128,1279246,1279301,1284380,1287277,1287315,1289019,1289020,1289021,1289022,1289023,1289024,1289025,1289026,1289027,1289028,1289029,1289030,1289031,1289032,1289033,1289034,1289035,1289036,1289037,1289038,1289039,1289040,1289041,1289042,1289043,1289044,1289045,1289046,1289047,1291084,1346824,1347577,1348680,1349773,1571147,1571731,1572504,1572678,1572795,1572873,1573121,1573131,1573300,1573301,1573348,1573349,1573350,1620388,1621870,1621949,1622866,1622951,1626073,1626079,1626109,1626110,1626111,1626112,1626113,1626114,1626115,1626281,1626282,1626283,1626284,1626285,1626286,1626287,1626288,1626289,1626290,1626291,1626292,1626293,1626294,1626295,1626296,1626297,1626298,1626299,1626300,1626301,1626302,1626303,1626304,1626305,1626306,1626307,1626308,1626421,1626422,1626423,1626424,1626425,1626426,1626449,1626450,1626451,1626452,1633137,1633143,1633393,1642382,1642383,1642384,1642385,1642386,1645383,1645384,1645385,1645386,1645852,1646134,1646536,1646602,1646603,1646665,1646668,1646680,1646681,1646695,1646700,1646712,1646727,1646728,1647106,1647676,1647694,1647730,1647748,1647778,1647781,1647796,1647798,1647823,1647834,1647864,1647866,1647881,1647887,1647895,1647918,1648444,1648468,1648473,1648474,1648567,1648568,1648569,1648570,1648571,1648572,1648573,1648574,1648575,1648576,1648577,1648578,1648579,1648580,1648581,1648651,1648657,1648662,1648667,1648672,1649394,1649667,1649668,1649669,1649670,1649671,1649672,1649673,1649674,1649675,1649676,1649677,1649678,1649679,1649680,1649681,1649682,1649683,1649684,1649685,1649686,1649687,1649688,1649689,1649690,1649691,1649692,1649693,1649694,1649695,1649696,1649892,1649911,1649929,1649934,1649939,1650796,1650980,1650981,1650984,1650985,1650986,1650987,1650988,1650989,1650990,1650991,1650992,1650993,1650994,1650995,1650998,1651168,1651183,1652203,1652348,1652349,1652350,1652351,1652352,1652353,1652354,1652355,1652356,1652357,1652358,1652359,1652360,1652361,1652362,1652486,1652535,1652553,1653805,1653825,1653842,1653858,1653859,1653860,1655058,1655134,1655196,1655257,1655258,1655262,1656554,1656680,1656737,1656793,1656794,1656957,1656958,1656959,1656960,1656961,1656962,1656963,1656964,1656965,1656966,1656967,1656968,1656969,1656970,1656971,1657167,1657187,1657255,1657318,1657319,1658745,1658815,1658816,1658924,1658925,1660571,1660845,1660846,1660847,1660848,1660849,1660850,1660851,1660852,1660853,1660854,1660855,1660856,1660857,1660858,1660859,1661029,1661030,1661035,1661158,1661169,1661170,1661207,1661208,1661213,1661214,1661229,1661256,1661305,1661316,1661321,1661322,1661327,1661328,1661333,1661340,1661405,1661406,1661507,1661510,1661515,1661516,1661521,1661522,1661527,1661626,1661647,1661648,1661718,1661805,1661859,1661861,1661869,1661870,1661875,1661915,1661940,1661967,1662026,1662031,1662032,1662037,1662038,1662151,1662184,1662191,1662192,1662197,1662214,1662223,1662224,1662229,1662230,1662235,1662240,1662367,1662368,1662373,1662378,1662383,1662384,1662419,1662420,1662425,1662548,1662559,1662576,1662597,1662598,1662603,1662604,1662609,1662624,1662651,1662711,1662712,1662717,1662718,1662788,1662790,1662795,1662892,1662899,1662900,1662905,1662906,1662911,1662912,1663021,1663030,1663035,1663148,1663153,1663237,1663247,1663251,1663257,1663258,1663263,1663264,1663269,1663306,1663353,1663405,1663421,1663422,1663427,1663428,1663433,1663500,1663579,1663582,1663587,1663613,1663614,1663619,1663685,1663751,1663752,1663757,1663762,1663767,1663798,1663803,1663804,1663809,1663935,1663943,1663976,1663981,1663982,1663987,1664002,1664007,1664074,1664089,1664090,1664095,1664098,1664103,1664104,1664109,1664176,1664181,1664278,1664285,1664286,1664291,1664292,1664297,1664298,1666162,1666308,1666311,1668099,1668151,1668232,1669989,1670989,1672699,1672721,1672800,1672971,1673085,1673294,1673471,1674927,1675132,1675282,1675370,1675535,1676925,1677053,1677054,1677059,1677060,1677065,1677066,1677071,1677238,1677243,1677244,1677249,1677356,1677361,1677362,1677367,1677368,1677375,1677409,1677505,1677506,1677515,1677516,1677521,1677522,1677527,1677528,1677533,1677706,1677729,1677730,1677735,1677736,1677771,1677772,1677777,1677778,1677921,1677944,1677961,1677964,1677969,1677970,1677975,1677976,1678038,1678118,1678127,1678144,1678197,1678202,1678207,1678208,1678213,1678341,1678369,1678370,1678375,1678376,1678381,1678408,1678481,1678482,1678487,1678548,1678553,1678554,1678559,1678560,1678565,1678622,1678737,1678738,1678743,1678744,1678855,1678856,1678861,1678862,1678867,1678868,1680288,1680354,1680426,1681884,1681983,1682084,1683612,1683792,1683793,1683798,1683799,1683804,1683805,1683942,1683951,1683956,1684011,1684026,1684031,1684036,1684037,1684042,1684147,1684196,1684197,1684202,1684203,1684208,1684210,1684244,1684245,1684314,1684317,1684382,1684385,1684390,1684391,1684396,1684397,1684402,1684403,1684574,1684577,1684582,1684691,1684696,1684697,1686227,1686243,1686244,1686271,1686274,1686406,1686412,1686417,1686418,1686423,1686424,1686461,1686462,1686467,1686488,1686665,1686666,1686671,1686672,1686677,1686740,1686745,1686746,1686751,1686917,1686933,1686934,1686939,1686940,1687077,1687086,1687091,1687151,1687161,1687166,1687171,1687172,1687187,1687303,1687329,1687330,1688579,1689213,1689214,1689215,1689216,1689217,1689218,1689219,1689220,1689221,1689222,1689223,1689224,1689225,1689226,1689227,1690407,1690532,1690755,1690757,1691104,1691173,1692095,1692097,1693954,1693955,1693956,1693957,1693958,1693959,1693960,1693961,1693962,1693963,1693964,1693965,1693966,1693967,1693968,1695124,1695214,1695636,1695762,1695982,1695992,1696340,1696409,1697883,1697893,1697895,1698079,1698081,1698227,1698228,1698238,1698241,1698251,1698254,1698266,1698650,1698653,1698663,1698665,1698676,1698682,1698871,1698881,1698883,1698893,1698895,1698905,1698907,1698989,1699357,1699358,1699370,1699372,1699377,1699380,1699381,1699391,1699393,1699398,1699402,1699451,1700940,1700948,1701974,1702667,1702717,1703713,1703714,1703715,1703716,1703717,1703718,1703719,1703720,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091,1704092,1704093,1704853,1704859,1704973,1704974,1704975,1704976,1704977,1704978,1704979,1704980,1704981,1704982,1704983,1704984,1704985,1704986,1704987,1704988,1704989,1704990,1704991,1704992,1704993,1704994,1704995,1704996,1704997,1704998,1704999,1705000,1706133,1706549,1706564,1708806,1708812,1710344,1710736,1710751,1711044,1711276,1711525,1713777,1714889,1715331,1715773,1715788,1715790,1715791,1716324,1716857,1716858,1716859,1719837,1719843,1721039,1721880,1721896,1723014,1723015,1723016,1723017,1723018,1723019,1723020,1723021,1723150,1723151,1723152,1723153,1723154,1723155,1723156,1723157,1723158,1723159,1723160,1723161,1723162,1723163,1723164,1723165,1723166,1723167,1723168,1723169,1723170,1723171,1723172,1723173,1723174,1723175,1723176,1723177,1724066,1724072,1724186,1724187,1724188,1724189,1724190,1724191,1724192,1724193,1724194,1724195,1724196,1724197,1724198,1724199,1724200,1724201,1724202,1724203,1724204,1724205,1724206,1724207,1724208,1724209,1724210,1724211,1724212,1724213,1725272,1725376,1725391,1727595,1727601,1729499,1729669,1729684,1729785,1730004,1730566,1732502,1733502,1733900,1735248,1735263,1735265,1735266,1738634,1738640,1738822,1740246,1740261,1740389,1740390,1740391,1740392,1740393,1740394,1740395,1740396,1740521,1740522,1740523,1740524,1740525,1740526,1740527,1740528,1740529,1740530,1740531,1740532,1740533,1740534,1740535,1740536,1740537,1740538,1740539,1740540,1740541,1740542,1740543,1740544,1740545,1740546,1740547,1740548,1741983,1741989,1742103,1742104,1742105,1742106,1742107,1742108,1742109,1742110,1742111,1742112,1742113,1742114,1742115,1742116,1742117,1742118,1742119,1742120,1742121,1742122,1742123,1742124,1742125,1742126,1742127,1742128,1742129,1742130,1742233,1742327,1742342,1744180,1744186,1745696,1745872,1745887,1746032,1746036,1746051,1748895,1749137,1749747,1750357,1750372,1750374,1751758,1751759,1751760,1751761,1751762,1751763,1753092,1753242,1753243,1753244,1753245,1753246,1753247,1753248,1753249,1753250,1753251,1753252,1753253,1753254,1753255,1753256,1753257,1753258,1753259,1753260,1753261,1753262,1753263,1753264,1753265,1753266,1753267,1753268,1753269,1753270,1753271,1753306,1753308,1754653,1754803,1754804,1754805,1754806,1754807,1754808,1754809,1754810,1754811,1754812,1754813,1754814,1754815,1754816,1754817,1754818,1754819,1754820,1754821,1754822,1754823,1754824,1754825,1754826,1754827,1754828,1754829,1754830,1754831,1754832,1756227,1756237,1757652,1757802,1757803,1757804,1757805,1757806,1757807,1757808,1757809,1757810,1757811,1757812,1757813,1757814,1757815,1757816,1757817,1757818,1757819,1757820,1757821,1757822,1757823,1757824,1757825,1757826,1757827,1757828,1757829,1757830,1757831,1757950,1757958,1759447,1759663,1759664,1759665,1759666,1759667,1759668,1759669,1759670,1759671,1759672,1759673,1759674,1759675,1759676,1759677,1759678,1759679,1759680,1759681,1759682,1759683,1759684,1759685,1759686,1759687,1759688,1759689,1759690,1759691,1759692,1761105,1761112,1761382,1762968,1762969,1762970,1762971,1762972,1762973,1762974,1762975,1762976,1762977,1762978,1762979,1762980,1762981,1762982,1762986,1762987,1762988,1762989,1762990,1762991,1762992,1762993,1762994,1762995,1762996,1762997,1762998,1762999,1763000,1763132,1763146,1764715,1764956,1764957,1764958,1764959,1764960,1764961,1764962,1764963,1764964,1764965,1764966,1764967,1764968,1764969,1764970,1764971,1764972,1764973,1764974,1764975,1764976,1764977,1764978,1764979,1764980,1764981,1764982,1764983,1764984,1764985,1766447,1766601,1766884,1768392,1768393,1768394,1768395,1768396,1768397,1768398,1768399,1768400,1768401,1768402,1768403,1768404,1768405,1768406,1768407,1768408,1768409,1768412,1768413,1768414,1768415,1768416,1768417,1768418,1768419,1768420,1768421,1768422,1768524,1768650,1768784,1770439,1770641,1770642,1770643,1770644,1770645,1770646,1770647,1770648,1770649,1770650,1770651,1770652,1770653,1770654,1770655,1770656,1770657,1770658,1770659,1770660,1770661,1770662,1770663,1770664,1770665,1770666,1770667,1770668,1770669,1770670,1771059,1772329,1772848,1773846,1773847,1773848,1773849,1773850,1773851,1773852,1773853,1773854,1773855,1773856,1773857,1773858,1773859,1773860,1773861,1773862,1773863,1773864,1773865,1773866,1773867,1773868,1773869,1773870,1773871,1773872,1773873,1773874,1773875,1774686,1774774,1776747,1777076,1777077,1777085,1778769,1778787,1778789,1778790,1778995,1779036,1779175,1779189,1779249,1779250,1779422,1779423,1779749,1779750,1785181,1820619,1820627,1820711,1820717,1820826,1821258,1821304,1821392,1822408,1822420,1822470,1822478,1822489,1822940,1822948,1822955,1822958,1822995,1823007,1823008,1823065,1823071,1823083,1823085,1823092,1823449,1823468,1823537,1823553,1823573,1823581,1823590,1823610,1823651,1823669,1823685,1823698,1823714,1823999,1824036,1824046,1824086,1824118,1824158,1824166,1824174,1824180,1824205,1824231,1824239,1824247,1824329,1824455,1824469,1824483,1824531,1824545,1824577,1824593,1824603,1824647,1824659,1824679,1824689,1824701,1824719,1824733,1824751,1824767,1824797,1824883,1824893,1824907,1824921,1824937,1824951,1824963,1825003,1825015,1825041,1825053,1825061,1825081,1825109,1825122,1825173,1825207,1825267,1825289,1825321,1825347,1825359,1825387,1825407,1825433,1825445,1825461,1825473,1825491,1825503,1825519,1825537,1825549,1825590,1825673,1825685,1825701,1825719,1825737,1825751,1825787,1825811,1825837,1825851,1825865,1825885,1825895,1825927,1825973,1825979,1826063,1826087,1826117,1826145,1826159,1826189,1826211,1826235,1826249,1826267,1826286,1826303,1826325,1826343,1826359,1826377,1826395,1826475,1826491,1826509,1826529,1826547,1826563,1826601,1826627,1826656,1826677,1826699,1826713,1826747,1826763,1826779,1826797,1826833,1826859,1826891,1826921,1826937,1826969,1826993,1827019,1827035,1827055,1827077,1827095,1827119,1827139,1827157,1827191,1827215,1827232,1827259,1827275,1827295,1827313,1827341,1827365,1827399,1827417,1827439,1827455,1827485,1827503,1827519,1827539,1827567,1827595,1827619,1827649,1827667,1827699,1827725,1827753,1827771,1827797,1827828,1827853,1827876,1827897,1827919,1827929,1845790,1845796,1845865,1845913,1845945,1845951,1845999,1846051,1846057,1846129,1846135,1846181,1846231,1846237,1846285,1846339,1846345,1846405,1846443,1846449,1846531,1846547,1846552,1846618,1846683,1846684,1846923,1846953,1847011,1847021,1847067,1847117,1847135,1847159,1847182,1847183,1847184,1847185,1847208,1847260,1847438,1847490,1847560,1847640,1847692,1847746,1847820,1847845,1847867,1847869,1847871,1847872,1847896,1847975,1847983,1848039,1848101,1848109,1848149,1848259,1848265,1848271,1848277,1848413,1848548,1848550,1848572,1848605,1848619,1848662,1848720,1848772,1848784,1848810,1848840,1848912,1848962,1848980,1848988,1849160,1849216,1849286,1849292,1849332,1849371,1849373,1849375,1849398,1849422,1849428,1849486,1849562,1849614,1849639,1849663,1849665,1849688,1849711,1849714,1849722,1849782,1849844,1849888,1849912,1849933,1849944,1849962,1849970,1849980,1850027,1850033,1850333,1850365,1850401,1850461,1850515,1850549,1850583,1850601,1850655,1850707,1850727,1850739,1850745,1850937,1850961,1851027,1851035,1851121,1851173,1851229,1851311,1851365,1851421,1851473,1851537,1851594,1851599,1851601,1851602,1851622,1851643,1851666,1851698,1851716,1851733,1851743,1851745,1851747,1851749,1851752,1851754,1851756,1851759,1851761,1851763,1851765,1851767,1851769,1851770,1851817,1851946,1852204,1852328,1852352,1852406,1852472,1852494,1852502,1852508,1852712,1852774,1852784,1852790,1852874,1852928,1853002,1853104,1853116,1853212,1853274,1853338,1853354,1853438,1853496,1853508,1853520,1853528,1853834,1853880,1853914,1853941,1853942,1853943,1853966,1853989,1853991,1854007,1854023,1854037,1854053,1854057,1854065,1854073,1854074,1854099,1854124,1854125,1854126,1854127,1854128,1854129,1854130,1854131,1854166,1854204,1854223,1854235,1854397,1854435,1854489,1854501,1854513,1854519,1854605,1854657,1854663,1854721,1854791,1854797,1854853,1854873,1854953,1854982,1855019,1855081,1855087,1855139,1855185,1855209,1855251,1855257,1855285,1855291,1855383,1855389,1855592,1855636,1855662,1855688,1855689,1855711,1855733,1855735,1855751,1855781,1855804,1855812,1855836,1855860,1855861,1855862,1855863,1855864,1855901,1855940,1855944,1855948,1856018,1856095,1856122,1856163,1856216,1856304,1856354,1856406,1856418,1856486,1856542,1856550,1856602,1856650,1856710,1856718,1856780,1856800,1856840,1856912,1856956,1856970,1856976,1857080,1857236,1857242,1857248,1857386,1857432,1857466,1857516,1857566,1857572,1857578,1857658,1857670,1857818,1857900,1857914,1857919,1857920,1857931,1857971,1858004,1858008,1858010,1858033,1858058,1858086,1858112,1858143,1858174,1858176,1858178,1858204,1858229,1858233,1858259,1858282,1858304,1858326,1858354,1858384,1858414,1858450,1858502,1858510,1858574,1858622,1858642,1858648,1858654,1858896,1858904,1858992,1859088,1859150,1859172,1859196,1859219,1859220,1859222,1859224,1859225,1859226,1859227,1859263,1859299,1859303,1859308,1859310,1859311,1859374,1859437,1859438,1859439,1859448,1859474,1859492,1859493,1859514,1859539,1859544,1859545,1859560,1859648,1859696,1859754,1859785,1859814,1859816,1859818,1859843,1859867,1859927,1860861,1860869,1860991,1861011,1861051,1861103,1861119,1861207,1861255,1861313,1861375,1861427,1861439,1861487,1861533,1861539,1861545,1861551,1861557,1861563,1861569,1861575,1861581,1861587,1861593,1861599,1861605,1861611,1861617,1861623,1861629,1861635,1861641,1861647,1861653,1862491,1862507,1862625,1862633,1862687,1862731,1862747,1862779,1862855,1862907,1862961,1863019,1863071,1863125,1863171,1863179,1863187,1863195,1863203,1863211,1863219,1863227,1863235,1863243,1863251,1863259,1863267,1863275,1863283,1863291,1863299,1863307,1863315,1863323,1863331,1863745,1864141,1864159,1864269,1864293,1864335,1864387,1864407,1864495,1864543,1864601,1864659,1864711,1864727,1864801,1864819,1864831,1864841,1864851,1864861,1864871,1864881,1864891,1864899,1864911,1864919,1864931,1864941,1864951,1864961,1864971,1864981,1864991,1865001,1865011,1865021,1865721,1865804,1865815,1865921,1865975,1866019,1866039,1866059,1866151,1866203,1866257,1866311,1866363,1866417,1866463,1866475,1866485,1866499,1866511,1866523,1866535,1866547,1866559,1866571,1866583,1866595,1866607,1866619,1866631,1866643,1866655,1866667,1866679,1866691,1866703,1866995,1867441,1867461,1867525,1867571,1867625,1867669,1867691,1867727,1867805,1867857,1867911,1867963,1868015,1868069,1868115,1868129,1868143,1868157,1868171,1868185,1868199,1868217,1868229,1868245,1868257,1868273,1868287,1868301,1868315,1868329,1868343,1868357,1868371,1868385,1868399,1868755,1869101,1869129,1869217,1869275,1869319,1869341,1869367,1869453,1869489,1869563,1869615,1869667,1869721,1869767,1869783,1869799,1869815,1869831,1869847,1869863,1869879,1869891,1869905,1869923,1869937,1869955,1869971,1869991,1870007,1870023,1870039,1870055,1870071,1870087,1870351,1870705,1870787,1870845,1870889,1870945,1870987,1871013,1871053,1871125,1871155,1871229,1871281,1871333,1871427,1871445,1871451,1871469,1871489,1871507,1871525,1871545,1871567,1871583,1871602,1871619,1871639,1871657,1871679,1871691,1871709,1871727,1871751,1871763,1871784,1871950,1872123,1872439,1872469,1872517,1872561,1872617,1872659,1872687,1872747,1872821,1872895,1872947,1872999,1873053,1873099,1873119,1873139,1873159,1873183,1873203,1873221,1873245,1873263,1873285,1873303,1873325,1873345,1873365,1873385,1873405,1873425,1873445,1873465,1873485,1873505,1873755,1874115,1874147,1874191,1874235,1874291,1874344,1874399,1874467,1874497,1874571,1874621,1874673,1874727,1874773,1874795,1874817,1874841,1874863,1874883,1874905,1874933,1874953,1874977,1874997,1875021,1875043,1875065,1875087,1875109,1875131,1875154,1875175,1875205,1875439,1875527,1875797,1875861,1875873,1875961,1875971,1876035,1876061,1876087,1876153,1876251,1876303,1876355,1876407,1876453,1876477,1876501,1876529,1876553,1876577,1876601,1876631,1876653,1876679,1876701,1876727,1876751,1876779,1876797,1876821,1876845,1876875,1876905,1876923,1877147,1877229,1877487,1877551,1877563,1877623,1877661,1877697,1877731,1877779,1877845,1877873,1877947,1877999,1878051,1878103,1878149,1878175,1878201,1878241,1878267,1878293,1878319,1878341,1878365,1878393,1878417,1878445,1878471,1878501,1878521,1878547,1878573,1878605,1878637,1878657,1878883,1878947,1879209,1879257,1879301,1879357,1879401,1879436,1879488,1879569,1879643,1879695,1879747,1879799,1879845,1879873,1879901,1879933,1879961,1879989,1880017,1880051,1880077,1880107,1880133,1880163,1880187,1880199,1880231,1880273,1880301,1880335,1880369,1880391,1880593,1880663,1880877,1880955,1880999,1881055,1881097,1881135,1881185,1881245,1881251,1881281,1881401,1881453,1881505,1881551,1881581,1881611,1881645,1881675,1881705,1881735,1881771,1881799,1881831,1881859,1881891,1881917,1881931,1881965,1882009,1882028,1882075,1882111,1882135,1882327,1882391,1882589,1882667,1882711,1882767,1882809,1882849,1882899,1882959,1882989,1883063,1883115,1883167,1883219,1883265,1883297,1883329,1883365,1883397,1883429,1883461,1883499,1883529,1883563,1883593,1883627,1883655,1883671,1883707,1883753,1883785,1883823,1883861,1883887,1884083,1884127,1884381,1884425,1884481,1884523,1884565,1884617,1884675,1884705,1884779,1884831,1884883,1884935,1884981,1885015,1885049,1885099,1885133,1885167,1885201,1885231,1885263,1885323,1885359,1885395,1885433,1885461,1885493,1885527,1885567,1885607,1885635,1885821,1885859,1886025,1886107,1886147,1886203,1886245,1886289,1886343,1886399,1886429,1886503,1886555,1886607,1886659,1886705,1886741,1886777,1886829,1886867,1886931,1886963,1886993,1887033,1887067,1887105,1887141,1887181,1887211,1887245,1887291,1887323,1887389,1887565,1887599,1887749,1887831,1887873,1887927,1887971,1888017,1888071,1888123,1888155,1888185,1888277,1888327,1888379,1888391,1888431,1888499,1888553,1888591,1888645,1888689,1888725,1888765,1888803,1888843,1888881,1888923,1888955,1888991,1889029,1889073,1889117,1889167,1889333,1889425,1889509,1889553,1889595,1889647,1889691,1889739,1889795,1889847,1889879,1889949,1890001,1890051,1890105,1890153,1890193,1890265,1890319,1890359,1890421,1890459,1890501,1890539,1890579,1890623,1890667,1890677,1890711,1890749,1890799,1890835,1890879,1890929,1891079,1891257,1891273,1891315,1891367,1891413,1891461,1891517,1891569,1891603,1891671,1891725,1891773,1891829,1891849,1891921,1891995,1892051,1892093,1892157,1892163,1892241,1892247,1892323,1892329,1892415,1892423,1892463,1892499,1892555,1892631,1892639,1892691,1892819,1892887,1892985,1893003,1893045,1893097,1893145,1893193,1893249,1893327,1893395,1893447,1893497,1893551,1893561,1893613,1893657,1893733,1893791,1893835,1893901,1893943,1893989,1894031,1894075,1894123,1894171,1894181,1894217,1894259,1894303,1894353,1894403,1894455,1894571,1894642,1894733,1894753,1894797,1894803,1894899,1894909,1895001,1895079,1895147,1895199,1895249,1895303,1895329,1895401,1895445,1895507,1895551,1895597,1895665,1895709,1895757,1895805,1895847,1895899,1895949,1895989,1896033,1896079,1896131,1896183,1896237,1896303,1896367,1896415,1896503,1896525,1896571,1896621,1896671,1896719,1896771,1896847,1896913,1896965,1897015,1897067,1897073,1897103,1897173,1897277,1897323,1897371,1897377,1897487,1897537,1897587,1897612,1897685,1897737,1897779,1897827,1897874,1897929,1897981,1898037,1898087,1898143,1898191,1898281,1898305,1898353,1898405,1898457,1898507,1898559,1898635,1898697,1898749,1898799,1898849,1898879,1898951,1898999,1899065,1899113,1899163,1899235,1899283,1899335,1899387,1899433,1899443,1899537,1899557,1899595,1899645,1899693,1899755,1899803,1899887,1899919,1899979,1900061,1900087,1900093,1900189,1900241,1900293,1900345,1900423,1900487,1900541,1900593,1900645,1900677,1900751,1900801,1900869,1900942,1901039,1901089,1901143,1901197,1901249,1901303,1901363,1901407,1901459,1901509,1901567,1901623,1901683,1901711,1901773,1901787,1901869,1901897,1901949,1902003,1902057,1902111,1902165,1902243,1902305,1902359,1902413,1902465,1902499,1902573,1902687,1902739,1902793,1902869,1902921,1902981,1903033,1903087,1903093,1903193,1903217,1903259,1903313,1903363,1903423,1903483,1903563,1903573,1903637,1903691,1903753,1903763,1903815,1903913,1903921,1903975,1904099,1904159,1904167,1904221,1904275,1904327,1904361,1904435,1904545,1904597,1904651,1904725,1904779,1904871,1904891,1904943,1904999,1905061,1905107,1905163,1905213,1905323,1905385,1905417,1905483,1905491,1905543,1905605,1905617,1905669,1905765,1905775,1905829,1905951,1906009,1906055,1906117,1906169,1906203,1906277,1906287,1906393,1906445,1906499,1906540,1906627,1906633,1906737,1906785,1906799,1906893,1906921,1906965,1907059,1907117,1907173,1907235,1907269,1907335,1907347,1907427,1907459,1907473,1907525,1907619,1907631,1907685,1907805,1907861,1907907,1907969,1908021,1908055,1908129,1908141,1908243,1908295,1908349,1908421,1908475,1908563,1908587,1908639,1908695,1908761,1908803,1908815,1908907,1908965,1909019,1909081,1909117,1909183,1909205,1909275,1909309,1909363,1909377,1909469,1909483,1909537,1909655,1909709,1909755,1909817,1909869,1909905,1909977,1909991,1910031,1910135,1910189,1910201,1910273,1910327,1910413,1910453,1910495,1910547,1910611,1910661,1910687,1910759,1910815,1910869,1910931,1910969,1911053,1911119,1911155,1911209,1911225,1911315,1911331,1911385,1911501,1911555,1911601,1911667,1911745,1911817,1911865,1911965,1912019,1912033,1912103,1912157,1912241,1912269,1912321,1912377,1912443,1912493,1912501,1912639,1912647,1912753,1912793,1912859,1912885,1912949,1912987,1913041,1913059,1913147,1913165,1913219,1913377,1913423,1913485,1913537,1913575,1913645,1913693,1913789,1913843,1913859,1913927,1913981,1914065,1914105,1914151,1914252,1914303,1914321,1914407,1914461,1914513,1914575,1914617,1914683,1914711,1914771,1914811,1914865,1914885,1914971,1915035,1915143,1915197,1915243,1915305,1915359,1915397,1915509,1915601,1915655,1915673,1915739,1915795,1915875,1915915,1916002,1916067,1916113,1916133,1916217,1916271,1916323,1916383,1916427,1916493,1916523,1916581,1916623,1916689,1916737,1916797,1916851,1916989,1917005,1917068,1917113,1917167,1917232,1917315,1917405,1917411,1917479,1917487,1917598,1917677,1917700,1917805,1917869,1917915,1917937,1918019,1918073,1918125,1918183,1918229,1918295,1918327,1918383,1918471,1918495,1918577,1918601,1918655,1918795,1918841,1918903,1918957,1918999,1919065,1919113,1919201,1919255,1919279,1919339,1919395,1919471,1919511,1919599,1919663,1919709,1919733,1919813,1919825,1919919,1919977,1920023,1920089,1920095,1920129,1920265,1920291,1920371,1920397,1920451,1920457,1920591,1920693,1920699,1920764,1920797,1920861,1920909,1920995,1921049,1921075,1921133,1921189,1921263,1921305,1921391,1921455,1921501,1921527,1921607,1921659,1921711,1921782,1921872,1921909,1921963,1921969,1922057,1922085,1922163,1922191,1922245,1922373,1922419,1922481,1922535,1922579,1922643,1922691,1922773,1922827,1922855,1922913,1922969,1923041,1923083,1923167,1923231,1923277,1923305,1923383,1923437,1923489,1923545,1923593,1923655,1923693,1923747,1923835,1923865,1923941,1923971,1924025,1924147,1924193,1924255,1924309,1924355,1924405,1924427,1924499,1924585,1924629,1924685,1924743,1924811,1924855,1924939,1925001,1925049,1925079,1925155,1925208,1925259,1925317,1925363,1925423,1925463,1925517,1925607,1925639,1925713,1925747,1925801,1925917,1925963,1926025,1926079,1926125,1926187,1926235,1926313,1926367,1926399,1926453,1926509,1926579,1926624,1926703,1926769,1926813,1926847,1926919,1926975,1927025,1927081,1927129,1927189,1927231,1927283,1927371,1927405,1927457,1927485,1927561,1927599,1927685,1927759,1927793,1927847,1927893,1927953,1928001,1928077,1928131,1928167,1928217,1928327,1928341,1928443,1928517,1928563,1928597,1928669,1928723,1928775,1928825,1928881,1928931,1928951,1928995,1929051,1929137,1929213,1929243,1929279,1929347,1929437,1929483,1929545,1929555,1929609,1929657,1929755,1929830,1929883,1929919,1929969,1930079,1930095,1930195,1930269,1930315,1930351,1930421,1930475,1930527,1930577,1930633,1930683,1930705,1930751,1930807,1930891,1930965,1930999,1931074,1931113,1931191,1931263,1931299,1931353,1931403,1931459,1931509,1931581,1931635,1931675,1931725,1931827,1931845,1931943,1932015,1932063,1932101,1932169,1932223,1932275,1932325,1932381,1932431,1932455,1932503,1932559,1932641,1932715,1932749,1932825,1932863,1932937,1933009,1933045,1933099,1933149,1933205,1933255,1933327,1933381,1933423,1933473,1933571,1933589,1933673,1933743,1933763,1933845,1933911,1933965,1934017,1934067,1934125,1934173,1934199,1934249,1934305,1934385,1934457,1934463,1934499,1934575,1934613,1934685,1934787,1934841,1934891,1934947,1934997,1935067,1935073,1935165,1935215,1935309,1935331,1935423,1935493,1935543,1935585,1935649,1935703,1935755,1935805,1935863,1935911,1935939,1935991,1936047,1936125,1936195,1936233,1936309,1936347,1936417,1936519,1936573,1936623,1936679,1936729,1936797,1936851,1936897,1936947,1937037,1937061,1937151,1937219,1937271,1937315,1937377,1937431,1937483,1937533,1937591,1937639,1937669,1937721,1937777,1937853,1937921,1937959,1938035,1938073,1938141,1938207,1938249,1938303,1938353,1938409,1938459,1938525,1938579,1938659,1938677,1938775,1938789,1938877,1938943,1938995,1939041,1939101,1939155,1939185,1939257,1939263,1939323,1939369,1939401,1939455,1939511,1939641,1939683,1939739,1939797,1939809,1939895,1939937,1940027,1940077,1940133,1940183,1940247,1940301,1940381,1940401,1940497,1940513,1940597,1940663,1940715,1940763,1940821,1940875,1940929,1940977,1941058,1941111,1941119,1941195,1941229,1941353,1941397,1941453,1941513,1941577,1941641,1941685,1941739,1941789,1941845,1941895,1941957,1942011,1942091,1942113,1942207,1942225,1942305,1942371,1942423,1942473,1942529,1942583,1942637,1942685,1942745,1942793,1942836,1942904,1942939,1943059,1943107,1943183,1943221,1943281,1943345,1943389,1943443,1943493,1943549,1943601,1943659,1943713,1943793,1943817,1943909,1943929,1944005,1944069,1944123,1944173,1944229,1944283,1944374,1944435,1944481,1944519,1944573,1944629,1944641,1944761,1944767,1944881,1944919,1944977,1944983,1945047,1945091,1945145,1945197,1945251,1945305,1945361,1945415,1945495,1945521,1945611,1945633,1945707,1945769,1945823,1945875,1945929,1945983,1946073,1946153,1946213,1946267,1946323,1946337,1946366,1946460,1946573,1946611,1946669,1946731,1946741,1946830,1946839,1946891,1946945,1946999,1947053,1947107,1947185,1947213,1947302,1947325,1947395,1947457,1947511,1947563,1947617,1947671,1947759,1947819,1947865,1947907,1947961,1948017,1948033,1948143,1948191,1948263,1948301,1948359,1948419,1948467,1948521,1948577,1948627,1948683,1948739,1948793,1948869,1948901,1948987,1949013,1949131,1949185,1949212,1949293,1949347,1949431,1949493,1949539,1949583,1949637,1949693,1949711,1949817,1949865,1949935,1949975,1950031,1950091,1950139,1950193,1950245,1950299,1950353,1950407,1950465,1950537,1950575,1950675,1950689,1950799,1950853,1950907,1950961,1951015,1951097,1951159,1951205,1951251,1951307,1951361,1951370,1951378,1951380,1951382,1951430,1951478,1951480,1951482,1951503,1951524,1951525,1951526,1951527,1951559,1951591,1951592,1951593,1951612,1951631,1951632,1951633,1951658,1951683,1951684,1951712,1951740,1951742,1951744,1951765,1951787,1951789,1951813,1951837,1951838,1951839,1951863,1951890,1951894,1951916,1951938,1951942,1951948,1951951,1951971,1951994,1951998,1951999,1952021,1952046,1952070,1952091,1952096,1952131,1952162,1952163,1952165,1952180,1952194,1952195,1952196,1952235,1952274,1952275,1952276,1952289,1952302,1952303,1952304,1952333,1952362,1952363,1952364,1952391,1952418,1952419,1952420,1952445,1952470,1952471,1952472,1952497,1952522,1952523,1952524,1952549,1952574,1952575,1952576,1952601,1952626,1952627,1952665,1952703,1952704,1952705,1952734,1952763,1952764,1952765,1952786,1952807,1952808,1952830,1952852,1952853,1952854,1952879,1952905,1952907,1952908,1952933,1952958,1952959,1952968,1952978,1952980,1953025,1953071,1953073,1953093,1953113,1953114,1953115,1953145,1953175,1953176,1953195,1953214,1953215,1953216,1953239,1953262,1953263,1953264,1953291,1953318,1953320,1953322,1953342,1953363,1953365,1953366,1953389,1953412,1953413,1953414,1953437,1953463,1953467,1953488,1953509,1953513,1953519,1953522,1953523,1953542,1953564,1953568,1953569,1953590,1953614,1953637,1953657,1953662,1953695,1953724,1953726,1953741,1953755,1953756,1953757,1953758,1953794,1953830,1953831,1953832,1953845,1953858,1953859,1953860,1953887,1953914,1953915,1953916,1953942,1953968,1953969,1953970,1953994,1954018,1954019,1954020,1954044,1954068,1954069,1954070,1954071,1954095,1954119,1954120,1954121,1954145,1954169,1954170,1954171,1954207,1954243,1954244,1954245,1954273,1954301,1954302,1954303,1954323,1954343,1954344,1954366,1954388,1954389,1954390,1954414,1954439,1954441,1954442,1954443,1954467,1954491,1954492,1954501,1954511,1954513,1954516,1954558,1954599,1954601,1954620,1954639,1954640,1954641,1954642,1954670,1954698,1954699,1954700,1954719,1954738,1954739,1954740,1954762,1954784,1954785,1954810,1954835,1954836,1954838,1954840,1954860,1954881,1954883,1954905,1954927,1954928,1954929,1954951,1954976,1954980,1955000,1955023,1955029,1955032,1955033,1955051,1955072,1955076,1955077,1955097,1955120,1955142,1955161,1955192,1955223,1955224,1955226,1955241,1955255,1955256,1955257,1955258,1955292,1955326,1955327,1955328,1955341,1955354,1955355,1955356,1955381,1955406,1955407,1955408,1955409,1955434,1955459,1955460,1955461,1955484,1955507,1955508,1955509,1955532,1955555,1955556,1955557,1955558,1955581,1955604,1955605,1955606,1955629,1955652,1955653,1955654,1955688,1955722,1955723,1955724,1955751,1955778,1955779,1955780,1955799,1955818,1955819,1955841,1955863,1955864,1955865,1955888,1955912,1955914,1955915,1955916,1955939,1955962,1955963,1955972,1955982,1955984,1955987,1956026,1956064,1956066,1956084,1956102,1956103,1956104,1956105,1956131,1956157,1956158,1956177,1956196,1956197,1956198,1956219,1956240,1956241,1956265,1956289,1956290,1956292,1956294,1956313,1956333,1956335,1956336,1956357,1956378,1956379,1956380,1956401,1956425,1956429,1956448,1956467,1956471,1956477,1956480,1956481,1956498,1956518,1956522,1956523,1956542,1956564,1956585,1956603,1956632,1956661,1956662,1956664,1956679,1956693,1956694,1956695,1956696,1956728,1956760,1956761,1956762,1956775,1956788,1956789,1956790,1956813,1956836,1956837,1956838,1956839,1956863,1956887,1956888,1956910,1956932,1956933,1956934,1956956,1956978,1956979,1956980,1956981,1956982,1957004,1957026,1957027,1957028,1957050,1957072,1957073,1957074,1957107,1957140,1957141,1957142,1957167,1957192,1957193,1957194,1957213,1957232,1957233,1957254,1957275,1957276,1957277,1957299,1957322,1957324,1957325,1957326,1957348,1957370,1957371,1957380,1957390,1957392,1957395,1957431,1957466,1957468,1957486,1957504,1957505,1957506,1957530,1957554,1957555,1957574,1957593,1957594,1957595,1957596,1957616,1957636,1957637,1957659,1957681,1957682,1957684,1957686,1957705,1957725,1957727,1957728,1957748,1957768,1957769,1957789,1957812,1957816,1957834,1957852,1957856,1957862,1957865,1957866,1957882,1957901,1957905,1957906,1957924,1957945,1957965,1957982,1958009,1958036,1958038,1958053,1958067,1958068,1958069,1958070,1958100,1958130,1958131,1958132,1958145,1958158,1958159,1958160,1958181,1958202,1958203,1958204,1958227,1958250,1958251,1958272,1958293,1958294,1958295,1958316,1958337,1958338,1958339,1958340,1958341,1958362,1958383,1958384,1958385,1958406,1958427,1958428,1958436,1958468,1958493,1958516,1958539,1958540,1958541,1958560,1958579,1958580,1958600,1958620,1958621,1958642,1958663,1958665,1958667,1958668,1958669,1958690,1958711,1958712,1958721,1958731,1958735,1958768,1958799,1958801,1958803,1958821,1958839,1958840,1958841,1958863,1958885,1958886,1958905,1958924,1958925,1958926,1958927,1958928,1958947,1958966,1958986,1959006,1959007,1959008,1959010,1959012,1959031,1959051,1959053,1959054,1959073,1959092,1959093,1959112,1959131,1959135,1959139,1959156,1959173,1959177,1959183,1959186,1959187,1959202,1959220,1959224,1959225,1959242,1959262,1959281,1959297,1959322,1959347,1959349,1959364,1959378,1959379,1959380,1959403,1959431,1959437,1959438,1959439,1959452,1959465,1959466,1959467,1959487,1959507,1959508,1959509,1959530,1959551,1959552,1959572,1959592,1959593,1959594,1959614,1959634,1959635,1959636,1959637,1959638,1959658,1959678,1959679,1959680,1959700,1959720,1959721,1959729,1959737,1959761,1959785,1959806,1959827,1959828,1959829,1959848,1959867,1959868,1959887,1959906,1959907,1959927,1959947,1959949,1959951,1959952,1959969,1959989,1959993,1960002,1960012,1960016,1960046,1960074,1960076,1960078,1960079,1960097,1960115,1960116,1960136,1960156,1960157,1960176,1960195,1960196,1960197,1960198,1960199,1960217,1960235,1960254,1960273,1960275,1960277,1960295,1960314,1960316,1960317,1960335,1960353,1960354,1960372,1960390,1960394,1960398,1960414,1960430,1960434,1960440,1960443,1960444,1960458,1960475,1960479,1960495,1960514,1960532,1960547,1960570,1960593,1960595,1960610,1960624,1960625,1960626,1960647,1960673,1960679,1960680,1960681,1960694,1960707,1960708,1960709,1960728,1960747,1960748,1960767,1960786,1960787,1960803,1960822,1960826,1960827,1960846,1960865,1960866,1960867,1960868,1960869,1960870,1960889,1960908,1960909,1960913,1960932,1960948,1960949,1960957,1960965,1960987,1961009,1961010,1961030,1961050,1961051,1961052,1961071,1961090,1961091,1961109,1961127,1961128,1961129,1961148,1961167,1961169,1961171,1961172,1961188,1961207,1961219,1961229,1961232,1961260,1961287,1961289,1961291,1961292,1961309,1961326,1961327,1961345,1961363,1961364,1961382,1961400,1961401,1961402,1961403,1961404,1961410,1961427,1961439,1961457,1961475,1961476,1961478,1961480,1961497,1961515,1961517,1961534,1961551,1961552,1961570,1961588,1961592,1961596,1961611,1961626,1961630,1961635,1961637,1961638,1961652,1961669,1961673,1961674,1961689,1961707,1961724,1961738,1961759,1961780,1961781,1961783,1961798,1961812,1961813,1961831,1961854,1961860,1961861,1961874,1961887,1961888,1961889,1961890,1961908,1961926,1961927,1961945,1961963,1961964,1961965,1961980,1961998,1962002,1962003,1962021,1962039,1962040,1962041,1962042,1962043,1962044,1962062,1962080,1962081,1962085,1962103,1962118,1962125,1962132,1962133,1962154,1962175,1962176,1962195,1962214,1962215,1962233,1962251,1962252,1962265,1962283,1962289,1962290,1962308,1962326,1962327,1962329,1962331,1962332,1962346,1962363,1962375,1962384,1962386,1962413,1962439,1962440,1962442,1962444,1962460,1962476,1962477,1962478,1962495,1962512,1962513,1962530,1962547,1962548,1962549,1962550,1962551,1962557,1962573,1962584,1962601,1962618,1962619,1962621,1962623,1962639,1962656,1962658,1962674,1962690,1962691,1962708,1962725,1962726,1962730,1962734,1962748,1962765,1962769,1962771,1962773,1962786,1962799,1962803,1962807,1962821,1962835,1962851,1962867,1962887,1962907,1962908,1962909,1962911,1962925,1962938,1962939,1962940,1962956,1962977,1962983,1962984,1962997,1963010,1963011,1963012,1963013,1963030,1963047,1963048,1963065,1963082,1963083,1963084,1963098,1963115,1963119,1963120,1963137,1963154,1963155,1963156,1963157,1963158,1963175,1963192,1963193,1963196,1963213,1963228,1963234,1963240,1963260,1963280,1963281,1963299,1963317,1963334,1963351,1963352,1963364,1963381,1963387,1963388,1963405,1963422,1963424,1963426,1963427,1963440,1963456,1963468,1963477,1963479,1963504,1963528,1963530,1963532,1963547,1963562,1963563,1963564,1963580,1963596,1963612,1963628,1963629,1963630,1963631,1963636,1963651,1963662,1963678,1963694,1963695,1963697,1963699,1963714,1963730,1963746,1963761,1963762,1963778,1963794,1963798,1963802,1963815,1963831,1963835,1963836,1963849,1963862,1963866,1963870,1963883,1963896,1963911,1963926,1963944,1963962,1963963,1963965,1963979,1963992,1963993,1964007,1964021,1964027,1964033,1964046,1964059,1964060,1964061,1964062,1964078,1964094,1964095,1964111,1964127,1964128,1964129,1964142,1964158,1964162,1964178,1964194,1964195,1964196,1964197,1964198,1964214,1964230,1964231,1964234,1964250,1964264,1964269,1964274,1964293,1964312,1964313,1964330,1964347,1964363,1964379,1964380,1964391,1964407,1964413,1964414,1964430,1964446,1964448,1964450,1964451,1964463,1964478,1964490,1964499,1964501,1964524,1964546,1964548,1964550,1964564,1964578,1964579,1964580,1964595,1964610,1964625,1964640,1964641,1964642,1964643,1964647,1964661,1964672,1964673,1964688,1964703,1964704,1964706,1964708,1964722,1964737,1964752,1964766,1964767,1964782,1964797,1964798,1964802,1964806,1964818,1964833,1964837,1964838,1964850,1964862,1964866,1964870,1964882,1964894,1964908,1964922,1964938,1964954,1964955,1964957,1964971,1964984,1964985,1964997,1965009,1965015,1965021,1965034,1965047,1965048,1965049,1965050,1965065,1965080,1965081,1965096,1965111,1965112,1965124,1965139,1965143,1965158,1965173,1965174,1965175,1965176,1965177,1965192,1965207,1965208,1965211,1965226,1965239,1965243,1965247,1965265,1965283,1965284,1965300,1965316,1965331,1965346,1965347,1965348,1965358,1965373,1965379,1965380,1965395,1965410,1965412,1965414,1965415,1965426,1965440,1965452,1965461,1965462,1965464,1965484,1965503,1965505,1965507,1965520,1965533,1965534,1965535,1965549,1965563,1965564,1965578,1965592,1965593,1965594,1965595,1965599,1965612,1965622,1965623,1965637,1965651,1965652,1965654,1965656,1965669,1965683,1965697,1965710,1965711,1965725,1965739,1965740,1965744,1965748,1965759,1965773,1965777,1965778,1965789,1965800,1965804,1965808,1965819,1965830,1965843,1965856,1965871,1965886,1965887,1965889,1965902,1965914,1965915,1965926,1965937,1965942,1965947,1965960,1965973,1965974,1965975,1965976,1965990,1966004,1966005,1966006,1966020,1966034,1966035,1966046,1966060,1966064,1966078,1966092,1966093,1966094,1966095,1966096,1966110,1966124,1966125,1966128,1966142,1966154,1966158,1966162,1966178,1966194,1966195,1966210,1966225,1966239,1966253,1966254,1966255,1966264,1966278,1966284,1966298,1966312,1966314,1966316,1966317,1966327,1966340,1966352,1966361,1966362,1966364,1966382,1966399,1966401,1966414,1966426,1966427,1966428,1966441,1966454,1966455,1966468,1966481,1966482,1966483,1966484,1966488,1966500,1966509,1966510,1966523,1966536,1966537,1966539,1966541,1966553,1966566,1966579,1966591,1966592,1966605,1966618,1966619,1966623,1966627,1966637,1966650,1966654,1966655,1966665,1966675,1966679,1966683,1966693,1966703,1966715,1966727,1966740,1966753,1966754,1966756,1966769,1966781,1966782,1966792,1966802,1966806,1966810,1966823,1966836,1966837,1966838,1966839,1966852,1966865,1966866,1966867,1966880,1966893,1966894,1966904,1966917,1966921,1966934,1966947,1966948,1966949,1966950,1966951,1966964,1966977,1966980,1966983,1966994,1967005,1967009,1967013,1967027,1967041,1967055,1967069,1967082,1967095,1967096,1967097,1967105,1967118,1967124,1967137,1967150,1967151,1967153,1967155,1967156,1967165,1967177,1967189,1967198,1967200,1967216,1967232,1967244,1967255,1967256,1967257,1967269,1967281,1967282,1967294,1967306,1967307,1967308,1967309,1967313,1967324,1967332,1967333,1967345,1967357,1967358,1967360,1967362,1967373,1967385,1967397,1967408,1967409,1967421,1967433,1967434,1967438,1967442,1967451,1967463,1967467,1967468,1967477,1967486,1967490,1967494,1967503,1967512,1967523,1967534,1967546,1967558,1967560,1967572,1967583,1967584,1967593,1967602,1967606,1967610,1967622,1967634,1967635,1967636,1967648,1967660,1967661,1967662,1967674,1967686,1967695,1967704,1967708,1967723,1967735,1967736,1967737,1967738,1967739,1967751,1967763,1967764,1967767,1967779,1967789,1967793,1967797,1967809,1967821,1967822,1967835,1967848,1967860,1967872,1967873,1967874,1967881,1967893,1967899,1967911,1967923,1967924,1967926,1967928,1967936,1967947,1967959,1967968,1967969,1967971,1967985,1967999,1968001,1968011,1968021,1968022,1968025,1968036,1968045,1968056,1968067,1968068,1968069,1968070,1968074,1968084,1968091,1968102,1968113,1968114,1968116,1968118,1968128,1968139,1968150,1968160,1968161,1968172,1968183,1968184,1968188,1968192,1968200,1968211,1968215,1968223,1968231,1968232,1968236,1968240,1968248,1968265,1968275,1968286,1968297,1968298,1968300,1968311,1968321,1968322,1968330,1968338,1968342,1968346,1968357,1968368,1968369,1968370,1968381,1968392,1968393,1968394,1968405,1968416,1968424,1968432,1968436,1968450,1968461,1968462,1968463,1968464,1968465,1968476,1968487,1968488,1968491,1968502,1968511,1968515,1968519,1968529,1968539,1968551,1968563,1968564,1968575,1968586,1968587,1968593,1968599,1968605,1968621,1968632,1968633,1968635,1968637,1968638,1968645,1968655,1968667,1968676,1968677,1968679,1968692,1968704,1968713,1968722,1968723,1968726,1968736,1968744,1968754,1968764,1968765,1968766,1968767,1968770,1968779,1968786,1968796,1968806,1968808,1968810,1968819,1968829,1968839,1968848,1968849,1968850,1968886,1969230,1969256,1969284,1969291,1969316,1969368,1969374,1969396,1969418,1969426,1969462,1969468,1969496,1969514,1969528,1969534,1969540,1969546,1969552,1969558,1969564,1969570,1969576,1969582,1969588,1969594,1969600,1969606,1969612,1969618,1969624,1969630,1969636,1969924,1969946,1969974,1969998,1970018,1970024,1970060,1970068,1970090,1970112,1970134,1970156,1970178,1970194,1970218,1970226,1970234,1970242,1970250,1970258,1970266,1970274,1970282,1970290,1970300,1970308,1970315,1970324,1970332,1970340,1970348,1970356,1970594,1970616,1970638,1970666,1970690,1970710,1970718,1970752,1970762,1970790,1970806,1970830,1970850,1970872,1970890,1970914,1970926,1970936,1970946,1970956,1970966,1970976,1970984,1970993,1971004,1971012,1971022,1971032,1971042,1971052,1971062,1971072,1971082,1971092,1971298,1971324,1971346,1971370,1971396,1971414,1971424,1971456,1971468,1971500,1971512,1971536,1971556,1971578,1971598,1971624,1971636,1971648,1971660,1971672,1971684,1971696,1971708,1971720,1971732,1971744,1971756,1971768,1971780,1971792,1971804,1971816,1971828,1971886,1972024,1972050,1972074,1972100,1972118,1972130,1972160,1972174,1972196,1972218,1972242,1972262,1972284,1972306,1972331,1972346,1972360,1972374,1972388,1972402,1972416,1972430,1972444,1972456,1972468,1972482,1972502,1972516,1972530,1972544,1972555,1972572,1972622,1972736,1972762,1972786,1972811,1972830,1972844,1972852,1972880,1972896,1972924,1972940,1972976,1972997,1973012,1973026,1973057,1973068,1973084,1973100,1973118,1973134,1973150,1973166,1973182,1973198,1973214,1973230,1973246,1973264,1973278,1973296,1973312,1973328,1973378,1973460,1973486,1973510,1973536,1973554,1973570,1973596,1973614,1973636,1973658,1973682,1973702,1973723,1973731,1973752,1973778,1973796,1973814,1973832,1973850,1973868,1973888,1973906,1973924,1973942,1973960,1973980,1973990,1974018,1974035,1974054,1974072,1974090,1974122,1974192,1974208,1974224,1974248,1974272,1974292,1974310,1974334,1974368,1974383,1974414,1974436,1974458,1974480,1974506,1974526,1974546,1974566,1974576,1974598,1974618,1974646,1974658,1974684,1974700,1974718,1974738,1974758,1974780,1974800,1974820,1974840,1974860,1974890,1974932,1974958,1974982,1975006,1975026,1975046,1975068,1975092,1975112,1975136,1975156,1975178,1975200,1975224,1975250,1975272,1975294,1975316,1975338,1975360,1975382,1975404,1975426,1975446,1975472,1975484,1975506,1975528,1975552,1975574,1975596,1975618,1975656,1975662,1975706,1975734,1975760,1975786,1975810,1975830,1975856,1975896,1975922,1975943,1975950,1975974,1976016,1976044,1976068,1976092,1976116,1976130,1976166,1976190,1976212,1976238,1976259,1976288,1976302,1976326,1976349,1976376,1976400,1976438,1976446,1976481,1976492,1976538,1976568,1976596,1976624,1976652,1976674,1976702,1976726,1976750,1976778,1976802,1976828,1976854,1976882,1976912,1976938,1976982,1976990,1977036,1977050,1977086,1977094,1977138,1977156,1977184,1977210,1977254,1977280,1977306,1977332,1977358,1977382,1977428,1977460,1977490,1977520,1977546,1977572,1977600,1977630,1977656,1977686,1977712,1977740,1977768,1977798,1977828,1977858,1977886,1977914,1977942,1977970,1977998,1978026,1978054,1978080,1978112,1978124,1978152,1978180,1978210,1978238,1978266,1978294,1978322,1978348,1978394,1978428,1978460,1978492,1978520,1978548,1978578,1978610,1978638,1978670,1978698,1978728,1978758,1978792,1978824,1978856,1978884,1978914,1978952,1978982,1979004,1979034,1979064,1979104,1979132,1979162,1979192,1979224,1979254,1979284,1979314,1979344,1979372,1979418,1979454,1979488,1979522,1979552,1979582,1979590,1979648,1979656,1979712,1979742,1979774,1979806,1979840,1979874,1979908,1979940,1979972,1980004,1980038,1980068,1980100,1980132,1980176,1980198,1980238,1980252,1980304,1980336,1980368,1980400,1980432,1980462,1980508,1980546,1980582,1980618,1980650,1980684,1980692,1980754,1980762,1980820,1980852,1980888,1980920,1980960,1980992,1981032,1981062,1981098,1981140,1981174,1981200,1981250,1981268,1981312,1981344,1981386,1981414,1981450,1981484,1981544,1981568,1981598,1981656,1981696,1981734,1981772,1981806,1981842,1981852,1981916,1981926,1981986,1982020,1982058,1982092,1982134,1982168,1982210,1982242,1982280,1982324,1982355,1982384,1982422,1982458,1982504,1982539,1982574,1982610,1982648,1982686,1982722,1982758,1982794,1982828,1982874,1982916,1982956,1982996,1983054,1983068,1983120,1983148,1983210,1983246,1983284,1983296,1983370,1983406,1983450,1983484,1983524,1983570,1983608,1983634,1983678,1983712,1983761,1983796,1983834,1983870,1983910,1983954,1984018,1984056,1984092,1984138,1984182,1984224,1984266,1984304,1984344,1984358,1984426,1984440,1984504,1984542,1984584,1984622,1984668,1984700,1984742,1984785,1984822,1984878,1984918,1984946,1984988,1985030,1985080,1985118,1985156,1985195,1985238,1985274,1985314,1985356,1985396,1985434,1985480,1985526,1985570,1985614,1985652,1985694,1985716,1985780,1985826,1985872,1985930,1985946,1985986,1986060,1986104,1986146,1986188,1986230,1986274,1986314,1986358,1986400,1986452,1986492,1986534,1986576,1986626,1986664,1986706,1986750,1986792,1986832,1986878,1986926,1986972,1987018,1987058,1987102,1987126,1987192,1987240,1987288,1987322,1987364,1987406,1987484,1987530,1987548,1987588,1987634,1987686,1987730,1987790,1987836,1987892,1987934,1987978,1988022,1988068,1988112,1988156,1988200,1988244,1988286,1988332,1988382,1988430,1988480,1988522,1988572,1988598,1988666,1988716,1988766,1988828,1988848,1988892,1988970,1989018,1989064,1989080,1989128,1989182,1989228,1989290,1989338,1989396,1989440,1989486,1989532,1989580,1989630,1989676,1989724,1989907,1990084,1990160,1990212,1990264,1990328,1990350,1990396,1990476,1990528,1990574,1990624,1990670,1990720,1990766,1990822,1990864,1990930,1990976,1991026,1991070,1991120,1991164,1991246,1991294,1991300,1991346,1991352,1991358,1991364,1991370,1991378,1991642,1991716,1991744,1991828,1991852,1991928,1991942,1992032,1992080,1992136,1992176,1992226,1992274,1992326,1992374,1992432,1992476,1992544,1992592,1992630,1992680,1992732,1992748,1992794,1992878,1992928,1992976,1992984,1992992,1993000,1993008,1993016,1993062,1993290,1993380,1993406,1993482,1993532,1993586,1993602,1993694,1993744,1993802,1993844,1993896,1993946,1994044,1994104,1994150,1994156,1994270,1994324,1994372,1994426,1994474,1994560,1994612,1994622,1994672,1994682,1994692,1994702,1994714,1994762,1994992,1995084,1995112,1995162,1995242,1995299,1995400,1995450,1995510,1995554,1995608,1995660,1995716,1995824,1995938,1995990,1996046,1996096,1996152,1996158,1996290,1996298,1996352,1996404,1996416,1996428,1996440,1996452,1996468,1996549,1996736,1996836,1996898,1996974,1997030,1997050,1997140,1997188,1997248,1997292,1997298,1997398,1997454,1997504,1997566,1997612,1997684,1997736,1997792,1997842,1997898,1997948,1998038,1998092,1998144,1998162,1998178,1998192,1998206,1998218,1998302,1998478,1998576,1998638,1998712,1998768,1998790,1998878,1998926,1998986,1999030,1999084,1999136,1999192,1999242,1999304,1999350,1999422,1999474,1999530,1999628,1999678,1999762,1999816,1999832,1999884,1999900,1999918,1999934,1999950,1999983,2000046,2000216,2000326,2000376,2000446,2000502,2000526,2000612,2000660,2000720,2000789,2000865,2000920,2000970,2001068,2001138,2001148,2001248,2001298,2001352,2001402,2001484,2001538,2001594,2001610,2001628,2001648,2001666,2001684,2001736,2001780,2001955,2002090,2002162,2002218,2002244,2002328,2002336,2002384,2002444,2002486,2002540,2002594,2002648,2002698,2002794,2002862,2002874,2002972,2003022,2003076,2003082,2003132,2003212,2003266,2003322,2003340,2003360,2003382,2003402,2003422,2003483,2003651,2003749,2003802,2003824,2003894,2003950,2003978,2004064,2004112,2004172,2004216,2004312,2004368,2004385,2004426,2004520,2004588,2004602,2004698,2004748,2004804,2004854,2004932,2004986,2005042,2005062,2005084,2005108,2005130,2005152,2005236,2005388,2005476,2005536,2005606,2005662,2005692,2005772,2005820,2005880,2005924,2005978,2006032,2006086,2006136,2006230,2006296,2006312,2006406,2006456,2006510,2006560,2006636,2006690,2006746,2006768,2006792,2006820,2006844,2006868,2006950,2007096,2007182,2007242,2007310,2007366,2007398,2007478,2007526,2007586,2007630,2007730,2007782,2007836,2007930,2007994,2008096,2008148,2008208,2008318,2008376,2008446,2008472,2008504,2008530,2008628,2008770,2008878,2008972,2009030,2009130,2009182,2009249,2009330,2009384,2009438,2009491,2009582,2009644,2009744,2009752,2009846,2009896,2009972,2010070,2010098,2010128,2010176,2010206,2010284,2010418,2010549,2010618,2010696,2010770,2010808,2010888,2010968,2010998,2011051,2011105,2011138,2011280,2011340,2011385,2011436,2011530,2011570,2011611,2011732,2011762,2011812,2011844,2011920,2012114,2012174,2012270,2012320,2012396,2012490,2012534,2012588,2012642,2012696,2012752,2012836,2012908,2012994,2013046,2013106,2013146,2013218,2013312,2013346,2013378,2013430,2013464,2013538,2013722,2013780,2013874,2013926,2013998,2014004,2014096,2014142,2014196,2014250,2014304,2014403,2014442,2014514,2014598,2014650,2014710,2014750,2014820,2014912,2014948,2014982,2015036,2015072,2015144,2015318,2015460,2015514,2015584,2015598,2015682,2015728,2015780,2015882,2015938,2016018,2016090,2016170,2016224,2016284,2016324,2016392,2016482,2016520,2016556,2016612,2016650,2016720,2016882,2016940,2017028,2017082,2017150,2017238,2017286,2017340,2017394,2017448,2017504,2017580,2017652,2017730,2017784,2017844,2017884,2017950,2018040,2018080,2018116,2018174,2018216,2018284,2018488,2018570,2018626,2018692,2018778,2018830,2018914,2018980,2019036,2019110,2019118,2019190,2019266,2019320,2019380,2019420,2019484,2019572,2019614,2019652,2019712,2019756,2019822,2019962,2020020,2020098,2020156,2020220,2020304,2020379,2020440,2020506,2020562,2020634,2020644,2020714,2020790,2020898,2020938,2021000,2021086,2021130,2021170,2021232,2021278,2021342,2021472,2021530,2021606,2021664,2021726,2021808,2021904,2021944,2022010,2022066,2022136,2022148,2022218,2022336,2022396,2022438,2022498,2022582,2022628,2022670,2022734,2022782,2022844,2022964,2023022,2023094,2023154,2023214,2023294,2023390,2023430,2023496,2023552,2023620,2023692,2023764,2023816,2023876,2023920,2023984,2024060,2024144,2024210,2024260,2024322,2024430,2024488,2024496,2024566,2024626,2024684,2024762,2024856,2024898,2024964,2025020,2025086,2025156,2025226,2025232,2025334,2025378,2025436,2025516,2025566,2025612,2025680,2025732,2025792,2025888,2025946,2025956,2026024,2026084,2026142,2026218,2026310,2026352,2026418,2026426,2026538,2026544,2026676,2026776,2026820,2026878,2026956,2027008,2027056,2027064,2027134,2027188,2027246,2027330,2027388,2027400,2027466,2027526,2027584,2027658,2027784,2027850,2027906,2027968,2028038,2028104,2028202,2028246,2028304,2028380,2028434,2028484,2028492,2028564,2028622,2028678,2028750,2028814,2028878,2028938,2028996,2029068,2029156,2029198,2029264,2029320,2029380,2029450,2029514,2029610,2029654,2029712,2029786,2029842,2029894,2029906,2030028,2030086,2030156,2030214,2030230,2030292,2030352,2030410,2030480,2030566,2030608,2030674,2030730,2030788,2030858,2030920,2031014,2031056,2031114,2031186,2031242,2031294,2031308,2031378,2031438,2031496,2031558,2031616,2031634,2031696,2031754,2031812,2031880,2031964,2032006,2032072,2032128,2032184,2032250,2032310,2032402,2032446,2032456,2032514,2032582,2032640,2032692,2032708,2032820,2032832,2032890,2032950,2033008,2033028,2033088,2033146,2033204,2033270,2033352,2033394,2033504,2033558,2033630,2033688,2033778,2033824,2033882,2033948,2034006,2034058,2034076,2034140,2034200,2034258,2034316,2034374,2034396,2034454,2034512,2034570,2034634,2034714,2034756,2034822,2034900,2034980,2035004,2035060,2035146,2035192,2035248,2035312,2035370,2035422,2035442,2035504,2035564,2035620,2035676,2035752,2035810,2035866,2035924,2035986,2036064,2036106,2036172,2036248,2036326,2036352,2036408,2036490,2036538,2036594,2036656,2036714,2036766,2036792,2036892,2036908,2036964,2037016,2037022,2037098,2037179,2037210,2037284,2037328,2037404,2037448,2037512,2037586,2037684,2037740,2037820,2037868,2037924,2037984,2038042,2038094,2038122,2038218,2038236,2038292,2038342,2038350,2038432,2038526,2038536,2038608,2038652,2038726,2038772,2038898,2038972,2039002,2039008,2039136,2039184,2039240,2039298,2039356,2039362,2039414,2039444,2039536,2039556,2039654,2039664,2039746,2039836,2039848,2039952,2040024,2040070,2040132,2040200,2040272,2040304,2040360,2040478,2040532,2040590,2040646,2040698,2040730,2040818,2040840,2040896,2040942,2040954,2041034,2041122,2041136,2041236,2041306,2041352,2041414,2041480,2041551,2041586,2041702,2041708,2041760,2041864,2041918,2041970,2042004,2042088,2042112,2042168,2042214,2042228,2042306,2042392,2042408,2042504,2042572,2042622,2042680,2042800,2042836,2042890,2042960,2043012,2043064,2043070,2043126,2043180,2043232,2043268,2043348,2043374,2043430,2043476,2043492,2043568,2043652,2043670,2043762,2043828,2043880,2043936,2044052,2044090,2044144,2044212,2044266,2044318,2044374,2044428,2044436,2044488,2044526,2044604,2044632,2044688,2044734,2044752,2044828,2044910,2044930,2045020,2045084,2045138,2045192,2045304,2045344,2045398,2045464,2045518,2045570,2045628,2045682,2045734,2045774,2045850,2045880,2045938,2045984,2046004,2046080,2046160,2046182,2046270,2046332,2046386,2046440,2046548,2046636,2046644,2046754,2046806,2046862,2046879,2046928,2046980,2047020,2047095,2047126,2047180,2047226,2047248,2047324,2047402,2047426,2047512,2047572,2047628,2047680,2047784,2047828,2047882,2047944,2047998,2048050,2048106,2048160,2048174,2048226,2048270,2048342,2048420,2048466,2048490,2048566,2048642,2048668,2048752,2048768,2048822,2048878,2048926,2049026,2049072,2049126,2049186,2049238,2049340,2049394,2049410,2049464,2049510,2049578,2049656,2049702,2049728,2049804,2049880,2049908,2049990,2050008,2050060,2050116,2050164,2050264,2050308,2050366,2050394,2050441,2050462,2050463,2050465,2050468,2050491,2050513,2050514,2050515,2050516,2050517,2050518,2050519,2050520,2050521,2050547,2050576,2050580,2050581,2050582,2050604,2050626,2050627,2050628,2050629,2050636,2050643,2050644,2050645,2050646,2050671,2050696,2050697,2050698,2050720,2050742,2050743,2050744,2050745,2050776,2050807,2050808,2050809,2050810,2050847,2050884,2050885,2050886,2050887,2050908,2050929,2050930,2050931,2050932,2050944,2050956,2050957,2050958,2050959,2050995,2051031,2051032,2051033,2051034,2051069,2051104,2051105,2051106,2051107,2051120,2051133,2051134,2051135,2051173,2051211,2051212,2051213,2051214,2051222,2051230,2051231,2051232,2051233,2051256,2051279,2051280,2051281,2051282,2051309,2051336,2051337,2051338,2051339,2051361,2051383,2051384,2051385,2051386,2051431,2051476,2051477,2051478,2051479,2051500,2051521,2051522,2051523,2051524,2051551,2051578,2051579,2051580,2051581,2051626,2051671,2051672,2051674,2051677,2051699,2051720,2051721,2051722,2051723,2051724,2051725,2051726,2051727,2051728,2051753,2051781,2051785,2051786,2051787,2051808,2051829,2051830,2051831,2051832,2051839,2051846,2051847,2051848,2051872,2051896,2051897,2051898,2051899,2051921,2051943,2051944,2051945,2051946,2051975,2052004,2052005,2052006,2052042,2052078,2052079,2052080,2052081,2052102,2052123,2052124,2052125,2052137,2052149,2052150,2052151,2052152,2052187,2052222,2052223,2052224,2052257,2052290,2052291,2052292,2052293,2052306,2052319,2052320,2052356,2052392,2052393,2052394,2052402,2052410,2052411,2052412,2052413,2052435,2052457,2052458,2052459,2052460,2052486,2052512,2052513,2052514,2052515,2052536,2052557,2052558,2052559,2052560,2052602,2052644,2052645,2052646,2052666,2052686,2052687,2052688,2052689,2052715,2052741,2052742,2052743,2052744,2052786,2052828,2052829,2052831,2052834,2052855,2052875,2052876,2052877,2052878,2052879,2052880,2052881,2052882,2052883,2052907,2052934,2052938,2052939,2052940,2052960,2052980,2052981,2052982,2052983,2052990,2052997,2052998,2052999,2053022,2053045,2053046,2053047,2053048,2053070,2053092,2053093,2053094,2053095,2053122,2053149,2053150,2053151,2053152,2053187,2053222,2053223,2053224,2053225,2053245,2053265,2053266,2053267,2053268,2053280,2053292,2053293,2053294,2053301,2053335,2053363,2053364,2053365,2053396,2053427,2053428,2053429,2053430,2053431,2053444,2053457,2053458,2053492,2053526,2053527,2053528,2053529,2053537,2053545,2053546,2053547,2053548,2053569,2053590,2053591,2053592,2053593,2053618,2053643,2053644,2053645,2053646,2053666,2053686,2053687,2053688,2053689,2053728,2053767,2053768,2053769,2053770,2053789,2053808,2053809,2053810,2053811,2053836,2053861,2053862,2053863,2053903,2053943,2053944,2053946,2053949,2053969,2053988,2053989,2053990,2053991,2053992,2053993,2053994,2053995,2053996,2054019,2054045,2054049,2054050,2054053,2054072,2054089,2054090,2054091,2054098,2054105,2054106,2054128,2054150,2054151,2054152,2054153,2054154,2054176,2054198,2054199,2054200,2054201,2054226,2054251,2054252,2054253,2054254,2054288,2054322,2054323,2054324,2054325,2054344,2054363,2054364,2054365,2054366,2054367,2054379,2054391,2054392,2054393,2054400,2054433,2054460,2054461,2054462,2054491,2054520,2054521,2054522,2054523,2054536,2054549,2054550,2054551,2054583,2054615,2054616,2054617,2054618,2054626,2054634,2054635,2054636,2054637,2054657,2054677,2054678,2054679,2054680,2054681,2054705,2054729,2054730,2054731,2054732,2054751,2054770,2054771,2054772,2054773,2054809,2054845,2054846,2054847,2054864,2054883,2054886,2054887,2054888,2054889,2054913,2054937,2054938,2054939,2054977,2055015,2055016,2055018,2055021,2055040,2055058,2055059,2055060,2055061,2055062,2055063,2055064,2055065,2055066,2055067,2055089,2055114,2055118,2055119,2055120,2055123,2055141,2055157,2055158,2055159,2055160,2055161,2055168,2055175,2055176,2055197,2055218,2055219,2055220,2055221,2055222,2055244,2055266,2055267,2055268,2055269,2055292,2055315,2055316,2055317,2055318,2055319,2055352,2055385,2055386,2055387,2055388,2055406,2055424,2055425,2055426,2055427,2055428,2055440,2055452,2055453,2055454,2055461,2055492,2055517,2055518,2055545,2055572,2055573,2055574,2055575,2055576,2055589,2055602,2055603,2055604,2055634,2055664,2055665,2055666,2055667,2055675,2055683,2055684,2055685,2055686,2055705,2055724,2055725,2055726,2055727,2055728,2055751,2055774,2055775,2055776,2055777,2055795,2055813,2055814,2055815,2055849,2055883,2055884,2055885,2055886,2055902,2055920,2055923,2055924,2055925,2055926,2055927,2055950,2055973,2055974,2055975,2056011,2056047,2056048,2056049,2056051,2056054,2056072,2056089,2056090,2056091,2056092,2056093,2056094,2056095,2056096,2056097,2056102,2056123,2056143,2056147,2056148,2056151,2056168,2056183,2056184,2056185,2056186,2056193,2056200,2056201,2056221,2056241,2056242,2056243,2056244,2056245,2056267,2056289,2056290,2056291,2056312,2056333,2056334,2056335,2056336,2056337,2056369,2056401,2056402,2056403,2056404,2056421,2056438,2056439,2056440,2056441,2056442,2056454,2056466,2056467,2056468,2056469,2056476,2056505,2056528,2056529,2056554,2056579,2056580,2056581,2056582,2056583,2056584,2056597,2056610,2056611,2056612,2056640,2056668,2056669,2056670,2056678,2056686,2056687,2056688,2056689,2056707,2056725,2056726,2056727,2056728,2056729,2056751,2056773,2056774,2056775,2056776,2056793,2056810,2056811,2056812,2056844,2056876,2056877,2056878,2056879,2056880,2056897,2056914,2056915,2056916,2056917,2056918,2056940,2056962,2056963,2056964,2056998,2057032,2057033,2057034,2057036,2057039,2057056,2057072,2057073,2057074,2057075,2057076,2057077,2057078,2057079,2057080,2057085,2057105,2057124,2057128,2057129,2057132,2057148,2057162,2057163,2057164,2057165,2057172,2057179,2057180,2057199,2057218,2057219,2057220,2057221,2057222,2057243,2057264,2057265,2057284,2057303,2057304,2057305,2057306,2057307,2057338,2057369,2057370,2057371,2057372,2057388,2057404,2057405,2057406,2057407,2057408,2057420,2057432,2057433,2057434,2057435,2057442,2057469,2057490,2057491,2057514,2057537,2057538,2057539,2057540,2057541,2057542,2057555,2057568,2057569,2057570,2057596,2057622,2057623,2057624,2057632,2057640,2057641,2057642,2057643,2057660,2057677,2057678,2057679,2057680,2057681,2057702,2057723,2057724,2057725,2057726,2057742,2057758,2057759,2057760,2057789,2057818,2057819,2057820,2057821,2057822,2057839,2057856,2057857,2057858,2057859,2057860,2057881,2057902,2057903,2057904,2057936,2057968,2057969,2057970,2057972,2057975,2057991,2058006,2058007,2058008,2058009,2058010,2058011,2058012,2058013,2058014,2058015,2058020,2058039,2058057,2058061,2058062,2058065,2058080,2058093,2058094,2058095,2058096,2058097,2058104,2058111,2058112,2058130,2058148,2058149,2058150,2058151,2058152,2058172,2058192,2058193,2058211,2058229,2058230,2058231,2058232,2058233,2058262,2058291,2058292,2058293,2058294,2058295,2058311,2058327,2058328,2058329,2058330,2058342,2058354,2058355,2058356,2058357,2058358,2058364,2058388,2058407,2058408,2058430,2058452,2058453,2058454,2058455,2058456,2058457,2058470,2058483,2058484,2058485,2058509,2058533,2058534,2058535,2058543,2058551,2058552,2058553,2058554,2058570,2058586,2058587,2058588,2058589,2058590,2058610,2058630,2058631,2058632,2058633,2058634,2058649,2058664,2058665,2058666,2058693,2058720,2058721,2058722,2058723,2058724,2058740,2058756,2058757,2058758,2058759,2058760,2058780,2058800,2058801,2058802,2058832,2058862,2058863,2058864,2058866,2058869,2058884,2058898,2058899,2058900,2058901,2058902,2058903,2058904,2058905,2058906,2058907,2058912,2058930,2058947,2058951,2058952,2058966,2058980,2058981,2058982,2058983,2058984,2058991,2058998,2058999,2059016,2059033,2059034,2059035,2059036,2059037,2059056,2059075,2059076,2059093,2059110,2059111,2059112,2059113,2059114,2059141,2059168,2059169,2059170,2059171,2059172,2059188,2059204,2059205,2059206,2059207,2059219,2059231,2059232,2059233,2059234,2059235,2059240,2059262,2059280,2059281,2059301,2059321,2059322,2059323,2059324,2059325,2059326,2059339,2059352,2059353,2059354,2059376,2059398,2059399,2059407,2059415,2059416,2059417,2059418,2059433,2059448,2059449,2059450,2059451,2059452,2059471,2059490,2059491,2059492,2059506,2059520,2059521,2059546,2059571,2059572,2059573,2059574,2059589,2059604,2059605,2059606,2059607,2059626,2059645,2059646,2059674,2059702,2059703,2059704,2059706,2059709,2059724,2059738,2059739,2059740,2059741,2059742,2059743,2059744,2059745,2059746,2059763,2059783,2059787,2059788,2059801,2059814,2059815,2059816,2059817,2059824,2059831,2059832,2059848,2059864,2059865,2059866,2059867,2059884,2059901,2059917,2059933,2059934,2059935,2059936,2059962,2059988,2059989,2059990,2059991,2060003,2060018,2060022,2060023,2060024,2060036,2060048,2060049,2060050,2060051,2060056,2060076,2060092,2060110,2060128,2060129,2060130,2060131,2060132,2060133,2060146,2060159,2060160,2060161,2060181,2060201,2060202,2060210,2060218,2060219,2060220,2060221,2060235,2060249,2060250,2060251,2060252,2060270,2060288,2060289,2060290,2060291,2060304,2060317,2060318,2060319,2060342,2060365,2060366,2060367,2060398,2060429,2060455,2060481,2060482,2060483,2060484,2060486,2060489,2060503,2060516,2060517,2060518,2060519,2060520,2060521,2060522,2060523,2060524,2060540,2060556,2060560,2060564,2060565,2060577,2060589,2060590,2060591,2060598,2060605,2060606,2060621,2060636,2060637,2060638,2060639,2060640,2060656,2060672,2060687,2060702,2060703,2060704,2060705,2060729,2060753,2060754,2060755,2060756,2060767,2060778,2060782,2060786,2060787,2060788,2060800,2060812,2060813,2060814,2060819,2060837,2060851,2060852,2060868,2060884,2060885,2060886,2060887,2060888,2060901,2060914,2060915,2060916,2060934,2060952,2060953,2060961,2060969,2060970,2060971,2060972,2060985,2060998,2060999,2061000,2061017,2061034,2061035,2061036,2061048,2061060,2061061,2061062,2061083,2061104,2061105,2061106,2061107,2061108,2061109,2061110,2061111,2061112,2061113,2061128,2061157,2061172,2061196,2061220,2061221,2061222,2061224,2061227,2061240,2061252,2061253,2061254,2061255,2061256,2061257,2061258,2061259,2061274,2061289,2061293,2061297,2061298,2061309,2061320,2061321,2061322,2061329,2061336,2061337,2061351,2061365,2061366,2061367,2061368,2061382,2061396,2061397,2061411,2061425,2061426,2061427,2061431,2061453,2061472,2061473,2061474,2061475,2061486,2061497,2061501,2061505,2061506,2061507,2061519,2061531,2061532,2061533,2061537,2061552,2061564,2061565,2061580,2061595,2061596,2061597,2061598,2061599,2061612,2061625,2061626,2061627,2061643,2061659,2061660,2061668,2061676,2061677,2061678,2061679,2061691,2061703,2061704,2061705,2061706,2061722,2061738,2061739,2061740,2061741,2061752,2061763,2061764,2061765,2061784,2061803,2061804,2061805,2061806,2061807,2061808,2061809,2061810,2061811,2061812,2061826,2061853,2061867,2061889,2061911,2061912,2061913,2061915,2061918,2061930,2061941,2061942,2061943,2061944,2061945,2061946,2061947,2061948,2061962,2061976,2061980,2061984,2061985,2061995,2062005,2062006,2062007,2062014,2062021,2062022,2062035,2062048,2062049,2062050,2062051,2062052,2062065,2062078,2062079,2062092,2062105,2062106,2062107,2062110,2062130,2062148,2062149,2062150,2062151,2062161,2062171,2062175,2062179,2062180,2062181,2062193,2062205,2062206,2062210,2062223,2062233,2062234,2062247,2062260,2062261,2062262,2062263,2062264,2062277,2062290,2062291,2062292,2062306,2062320,2062321,2062329,2062337,2062338,2062339,2062340,2062351,2062362,2062363,2062364,2062365,2062380,2062395,2062396,2062397,2062398,2062408,2062418,2062419,2062420,2062437,2062454,2062455,2062456,2062457,2062458,2062459,2062460,2062461,2062462,2062463,2062476,2062501,2062514,2062534,2062554,2062555,2062557,2062560,2062571,2062581,2062582,2062583,2062584,2062585,2062586,2062587,2062588,2062601,2062614,2062618,2062622,2062623,2062632,2062641,2062642,2062643,2062650,2062657,2062658,2062670,2062682,2062683,2062684,2062685,2062686,2062698,2062710,2062711,2062723,2062735,2062736,2062737,2062739,2062757,2062774,2062775,2062776,2062785,2062794,2062798,2062802,2062803,2062804,2062816,2062828,2062829,2062833,2062845,2062854,2062855,2062867,2062879,2062880,2062881,2062882,2062883,2062895,2062907,2062908,2062909,2062921,2062933,2062934,2062942,2062950,2062951,2062952,2062953,2062963,2062973,2062974,2062975,2062976,2062990,2063004,2063005,2063006,2063015,2063024,2063025,2063026,2063041,2063056,2063057,2063058,2063059,2063060,2063061,2063062,2063063,2063064,2063065,2063077,2063100,2063112,2063130,2063148,2063149,2063151,2063154,2063164,2063173,2063174,2063175,2063176,2063177,2063178,2063179,2063180,2063192,2063204,2063208,2063212,2063213,2063221,2063229,2063230,2063231,2063238,2063245,2063256,2063267,2063268,2063269,2063270,2063271,2063282,2063293,2063294,2063305,2063316,2063317,2063318,2063320,2063336,2063351,2063352,2063353,2063361,2063369,2063373,2063377,2063378,2063379,2063390,2063401,2063402,2063406,2063417,2063425,2063426,2063437,2063448,2063449,2063450,2063451,2063452,2063463,2063474,2063475,2063476,2063487,2063498,2063505,2063512,2063513,2063514,2063515,2063525,2063535,2063536,2063537,2063549,2063561,2063562,2063563,2063571,2063579,2063580,2063581,2063595,2063609,2063610,2063611,2063612,2063613,2063614,2063615,2063616,2063617,2063618,2063629,2063650,2063661,2063666,2063682,2063694,2063695,2063697,2063700,2063709,2063717,2063718,2063719,2063720,2063721,2063722,2063723,2063729,2063740,2063746,2063750,2063754,2063761,2063768,2063769,2063770,2063777,2063784,2063785,2063795,2063805,2063806,2063807,2063808,2063809,2063819,2063829,2063830,2063840,2063850,2063851,2063852,2063854,2063868,2063881,2063882,2063883,2063890,2063897,2063901,2063905,2063906,2063907,2063917,2063927,2063928,2063932,2063942,2063949,2063950,2063954,2063964,2063971,2063972,2063973,2063974,2063980,2063990,2063995,2138057,2138251,2138311,2138351,2138416,2138460,2138489,2138519,2138521,2138544,2138567,2138570,2138592,2138626,2138658,2138687,2138717,2138755,2138786,2138820,2138850,2138883,2138925,2138969,2139010,2139032,2139053,2139077,2139109,2139142,2139171,2139207,2139232,2139260,2139305,2139344,2139369,2139392,2139426,2139447,2139480,2139513,2139515,2139542,2139583,2139623,2139652,2139683,2139734,2139763,2139789,2139810,2139837,2139883,2139921,2139947,2139975,2140002,2140023,2140047,2140057,2140058,2140059,2140102,2140173,2140223,2140247,2140268,2140300,2140331,2140360,2140389,2140424,2140453,2140486,2140515,2140546,2140586,2140629,2140668,2140689,2140709,2140732,2140763,2140795,2140823,2140857,2140881,2140908,2140951,2140988,2141012,2141034,2141067,2141088,2141119,2141150,2141152,2141178,2141217,2141255,2141283,2141313,2141362,2141390,2141414,2141433,2141459,2141504,2141540,2141564,2141591,2141617,2141637,2141660,2141670,2141671,2141672,2141713,2141781,2141829,2141852,2141872,2141902,2141932,2141950,2141962,2141989,2142021,2142049,2142081,2142109,2142138,2142160,2142177,2142219,2142256,2142276,2142295,2142317,2142347,2142377,2142404,2142437,2142460,2142485,2142525,2142561,2142584,2142605,2142637,2142657,2142687,2142717,2142719,2142744,2142781,2142817,2142844,2142872,2142918,2142945,2142968,2142986,2143011,2143055,2143089,2143111,2143143,2143180,2143202,2143212,2143213,2143214,2143253,2143318,2143366,2143404,2143432,2143460,2143488,2143514,2143544,2143570,2143600,2143647,2143675,2143691,2143731,2143766,2143785,2143814,2143852,2143880,2143906,2143938,2143960,2144003,2144055,2144077,2144097,2144128,2144148,2144176,2144204,2144206,2144230,2144265,2144299,2144325,2144351,2144394,2144436,2144458,2144482,2144525,2144545,2144558,2144578,2144609,2144633,2144645,2144666,2144676,2144677,2144678,2144715,2144777,2144803,2144824,2144860,2144879,2144890,2144913,2144940,2144965,2144993,2145018,2145047,2145066,2145092,2145118,2145134,2145172,2145205,2145216,2145225,2145253,2145289,2145316,2145341,2145356,2145372,2145393,2145434,2145483,2145504,2145520,2145547,2145569,2145574,2145600,2145626,2145628,2145651,2145685,2145717,2145741,2145766,2145807,2145847,2145868,2145891,2145933,2145953,2145964,2145982,2146012,2146035,2146047,2146068,2146078,2146079,2146080,2146114,2146172,2146197,2146218,2146253,2146271,2146281,2146302,2146328,2146352,2146378,2146402,2146430,2146448,2146472,2146496,2146512,2146548,2146579,2146590,2146599,2146626,2146660,2146685,2146709,2146724,2146739,2146759,2146798,2146844,2146864,2146879,2146905,2146927,2146932,2146956,2146980,2147003,2147035,2147065,2147088,2147112,2147151,2147170,2147190,2147210,2147232,2147272,2147291,2147301,2147318,2147347,2147369,2147380,2147400,2147410,2147411,2147412,2147444,2147499,2147523,2147524,2147544,2147577,2147594,2147603,2147623,2147649,2147684,2147718,2147745,2147762,2147784,2147806,2147822,2147856,2147885,2147896,2147905,2147931,2147963,2147987,2148010,2148037,2148056,2148093,2148136,2148155,2148170,2148195,2148216,2148221,2148223,2148245,2148268,2148290,2148320,2148348,2148389,2148429,2148447,2148466,2148485,2148506,2148544,2148562,2148578,2148614,2148635,2148645,2148664,2148674,2148675,2148705,2148757,2148780,2148781,2148800,2148831,2148847,2148855,2148874,2148900,2148912,2148934,2148965,2148990,2149006,2149027,2149048,2149063,2149095,2149123,2149134,2149142,2149167,2149198,2149221,2149243,2149268,2149281,2149316,2149351,2149362,2149380,2149394,2149418,2149439,2149444,2149446,2149466,2149487,2149508,2149537,2149564,2149582,2149604,2149642,2149659,2149677,2149695,2149714,2149750,2149768,2149783,2149798,2149818,2149838,2149847,2149865,2149875,2149876,2149904,2149953,2149975,2149976,2149994,2150023,2150038,2150045,2150063,2150089,2150101,2150121,2150149,2150172,2150187,2150188,2150208,2150228,2150242,2150272,2150299,2150310,2150317,2150340,2150369,2150391,2150412,2150435,2150447,2150480,2150513,2150514,2150524,2150541,2150554,2150576,2150596,2150601,2150603,2150622,2150642,2150662,2150689,2150714,2150731,2150752,2150788,2150804,2150821,2150838,2150855,2150888,2150905,2150919,2150933,2150952,2150971,2150980,2150997,2151006,2151007,2151033,2151079,2151100,2151117,2151144,2151158,2151164,2151181,2151207,2151219,2151237,2151262,2151283,2151297,2151298,2151317,2151336,2151349,2151377,2151403,2151414,2151420,2151441,2151468,2151489,2151509,2151530,2151541,2151572,2151603,2151604,2151613,2151629,2151642,2151663,2151682,2151687,2151689,2151706,2151724,2151743,2151769,2151793,2151809,2151828,2151861,2151876,2151892,2151908,2151909,2151925,2151956,2151972,2151986,2152000,2152017,2152034,2152043,2152059,2152067,2152068,2152093,2152136,2152155,2152156,2152172,2152197,2152210,2152216,2152232,2152257,2152269,2152285,2152307,2152326,2152339,2152340,2152358,2152376,2152388,2152414,2152439,2152450,2152455,2152474,2152499,2152519,2152538,2152557,2152595,2152624,2152625,2152633,2152648,2152660,2152679,2152697,2152702,2152704,2152720,2152737,2152755,2152779,2152801,2152816,2152834,2152865,2152879,2152894,2152909,2152910,2152925,2152954,2152969,2152982,2152995,2153011,2153027,2153035,2153050,2153058,2153059,2153082,2153121,2153138,2153139,2153154,2153178,2153191,2153196,2153211,2153236,2153248,2153263,2153284,2153302,2153314,2153315,2153331,2153347,2153359,2153384,2153407,2153417,2153422,2153440,2153463,2153481,2153499,2153517,2153537,2153564,2153580,2153581,2153588,2153602,2153613,2153630,2153647,2153652,2153654,2153669,2153685,2153729,2153758,2153800,2153814,2153828,2153842,2153843,2153857,2153884,2153898,2153910,2153922,2153937,2153952,2153959,2153973,2153981,2153982,2154003,2154039,2154055,2154056,2154070,2154092,2154104,2154109,2154123,2154146,2154157,2154171,2154191,2154207,2154217,2154232,2154247,2154258,2154281,2154303,2154313,2154317,2154333,2154355,2154372,2154388,2154404,2154422,2154447,2154462,2154469,2154482,2154492,2154508,2154524,2154529,2154531,2154544,2154557,2154559,2154564,2154585,2154603,2154629,2154667,2154680,2154681,2154694,2154707,2154708,2154721,2154746,2154759,2154771,2154783,2154796,2154809,2154816,2154829,2154836,2154856,2154889,2154903,2154904,2154917,2154930,2154939,2154950,2154954,2154967,2154988,2154998,2155017,2155036,2155045,2155066,2155079,2155090,2155112,2155132,2155141,2155145,2155158,2155170,2155181,2155197,2155212,2155226,2155242,2155265,2155279,2155285,2155297,2155306,2155320,2155335,2155340,2155342,2155354,2155366,2155368,2155373,2155392,2155408,2155432,2155467,2155479,2155480,2155492,2155504,2155505,2155517,2155540,2155552,2155563,2155574,2155586,2155598,2155605,2155617,2155623,2155642,2155672,2155684,2155685,2155697,2155709,2155718,2155728,2155731,2155743,2155762,2155771,2155789,2155807,2155815,2155834,2155846,2155856,2155876,2155894,2155902,2155906,2155918,2155929,2155939,2155954,2155968,2155980,2155994,2156015,2156028,2156034,2156045,2156053,2156066,2156080,2156085,2156087,2156098,2156109,2156111,2156115,2156132,2156147,2156168,2156199,2156210,2156211,2156222,2156233,2156234,2156245,2156266,2156277,2156288,2156299,2156310,2156321,2156327,2156338,2156344,2156361,2156388,2156399,2156400,2156404,2156415,2156423,2156431,2156440,2156443,2156454,2156471,2156479,2156496,2156513,2156520,2156536,2156546,2156556,2156575,2156591,2156598,2156602,2156613,2156623,2156632,2156646,2156659,2156669,2156681,2156700,2156712,2156718,2156728,2156735,2156747,2156760,2156765,2156767,2156777,2156787,2156789,2156793,2156808,2156821,2156840,2156868,2156878,2156879,2156889,2156899,2156900,2156910,2156929,2156939,2156949,2156959,2156969,2156979,2156985,2156995,2157000,2157016,2157040,2157049,2157050,2157054,2157064,2157071,2157078,2157086,2157089,2157099,2157114,2157121,2157137,2157153,2157159,2157173,2157182,2157186,2157195,2157209,2157223,2157229,2157233,2157243,2157252,2157261,2157274,2157285,2157294,2157305,2157322,2157333,2157338,2157347,2157354,2157364,2157375,2157380,2157382,2157391,2157400,2157402,2157406,2157419,2157430,2157447,2157472,2157481,2157482,2157491,2157500,2157501,2157510,2157527,2157536,2157545,2157554,2157563,2157572,2157578,2157587,2157591,2157605,2157626,2157634,2157635,2157639,2157648,2157654,2157660,2157667,2157670,2157679,2157692,2157698,2157713,2157728,2157740,2157752,2157755,2157763,2157776,2157788,2157796,2157805,2157813,2157821,2157832,2157842,2157850,2157859,2157874,2157888,2157896,2157902,2157911,2157921,2157926,2157934,2157941,2157943,2157947,2157959,2157969,2157991,2158013,2158014,2158022,2158030,2158031,2158039,2158054,2158062,2158070,2158085,2158093,2158098,2158106,2158110,2158122,2158140,2158147,2158150,2158158,2158164,2158169,2158175,2158178,2158186,2158197,2158202,2158215,2158228,2158238,2158248,2158251,2158258,2158269,2158280,2158291,2158298,2158301,2158309,2158322,2158333,2158341,2158354,2158366,2158373,2158379,2158386,2158394,2158399,2158406,2158412,2158413,2158415,2158419,2158429,2158437,2158456,2158475,2158476,2158483,2158490,2158491,2158498,2158511,2158518,2158525,2158538,2158545,2158550,2158557,2158560,2158571,2158587,2158593,2158595,2158601,2158606,2158611,2158617,2158619,2158625,2158635,2158640,2158651,2158662,2158670,2158678,2158680,2158686,2158696,2158705,2158714,2158720,2158723,2158730,2158741,2158751,2158758,2158769,2158777,2158780,2158786,2158791,2158797,2158804,2158808,2158814,2158819,2158820,2158822,2158826,2158834,2158840,2158856,2158872,2158873,2158879,2158885,2158886,2158892,2158903,2158909,2158915,2158926,2158936,2158942,2158944,2158954,2158968,2158973,2158974,2158979,2158984,2158988,2158993,2158995,2159000,2159008,2159012,2159021,2159030,2159037,2159044,2159045,2159050,2159059,2159066,2159073,2159078,2159081,2159087,2159096,2159104,2159110,2159119,2159125,2159128,2159133,2159137,2159142,2159148,2159152,2159157,2159161,2159162,2159164,2159167,2159173,2159178,2159191,2159204,2159205,2159210,2159215,2159216,2159221,2159230,2159235,2159240,2159249,2159257,2159262,2159264,2159272,2159283,2159287,2159288,2159292,2159296,2159299,2159303,2159305,2159309,2159315,2159318,2159325,2159332,2159337,2159342,2159343,2159347,2159354,2159360,2159366,2159370,2159372,2159377,2159384,2159390,2159395,2159402,2159407,2159409,2159413,2159417,2159421,2159425,2159428,2159432,2159435,2159436,2159438,2159441,2159445,2159448,2159458,2159468,2159469,2159473,2159477,2159478,2159482,2159489,2159493,2159497,2159504,2159511,2159515,2159516,2159522,2159530,2159533,2159534,2159537,2159540,2159543,2159546,2159547,2159550,2159555,2159558,2159563,2159568,2159571,2159574,2159575,2159578,2159583,2159588,2159593,2159596,2159597,2159600,2159605,2159608,2159611,2159615,2159620,2159624,2159625,2159628,2159631,2159634,2159637,2159639,2159642,2159644,2159645,2159647,2159650,2159652,2159653,2159660,2159667,2159668,2159671,2159674,2159675,2159678,2159683,2159686,2159689,2159694,2159699,2159702,2159703,2159707,2159712,2159714,2159715,2159717,2159719,2159721,2159723,2159724,2159726,2159729,2159731,2159734,2159737,2159739,2159741,2159742,2159744,2159747,2159750,2159753,2159755,2159756,2159758,2159761,2159763,2159765,2159767,2159770,2159773,2159774,2159776,2159778,2159780,2159782,2159784,2159786,2159787,2159788,2159790,2159793,2159795,2159796,2159800,2159804,2159805,2159807,2159809,2159810,2159812,2159815,2159817,2159819,2159822,2159825,2159827,2159828,2159830,2159832,2159833,2159834,2159835,2159836,2159837,2159838,2159839,2159840,2159841,2159842,2159843,2159844,2159845,2159846,2159847,2159848,2159850,2159853,2159856,2159858,2159859,2159861,2159864,2159866,2159868,2159870,2159873,2159876,2159877,2159879,2159881,2159883,2159885,2159887,2159889,2159890,2159891,2159893,2159896,2159898,2159899,2159903,2159907,2159908,2159910,2159912,2159913,2159915,2159918,2159920,2159922,2159925,2159928,2159930,2159931,2159933,2159935,2159936,2159937,2159938,2159939,2159940,2159941,2159942,2159943,2159944,2159945,2159946,2159947,2159948,2159949,2159950,2159951,2159953,2159956,2159959,2159961,2159962,2159964,2159966,2159968,2159970,2159972,2159974,2159977,2159980,2159982,2159984,2159985,2159987,2159990,2159992,2159993,2159994,2159995,2159997,2160000,2160002,2160003,2160007,2160011,2160013,2160015,2160016,2160018,2160021,2160023,2160025,2160028,2160031,2160033,2160034,2160036,2160038,2160039,2160040,2160041,2160042,2160043,2160044,2160045,2160046,2160047,2160048,2160049,2160050,2160051,2160052,2160053,2160055,2160058,2160061,2160063,2160064,2160066,2160069,2160071,2160073,2160075,2160078,2160081,2160083,2160085,2160086,2160088,2160091,2160093,2160094,2160095,2160096,2160098,2160101,2160103,2160107,2160111,2160113,2160115,2160116,2160118,2160121,2160123,2160125,2160128,2160131,2160133,2160134,2160136,2160138,2160139,2160140,2160141,2160142,2160143,2160144,2160145,2160146,2160147,2160148,2160149,2160150,2160151,2160152,2160153,2160155,2160158,2160161,2160163,2160164,2160166,2160169,2160171,2160173,2160175,2160178,2160181,2160183,2160185,2160186,2160188,2160190,2160192,2160194,2160195,2160196,2160197,2160199,2160202,2160204,2160208,2160212,2160214,2160216,2160217,2160219,2160222,2160224,2160226,2160229,2160232,2160234,2160235,2160237,2160239,2160240,2160241,2160242,2160243,2160244,2160245,2160246,2160247,2160248,2160249,2160250,2160251,2160252,2160253,2160254,2160256,2160259,2160262,2160264,2160265,2160267,2160270,2160272,2160274,2160276,2160279,2160282,2160284,2160286,2160287,2160288,2160290,2160292,2160294,2160296,2160297,2160298,2160299,2160301,2160304,2160306,2160310,2160314,2160316,2160318,2160319,2160321,2160324,2160326,2160328,2160331,2160334,2160336,2160337,2160339,2160341,2160342,2160343,2160344,2160345,2160346,2160347,2160348,2160349,2160350,2160351,2160352,2160353,2160354,2160355,2160356,2160358,2160361,2160364,2160366,2160367,2160369,2160372,2160374,2160376,2160378,2160381,2160384,2160386,2160388,2186792,2186986,2187042,2187094,2187260,2187334,2187388,2187462,2187516,2187598,2187658,2187742,2187776,2187860,2187926,2187986,2188044,2188124,2188180,2188280,2188334,2188416,2188496,2188528,2188590,2188680,2188798,2188850,2188922,2188974,2188980,2189136,2189220,2189290,2189346,2189436,2189518,2189568,2189644,2189710,2189757,2189852,2189908,2189948,2190046,2190142,2190208,2190242,2190332,2190398,2190458,2190552,2190624,2190682,2190776,2190784,2190896,2190972,2191028,2191118,2191194,2191256,2191320,2191390,2191446,2191512,2191576,2191652,2191708,2191750,2191844,2191938,2192002,2192038,2192126,2192192,2192238,2192342,2192414,2192472,2192490,2192573,2192606,2192688,2192794,2192832,2192922,2192986,2193048,2193110,2193180,2193234,2193326,2193364,2193488,2193532,2193624,2193714,2193776,2193814,2193900,2193966,2194026,2194058,2194164,2194216,2194258,2194340,2194352,2194454,2194550,2194596,2194684,2194748,2194810,2194870,2194940,2194994,2195060,2195122,2195206,2195282,2195336,2195424,2195478,2195554,2195630,2195666,2195760,2195806,2195900,2195962,2195996,2196084,2196098,2196198,2196292,2196338,2196424,2196488,2196550,2196608,2196678,2196732,2196796,2196860,2196944,2197018,2197032,2197156,2197258,2197300,2197382,2197446,2197506,2197586,2197656,2197714,2197800,2197816,2197912,2197988,2198016,2198064,2198145,2198208,2198270,2198328,2198396,2198450,2198514,2198573,2198658,2198730,2198784,2198830,2198890,2198970,2199064,2199104,2199190,2199236,2199294,2199362,2199420,2199504,2199522,2199616,2199690,2199748,2199828,2199896,2199918,2200001,2200030,2200096,2200148,2200212,2200272,2200388,2200432,2200516,2200558,2200610,2200682,2200752,2200794,2200878,2200924,2200980,2201048,2201106,2201188,2201208,2201298,2201372,2201428,2201508,2201574,2201598,2201692,2201758,2201812,2201876,2201934,2202006,2202062,2202106,2202188,2202244,2202282,2202352,2202444,2202506,2202566,2202636,2202702,2202712,2202770,2202850,2202872,2202960,2203032,2203088,2203166,2203232,2203290,2203358,2203424,2203476,2203558,2203596,2203660,2203714,2203760,2203838,2203894,2203932,2204002,2204092,2204152,2204212,2204280,2204344,2204356,2204414,2204492,2204516,2204662,2204718,2204732,2204860,2204884,2204974,2205040,2205094,2205158,2205212,2205250,2205338,2205384,2205430,2205502,2205524,2205564,2205632,2205720,2205780,2205840,2205908,2205972,2206030,2206106,2206132,2206166,2206282,2206338,2206412,2206476,2206502,2206590,2206654,2206708,2206772,2206826,2206864,2206950,2206996,2207042,2207112,2207136,2207176,2207244,2207330,2207390,2207450,2207516,2207578,2207636,2207710,2207738,2207772,2207884,2207940,2208012,2208080,2208131,2208202,2208252,2208320,2208394,2208434,2208496,2208550,2208596,2208668,2208722,2208762,2208830,2208914,2208925,2209034,2209063,2209154,2209168,2209230,2209302,2209332,2209446,2209514,2209536,2209616,2209662,2209726,2209784,2209846,2209900,2209972,2210014,2210074,2210128,2210174,2210244,2210298,2210338,2210404,2210486,2210546,2210606,2210664,2210722,2210738,2210800,2210870,2210902,2211012,2211078,2211102,2211180,2211226,2211290,2211346,2211408,2211462,2211532,2211594,2211674,2211690,2211736,2211820,2211858,2211898,2211962,2212042,2212102,2212162,2212218,2212276,2212294,2212356,2212362,2212458,2212464,2212630,2212636,2212709,2212768,2212785,2212846,2212902,2213012,2213080,2213142,2213220,2213237,2213314,2213376,2213406,2213412,2213450,2213570,2213644,2213652,2213712,2213818,2213838,2213900,2213966,2214002,2214102,2214168,2214196,2214298,2214314,2214376,2214432,2214494,2214548,2214614,2214676,2214752,2214802,2214848,2214908,2214940,2214978,2215040,2215116,2215176,2215184,2215290,2215346,2215368,2215430,2215436,2215500,2215538,2215634,2215700,2215728,2215826,2215844,2215906,2215962,2216024,2216078,2216084,2216148,2216210,2216284,2216334,2216432,2216498,2216560,2216634,2216694,2216752,2216806,2216862,2216886,2216948,2217010,2217052,2217144,2217208,2217238,2217332,2217352,2217416,2217470,2217532,2217586,2217650,2217710,2217780,2217832,2217878,2217936,2217942,2218008,2218068,2218140,2218200,2218256,2218310,2218384,2218446,2218457,2218516,2218636,2218700,2218736,2218826,2218902,2218912,2219020,2219074,2219192,2219258,2219312,2219392,2219414,2219482,2219540,2219658,2219714,2219772,2219846,2219908,2219966,2220010,2220098,2220160,2220194,2220280,2220360,2220414,2220472,2220580,2220640,2220752,2220798,2220854,2220864,2220930,2221094,2221150,2221252,2221282,2221344,2221406,2221518,2221573,2221590,2221624,2221708,2221788,2221853,2221898,2222002,2222062,2222171,2222216,2222274,2222342,2222400,2222506,2222566,2222662,2222694,2222756,2222848,2222924,2222986,2223022,2223102,2223112,2223192,2223266,2223302,2223402,2223462,2223568,2223642,2223670,2223738,2223794,2223902,2223994,2224048,2224082,2224142,2224236,2224306,2224368,2224406,2224482,2224494,2224574,2224646,2224684,2224780,2224840,2224942,2225014,2225044,2225112,2225166,2225270,2225360,2225414,2225450,2225550,2225602,2225668,2225728,2225768,2225842,2225856,2225936,2226004,2226044,2226138,2226196,2226360,2226390,2226458,2226464,2226612,2226700,2226754,2226792,2226888,2226942,2227006,2227066,2227108,2227180,2227196,2227276,2227342,2227382,2227472,2227530,2227626,2227696,2227728,2227796,2227850,2227948,2228034,2228088,2228128,2228222,2228276,2228338,2228398,2228442,2228520,2228600,2228664,2228708,2228796,2228854,2228946,2229016,2229050,2229088,2229126,2229180,2229274,2229358,2229410,2229452,2229544,2229598,2229660,2229718,2229764,2229832,2229852,2229984,2230030,2230116,2230174,2230262,2230332,2230368,2230436,2230490,2230580,2230662,2230716,2230760,2230898,2230958,2230968,2231064,2231118,2231152,2231232,2231292,2231336,2231420,2231476,2231564,2231632,2231670,2231738,2231792,2231878,2231958,2232012,2232060,2232068,2232199,2232258,2232316,2232364,2232416,2232452,2232530,2232590,2232634,2232716,2232772,2232858,2232926,2232964,2233032,2233164,2233242,2233296,2233346,2233356,2233484,2233540,2233598,2233650,2233712,2233738,2233834,2233904,2233984,2234042,2234102,2234108,2234202,2234240,2234310,2234364,2234444,2234520,2234574,2234628,2234638,2234762,2234816,2234874,2234930,2234988,2235016,2235108,2235178,2235256,2235314,2235372,2235408,2235474,2235514,2235630,2235708,2235782,2235836,2235890,2235896,2235908,2236076,2236082,2236138,2236246,2236276,2236364,2236434,2236510,2236516,2236626,2236662,2236728,2236764,2236836,2236888,2236964,2237036,2237090,2237145,2237160,2237274,2237330,2237436,2237492,2237524,2237606,2237677,2237684,2237758,2237818,2237874,2237962,2238004,2238072,2238126,2238200,2238270,2238324,2238380,2238396,2238506,2238560,2238616,2238674,2238730,2238764,2238844,2238914,2238986,2239044,2239098,2239138,2239200,2239244,2239308,2239360,2239432,2239544,2239602,2239620,2239724,2239778,2239836,2239892,2239948,2239984,2240062,2240132,2240202,2240258,2240294,2240352,2240408,2240454,2240518,2240572,2240644,2240708,2240762,2240820,2240840,2240935,2240937,2240961,2240985,2240987,2240989,2240990,2240991,2241017,2241044,2241046,2241071,2241097,2241099,2241123,2241148,2241160,2241177,2241184,2241219,2241255,2241257,2241289,2241322,2241324,2241355,2241387,2241389,2241413,2241438,2241440,2241455,2241480,2241491,2241508,2241526,2241528,2241553,2241582,2241587,2241604,2241624,2241628,2241655,2241685,2241689,2241711,2241735,2241738,2241769,2241801,2241830,2241880,2241903,2241906,2241933,2241958,2241961,2241970,2241977,2241980,2242026,2242070,2242073,2242098,2242122,2242124,2242125,2242150,2242176,2242178,2242202,2242227,2242233,2242255,2242274,2242286,2242303,2242310,2242343,2242377,2242393,2242424,2242442,2242444,2242473,2242503,2242505,2242528,2242552,2242554,2242568,2242591,2242601,2242618,2242636,2242638,2242661,2242688,2242693,2242710,2242730,2242734,2242759,2242787,2242811,2242834,2242837,2242866,2242896,2242923,2242970,2242992,2242995,2243021,2243045,2243048,2243057,2243064,2243067,2243070,2243111,2243152,2243172,2243196,2243202,2243204,2243205,2243229,2243254,2243256,2243279,2243303,2243309,2243330,2243348,2243360,2243377,2243384,2243414,2243445,2243461,2243491,2243508,2243510,2243537,2243565,2243567,2243589,2243612,2243614,2243627,2243648,2243657,2243674,2243692,2243694,2243715,2243740,2243745,2243762,2243782,2243786,2243809,2243834,2243838,2243859,2243881,2243884,2243911,2243939,2243964,2244008,2244029,2244032,2244057,2244080,2244089,2244098,2244101,2244104,2244142,2244180,2244199,2244222,2244228,2244230,2244253,2244277,2244279,2244301,2244324,2244330,2244350,2244367,2244379,2244396,2244403,2244430,2244458,2244474,2244503,2244519,2244545,2244571,2244573,2244594,2244616,2244618,2244637,2244656,2244673,2244691,2244693,2244712,2244735,2244740,2244757,2244777,2244781,2244802,2244825,2244829,2244849,2244870,2244873,2244898,2244924,2244947,2244988,2245008,2245011,2245035,2245057,2245066,2245075,2245076,2245079,2245082,2245117,2245152,2245170,2245192,2245198,2245200,2245222,2245245,2245247,2245268,2245290,2245295,2245314,2245330,2245332,2245344,2245361,2245368,2245392,2245417,2245432,2245460,2245476,2245500,2245524,2245564,2245582,2245600,2245617,2245635,2245637,2245654,2245675,2245680,2245697,2245717,2245721,2245740,2245761,2245764,2245766,2245785,2245805,2245808,2245831,2245855,2245876,2245914,2245933,2245936,2245959,2245980,2245989,2245998,2246001,2246004,2246036,2246068,2246069,2246086,2246107,2246113,2246115,2246136,2246158,2246160,2246180,2246201,2246206,2246224,2246239,2246241,2246253,2246270,2246281,2246303,2246334,2246361,2246376,2246398,2246420,2246422,2246441,2246460,2246461,2246478,2246495,2246511,2246528,2246530,2246546,2246566,2246571,2246587,2246606,2246610,2246627,2246646,2246649,2246651,2246669,2246688,2246691,2246712,2246733,2246735,2246754,2246789,2246807,2246810,2246832,2246852,2246861,2246870,2246873,2246876,2246905,2246934,2246935,2246951,2246971,2246977,2246979,2246998,2247018,2247020,2247039,2247059,2247064,2247081,2247095,2247097,2247109,2247126,2247135,2247138,2247156,2247186,2247211,2247225,2247245,2247265,2247267,2247285,2247303,2247304,2247319,2247334,2247350,2247367,2247369,2247383,2247401,2247406,2247422,2247441,2247445,2247461,2247479,2247482,2247484,2247501,2247519,2247522,2247541,2247560,2247562,2247564,2247581,2247614,2247633,2247654,2247673,2247682,2247691,2247694,2247697,2247723,2247749,2247750,2247765,2247784,2247790,2247792,2247809,2247827,2247829,2247847,2247866,2247871,2247887,2247900,2247902,2247914,2247931,2247939,2247941,2247958,2247986,2248009,2248022,2248040,2248058,2248060,2248077,2248094,2248095,2248109,2248123,2248138,2248154,2248156,2248169,2248186,2248191,2248206,2248224,2248228,2248242,2248258,2248261,2248263,2248279,2248296,2248299,2248316,2248333,2248335,2248352,2248368,2248384,2248402,2248422,2248440,2248449,2248458,2248461,2248464,2248487,2248510,2248511,2248525,2248543,2248549,2248566,2248583,2248585,2248602,2248620,2248625,2248640,2248652,2248654,2248666,2248683,2248691,2248693,2248708,2248744,2248767,2248784,2248801,2248803,2248819,2248835,2248836,2248849,2248862,2248876,2248890,2248891,2248893,2248895,2248896,2248897,2248909,2248921,2248926,2248931,2248932,2248933,2248947,2248964,2248968,2248969,2248970,2248983,2248996,2248999,2249002,2249003,2249004,2249006,2249008,2249022,2249036,2249039,2249042,2249043,2249044,2249060,2249076,2249077,2249078,2249080,2249096,2249111,2249112,2249113,2249128,2249143,2249146,2249149,2249166,2249183,2249184,2249185,2249194,2249203,2249204,2249205,2249206,2249209,2249212,2249213,2249214,2249235,2249256,2249257,2249258,2249259,2249260,2249261,2249274,2249287,2249292,2249297,2249299,2249301,2249316,2249331,2249333,2249335,2249336,2249337,2249353,2249369,2249370,2249372,2249374,2249377,2249380,2249392,2249404,2249405,2249406,2249408,2249419,2249429,2249436,2249443,2249445,2249447,2249448,2249449,2249450,2249464,2249478,2249479,2249499,2249519,2249521,2249523,2249538,2249553,2249555,2249557,2249558,2249559,2249574,2249589,2249590,2249591,2249592,2249593,2249605,2249617,2249618,2249632,2249646,2249647,2249649,2249651,2249652,2249653,2249664,2249675,2249680,2249685,2249686,2249687,2249700,2249716,2249720,2249721,2249722,2249723,2249735,2249747,2249750,2249753,2249754,2249755,2249757,2249759,2249772,2249785,2249788,2249791,2249792,2249793,2249808,2249823,2249824,2249825,2249827,2249842,2249856,2249857,2249858,2249872,2249886,2249889,2249892,2249908,2249924,2249925,2249926,2249935,2249944,2249945,2249946,2249947,2249948,2249951,2249954,2249955,2249974,2249993,2249994,2249995,2249996,2249997,2249998,2249999,2250011,2250027,2250032,2250034,2250036,2250050,2250064,2250066,2250068,2250069,2250070,2250085,2250100,2250101,2250103,2250105,2250107,2250109,2250121,2250133,2250134,2250136,2250146,2250155,2250162,2250169,2250171,2250173,2250174,2250175,2250188,2250201,2250202,2250220,2250238,2250240,2250242,2250256,2250270,2250272,2250274,2250275,2250286,2250300,2250304,2250305,2250306,2250307,2250308,2250320,2250332,2250333,2250346,2250359,2250360,2250362,2250364,2250365,2250366,2250376,2250386,2250391,2250396,2250397,2250398,2250410,2250425,2250429,2250430,2250431,2250432,2250443,2250454,2250457,2250460,2250461,2250462,2250464,2250466,2250478,2250490,2250493,2250496,2250497,2250498,2250512,2250526,2250527,2250528,2250530,2250544,2250557,2250558,2250559,2250572,2250585,2250588,2250591,2250606,2250621,2250622,2250623,2250632,2250641,2250642,2250643,2250644,2250645,2250646,2250649,2250652,2250653,2250670,2250687,2250688,2250689,2250690,2250691,2250692,2250693,2250694,2250705,2250720,2250725,2250727,2250729,2250742,2250755,2250756,2250758,2250760,2250761,2250762,2250776,2250790,2250791,2250793,2250795,2250797,2250799,2250810,2250821,2250822,2250823,2250825,2250834,2250842,2250843,2250850,2250857,2250859,2250861,2250862,2250863,2250875,2250887,2250888,2250889,2250905,2250921,2250923,2250925,2250938,2250951,2250952,2250954,2250956,2250957,2250967,2250980,2250984,2250985,2250986,2250987,2250988,2251000,2251012,2251013,2251025,2251037,2251038,2251040,2251042,2251043,2251044,2251053,2251062,2251067,2251072,2251073,2251074,2251085,2251099,2251103,2251104,2251105,2251106,2251116,2251126,2251129,2251132,2251133,2251134,2251136,2251138,2251149,2251160,2251163,2251166,2251167,2251168,2251181,2251194,2251195,2251196,2251198,2251211,2251223,2251224,2251225,2251237,2251249,2251252,2251255,2251269,2251283,2251284,2251293,2251302,2251303,2251304,2251305,2251306,2251307,2251310,2251313,2251328,2251343,2251344,2251345,2251346,2251347,2251348,2251349,2251359,2251373,2251378,2251380,2251382,2251394,2251406,2251407,2251409,2251411,2251412,2251425,2251438,2251439,2251441,2251443,2251445,2251447,2251457,2251467,2251468,2251470,2251478,2251485,2251486,2251493,2251500,2251502,2251504,2251505,2251506,2251517,2251528,2251529,2251530,2251544,2251558,2251560,2251562,2251574,2251586,2251587,2251589,2251591,2251592,2251601,2251613,2251617,2251618,2251619,2251620,2251621,2251633,2251645,2251646,2251657,2251668,2251669,2251671,2251673,2251674,2251675,2251683,2251691,2251696,2251701,2251702,2251703,2251713,2251726,2251730,2251739,2251750,2251753,2251755,2251766,2251778,2251781,2251793,2251806,2251818,2251829,2251840,2251853,2251868,2251889,2251898,2251901,2251916,2251929,2251930,2251931,2251944,2251958,2251970,2251982,2251995,2252007,2252009,2252012,2252022,2252032,2252039,2252051,2252059,2252061,2252071,2252081,2252095,2252119,2252130,2252132,2252144,2252155,2252156,2252167,2252188,2252199,2252201,2252203,2252214,2252225,2252234,2252246,2252250,2252258,2252268,2252271,2252273,2252283,2252294,2252297,2252308,2252320,2252331,2252341,2252351,2252363,2252377,2252397,2252406,2252407,2252410,2252423,2252434,2252435,2252436,2252448,2252461,2252472,2252483,2252495,2252506,2252508,2252511,2252520,2252529,2252535,2252546,2252554,2252556,2252565,2252574,2252587,2252609,2252619,2252630,2252641,2252642,2252652,2252671,2252681,2252683,2252685,2252696,2252707,2252715,2252726,2252730,2252737,2252746,2252749,2252751,2252760,2252770,2252773,2252783,2252794,2252804,2252813,2252822,2252833,2252845,2252863,2252872,2252873,2252876,2252888,2252898,2252899,2252900,2252911,2252923,2252933,2252943,2252953,2252962,2252964,2252967,2252976,2252985,2252990,2253000,2253008,2253010,2253018,2253026,2253037,2253056,2253065,2253075,2253085,2253086,2253096,2253114,2253123,2253124,2253126,2253128,2253138,2253148,2253155,2253165,2253169,2253175,2253183,2253186,2253188,2253196,2253205,2253208,2253217,2253227,2253236,2253244,2253252,2253262,2253272,2253288,2253297,2253298,2253301,2253311,2253319,2253320,2253321,2253331,2253342,2253351,2253360,2253369,2253377,2253379,2253382,2253390,2253398,2253403,2253412,2253419,2253421,2253429,2253437,2253446,2253455,2253463,2253471,2253480,2253489,2253490,2253500,2253517,2253525,2253526,2253528,2253530,2253539,2253548,2253554,2253563,2253567,2253572,2253579,2253582,2253584,2253591,2253599,2253602,2253610,2253619,2253627,2253634,2253641,2253650,2253659,2253674,2253683,2253684,2253687,2253696,2253703,2253704,2253705,2253714,2253724,2253732,2253740,2253748,2253755,2253757,2253760,2253762,2253768,2253774,2253776,2253778,2253781,2253784,2253790,2253796,2253798,2253800,2253801,2253802,2253809,2253816,2253817,2253818,2253826,2253834,2253835,2253836,2253843,2253850,2253851,2253852,2253860,2253868,2253869,2253870,2253871,2253872,2253881,2253896,2253903,2253904,2253905,2253906,2253907,2253909,2253911,2253912,2253913,2253921,2253929,2253930,2253931,2253935,2253940,2253945,2253949,2253950,2253951,2253952,2253956,2253960,2253963,2253966,2253967,2253968,2253970,2253972,2253977,2253982,2253985,2253988,2253989,2253990,2253997,2254004,2254005,2254007,2254009,2254015,2254021,2254022,2254023,2254029,2254035,2254038,2254041,2254047,2254053,2254061,2254069,2254070,2254071,2254072,2254073,2254076,2254079,2254085,2254091,2254092,2254093,2254094,2254095,2254096,2254097,2254105,2254113,2254115,2254117,2254123,2254129,2254131,2254133,2254139,2254145,2254146,2254147,2254149,2254151,2254153,2254155,2254160,2254165,2254167,2254169,2254171,2254173,2254179,2254185,2254187,2254189,2254190,2254191,2254192,2254198,2254204,2254205,2254206,2254213,2254220,2254221,2254222,2254228,2254234,2254235,2254236,2254243,2254250,2254251,2254252,2254253,2254254,2254262,2254275,2254281,2254282,2254283,2254284,2254285,2254287,2254289,2254290,2254291,2254298,2254305,2254306,2254307,2254311,2254316,2254320,2254323,2254324,2254325,2254326,2254330,2254334,2254336,2254338,2254339,2254341,2254343,2254348,2254353,2254358,2254359,2254365,2254376,2254382,2254383,2254388,2254393,2254394,2254397,2254400,2254405,2254410,2254417,2254424,2254425,2254426,2254427,2254428,2254431,2254434,2254439,2254444,2254445,2254446,2254447,2254448,2254449,2254450,2254457,2254465,2254467,2254472,2254477,2254478,2254480,2254482,2254487,2254492,2254493,2254495,2254497,2254499,2254501,2254505,2254509,2254511,2254513,2254515,2254517,2254522,2254527,2254529,2254531,2254532,2254533,2254534,2254539,2254544,2254545,2254546,2254552,2254558,2254559,2254560,2254565,2254570,2254571,2254572,2254578,2254584,2254585,2254586,2254587,2254598,2254609,2254610,2254612,2254614,2254620,2254626,2254630,2254636,2254639,2254642,2254646,2254648,2254653,2254658,2254661,2254664,2254669,2254678,2254683,2254687,2254693,2254699,2254708,2254714,2254715,2254718,2254724,2254728,2254729,2254735,2254742,2254747,2254752,2254757,2254761,2254763,2254766,2254771,2254776,2254781,2254786,2254788,2254789,2254793,2254801,2254806,2254810,2254814,2254819,2254824,2254825,2254834,2254843,2254844,2254846,2254848,2254853,2254858,2254862,2254867,2254869,2254872,2254876,2254878,2254882,2254886,2254889,2254892,2254896,2254903,2254907,2254910,2254915,2254920,2254927,2254932,2254933,2254936,2254941,2254944,2254945,2254950,2254956,2254960,2254964,2254968,2254971,2254973,2254976,2254980,2254984,2254988,2254992,2254994,2254995,2254998,2255004,2255008,2255011,2255014,2255015,2255019,2255023,2255024,2255025,2255026,2255027,2255034,2255041,2255042,2255043,2255044,2255045,2255047,2255049,2255050,2255051,2255055,2255059,2255060,2255061,2255064,2255067,2255069,2255071,2255072,2255073,2255076,2255079,2255080,2255081,2255082,2255083,2255084,2255088,2255092,2255093,2255094,2255096,2255098,2255099,2255100,2255103,2255106,2255110,2255114,2255115,2255116,2255118,2255120,2255123,2255126,2255128,2255130,2255134,2255138,2255139,2255140,2255141,2255142,2255145,2255148,2255150,2255152,2255153,2255154,2255155,2255156,2255160,2255164,2255166,2255168,2255170,2255172,2255174,2255176,2255178,2255180,2255181,2255182,2255184,2255186,2255187,2255188,2255191,2255194,2255195,2255196,2255197,2255200,2255203,2255204,2255205,2255206,2255207,2255208,2255209,2255218,2255228,2255236,2255246,2255260,2255266,2255278,2255286,2255296,2255302,2255312,2255320,2255332,2255342,2255354,2255362,2255370,2255380,2255388,2255396,2255404,2255412,2255418,2255428,2255438,2255450,2255462,2255470,2255480,2255490,2255500,2255510,2255518,2255528,2255538,2255548,2255558,2255570,2255582,2255592,2255602,2255610,2255620,2255630,2255640,2255652,2255666,2255676,2255690,2255700,2255712,2255724,2255736,2255748,2255758,2255770,2255782,2255794,2255806,2255818,2255832,2255844,2255856,2255866,2255878,2255890,2255902,2255916,2255932,2255944,2255960,2255972,2255986,2256000,2256014,2256028,2256040,2256054,2256068,2256082,2256096,2256110,2256124,2256138,2256152,2256164,2256178,2256192,2256206,2256222,2256240,2256262,2256272,2256286,2256302,2256318,2256334,2256350,2256364,2256380,2256396,2256412,2256428,2256444,2256460,2256474,2256490,2256504,2256520,2256536,2256552,2256570,2256590,2256614,2256626,2256642,2256660,2256678,2256696,2256714,2256730,2256748,2256766,2256784,2256802,2256820,2256838,2256854,2256870,2256886,2256904,2256922,2256940,2256960,2256982,2257008,2257022,2257040,2257060,2257080,2257100,2257120,2257138,2257158,2257178,2257198,2257218,2257238,2257258,2257276,2257294,2257312,2257330,2257350,2257370,2257392,2257398,2257422,2257450,2257466,2257486,2257508,2257530,2257552,2257574,2257594,2257616,2257638,2257660,2257682,2257704,2257726,2257746,2257766,2257786,2257806,2257826,2257866,2257892,2257922,2257940,2257962,2257986,2258010,2258018,2258042,2258066,2258088,2258128,2258146,2258176,2258200,2258224,2258246,2258268,2258290,2258312,2258334,2258356,2258380,2258408,2258440,2258460,2258484,2258510,2258536,2258562,2258588,2258612,2258638,2258664,2258690,2258716,2258742,2258768,2258792,2258816,2258840,2258864,2258888,2258912,2258938,2258966,2259000,2259022,2259048,2259076,2259104,2259132,2259160,2259186,2259214,2259242,2259270,2259298,2259326,2259354,2259380,2259406,2259432,2259458,2259484,2259510,2259538,2259566,2259602,2259626,2259654,2259684,2259714,2259744,2259774,2259802,2259832,2259862,2259892,2259910,2259928,2259958,2259988,2260016,2260044,2260072,2260078,2260106,2260134,2260162,2260192,2260222,2260228,2260264,2260290,2260320,2260352,2260384,2260390,2260422,2260454,2260484,2260516,2260548,2260567,2260587,2260618,2260650,2260682,2260710,2260720,2260750,2260780,2260810,2260840,2260872,2260878,2260938,2260972,2261002,2261021,2261068,2261079,2261109,2261142,2261176,2261184,2261216,2261250,2261284,2261318,2261353,2261386,2261420,2261430,2261464,2261494,2261526,2261558,2261590,2261600,2261633,2261666,2261700,2261736,2261766,2261776,2261838,2261865,2261884,2261918,2261956,2261990,2262026,2262062,2262098,2262134,2262146,2262180,2262216,2262230,2262258,2262292,2262326,2262360,2262394,2262406,2262440,2262476,2262498,2262550,2262582,2262594,2262630,2262666,2262702,2262740,2262752,2262790,2262826,2262864,2262902,2262940,2262978,2263016,2263057,2263094,2263110,2263170,2263195,2263220,2263256,2263292,2263330,2263340,2263408,2263422,2263456,2263494,2263532,2263570,2263608,2263622,2263662,2263700,2263740,2263780,2263820,2263860,2263900,2263916,2263956,2263994,2264032,2264070,2264108,2264124,2264164,2264200,2264240,2264252,2264322,2264338,2264374,2264414,2264454,2264494,2264534,2264550,2264590,2264630,2264672,2264697,2264722,2264768,2264840,2264882,2264888,2264934,2264954,2264986,2265026,2265078,2265120,2265158,2265200,2265216,2265288,2265326,2265344,2265386,2265428,2265470,2265512,2265530,2265572,2265614,2265656,2265700,2265742,2265786,2265830,2265874,2265894,2265936,2265978,2266020,2266064,2266106,2266126,2266168,2266212,2266242,2266302,2266342,2266362,2266406,2266450,2266494,2266538,2266558,2266602,2266646,2266690,2266734,2266778,2266824,2266872,2266916,2266938,2266982,2267026,2267070,2267116,2267160,2267182,2267246,2267298,2267360,2267402,2267424,2267470,2267516,2267562,2267608,2267630,2267676,2267722,2267768,2267848,2267896,2267906,2268012,2268058,2268104,2268150,2268198,2268244,2268268,2268314,2268362,2268396,2268460,2268504,2268528,2268576,2268624,2268672,2268730,2268778,2268826,2268909,2268964,2269012,2269068,2269074,2269140,2269228,2269276,2269326,2269394,2269442,2269492,2269528,2269634,2269660,2269710,2269804,2269864,2269914,2269972,2270056,2270106,2270156,2270212,2270220,2270328,2270378,2270428,2270522,2270550,2270600,2270652,2270750,2270798,2270826,2270922,2271008,2271036,2271096,2271182,2271234,2271286,2271338,2271396,2271462,2271514,2271606,2271662,2271714,2271744,2271814,2271880,2271950,2272000,2272074,2272162,2272216,2272246,2272308,2272396,2272450,2272504,2272612,2272618,2272686,2272740,2272834,2272892,2272946,2272978,2273048,2273114,2273182,2273258,2273354,2273440,2273472,2273480,2273542,2273628,2273682,2273736,2273788,2273849,2273918,2273972,2274064,2274122,2274176,2274210,2274278,2274344,2274410,2274488,2274582,2274666,2274700,2274710,2274716,2274778,2274906,2274960,2275014,2275023,2275080,2275148,2275202,2275292,2275302,2275356,2275410,2275446,2275512,2275518,2275584,2275616,2275704,2275738,2275830,2275874,2275918,2275954,2275966,2276028,2276114,2276160,2276214,2276268,2276328,2276340,2276404,2276458,2276546,2276604,2276618,2276666,2276704,2276768,2276834,2276846,2276876,2276962,2276998,2277088,2277168,2277206,2277220,2277230,2277292,2277412,2277424,2277474,2277528,2277588,2277656,2277710,2277720,2277806,2277864,2277918,2277932,2278022,2278030,2278096,2278132,2278192,2278254,2278264,2278352,2278474,2278486,2278548,2278664,2278678,2278728,2278782,2278842,2278910,2278964,2278976,2279060,2279118,2279172,2279188,2279278,2279288,2279354,2279390,2279448,2279512,2279522,2279610,2279684,2279690,2279744,2279806,2279848,2279883,2279884,2279904,2279925,2279929,2279932,2279933,2279956,2279979,2279982,2280007,2280032,2280060,2280086,2280093,2280125,2280153,2280160,2280185,2280208,2280211,2280229,2280268,2280292,2280319,2280346,2280371,2280396,2280401,2280406,2280411,2280429,2280472,2280501,2280503,2280529,2280560,2280568,2280584,2280600,2280620,2280638,2280661,2280684,2280701,2280720,2280725,2280765,2280803,2280806,2280841,2280874,2280876,2280878,2280880,2280905,2280929,2280935,2280941,2280967,2280996,2281019,2281053,2281087,2281109,2281133,2281157,2281181,2281205,2281232,2281257,2281264,2281295,2281322,2281348,2281374,2281377,2281394,2281431,2281454,2281480,2281506,2281530,2281554,2281559,2281564,2281569,2281587,2281628,2281655,2281657,2281682,2281712,2281720,2281735,2281750,2281770,2281788,2281810,2281832,2281849,2281868,2281873,2281911,2281947,2281950,2281983,2282014,2282016,2282018,2282020,2282045,2282069,2282075,2282090,2282115,2282134,2282155,2282187,2282220,2282241,2282264,2282287,2282310,2282333,2282359,2282383,2282390,2282420,2282444,2282447,2282472,2282497,2282500,2282516,2282551,2282573,2282598,2282623,2282646,2282669,2282676,2282683,2282701,2282741,2282767,2282769,2282792,2282820,2282828,2282843,2282858,2282877,2282894,2282915,2282936,2282953,2282972,2282977,2283013,2283047,2283048,2283051,2283082,2283111,2283113,2283115,2283117,2283142,2283166,2283172,2283186,2283210,2283229,2283248,2283278,2283293,2283311,2283331,2283353,2283375,2283397,2283419,2283444,2283467,2283474,2283503,2283526,2283529,2283553,2283577,2283580,2283595,2283610,2283629,2283650,2283674,2283713,2283735,2283742,2283749,2283756,2283774,2283813,2283838,2283840,2283862,2283889,2283897,2283911,2283925,2283928,2283944,2283960,2283980,2284000,2284017,2284036,2284041,2284075,2284107,2284108,2284111,2284140,2284167,2284169,2284171,2284173,2284198,2284227,2284240,2284263,2284282,2284313,2284341,2284358,2284377,2284398,2284419,2284440,2284461,2284485,2284507,2284514,2284542,2284564,2284565,2284569,2284592,2284614,2284630,2284644,2284662,2284682,2284705,2284726,2284747,2284770,2284777,2284784,2284802,2284840,2284864,2284866,2284887,2284913,2284921,2284934,2284947,2284950,2284965,2284980,2284981,2285000,2285019,2285036,2285055,2285060,2285092,2285122,2285125,2285152,2285177,2285179,2285181,2285183,2285208,2285232,2285238,2285250,2285272,2285291,2285295,2285321,2285347,2285363,2285381,2285401,2285421,2285441,2285461,2285484,2285505,2285512,2285539,2285560,2285564,2285586,2285605,2285608,2285623,2285636,2285653,2285672,2285694,2285714,2285734,2285756,2285763,2285770,2285788,2285825,2285848,2285850,2285870,2285895,2285903,2285915,2285927,2285930,2285944,2285958,2285959,2285977,2285995,2286012,2286031,2286036,2286066,2286094,2286097,2286122,2286145,2286147,2286149,2286151,2286176,2286200,2286206,2286217,2286238,2286257,2286261,2286285,2286309,2286324,2286341,2286360,2286379,2286398,2286417,2286439,2286459,2286466,2286491,2286510,2286514,2286535,2286553,2286556,2286570,2286582,2286598,2286616,2286637,2286656,2286675,2286696,2286703,2286710,2286727,2286762,2286784,2286786,2286805,2286829,2286837,2286847,2286857,2286860,2286874,2286888,2286889,2286906,2286923,2286939,2286957,2286962,2286990,2287016,2287019,2287042,2287063,2287065,2287067,2287069,2287093,2287116,2287122,2287133,2287153,2287171,2287175,2287197,2287219,2287233,2287249,2287267,2287285,2287303,2287321,2287342,2287361,2287368,2287391,2287411,2287431,2287448,2287451,2287464,2287475,2287490,2287507,2287527,2287545,2287563,2287583,2287590,2287597,2287613,2287645,2287665,2287667,2287686,2287710,2287718,2287727,2287736,2287739,2287753,2287767,2287768,2287784,2287800,2287815,2287832,2287837,2287863,2287887,2287890,2287911,2287930,2287932,2287934,2287936,2287959,2287981,2287987,2287997,2288016,2288034,2288038,2288058,2288078,2288091,2288106,2288123,2288140,2288157,2288174,2288194,2288212,2288213,2288220,2288241,2288259,2288278,2288294,2288297,2288309,2288319,2288333,2288349,2288368,2288385,2288402,2288421,2288428,2288435,2288450,2288495,2288497,2288523,2288553,2288561,2288564,2288565,2288579,2288593,2288594,2288595,2288596,2288597,2288612,2288627,2288628,2288629,2288643,2288657,2288660,2288663,2288666,2288669,2288691,2288713,2288714,2288717,2288720,2288737,2288754,2288755,2288756,2288758,2288760,2288761,2288762,2288764,2288766,2288787,2288808,2288809,2288810,2288816,2288822,2288827,2288832,2288846,2288860,2288864,2288868,2288869,2288870,2288888,2288906,2288907,2288908,2288920,2288932,2288935,2288938,2288952,2288966,2288969,2288972,2288986,2289000,2289003,2289006,2289023,2289040,2289041,2289042,2289043,2289044,2289051,2289058,2289071,2289084,2289088,2289092,2289107,2289122,2289123,2289124,2289125,2289128,2289131,2289140,2289149,2289150,2289151,2289164,2289177,2289180,2289183,2289198,2289213,2289214,2289215,2289231,2289247,2289250,2289253,2289258,2289265,2289268,2289280,2289292,2289308,2289324,2289325,2289326,2289328,2289330,2289331,2289332,2289333,2289334,2289357,2289380,2289386,2289392,2289395,2289398,2289399,2289400,2289413,2289426,2289427,2289428,2289429,2289443,2289457,2289458,2289459,2289460,2289473,2289486,2289489,2289494,2289497,2289506,2289526,2289538,2289539,2289542,2289545,2289561,2289577,2289578,2289579,2289580,2289582,2289584,2289585,2289586,2289588,2289590,2289610,2289630,2289631,2289632,2289638,2289644,2289648,2289652,2289665,2289678,2289682,2289686,2289687,2289703,2289719,2289720,2289721,2289733,2289745,2289748,2289751,2289764,2289777,2289780,2289783,2289796,2289809,2289812,2289815,2289830,2289845,2289846,2289847,2289848,2289849,2289856,2289863,2289875,2289887,2289891,2289895,2289909,2289923,2289924,2289925,2289926,2289929,2289932,2289940,2289948,2289949,2289950,2289962,2289974,2289977,2289980,2289994,2290008,2290009,2290010,2290025,2290040,2290043,2290046,2290051,2290058,2290061,2290072,2290083,2290098,2290113,2290114,2290115,2290117,2290119,2290120,2290121,2290122,2290123,2290144,2290165,2290171,2290177,2290180,2290183,2290184,2290185,2290197,2290209,2290210,2290211,2290212,2290225,2290238,2290239,2290240,2290241,2290253,2290265,2290268,2290273,2290276,2290284,2290302,2290313,2290314,2290317,2290320,2290334,2290348,2290349,2290350,2290351,2290353,2290355,2290356,2290357,2290359,2290361,2290380,2290399,2290400,2290401,2290407,2290413,2290417,2290421,2290433,2290445,2290449,2290453,2290454,2290468,2290482,2290483,2290484,2290495,2290506,2290509,2290512,2290524,2290536,2290539,2290542,2290543,2290555,2290567,2290570,2290573,2290587,2290601,2290602,2290603,2290604,2290605,2290612,2290619,2290629,2290639,2290643,2290647,2290660,2290673,2290674,2290675,2290676,2290679,2290682,2290689,2290696,2290697,2290698,2290709,2290720,2290723,2290726,2290739,2290752,2290753,2290754,2290768,2290782,2290785,2290788,2290793,2290800,2290803,2290804,2290814,2290824,2290838,2290852,2290853,2290854,2290856,2290858,2290859,2290860,2290861,2290862,2290881,2290900,2290906,2290912,2290915,2290918,2290919,2290920,2290931,2290942,2290943,2290944,2290945,2290957,2290969,2290970,2290971,2290972,2290983,2290994,2290997,2291002,2291005,2291012,2291028,2291038,2291039,2291042,2291045,2291057,2291069,2291070,2291071,2291072,2291073,2291075,2291077,2291078,2291080,2291082,2291083,2291101,2291119,2291120,2291121,2291127,2291133,2291137,2291141,2291152,2291163,2291167,2291171,2291176,2291188,2291196,2291197,2291198,2291208,2291218,2291221,2291224,2291235,2291246,2291249,2291252,2291253,2291264,2291275,2291278,2291281,2291294,2291307,2291308,2291309,2291310,2291311,2291318,2291325,2291333,2291341,2291345,2291349,2291361,2291373,2291374,2291375,2291376,2291379,2291382,2291388,2291394,2291395,2291396,2291406,2291416,2291419,2291422,2291434,2291446,2291447,2291448,2291461,2291474,2291475,2291478,2291485,2291492,2291495,2291496,2291505,2291514,2291527,2291540,2291541,2291542,2291544,2291546,2291547,2291548,2291549,2291550,2291553,2291570,2291585,2291591,2291599,2291602,2291603,2291604,2291614,2291624,2291625,2291626,2291627,2291638,2291649,2291650,2291651,2291652,2291662,2291672,2291675,2291680,2291683,2291689,2291703,2291712,2291713,2291716,2291719,2291730,2291741,2291742,2291743,2291744,2291746,2291748,2291749,2291751,2291753,2291754,2291771,2291788,2291789,2291795,2291803,2291806,2291816,2291826,2291830,2291834,2291844,2291854,2291855,2291856,2291866,2291876,2291879,2291891,2291901,2291904,2291907,2291908,2291918,2291928,2291931,2291944,2291955,2291956,2291957,2291958,2291959,2291966,2291978,2291984,2291988,2291992,2292003,2292014,2292015,2292016,2292019,2292022,2292028,2292034,2292035,2292036,2292044,2292054,2292057,2292068,2292079,2292080,2292081,2292093,2292105,2292108,2292115,2292122,2292125,2292126,2292134,2292153,2292165,2292166,2292167,2292169,2292171,2292172,2292173,2292174,2292177,2292192,2292205,2292211,2292219,2292222,2292223,2292232,2292241,2292242,2292243,2292244,2292254,2292264,2292265,2292266,2292275,2292284,2292287,2292292,2292295,2292300,2292312,2292320,2292321,2292324,2292336,2292346,2292347,2292348,2292349,2292351,2292353,2292354,2292356,2292358,2292359,2292375,2292391,2292392,2292398,2292404,2292406,2292408,2292417,2292429,2292433,2292436,2292445,2292452,2292453,2292454,2292463,2292472,2292475,2292486,2292495,2292498,2292501,2292502,2292511,2292520,2292523,2292534,2292543,2292544,2292545,2292546,2292547,2292554,2292565,2292570,2292574,2292578,2292588,2292598,2292599,2292600,2292603,2292606,2292611,2292616,2292617,2292618,2292625,2292634,2292637,2292647,2292657,2292658,2292659,2292670,2292681,2292684,2292691,2292698,2292701,2292702,2292709,2292725,2292735,2292736,2292737,2292739,2292741,2292742,2292743,2292744,2292747,2292761,2292773,2292779,2292787,2292790,2292791,2292799,2292807,2292808,2292809,2292810,2292819,2292828,2292829,2292837,2292845,2292848,2292853,2292856,2292857,2292861,2292871,2292878,2292879,2292882,2292893,2292902,2292903,2292904,2292905,2292907,2292909,2292910,2292912,2292914,2292915,2292930,2292945,2292946,2292952,2292958,2292959,2292960,2292961,2292969,2292980,2292984,2292987,2292995,2293001,2293002,2293003,2293004,2293012,2293020,2293023,2293033,2293041,2293044,2293047,2293048,2293056,2293064,2293067,2293077,2293085,2293086,2293087,2293088,2293089,2293096,2293106,2293110,2293114,2293118,2293127,2293136,2293137,2293138,2293141,2293144,2293149,2293154,2293155,2293156,2293162,2293170,2293173,2293174,2293182,2293190,2293191,2293192,2293202,2293212,2293215,2293222,2293229,2293232,2293233,2293239,2293253,2293262,2293263,2293264,2293266,2293268,2293269,2293270,2293271,2293274,2293286,2293296,2293302,2293310,2293313,2293314,2293321,2293328,2293329,2293330,2293331,2293339,2293347,2293348,2293349,2293356,2293363,2293366,2293371,2293374,2293377,2293385,2293391,2293392,2293395,2293405,2293413,2293414,2293415,2293416,2293418,2293420,2293421,2293423,2293425,2293426,2293440,2293454,2293460,2293466,2293467,2293468,2293469,2293476,2293486,2293490,2293492,2293499,2293505,2293506,2293507,2293508,2293515,2293522,2293525,2293534,2293541,2293544,2293547,2293554,2293561,2293564,2293573,2293580,2293581,2293582,2293583,2293584,2293591,2293600,2293603,2293607,2293611,2293619,2293627,2293628,2293629,2293632,2293635,2293640,2293645,2293646,2293647,2293652,2293659,2293662,2293663,2293670,2293677,2293678,2293679,2293688,2293697,2293700,2293707,2293714,2293717,2293718,2293723,2293735,2293743,2293744,2293745,2293747,2293749,2293750,2293751,2293752,2293755,2293766,2293775,2293780,2293787,2293790,2293791,2293798,2293805,2293806,2293807,2293814,2293821,2293822,2293823,2293829,2293835,2293838,2293843,2293846,2293847,2293850,2293857,2293862,2293863,2293866,2293875,2293882,2293883,2293884,2293885,2293887,2293889,2293890,2293892,2293894,2293895,2293908,2293921,2293927,2293933,2293934,2293935,2293936,2293942,2293951,2293955,2293956,2293962,2293968,2293969,2293970,2293971,2293977,2293983,2293986,2293994,2294000,2294003,2294006,2294012,2294018,2294021,2294029,2294035,2294036,2294037,2294038,2294039,2294046,2294054,2294059,2294063,2294070,2294077,2294078,2294079,2294082,2294085,2294090,2294095,2294096,2294097,2294101,2294105,2294108,2294111,2294112,2294118,2294124,2294125,2294133,2294141,2294144,2294151,2294158,2294161,2294162,2294169,2294179,2294183,2294184,2294186,2294188,2294189,2294190,2294191,2294194,2294204,2294212,2294217,2294224,2294227,2294233,2294239,2294240,2294241,2294247,2294253,2294254,2294255,2294260,2294265,2294268,2294273,2294276,2294277,2294283,2294289,2294290,2294293,2294301,2294307,2294308,2294309,2294310,2294312,2294314,2294315,2294317,2294319,2294320,2294332,2294344,2294350,2294356,2294357,2294358,2294363,2294371,2294375,2294380,2294385,2294386,2294387,2294392,2294397,2294400,2294407,2294412,2294415,2294418,2294423,2294428,2294435,2294442,2294443,2294444,2294445,2294446,2294453,2294460,2294464,2294468,2294474,2294480,2294481,2294482,2294485,2294488,2294493,2294498,2294499,2294502,2294505,2294508,2294511,2294512,2294517,2294522,2294523,2294530,2294537,2294540,2294547,2294554,2294557,2294558,2294564,2294572,2294575,2294576,2294578,2294580,2294581,2294582,2294583,2294586,2294595,2294602,2294607,2294614,2294617,2294622,2294627,2294628,2294629,2294634,2294639,2294640,2294641,2294642,2294647,2294654,2294657,2294660,2294663,2294664,2294669,2294674,2294675,2294678,2294685,2294690,2294691,2294692,2294694,2294696,2294697,2294699,2294701,2294702,2294712,2294722,2294728,2294734,2294735,2294736,2294737,2294741,2294748,2294752,2294756,2294760,2294761,2294762,2294763,2294768,2294773,2294775,2294781,2294786,2294789,2294792,2294796,2294800,2294806,2294812,2294813,2294814,2294815,2294816,2294822,2294828,2294832,2294836,2294841,2294846,2294847,2294848,2294851,2294854,2294858,2294862,2294863,2294866,2294869,2294878,2294890,2294910,2294926,2294940,2294941,2294943,2294945,2294946,2294947,2294990,2295013,2295014,2295035,2295055,2295089,2295130,2295131,2295148,2295166,2295184,2295262,2295277,2295297,2295321,2295322,2295349,2295390,2295391,2295404,2295430,2295444,2295445,2295476,2295507,2295512,2295529,2295551,2295561,2295562,2295601,2295626,2295627,2295648,2295664,2295678,2295679,2295716,2295750,2295767,2295795,2295809,2295843,2295871,2295872,2295894,2295926,2295936,2296015,2296068,2296164,2296193,2296372,2296390,2296417,2296418,2296455,2296488,2296504,2296528,2296576,2296582,2296604,2296618,2296633,2296789,2296884,2296918,2296925,2296929,2297021,2297034,2297047,2297126,2297144,2297147,2297163,2297608,2297631,2297651,2297731,2297748,2297754,2297828,2297837,2297853,2297857,2297859,2297860,2297876,2297880,2297882,2297883,2297901,2297911,2297913,2297914,2297936,2297946,2297948,2297949,2297959,2297961,2297983,2297984,2297992,2297994,2298011,2298013,2298035,2298037,2298039,2298136,2298143,2298162,2298184,2298188,2298266,2298403,2298577,2298582,2298599,2298605,2298617,2298685,2298944,2298949,2298955,2299038,2299199,2299216,2299235,2299244,2299264,2299268,2299334,2299832,2300012,2300068,2300246,2300247,2300267,2300343,2300344,2300459,2300547,2300660,2300758,2300761,2300769,2300774,2300775,2300781,2300790,2300791,2300795,2300811,2300886,2300887,2301281,2301282,2301283,2301284,2301285,2301286,2301287,2301288,2301289,2301290,2301291,2301292,2301293,2301294,2301295,2301296,2301297,2301298,2301299,2301300,2301301,2301302,2301303,2301304,2301305,2301306,2301307,2301308,2301309,2301777,2301778,2301823,2301916,2301931,2302017,2302059,2302064,2302141,2302239,2302330,2302445,2302566,2304613,2304728,2304853,2304905,2304938,2304963,2305029,2305163,2306933,2306954,2307303,2307355,2307369,2307419,2307465,2307493,2307495,2309033,2309054,2309145,2309156,2309168,2309183,2309187,2309215,2309423,2309519,2309533,2310787,2310808,2310931,2310943,2311251,2311265,2311273,2311305,2312655,2312676,2312995,2313007,2313017,2313033,2313040,2313069,2313231,2313387,2314294,2314315,2314336,2314354,2314364,2314378,2314380,2314408,2315164,2315185,2315438,2315450,2315462,2315476,2315484,2315514,2316353,2316374,2316395,2316669,2316681,2316697,2316705,2316735,2317664,2317691,2317716,2317726,2317736,2317750,2317758,2318060,2319051,2319094,2319129,2319141,2319152,2319167,2319185,2319227,2320300,2320338,2320373,2320476,2320627,2320641,2320666,2320735,2320737,2321942,2321989,2322026,2322061,2322278,2322295,2322298,2322401,2322404,2323693,2323722,2323736,2323784,2323800,2323811,2323990,2323992,2323999,2324007,2324021,2324090,2325287,2325333,2325365,2325409,2325411,2325412,2325413,2325416,2325422,2325430,2325460,2325513,2326808,2326813,2326827,2327171,2327177,2327178,2327191,2327192,2327196,2327206,2327244,2327281,2327476,2327655,2328913,2328918,2328932,2329000,2329002,2329003,2329004,2329005,2329009,2329017,2329027,2329044,2330368,2330373,2330387,2330791,2330795,2330796,2330797,2330798,2330804,2330812,2330826,2330851,2331289,2331293,2434675,2448458,2566676,2595411,2595431,2595433,2595447,2595455,2595458,2595463,2595466,2595471,2595472,2595477,2595526,2595533,2595548,2595555,2595556,2595561,2595572,2595577,2595580,2595587,2595618,2595625,2595628,2595633,2595642,2595654,2595668,2595675,2595676,2595683,2595684,2595689,2595690,2595717,2595718,2595735,2595738,2595743,2595758,2595763,2595769,2606847,2606907,2607091,2607144,2607295,2607304,2607411,2607607,2607608,2607890,2607902,2607928,2607929,2607930,2607936,2607976,2608463,2609019,2609022,2609133,2609178,2609318,2609319,2609320,2609321,2609322,2609335,2609347,2609348,2609355,2609452,2609820,2609891,2610281,2610390,2610517,2610868,2611024,2611377,2611537,2611838,2611993,2612088,2615037,2617630,2617741,2618065,2618124,2618246,2618569,2618725,2618754,2619110,2619235,2619515,2619566,2619846,2619923,2619961,2620169,2620244,2620286,2620376,2620523,2620585,2620591,2620637,2620830,2620906,2620940,2620964,2621089,2621101,2621227,2621354,2621372,2621496,2621535,2621653,2621663,2621745,2621822,2621944,2621950,2621988,2622123,2622147,2622281,2622396,2622468,2622602,2622639,2622745,2622751,2622831,2622978,2623006,2623013,2623190,2623367,2623538,2623639,2623787,2623807,2623952,2624046,2624196,2624253,2624367,2624373,2624471,2624630,2624674,2624680,2624800,2625031,2625055,2625209,2625328,2625462,2625520,2625649,2625757,2625763,2625905,2626070,2626088,2626094,2626326,2626365,2626517,2626643,2626798,2626818,2626984,2627117,2627270,2627299,2627582,2627607,2627755,2629057,2629238,2629355,2629379,2630561,2630708,2630849,2630951,2630957,2632030,2632079,2632216,2632348,2632356,2633426,2633535,2633580,2633714,2633720,2634946,2635077,2635222,2635356,2635368,2636496,2636627,2636780,2636916,2636926,2638112,2638251,2638410,2638556,2638562,2639771,2639912,2639953,2640217,2640225,2641496,2641641,2641804,2641950,2641960,2643229,2643279,2643418,2643574,2643580,2644901,2645064,2645207,2645365,2645373,2646714,2646873,2647186,2647323,2647387,2647578,2647579,2647729,2647875,2647925,2647932,2648065,2648402,2648407,2649815,2650204,2650351,2650605,2650824,2651342,2651530,2651747,2652312,2652317,2652325,2652344,2652963,2652982,2652991,2653807,2665302,2665336,2665557,2666009,2666036,2666178,2666239,2666240,2666241,2666243,2666935,2666943,2666958,2666959,2666964,2666965,2666969,2666985,2668358,2668595,2669114,2669166,2669211,2669223,2669235,2669244,2670605,2671098,2671151,2671201,2671207,2671235,2671262,2672689,2673216,2673270,2673321,2673326,2673389,2673794,2673824,2673835,2673840,2673897,2675466,2676121,2676135,2676148,2676153,2676207,2676267,2676270,2677972,2678533,2678539,2678545,2678647,2678651,2680250,2680679,2680687,2680693,2680701,2680707,2681834,2682197,2682213,2682253,2682259,2682260,2683172,2683555,2683591,2683597,2683654,2683661,2684720,2684857,2684872,2684914,2684963,2685379,2685475,2687325,2687331,2689649,2689655,2691630,2695399,2715939,2799472,2829798,2857021,2857026,2857054,2857074,2857096,2857097,2857123,2857150,2857180,2857202,2857210,2857229,2857277,2857284,2857322,2857356,2857394,2857397,2857426,2857441,2857460,2857463,2857490,2857505,2857515,2857527,2857540,2857557,2857570,2857585,2857617,2857622,2857648,2857692,2857722,2857755,2857760,2857804,2857809,2857842,2857873,2857884,2857896,2857924,2857939,2857968,2857979,2857990,2858015,2858020,2858038,2858056,2858065,2858070,2858105,2858112,2858137,2858144,2858156,2858170,2858213,2858228,2858247,2858254,2858281,2858286,2858312,2858334,2858337,2858376,2858401,2858414,2858436,2858454,2858485,2858500,2858523,2858548,2858569,2858588,2858602,2858619,2858642,2858669,2858848,2858867,2858883,2858925,2858955,2859004,2859011,2859053,2859077,2859087,2859109,2859110,2859122,2859134,2859139,2859145,2859180,2859203,2859217,2859245,2859271,2859321,2859334,2859364,2859375,2859403,2859441,2859459,2859501,2859524,2859537,2859572,2859579,2859606,2859629,2859644,2859653,2859678,2859685,2859708,2859721,2859731,2859829,2859858,2859902,2859915,2859940,2859971,2859976,2859995,2860026,2860033,2860038,2860075,2860108,2860141,2860146,2860173,2860178,2860209,2860218,2860243,2860248,2860273,2860278,2860289,2860304,2860332,2860350,2860367,2860386,2860395,2860424,2860425,2860470,2860483,2860510,2860539,2860546,2860563,2860594,2860601,2860642,2860679,2860716,2860744,2860782,2860787,2860803,2860823,2860855,2860870,2860886,2860915,2860942,2860963,2860979,2861011,2861012,2861065,2861066,2861120,2861141,2861147,2861179,2861203,2861255,2861262,2861298,2861328,2861373,2861386,2861408,2861440,2861452,2861488,2861511,2861529,2861559,2861565,2861566,2861580,2861594,2861595,2861618,2862136,2862143,2862173,2862214,2862219,2862252,2862273,2862289,2862310,2862327,2862339,2862365,2862399,2862430,2862437,2862460,2862465,2862496,2862509,2862530,2862535,2862562,2862571,2862585,2862591,2862620,2862651,2862662,2862677,2862696,2862708,2862730,2862737,2862778,2862801,2862830,2862851,2862854,2862885,2862896,2862903,2862962,2862993,2863019,2863053,2863059,2863070,2863093,2863098,2863144,2863151,2863185,2863217,2863243,2863260,2863299,2863304,2863352,2863376,2863410,2863437,2863468,2863484,2863518,2863552,2863581,2863583,2863594,2863605,2863606,2863622,2863638,2863645,2863677,2863686,2863730,2863740,2863776,2863808,2863831,2864917,2864948,2864988,2864995,2866088,2866133,2866143,2866181,2866223,2866246,2866301,2866308,2866340,2866348,2866362,2866415,2866425,2866426,2866428,2866438,2866447,2866489,2866494,2866502,2866530,2866567,2866577,2866608,2866617,2866642,2866647,2866688,2866697,2866724,2866737,2866774,2866797,2866802,2866833,2866854,2866859,2866888,2866893,2866906,2866947,2866968,2866973,2866992,2866997,2867026,2867039,2867044,2867053,2867074,2867081,2867115,2867151,2867160,2867189,2867190,2867197,2867217,2867269,2867278,2867283,2867340,2867349,2867395,2867399,2867708,2867721,2867751,2867759,2867969,2867976,2868010,2868028,2868050,2868239,2868244,2868284,2868300,2868330,2868335,2868345,2868412,2868428,2868466,2868492,2868519,2868542,2868548,2868578,2868589,2868602,2868637,2868648,2868664,2868705,2868710,2868734,2868746,2868776,2868821,2868826,2868872,2868897,2868904,2868908,2868914,2868951,2868984,2868995,2869044,2869055,2869060,2869101,2869108,2869134,2869142,2869156,2869164,2869211,2869222,2869241,2869264,2869279,2869290,2869299,2869304,2869346,2869368,2869375,2869406,2869421,2869446,2869453,2869522,2869577,2869592,2869623,2869640,2869667,2869686,2869737,2869756,2869764,2869804,2869824,2869833,2869844,2869871,2869915,2869922,2869954,2869998,2870004,2870010,2870080,2870085,2870145,2870151,2870187,2870238,2870247,2870265,2870313,2870331,2870342,2870352,2870353,2874359,2874368,2874424,2874466,2874494,2874495,2874531,2874536,2874561,2874584,2874609,2874629,2877782,2877803,2877811,2877849,2877869,2877875,2878809,2878814,2878840,2878850,2878884,2878888,2881406,2881451,2881489,2881525,2881547,2881576,2891814,2892066,2892622,2901338,2901486,2901940,2902404,2902839,2903278,2903723,2904073,2904495,2904893,2905245,2905379,2905851,2906142,2912716,2912804]},"uniswap-v3-core_d8b1c63":{"timeMs":17545.176352,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,2702,2715,2718,2731,2734,2747,2750,2753,2756,2759,2762,2765,2768,2771,2775,2784,2787,2790,2793,2796,2799,2802,2805,2808,2812,2821,2824,2827,2830,2833,2836,2839,2842,2845,2849,4326,4344,4353,4399,4424,4442,4481,4506,4524,4582,4602,4613,4633,4648,4650,4653,4659,4672,4697,4717,4730,4732,4735,4741,4754,4779,4893,4905,4913,4932,4947,4965,4977,4989,4995,5014,5029,5047,5636,5654,5666,5671,5682,5686,5694,5702,5706,5712,5715,5721,5725,5736,5737,5740,5750,5754,5755,5758,5766,5770,5778,5784,5788,5794,5797,5803,5807,5818,5819,5822,5832,5836,5837,5840,6152,6199,6214,6234,6243,6253,6268,6278,6286,6298,6316,6325,6335,6350,6360,6368,15803,15823,15836,15870,15904,15938,15972,16006,16040,16074,16108,16142,16176,16210,16244,16278,16312,16326,17482,17502,17515,17549,17583,17617,17651,17665,17699,17713,17747,17781,17815,17849,17883,17917,17931,17945,19493,19504,19525,19542,19559,19593,19610,19629,19663,19680,19697,19731,19748,19765,19799,19816,19833,19867,19884,19901,19918,19935,19969,20000,21199,21209,21224,21229,21245,21279,21297,21313,21347,21365,21381,21413,21429,21461,21477,21511,21529,21545,21579,21611,21627,21645,21661,22855,22860,22866,22873,22887,22904,22907,22921,22935,22952,22955,22969,22983,23000,23003,23017,23031,23048,23051,23065,23079,23096,23099,23113,23127,23144,23147,23158,23161,23175,23189,23209,23223,23240,23243]}} diff --git a/crates/tools/python/ejs-benchmark/5.json b/crates/tools/python/ejs-benchmark/5.json deleted file mode 100644 index 9fdb7968f6..0000000000 --- a/crates/tools/python/ejs-benchmark/5.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":404813.12966000004,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31091,31127,31158,31166,31184,31192,31201,31211,31220,31229,31234,31239,31853,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":72042.657563,"failures":[39,75,110,172,183,187,189,193,195,199,201,243,350,632,646,655,664,673,687,696,705,717,726,735,748,760,773,786,799,813,825,837,849,858,874,883,896,908,920,935,952,962,974,987,1003,1018,1028,1039,1051,1064,1075,1088,1099,1112,1121,1146,1157,1170,1181,1194,1203,1228,1239,1252,1263,1276,1291,1302,1313,1324,1335,1346,1711,1715,1783,1870,1885,1888,1894,1909,1912,1918,1933,1936,1957,1974,1989,2063,2073,2104,2114,2123,2133,2143,2153,2192,2204,2216,2228,2265,2284,2290,2303,2332,2396,2408,2414,2420,2432,2438,2444,2457,2463,2469,2482,2488,2494,2506,2524,2530,2536,2548,2554,2560,2573,2579,2585,2598,2604,2610,2622,2640,2646,2652,2664,2670,2676,2689,2695,2701,2714,2720,2726,2738,2756,2768,2781,2794,2800,2812,2818,2831,2837,2850,2856,2947,2959,2965,2971,2983,2989,2995,3008,3014,3020,3033,3039,3045,3057,3075,3081,3087,3099,3105,3111,3124,3130,3136,3149,3155,3161,3173,3191,3197,3203,3215,3221,3227,3240,3246,3252,3265,3271,3277,3289,3307,3319,3332,3345,3351,3363,3369,3382,3388,3401,3407,3498,3510,3516,3522,3534,3540,3546,3559,3565,3571,3584,3590,3596,3608,3626,3632,3638,3650,3656,3662,3675,3681,3687,3700,3706,3712,3724,3742,3748,3754,3766,3772,3778,3791,3797,3803,3816,3822,3828,3840,3858,3870,3883,3896,3902,3914,3920,3933,3939,3952,3958,4037,4049,4055,4061,4073,4079,4085,4098,4104,4110,4123,4129,4135,4147,4165,4171,4177,4189,4195,4201,4214,4220,4226,4239,4245,4251,4263,4281,4287,4293,4305,4311,4317,4330,4336,4342,4355,4361,4367,4379,4397,4409,4422,4435,4441,4453,4459,4472,4478,4491,4497,4548,4558,4567,4577,4586,4596,4629,4641,4647,4653,4665,4671,4677,4690,4696,4702,4715,4721,4727,4739,4757,4763,4769,4781,4787,4793,4806,4812,4818,4831,4837,4843,4855,4873,4879,4885,4897,4903,4909,4922,4928,4934,4947,4953,4959,4971,4989,5001,5014,5027,5033,5045,5051,5064,5070,5083,5089,5140,5150,5159,5169,5178,5188,5269,5289,5292,5298,5318,5321,5327,5348,5351,5357,5378,5381,5387,5407,5430,5450,5471,5492,5498,5518,5524,5545,5551,5572,5578,5701,5713,5716,5722,5734,5737,5743,5756,5759,5765,5778,5781,5787,5799,5814,5826,5839,5852,5858,5870,5876,5889,5895,5908,5914,6010,6022,6025,6031,6043,6046,6052,6065,6068,6074,6087,6090,6096,6108,6123,6135,6148,6161,6167,6179,6185,6198,6204,6217,6223,6347,6368,6371,6377,6398,6401,6407,6429,6432,6438,6460,6463,6469,6490,6514,6535,6557,6579,6585,6606,6612,6634,6640,6662,6668,6764,6793,6800,6822,6852,6882,6910,6918,6941,6949,6972,7002,7030,7038,7061,7069,7164,7188,7191,7197,7221,7224,7230,7255,7258,7264,7289,7292,7298,7322,7349,7373,7398,7423,7429,7453,7459,7484,7490,7515,7521,7629,7653,7795,7813,7816,7822,7840,7843,7849,7868,7871,7877,7896,7899,7905,7923,7944,7962,7981,8000,8006,8024,8030,8049,8055,8074,8080,8167,8201,8207,8214,8232,8244,8249,8261,8265,8277,8292,8309,8346,8367,8389,8410,8431,8470,8485,8490,8509,8517,8549,8554,8641,8662,8665,8692,8695,8701,8723,8726,8732,8754,8757,8784,8808,8829,8852,8858,8879,8885,8907,8913,8935,8941,9031,9037,9054,9060,9081,9087,9116,9134,9140,9153,9159,9172,9178,9191,9197,9209,9215,9228,9234,9473,9477,9478,9479,9482,9484,9485,9486,9488,9489,9492,9493,9496,9497,9500,9501,9504,9505,9508,9509,9512,9513,9516,9517,9520,9521,9524,9525,9528,9529,9532,9533,9536,9537,9540,9541,9544,9545,9548,9549,9552,9553,9556,9557,9560,9561,9564,9565,9568,9569,9572,9573,9576,9577,9580,9581,9584,9585,9588,9589,9592,9593,9596,9597,9600,9601,9604,9605,9608,9609,9612,9613,9616,9617,9620,9621,9624,9625,9628,9629,9632,9633,9636,9637,9640,9641,9644,9645,9648,9649,9652,9653,9656,9657,9660,9661,9664,9665,9668,9669,9672,9673,9676,9677,9680,9681,9684,9685,9688,9689,9692,9693,9696,9697,9700,9701,9704,9705,9708,9709,9712,9713,9716,9717,9720,9721,9724,9725,9728,9729,9732,9733,9736,9737,9741,9750,9752,9761,9763,9772,9774,9783,9785,9794,9796,9805,9807,9816,9818,9827,9829,9838,9840,9849,9851,9860,9862,9871,9873,9882,9884,9893,9895,9904,9906,9915,9917,9926,9928,9937,9939,9948,9950,9959,9961,9970,9972,9981,9983,9992,9994,10003,10005,10014,10016,10025,10027,10036,10038,10047,10049,10058,10060,10069,10071,10080,10082,10091,10093,10102,10104,10113,10115,10124,10126,10135,10137,10146,10148,10157,10159,10168,10170,10179,10181,10190,10192,10201,10203,10212,10214,10223,10225,10234,10236,10245,10247,10256,10258,10267,10269,10278,10280,10289,10291,10300,10302,10311,10313,10322,10324,10333,10335,10344,10346,10355,10357,10366,10368,10377,10379,10388,10390,10399,10401,10410,10412,10421,10423,10432,10434,10443,10445,10464,10466,10469,10470,10473,10474,10477,10478,10481,10482,10485,10486,10489,10490,10493,10494,10497,10498,10501,10502,10505,10506,10509,10510,10513,10514,10517,10518,10521,10522,10525,10526,10529,10530,10533,10534,10537,10538,10541,10542,10545,10546,10549,10550,10553,10554,10557,10558,10561,10562,10565,10566,10569,10570,10573,10574,10577,10578,10581,10582,10585,10586,10589,10590,10593,10594,10597,10598,10601,10602,10605,10606,10609,10610,10613,10614,10617,10618,10621,10622,10625,10626,10629,10630,10633,10634,10637,10638,10641,10642,10645,10646,10649,10650,10653,10654,10657,10658,10661,10662,10665,10666,10669,10670,10673,10674,10677,10678,10681,10682,10685,10686,10689,10690,10693,10694,10697,10698,10701,10702,10705,10706,10709,10710,10713,10714,10717,10718,10721,10724,10726,10727,10728,10730,10731,10732,10734,10735,10736,10738,10739,10740,10742,10743,10744,10746,10747,10748,10750,10751,10752,10754,10755,10756,10758,10759,10760,10762,10763,10764,10766,10767,10768,10770,10771,10772,10774,10775,10776,10778,10779,10780,10782,10783,10784,10786,10787,10788,10790,10791,10792,10794,10795,10796,10798,10799,10800,10802,10803,10804,10806,10807,10808,10810,10811,10812,10814,10815,10816,10818,10819,10820,10822,10823,10824,10826,10827,10828,10830,10831,10832,10834,10835,10836,10838,10839,10840,10842,10843,10844,10846,10847,10848,10850,10851,10852,10854,10855,10856,10858,10859,10860,10862,10863,10864,10866,10867,10868,10870,10871,10872,10874,10875,10876,10878,10879,10880,10882,10883,10884,10886,10887,10888,10890,10891,10892,10894,10895,10896,10898,10899,10900,10902,10903,10904,10906,10907,10908,10910,10911,10912,10914,10915,10916,10918,10919,10920,10922,10923,10924,10926,10927,10928,10930,10931,10932,10934,10935,10936,10938,10939,10940,10942,10943,10944,10946,10947,10948,10950,10951,10952,10954,10955,10956,10958,10959,10960,10962,10963,10964,10966,10967,10968,10970,10971,10972,10974,10975,10976,10978,10979,10983,10998,11000,11014,11016,11030,11032,11046,11048,11062,11064,11078,11080,11094,11096,11110,11112,11126,11128,11142,11144,11158,11160,11174,11176,11190,11192,11206,11208,11222,11224,11238,11240,11254,11256,11270,11272,11286,11288,11302,11304,11318,11320,11334,11336,11350,11352,11366,11368,11382,11384,11398,11400,11414,11416,11430,11432,11446,11448,11462,11464,11478,11480,11494,11496,11510,11512,11526,11528,11542,11544,11558,11560,11574,11576,11590,11592,11606,11608,11622,11624,11638,11640,11654,11656,11670,11672,11686,11688,11702,11704,11718,11720,11734,11736,11750,11752,11766,11768,11782,11784,11798,11800,11814,11816,11830,11832,11846,11848,11862,11864,11878,11880,11894,11896,11910,11912,11926,11928,11942,11944,11958,11960,11974,11976,11990,11992,12006,12008,12031,12034,12035,12038,12039,12042,12043,12046,12047,12050,12051,12054,12055,12058,12059,12062,12063,12066,12067,12070,12071,12074,12075,12078,12079,12082,12083,12086,12087,12090,12091,12094,12095,12098,12099,12102,12103,12106,12107,12110,12111,12114,12115,12118,12119,12122,12123,12126,12127,12130,12131,12134,12135,12138,12139,12142,12143,12146,12147,12150,12151,12154,12155,12158,12159,12162,12163,12166,12167,12170,12171,12174,12175,12178,12179,12182,12183,12186,12187,12190,12191,12194,12195,12198,12199,12202,12203,12206,12207,12210,12211,12214,12215,12218,12219,12222,12223,12226,12227,12230,12231,12234,12235,12238,12239,12242,12243,12246,12247,12250,12251,12254,12255,12258,12259,12262,12263,12266,12267,12270,12271,12274,12275,12278,12279,12282,12283,12286,12306,12584,12595,12606,12617,12628,12639,12650,12661,12672,12683,12694,12705,12716,12727,12738,12749,12760,12771,12782,12793,12804,12815,12826,12837,12848,12859,12870,12881,12892,12903,12914,12925,12936,12947,12958,12969,12980,12991,13002,13013,13024,13035,13046,13057,13068,13079,13090,13101,13112,13123,13134,13145,13156,13167,13178,13189,13200,13211,13222,13233,13244,13255,13266,13277,13300,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13372,13376,13380,13384,13388,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476,13480,13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13558,13562,13566,13570,13574,13578,13582,13586,13590,13594,13598,13602,13606,13610,13614,13618,13622,13626,13630,13634,13638,13642,13646,13650,13654,13658,13662,13666,13670,13674,13678,13682,13686,13690,13694,13698,13702,13706,13710,13714,13718,13722,13726,13730,13734,13738,13742,13746,13750,13754,13758,13762,13766,13770,13774,13778,13782,13786,13790,13794,13798,13802,13806,13810,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14865,14869,14873,14877,14881,14885,14889,14893,14897,14901,14905,14909,14913,14917,14921,14925,14929,14933,14937,14941,14945,14949,14953,14957,14961,14965,14969,14973,14977,14981,14985,14989,14993,14997,15001,15005,15009,15013,15017,15021,15025,15029,15033,15037,15041,15045,15049,15053,15057,15061,15065,15069,15073,15077,15081,15085,15089,15093,15097,15101,15105,15109,15113,15117,15132,15947,16002,16021,16042,16048,16094,16103,16127,16136,16177,16187,16200,16213,16229,16242,16248,16262,16275,16288,16301,16307,16317,16323,16333,16339,16356,16360,16369,16373,16382,16388,16392,16401,16407,16427,16437,16447,16457,16463,16477,16483,16515,16525,16538,16544,16554,16560,16665,16671,16684,16690,16703,16709,16719,16725,16780,17718,17728,17811,17828,17838,17857,17867,17877,17887,17897,17907,17957,17973,17986,18000,18012,18022,18032,18042,18057,18071,18126,18238,18309,18328,18492,18496,18497,18502,18503,18508,18509,18514,18515,18531,18546,18572,18585,18589,18603,18609,18631,18711,18759,18815,18830,18839,18887,19111,19132,19160,19198,19354,19390,19441,19474,19547,19558,19683,19733,19785,19791,19806,19812,19827,19833,19850,19856,19919,19925,19945,19951,19957,19966,19972,19978,19994,20000,20006,20032,20038,20044,20140,20146,20163,20169,20186,20192,20200,20219,20225,20236,20252,20258,20270,20276,20287,20303,20309,20320,20336,20342,20362,20368,20374,20380,20393,20404,20431,20437,20469,20475,20486,20492,20517,20523,20529,20553,20559,20580,20656,20781,20870,20888,20926,20973,20996,21048,21063,21072,21088,21094,21107,21113,21125,21131,21142,21148,21162,21168,21185,21191,21197,21243,21249,21264,21270,21286,21292,21298,21304,21330,21336,21342,21377,21383,21389,21411,21507,21537,21620,21646,21754,21793,21816,21852,21910,21982,21997,22006,22024,22030,22036,22048,22054,22068,22074,22086,22092,22107,22113,22119,22133,22139,22145,22159,22165,22181,22187,22206,22212,22241,22247,22253,22280,22286,22292,22315,22339,22345,22351,22405,22537,22585,22591,22602,22608,22622,22628,22647,22653,22883,22898,22914,22931,22956,22977,22993,24625,24630,24637,24644,24651,24656,24663,24670,24677,24682,24689,24696,24703,24710,24717,24724,24731,24738,24745,24750,24757,24764,24771,24778,24785,24792,24955,24959,24967,24976,24980,24988,24996,25004,25008,25012,25023,25026,25048,25053,25086,25135,25144,25149,25157,25164,25172,25179,25187,25194,25202,25207,25215,25222,25230,25237,25245,25252,25260,25265,25273,25280,25288,25295,25303,25310,25318,25325,25333,25340,25348,25355,25363,25370,25378,25385,25393,25400,25408,25413,25421,25428,25436,25443,25451,25458,25466,25473,25481,25488,25496,25503,25511,25516,25527,25538,25549,25561,25579,25597,25615,25633,25651,25669,25685,25701,25721,25741,25769,25798,25834,25871,25887,25903,25915,25931,25945,25961,25976,25992,26010,26026,26044,26060,26077,26093,26110,26126,26370,26373,26406,26461,29526,49565,49763,49961,50017,50021,50025,50029,60479,60483,60487,60669]},"rocketpool_6a9dbfd8":{"timeMs":154729.572713,"failures":[2253,2256,2280,2284,2719,2722,2758,2829,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,6508,6620,6704,6736,6748,6828,6869,6882,6912,6916,6954,6967,7008,7013,7065,7073,7090,7105,7330,7372,7446,7503,7538,7553,7594,7599,7612,7641,7702,7705,7749,7770,7809,8334,8370,8415,8483,8487,8498,8553,8627,8632,8645,8712,8739,8764,8808,8819,8850,8893,9338,9372,9419,9489,9502,9544,9559,9635,9639,9705,9721,9749,9764,9828,9839,9840,10358,10400,10449,10521,10579,10582,10620,10625,11171,11215,11267,11314,11362,11394,11403,11438,11466,12017,12039,12158,12196,12337,12389,12454,12478,12532,12550,13065,13101,13198,13288,13318,13323,13338,13373,13440,13467,13979,14031,14259,14291,14390,14494,14512,14521,14567,14612,14638,14651,14676,14694,14758,14775,15370,15426,15463,15543,15722,15814,15889,15891,15937,15974,16464,16536,16665,16687,16705,16727,16759,16780,16916,16935,16938,17464,17554,17631,17675,17743,17748,17833,17854,17891,17908,17916,17957,18614,18666,18760,18796,18842,18845,18888,18904,18915,18981,19066,19084,19138,19737,19825,19879,19919,19939,19970,19987,20001,20006,20085,20086,20147,20777,20871,20943,20959,21049,21050,21065,21066,21081,21112,21179,21209,21762,21763,21782,21793,22085,22777,22839,23073,23075,23599,24154,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,27837,28420,28421,28932,28975,29355,29458,29786,29805,30179,30201,30245,30323,30341,30344,30405,30408,30431,30449,30870,30916,30983,30999,31019,31030,31053,31056,31114,31116,31279,31313,31355,31373,31398,31447,31453,31469,31490,31535,31539,31697,31740,32061,32409,32434,32493,32828,32829,33151,33168,33430,33804,33823,34103,34146,34440,34481,34789,34790,35078,35134,35262,35298,36252,36279,36280,36355,36460,36556,36574,36592,36605,36787,37139,37209,38091,38345,38364,38392,38393,38713,38804,38805,38889,39062,39087,39088,39332,39361,39540,39541,39803,39814,39823,39832,39973,39982,40656,40681,40941,41056,41080,41083,41379,41388,41420,41559,41658,41841,41850,41869,41994,42128,42293,42610,42627,42628,42950,43005,43066,43089,43090,43314,43533,43542,43567,43578,43794,43811,43999,44021,44146,44402,44663,44666,44739,45094,45114,45931,45948,46954,46976,46994,47411,47702,47721,47739,48401,48419,48551,48573,48592,48668,48878,48901,48987,49009,49034,49052,49067,49084,49684,49778,49779,50086,50535,50794,50825,51013,51062,51287,51432,51479,51814,52049,52050,52165,52286,52325,52542,52557,53176,53266,53454,53494,53541,53900,53947,53948,54578,54610,54611,54805,54806,55125,55132,55759,55768,55777,55788,55864,55966,56003,56023,56038,56052,56254,56271,56296,56321,58033,58044,58045,58634,58666,58693,59774,59811,60874,60910,61082,61653,61804,61823,61829,61830,62323,62324,62465,63029,63032,63189,63206,63716,63752,64440,64441,64562,65060,65186,65187,65852,66353,66354,66491,66509,66656,67551,67558,67689,67690,68367,68368,68883,69047,69048,69726,70392,70430,71134,71314,71824,72510,72650,72677,73195,73222,74038,74039,74182,74183,74674,74696,74706,75363,75404,75427,75580,75955,75956,75961,75967,75968,75973,75974,75995,76009,76193,76852,76872,76892,77989,78007,78029,78683,78729,79254,79295,79826,79872,79933,79934,80621,80624,81107,81291,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,85051,85069,85137,85160,85766,85786,85804,85829,86279,86297,86315,86338,87514,87588,87606,87633,88239,88261,88307,88330,88736,88754,88772,88795,89922,89931,89940,90026,90052,90071,90145,90167,90714,90732,90769,90786,90905,90929,92169,93185,93388,93412,93574,94726,95864,95873,95882,95958,95982,96011,96029,96049,96067,96086,96104,96118,96142,96172,96190,96208,96696,102590,102613,102622,102633,102709,102731,103429,103461,103567,103597,103631,103649,103663,103695,103727,103755,104137,104171,104307,104328,104329,105077,105088,105226,105264,105648,105649,105678,105679,105812,105838,105839,106586,106588,106714,106816,107166,107242,107268,107315,107329,107351,107356,107373,107379,107396,107406,108040,108047,108074,108102,108319,108767,108799,108847,108875,108898,108901,109655,109672,109683,109702,109796,109826,110191,110348,110472,110496,110537,110554,110572,111275,111397,111437,111509,111512,111883,111969,112017,112020,112085,112123,112171,112180,112223,112271,112893,112902,113138,113139,113713,113741,113761,113795,114493,114516,114525,114534,114608,114630,114810,114872,115366,115412,115454,115468,115500,115533,115565,115615,116200,116246,116375,116482,116483,117037,117040,117231,117265,117305,117318,117671,117775,118052,118076,118077,118497,118648,118869,118977,119027,119638,119686,119725,119735,119757,119761,119777,119781,119797,119827,119910,119923,119950,120004,120634,120738,121344,121423,121445,121466,121469,122089,122148,122178,122207,122218,122334,122386,122533,123490,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,127450,128010,128019,128050,128562,129710,130110,130323,130354,130382,130383,130985,131359,131370,131393,131412,131490,131503,131504,132005,132006,132188,132204,132205,133245,133269,133337,133338,133389,133390,133889,133900,134041,134052,134110,134112,134744,134745,135246,135259,135685,135952,135953,136386,136396,136397,136597,137590,137631,137779,137790,137866,137890,138932,139727,139728,139798,140204,140260,140859,140899,140900,140995,141019,141433,141436,141723,141748,141769,142740,142746,142819,142877,142915,143596,143597,143981,144157,144654,144792,144814,145450,146514,146521,146617,146715,147353,147393,147394,147880,147881,148605,148616,148626,148704,148728,149453,149482,149483,150509,150510,150713,150779,152548,152654,152712,154580,154630,155766,156612,156621,156630,157786,157808,157833,157851,157869,157884,158463,158600,158680,164880,165031,165180,165181,167481,167529,167571,167614,167615,167640,167641,167665,167701,167732,167762,167763,167787,167808,167809,168149,168811,169401,169463,169565,169583,169777,169797,171747,171767,171903,171933,173683,173720,174017,174037,175592,175771,175789,175926,176013,177671,177685,177696,177705,177730,177745,177756,177767,177776,177862,177884,178068,178092,178132,178146,179860,179952,180096,181779,181780,182118,183873,183874,184091,184105,184119,185979,185993,186220,186498,186499,188290,188308,188323,188340,188388,188576,188604,188852,190204,190238,190272,190372,190402,190712,190732,192087,192248,192294,192436,192741,192759,192778,193125,194286,194326,194346,194347,194721,194743,194758,194777,194818,196292,196334,196374,196492,196530,196688,196716,196717,196741,196742,196772,196773,196799,196804,198498,198516,198539,198556,198593,198797,198839,200187,200231,200297,200325,200415,200755,200773,200788,201693,202092,202138,202212,202309,202354,202390,202558,202591,204047,204129,204146,204172,204212,204254,204422,204423,205811,205831,205908,205933,205980,206022,206894,207382,207432,207883,207901,207916,207933,208043,208721,209261,209283,209364,209476,209514,209530,209548,209551,209564,209567,209702,209708,209722,209728,209739,211149,211179,211194,211223,211258,211406,211450,211522,212482,212540,212618,212652,212790,212840,212985,213018,213068,213274,214094,214130,214250,214350,214402,214444,214576,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":6927.757944,"failures":[195,271,281,306,316,324,338,351,361,367,465,480,486,496,503,505,510,512,517,523,534,554,576,598,605,629,632,643,647,649,651,661,665,667,670,673,674,675,676,687,690,692,695,698,699,700,701,709,713,716,724,728,731,739,743,746,748,756,767,770,772,784,799,814,819,872,898,906,1242,1250,1258,1266,1280,1288,1296,1304,1318,1329,1337,1343,1351,1357,1365,1371,1379,1385,1393,1399,1407,1413,1421,1427,1435,1443,1491,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1586,1598,1620,1621,1623,1639,1642,1647,1652,1657,1662,1667,1672,1677,1682,1692,1710,1718,1728,1741,1753,1761,1772,1780,1785,1822,1836,1841,1846,1879,1885,1887,1907,1919,1939,1959,1987,2023,2043,2049,2055,2076,2097,2117,2145,2181,2196,2203,2210,2232,2260,2289,2324,2339,2345,2351,2358,2384,2412,2448,2511,2544,2550,2556,2563,2590,2619,2656,2721,2758,2762,2766,2769,2801,2806,2815,2816,2818,2825,2831,2838,2842,2847,2852,2858,2861,2862,2864,2871,2877,2886,2894,2898,2905,2908,2909,2914,2917,2919,2923,2934,2935,2937,2969,2986,2988,2992,2993,3020,3047,3052,3064,3071,3076,3108,3119,3125,3156,3178,3179,3189,3192,3194,3195,3257,3261,3265,3275,3277,3284,3287,3311,3359,3366,3455,3456,3458,3479,3489,3490,3492,3498,3535,3571,3572,3595,3610,3643,3657,3677,3716,3777,3784,3829,3838,3848,3863,3874,3891,3931,3937,3982,3991,4006,4017,4029,4035,4061,4072,4075,4077,4091,4095,4099,4103,4114,4122,4130,4134,4138,4142,4147,4155,4162,4171,4175,4179,4183,4279,4294,4297,4299,4317,4321,4328,4332,4334,4338,4348,4356,4419,4423,4428,4432,4436,4438,4442,4452,4459,4525,4529,4534,4538,4543,4545,4549,4554,4558,4562,4571,4578,4657,4662,4668,4669,4673,4677,4681,4685,4687,4691,4697,4705,4711,4740,4744,4772,4778,4813,4824,4839,4842,4844,4935,4937,4938,4940,4943,4945,4947,4994,5006,5014,5031,5059,5134,5152,5174,5248,5267]},"seaport_4f4e7c20":{"timeMs":33584.888394,"failures":[263,272,283,292,303,328,352,361,372,381,392,417,441,450,461,470,481,506,530,539,550,559,570,595,621,630,641,650,661,684,691,711,720,731,740,751,776,800,809,820,829,840,865,889,898,909,918,936,947,972,1000,1010,1021,1030,1057,1083,1092,1103,1112,1123,1144,1156,1165,1176,1185,1196,1217,1229,1238,1249,1258,1269,1290,1302,1311,1322,1331,1341,1362,1374,1383,1394,1403,1414,1435,1447,1454,1465,1474,1485,1506,1518,1527,1538,1547,1558,1579,1591,1600,1611,1620,1631,1652,1664,1673,1684,1693,1704,1725,1737,1746,1757,1766,1777,1798,1810,1819,1830,1839,1850,1871,1883,1892,1903,1912,1923,1944,1956,1965,1976,1985,1996,2005,2015,2036,2048,2057,2068,2077,2088,2111,2118,2130,2139,2148,2157,2168,2177,2188,2209,2221,2230,2241,2250,2261,2282,2294,2303,2314,2323,2334,2355,2367,2376,2387,2396,2407,2428,2440,2449,2460,2471,2492,2504,2513,2524,2533,2544,2573,2585,2594,2605,2616,2637,2649,2658,2669,2678,2689,2710,2722,2731,2740,2749,2758,2767,2785,2876,2897,2918,2942,2951,2960,2969,2978,2987,2996,3005,3016,3025,3036,3045,3056,3065,3076,3085,3096,3117,3136,3157,3174,3186,3195,3224,3257,3290,3320,3329,3358,3391,3424,3454,3463,3494,3521,3548,3572,3581,3590,3599,3624,3647,3661,3670,3679,3688,3713,3736,3748,3755,3762,3773,3802,3832,3841,3868,3896,3903,3910,3919,3948,3978,3985,3992,4001,4030,4050,4059,4088,4108,4115,4122,4131,4160,4180,4187,4194,4203,4212,4221,4246,4274,4283,4292,4301,4324,4352,4361,4368,4377,4402,4430,4439,4448,4457,4466,4475,4503,4529,4538,4547,4556,4565,4574,4603,4629,4638,4657,4669,4678,4711,4739,4748,4781,4809,4818,4851,4879,4888,4917,4947,4956,4965,4974,4985,5014,5050,5059,5090,5114,5123,5132,5141,5150,5159,5198,5224,5233,5242,5251,5290,5314,5323,5332,5341,5377,5389,5398,5407,5416,5457,5481,5490,5499,5508,5549,5573,5582,5591,5600,5641,5665,5672,5681,5710,5732,5739,5746,5755,5784,5808,5815,5822,5831,5860,5884,5891,5898,5907,5936,5960,5967,5974,5983,6012,6036,6043,6052,6081,6103,6112,6141,6161,6170,6199,6219,6226,6235,6246,6275,6287,6296,6305,6312,6321,6350,6362,6371,6380,6387,6394,6403,6432,6446,6455,6482,6514,6523,6550,6582,6591,6616,6644,6653,6698,6736,6745,6790,6823,6832,6877,6915,6926,6971,7009,7018,7063,7101,7110,7149,7177,7186,7221,7249,7258,7297,7324,7355,7383,7392,7431,7458,7489,7517,7526,7535,7542,7549,7558,7595,7623,7632,7659,7675,7684,7711,7966,7975,8002,8034,8043,8070,8102,8111,8138,8170,8179,8206,8238,8247,8272,8369,8378,8401,8429,8438,8461,8487,8496,8528,8556,8565,8582,8597,8625,8634,8657,8682,8691,8708,8723,8751,8760,8783,8811,8820,8837,8852,8880,8889,8922,8960,8969,8995,9027,9036,9063,9093,9102,9131,9163,9172,9189,9208,9240,9249,9276,9308,9317,9344,9376,9385,9412,9434,9443,9470,9492,9501,9528,9550,9559,9568,9577,9606,9644,9653,9660,9669,9698,9736,9745,9752,9761,9790,9828,9837,9844,9853,9882,9918,9927,9936,9945,9974,10012,10019,10037,10046,10074,10112,10119,10128,10137,10146,10186,10229,10238,10247,10256,10275,10286,10303,10341,10350,10357,10366,10395,10423,10432,10439,10448,10477,10503,10512,10521,10530,10541,10570,10606,10615,10624,10633,10644,10673,10709,10718,10727,10736,10747,10775,10811,10820,10829,10838,10849,10878,10914,10923,10932,10941,10970,11006,11015,11024,11033,11058,11086,11095,11104,11113,11140,11172,11181,11190,11199,11228,11264,11273,11282,11291,11418,11650,11661,11670,11679,11708,11744,11753,11762,11771,11800,11826,11835,11844,11853,11882,11908,11917,11926,11935,11964,11992,12001,12028,12056,12065,12092,12120,12129,12156,12184,12193,12220,12248,12257,12286,12306,12315,12344,12364,12373,12382,12391,12416,12450,12459,12468,12477,12504,12538,12547,12556,12565,12592,12626,12635,12644,12653,12680,12714,12723,12732,12741,12770,12796,12805,12814,12823,12852,12878,12887,12896,12905,12916,12943,12977,12986,12995,13004,13015,13042,13076,13085,13094,13103,13130,13164,13173,13182,13191,13218,13252,13261,13270,13279,13308,13334,13343,13352,13361,13389,13575,13651,13658,13665,13672,13679,13688,13697,13709,13718,13725,13738,13747,13763,13770,13781,13792,13803,13812,13830,13837,13848,13857,13866,13877,13893,13900,13911,13920,13929,13940,13960,13967,13976,13985,13994,14003,14012,14021,14043,14052,14061,14070,14081,14090,14099,14128,14157,15903,16143,16150,16157,16166,16175,16187,16194,16201,16210,16219,16231,16238,16252,16258,16265,16272,16279,16286,16293,16300,16309,16318,16332,16339,16346,16360,16367,16374,16381,16388,16395,16402,16409,16416,16423,16430,16437,16446,16455,16469,16476,16483,16490,16497,16504,16513,16520,16527,16534,16541,16550,16559,16568,16579,16590,16599,16631,16638,16645,16652,16661,16672,16701,16713,16727,16739,16751,16809,16820,16831,16836,16846,16857,16868,16884,16893,16905,16917,16929,16948,16955,16962,16971,16980,16987,16992,16999,17008,17015,17024,17031,17038,17250,17257,17321,17335,17344,17365,17374,17402,17448,17457,17464,17473,17480,17496,17505,17526,17535,17544,17601,17610,17627,17641,17650,17667,17676,17685,17701,17710,17727,17736,17747,17756,17772,17781,17798,17816,17832,17841,17860,17869,17878,17887,17903,17912,17931,17940,17949,17990,18006,18015,18036,18049,18076,18108,18117,18136,18147,18160,18187,18219,18228,18247,18258,18271,18298,18552,18855,19087,19749,19758,19767,19814,19823,19844,19861,19891,19900,19921,19937,19967,19976,20005,20030,20042,20051,20080,20105,20119,20130,20147,20163,20172,20183,20209,20223,20232,20251,20265,20274,20293,20307,20316,20337,20349,20358,20379,20391,20400,20421,20433,20442,20463,20477,20486,20513,20520,20542,20551,20570,20578,20595,20625,20634,20643,20652,20671,20685,20692,20701,20719,20738,20752,20759,20768,20777,20786,20807,20830,20839,20856,20863,20877,20886,20903,20910,20917,20931,20940,20965,20972,20979,20988,21010,21019,21044,21053,21075,21084,21109,21123,21132,21157,21169,21176,21185,21212,21224,21231,21240,21267,21279,21286,21295,21332,21344,21351,21360,21397,21409,21416,21425,21462,21474,21481,21490,21527,21539,21548,21585,21597,21606,21643,21655,21664,21701,21713,21722,21759,21771,21778,21787,21814,21828,21837,21862,21874,21883,21902,21916,21925,21950,21964,21973,21990,22002,22011,22030,22042,22051,22070,22084,22093,22110,22124,22133,22150,22164,22173,22190,22202,22211,22267,22290,22302,22309,22316,22325,22344,22351,22358,22375,22405,22412,22421,22432,22451,22458,22473,22503,22510,22517,22526,22545,22559,22568,22577,22586,22595,22622,22636,22645,22654,22663,22672,22699,22706,22720,22729,22738,22747,22756,22783,22797,22808,22817,22826,22835,22861,22873,22880,22887,22896,22915,22932,22962,22969,22976,22985,23014,23026,23033,23040,23049,23068,23085,23117,23126,23143,23157,23166,23183,23197,23206,23223,23237,23246,23263,23277,23286,23303,23317,23326,23343,23357,23366,23383,23397,23406,23431,23445,23454,23479,23493,23502,23519,23536,23568,23577,23594,23601,23618,23668,23675,23682,23694,23703,23724,23733,23750,23782,23791,23816,23823,23830,23860,23880,23889,23896,23905,23916,23930,23948,23955,23975,23999,24013,24022,24029,24038,24049,24068,24080,24089,24098,24115,24126,24143,24179,24196,24208,24225,24243,24252,24261,24270,24284,24291,24300,24309,24318,24342,24354,24363,24372,24381,24400,24412,24421,24430,24439,24468,24480,24489,24498,24505,24524,24533,24542,24559,24595,24604,24613,24622,24641,24658,24689,24703,24712,24721,24730,24741,24760,24774,24783,24798,24834,24843,24852,24861,24872,24891,24908,24944,24951,24976,24988,24995,25020,25031,25042,25064,25073,25092,25114,25136,25158,25170,25179,25198,25210,25219,25238,25260,25272,25279,25304,25336,25352,25361,25378,25392,25401,25418,25427,25436,25458,25470,25482,25496,25505,25524,25533,25547,25556,25573,25582,25596,25605,25622,25631,25643,25652,25673,25682,25696,25705,25722,25731,25745,25754,25771,25780,25794,25803,25830,25839,25851,25860,25889,25898,25912,25921,25940,25949,25965,25974,25993,26002,26016,26025,26044,26053,26077,26101,26125,26149,26163,26199,26213,26249,26265,26272,26302,26318,26325,26352,26382,26389,26410,26426,26433,26454,26470,26477,26498,26514,26521,26538,26571,26585,26594,26601,26610,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34474,34483,34494,34503,34528,34558,34567,34578,34587,34612,34642,34651,34662,34671,34680,34754,34770,34779,34790,34799,34808,34817,34826,34835,34874,34887,34903,34912,34921,34937,34946,34957,34973,34982,35002,35018,35027,35034,35048,35057,35068,35077,35097,35098,35112,35121,35132,35146,35155,35166,35175,35194,35201,35215,35224,35235,35244,35270,35286,35300,35309,35320,35327,35341,35350,35361,35370,35387,35401,35410,35421,35430,35449,35463,35472,35483,35492,35501,35510,35519,35530,35548,35799,35808,35817,35841,35871,35880,35889,35914,35944,35953,35964,36007]},"synthetix_9a3a109f":{"timeMs":383959.110119,"failures":[12,13,18,19,24,25,30,31,36,37,42,43,48,49,54,55,60,61,66,67,72,73,78,79,84,85,90,91,96,97,102,103,108,109,114,115,120,121,139,140,145,146,151,152,237,266,1361,1362,1373,1374,1391,1392,1729,1908,2038,2042,2178,2208,2210,2211,2212,2297,2375,2376,2414,2415,2478,2483,2486,2496,2500,2501,2503,2505,2605,2610,2615,2622,2813,2814,2815,2865,2873,2956,2957,2959,2960,2979,2981,2984,2986,2997,2998,3006,3008,3013,3014,3019,3020,3027,3030,3037,3042,3050,3054,3063,3068,3079,3082,3091,3096,3106,3110,3119,3122,3128,3134,3144,3148,3157,3160,3167,3170,3179,3183,3191,3193,3201,3204,3211,3214,3246,3249,3260,3263,3270,3273,3280,3285,3294,3299,3306,3309,3314,3327,3334,3337,3356,3358,3366,3367,3376,3386,3396,3399,3408,3413,3422,3425,3432,3435,3442,3445,3465,3471,3478,3481,3491,3494,3504,3514,3557,3562,3573,3576,3585,3588,3593,3602,3611,3612,3631,3636,3643,3645,3651,3655,3663,3664,3671,3674,3681,3682,3689,3692,3699,3706,3716,3718,3725,3726,3735,3742,3751,3754,3763,3765,3771,3776,3783,3787,3808,3809,3814,3815,3820,3821,3826,3827,3832,3833,3838,3839,3844,3845,3850,3851,3856,3857,3862,3863,3868,3869,3874,3875,3880,3946,3956,3963,3968,3969,3974,3975,3980,3984,3992,3993,3998,3999,4006,4007,4023,4025,4031,4035,4041,4048,4067,4070,4075,4079,4087,4090,4095,4096,4101,4102,4108,4110,4115,4116,4121,4122,4127,4128,4141,4144,4154,4157,4165,4166,4171,4172,4225,4241,4254,4264,4273,4275,4283,4286,4316,4318,4328,4331,4337,4339,4346,4348,4354,4355,4362,4363,4368,4369,4376,4379,4388,4391,4398,4399,4404,4406,4414,4415,4420,4421,4426,4427,4432,4435,4442,4445,4452,4456,4464,4468,4478,4481,4488,4493,4534,4537,4548,4552,4557,4560,4569,4570,4579,4583,4591,4592,4601,4604,4611,4614,4621,4626,4633,4636,4645,4650,4655,4660,4669,4674,4679,4684,4689,4694,4701,4704,4713,4718,4724,4727,4749,4766,4781,4787,4838,4843,4854,4857,4862,4870,4879,4889,4897,4901,4913,4919,4928,4933,4942,4947,4958,4963,4972,4975,4982,4991,5000,5001,5020,5027,5032,5035,5043,5047,5052,5055,5062,5065,5072,5075,5082,5091,5100,5101,5135,5139,5147,5151,5163,5164,5170,5174,5179,5180,5185,5186,5191,5192,5197,5198,5203,5204,5209,5210,5215,5216,5221,5287,5303,5304,5309,5310,5315,5322,5327,5328,5335,5336,5343,5346,5353,5354,5361,5366,5406,5407,5412,5415,5420,5421,5426,5427,5432,5435,5440,5447,5454,5457,5466,5469,5476,5477,5482,5483,5554,5567,5578,5580,5589,5592,5600,5603,5612,5617,5624,5627,5634,5637,5648,5651,5656,5660,5666,5668,5691,5694,5701,5702,5707,5709,5715,5720,5729,5734,5741,5748,5757,5764,5773,5780,5791,5796,5803,5808,5817,5822,5833,5836,5854,5862,5869,5874,5883,5887,5897,5901,5909,5914,5925,5928,5935,5940,5947,5954,6024,6045,6056,6066,6074,6128,6164,6202,6226,6278,6292,6321,6344,6358,6535,6605,6669,6759,7090,7135,7247,7473,7498,7529,7546,7563,7636,7649,7720,7743,7760,7766,7788,7790,7815,7832,7849,7855,8039,8078,8107,8111,8173,8194,8411,8423,8430,8490,8547,8698,8700,8701,8708,9092,9169,9177,9182,9763,9791,9816,9821,9831,9834,10134,10139,10141,10146,10152,11003,11115,11800,11927,11933,11947,11952,12038,12548,12554,13307,13338,13348,13353,13396,13443,13955,13961,14584,14607,14910,14920,15159,15165,15372,15828,16113,16177,16658,16694,16797,17007,17023,17029,17030,17288,17304,17529,17537,17538,18166,18308,18309,18879,18907,18924,19049,19051,19052,19282,19312,19325,19330,19341,19417,19441,19448,19458,19464,19473,19478,19487,19491,19499,19500,19505,19506,19511,19512,19517,19519,19531,19578,19586,19591,19597,19598,19603,19604,19609,19614,19627,19632,19645,19652,19665,19671,19681,19686,19697,19702,20329,20447,20525,20562,21169,21389,21396,21586,21704,21748,22290,22692,23389,23714,23720,23726,24342,24688,25014,25399,25475,25546,26360,26384,26400,26401,28336,28353,28359,29615,29621,30355,31566,31754,31770,31771,33580,33586,35769,35793,36140,36204,37021,37554,38292,38783,39456,39483,39901,40687,41352,41853,41859,42895,43065,43071,43571,44078,44121,44139,45383,45396,45399,45434,45447,45449,45486,45499,45505,45506,45511,45512,45517,45518,45523,45524,45529,45530,45535,45536,45541,45542,45547,45548,45553,45554,45559,45560,45565,45566,45571,45612,46503,46504,46528,46530,46535,46536,46541,46542,46547,46548,46553,46554,46559,46560,46565,46637,49961,49973,49978,59592,61615,64104,66412,69197,71535,73603,75493,77617,79784,82276,84850,87244,89788,92341,95111,97739,100571,103834,106740,110018,113263,113508,113509,113515,113662,113663,113664,113665,113666,113667,113668,113669,113670,113671,113672,113673,113674,113675,113676,113677,113678,113679,113680,113681,113682,113683,113684,113685,113686,113687,113688,113689,113690,115629,115790,115805,115843,115886,115894,115895,115900,115901,115906,116047,116102,116103,116108,116242,116414,116415,116422,116423,116428,116437,116442,116443,116448,116449,116504,116505,116510,116511,116540,116541,116547,116549,116554,116559,116564,116565,116570,116571,116576,116577,117026,117027,117065,117698,118168,118181,118194,118611,118612,118613,118614,118615,118616,118617,118618,118619,118620,118621,118622,118623,118624,118625,118626,118627,118628,118629,118630,118631,118632,118633,118634,118635,118636,118637,118638,118639,120530,120893,120955,121022,121082,123863,124080,124126,126845,127231,127244,127264,127265,127272,127563,127564,127565,127566,127567,127568,127569,127570,127571,127572,127573,127574,127575,127576,127577,127578,127579,127580,127581,127582,127583,127584,127585,127586,127587,127588,127589,127590,127591,129433,129438,129571,129577,129583,129680,129688,129878,129902,129929,129941,130120,133147,136122,136253,136544,136554,136555,136873,136874,136875,136876,136877,136878,136879,136880,136881,136882,136883,136884,136885,136886,136887,136888,136889,136890,136891,136892,136893,136894,136895,136896,136897,136898,136899,136900,136901,138735,138740,138951,139002,139017,139035,139040,139362,139389,139634,139644,139645,140005,140006,140007,140008,140009,140010,140011,140012,140013,140014,140015,140016,140017,140018,140019,140020,140021,140022,140023,140024,140025,140026,140027,140028,140029,140030,140031,140032,140033,141718,141772,141793,142068,142239,142270,142577,142647,142648,142850,142851,142852,142853,142854,142855,142856,142857,142858,142859,142860,142861,142862,142863,142864,142865,142866,142867,142868,142869,142870,142871,142872,142873,142874,142875,142876,142877,142878,144572,144705,144788,144903,145095,145263,145491,145501,145502,145664,145665,145666,145667,145668,145669,145670,145671,145672,145673,145674,145675,145676,145677,145678,145679,145680,145681,145682,145683,145684,145685,145686,145687,145688,145689,145690,145691,145692,147598,147603,147626,147711,148012,148111,148295,148310,148320,148735,148736,148737,148738,148739,148740,148741,148742,148743,148744,148745,148746,148747,148748,148749,148750,148751,148752,148753,148754,148755,148756,148757,148758,148759,148760,148761,148762,148763,150735,150766,151270,151383,151390,151391,151396,151397,151402,151419,151562,151563,151568,151629,151722,151723,151910,151914,151926,151929,151934,151997,152002,152003,152026,152037,152042,152215,152254,152257,152262,152263,152268,152269,152274,152507,152564,152697,152706,152707,152718,152721,153407,155510,155511,155516,155517,155654,155655,155660,155831,155836,155847,155852,155855,155860,155923,155928,155947,155952,155961,155966,156040,156152,156155,156160,156161,156166,156167,156342,156455,156460,156595,156602,156603,156616,156671,156732,156733,156758,156761,156784,156919,159814,159850,159858,159860,159884,159890,160060,160176,160178,160301,160433,160441,160465,160515,160638,160868,160916,160991,160997,161007,161153,161158,161160,161162,162277,162289,162297,162343,162388,162427,162437,162507,162595,162685,162715,162831,162887,163009,163019,163027,163038,163139,163390,163490,163506,163528,163587,164551,164697,164841,164891,164901,164951,164957,164969,165008,165023,165035,165040,165073,165199,166308,167309,167487,167488,167491,167742,167881,168128,168129,168445,168446,168557,168638,168645,168648,168659,168685,168686,168687,168718,168734,168743,168921,169046,169047,172487,172490,172611,172616,172654,172942,172960,173076,173096,173101,173250,173401,173511,173642,173721,173878,175003,175026,175049,175201,175356,175377,175655,175703,176730,176751,176874,176902,176926,177083,177393,177521,177522,177527,177528,177533,177534,177633,177634,177639,177640,177645,177646,177651,177652,177657,177834,178169,178174,178219,178220,178255,178268,178283,178292,178297,178302,178311,178314,178321,178323,178329,178330,178510,178580,178587,178591,178599,178600,178607,178612,179179,179196,179213,179230,179309,179388,179964,180318,180319,180330,180331,180338,180339,180384,180443,180456,180459,180470,180475,180482,180489,180494,180593,180636,180641,180648,180760,180786,180791,180798,180799,180804,180805,180810,180811,180946,180947,180952,180953,180958,180961,180968,180969,180976,180979,180984,180987,181714,181731,181748,181765,182082,182107,182393,182617,182620,182625,182628,182633,182634,182641,182644,182649,182652,182657,182660,182665,182668,182673,182774,182779,182782,182787,182790,182795,182884,182889,182892,182897,182898,182903,182904,182909,182910,183044,183271,183401,183402,183407,183408,183413,183414,183419,183420,183993,184028,184045,184062,184079,184204,184350,184957,184975,184980,184981,184986,184987,184992,184993,184998,185001,185006,185009,185014,185017,185022,185025,185030,185033,185038,185041,185046,185240,185326,185327,185334,185337,185344,185431,185442,185447,185456,185457,185462,185463,185468,185469,185474,185483,185864,185893,185910,185927,185944,185961,186605,186998,187002,187007,187008,187013,187014,187019,187088,187118,187123,187129,187131,187137,187140,187145,187148,187153,187156,187161,187164,187169,187172,187177,187180,187185,187188,187193,187384,187391,187393,187401,187404,187409,187410,187415,187416,187421,187422,188041,188064,188081,188098,188115,188132,188644,188860,188866,188872,188873,188878,188893,188900,188904,188912,188915,188922,188925,188932,189041,189449,189451,189456,189459,189472,189475,189482,189485,189494,189497,189504,189507,189864,189869,189874,189875,189980,189981,189986,189987,189992,189993,189998,189999,190251,190527,190798,190815,190842,190862,190901,191287,191288,191293,191294,191299,191300,191305,191306,191311,191312,191317,191318,191511,191512,191517,191524,191529,191530,191535,191536,191541,191542,191547,191548,191567,191568,191577,191578,191585,191586,191593,191594,191599,191602,191607,191610,191615,191618,191623,191626,192175,192204,192221,192238,192255,192272,192680,192851,192873,193119,193376,193414,193448,193454,193455,194020,194042,194087,194483,194508,194525,194551,194626,194643,195036,195097,195127,195671,195679,195767,195817,196181,196241,196258,196275,196421,196882,196899,196916,196947,197019,197045,197415,197426,197491,197492,197555,197856,198106,198121,198133,198654,198671,198688,198705,198722,198855,199335,199372,199389,199488,199881,199947,199967,199973,199980,200527,200570,200591,200757,201043,201060,201077,201163,201192,201340,201712,201737,201771,201797,201803,201896,202199,202286,202307,202755,202780,202800,202817,202843,203080,203097,203278,203357,203381,203405,203411,203798,203836,203853,203886,203921,204010,204099,204619,204636,204653,204670,204687,204737,204804,204995,205012,205118,205228,205266,205548,205552,205561,205627,205632,205652,205672,205689,205791,205895,205915,205936,206140,206143,206465,206482,206499,206516,206533,206589,206778,206971,206989,207043,207270,207288,207368,207372,207379,207458,207459,207464,208066,208083,208100,208131,208183,208235,208265,208346,208363,208461,208737,209003,209021,209025,209034,209149,209152,209162,209163,209288,209412,209502,209981,209998,210015,210032,210053,210070,210096,210533,210550,210567,210860,210870,210996,211000,211009,211047,211053,211056,211068,211551,211783,211918,211935,211952,211994,212014,212031,212057,212780,212799,212816,212837,212969,212989,212993,213002,213051,213085,213133,213800,213809,213822,213962,213970,213980,213994,214000,214052,214063,214770,214794,214800,214946,214961,215721,215742,215763,215780,215797,215950,215978,216059,216076,216093,216118,216804,216838,216848,216849,216850,217017,217034,217051,217068,217155,217174,217216,217891,217929,217957,217983,218140,218160,218168,218169,218288,218305,218322,218339,218358,219015,219091,219266,219287,219310,219335,219433,219467,219477,219641,219970,220138,220208,220383,220405,220434,220459,220483,220509,220640,220657,221306,221343,221377,221401,221567,221621,221639,221656,221675,221800,221809,222412,222453,222664,222681,222698,222715,222788,222809,222843,223546,223582,223618,223639,223849,223869,223878,223885,223917,223953,223980,224005,224026,224030,224773,224790,224807,224824,224841,225064,225106,225215,225232,225255,225276,226018,226042,226052,226277,226308,226325,226346,226474,226491,226508,227239,227260,227281,227321,227584,227601,227670,227741,227767,227785,227795,228152,228543,228554,228565,228566,228943,228960,228977,228994,229033,229054,229088,229833,229850,229867,230134,230264,230284,230300,230303,230310,231042,231107,231126,231147,231168,231189,231463,231622,231639,231695,231727,232409,232479,232489,232492,232777,232794,232811,232900,232995,233015,233102,233816,233844,233872,233902,234168,234188,234197,234201,234207,234210,234448,234465,234482,235135,235160,235236,235297,235578,235603,235720,235803,235883,235903,235911,235919,235929,236566,236691,236708,236989,237010,237041,237091,237262,237365,237386,238025,238118,238162,238182,238190,238462,238476,238479,238692,238709,238726,238828,238856,239010,239595,239658,239953,239987,240025,240205,240227,240235,240325,240354,240361,241080,241097,241158,241185,241481,241519,241611,241856,241891,241927,242625,242651,242673,242725,242741,243057,243162,243171,243176,243178,243179,243184,243185,244144,244161,244178,244195,244223,244253,244623,244756,244775,244792,244957,245775,245801,245809,245839,245849,245864,245866,245867,246321,246345,246367,246388,246551,246568,246594,247449,247488,247505,247860,247972,248010,248020,248030,248192,248194,248195,248197,248205,248207,248221,249062,249082,249125,249146,249493,249520,249679,249858,249881,249904,249912,250762,250790,250973,251153,251161,251330,252365,252382,252399,252416,252433,252784,252814,252827,253012,253197,253218,254054,254106,254114,254472,254484,254662,254848,254853,255458,256425,256444,256461,256478,256495,256512,256538,256758,257742,257759,257780,258142,258168,258176,258186,258195,258200,258208,259368,259372,259751,259768,259785,259802,259837,259854,259884,259897,261024,261041,261062,261440,261464,261472,261516,261524,262067,262612,262620,263053,263054,264117,264134,264151,264168,264185,264202,264228,264241,264688,264705,264726,265788,265812,265829,265849,265855,266077,266298,266303,266834,267365,267374,267833,267850,267867,267884,267901,267927,267940,268973,268990,269011,269017,269483,269517,269524,269528,269533,270265,271000,271037,271054,271071,271088,271105,271122,271148,271161,272608,272631,272664,272678,272698,272734,272741,272747,272749,272766,272787,273515,274245,274289,274308,274325,274342,274359,274376,274402,274415,275842,275869,275890,275912,275938,275972,275979,275989,277472,277489,277526,277533,277550,277567,277584,278995,279012,279064,279083,279100,279131,279152,279158,279178,279188,279893,280605,280643,280644,280690,280707,280724,280741,280758,280778,280817,282210,282229,282248,282269,282309,282333,282341,282344,282387,282404,282421,282438,283807,283836,283888,283945,283968,283990,284016,284052,284072,284089,285615,285632,285649,285666,285713,285734,285776,287155,287174,287193,287252,287300,287322,287332,287342,287416,287433,287546,288769,288838,288862,288933,289008,289025,289083,289111,289139,289161,290506,290567,290638,290655,290729,290757,290784,290843,290883,292178,292251,292283,292315,292363,292383,292527,292528,292538,292590,292623,293496,293936,294014,294049,294078,294104,294281,294342,294383,294404,294412,295700,295790,295826,295854,296010,296044,296115,296165,296187,296215,297542,297559,297606,297629,297637,297801,297823,297882,297938,297939,297959,297960,299306,299327,299344,299361,299378,299395,299595,299728,299745,299764,299785,301119,301157,301165,301193,301199,301373,301378,301380,301526,301543,301560,301577,301594,301932,302939,302978,303170,303188,303209,303359,303383,303391,304705,304711,304713,304718,304720,304948,304965,304982,304999,305016,305181,305223,306478,306511,306544,306743,306761,306785,306793,306973,306979,306993,306995,307000,307002,308454,308471,308488,308505,308522,308553,308597,308798,308817,308834,308855,310303,310329,310337,310381,310387,310405,310407,310412,310414,311336,311353,311370,311387,311404,312001,312139,312185,312207,312667,313127,313861,313874,313934,313957,313967,315121,315508,316526,317005,317022,317039,317056,317073,317099,317393,317421,317846,318501,318777,318790,319098,319127,319137,320449,320621,322040,322057,322074,322091,322108,322125,322465,322471,322511,323124,323737,324095,324108,324128,324133,324179,325425,325609,325781,325828,327004,327021,327038,327176,327416,327433,327459,327509,327515,328070,328624,329013,329026,329044,329095,329107,330419,330635,331384,332166,332183,332200,332217,332234,332251,332277,333619,333625,333670,333715,333749,335086,335106,335111,335121,335254,336581,336644,337950,337967,337984,338001,338018,338035,338061,338191,338197,338818,339438,339483,339496,339514,339645,339657,340925,340969,342298,342333,342350,342367,342384,342401,342418,342444,342450,342456,343083,343723,343754,343769,343775,343797,343810,343815,343834,345136,345171,345211,345228,346453,346470,346490,346526,346552,346570,346576,346591,346606,347826,347869,347875,347895,347908,347927,347946,348000,348621,349374,349401,349487,349511,349512,350861,351009,351010,351044,351045,351052,351084,351085,351092,351110,351111,351115,352552,352553,352554,352555,352556,352557,352558,352559,352560,352561,352562,352563,352564,352565,352566,352567,352568,352569,352570,352571,352572,352573,352574,352575,352576,352577,352578,352579,352580,353837,353857,353904,355648,355658,355676,355795,357016,357050,357205,358048,358072,358073,358141,358147,358181,358200,358261,358279,358280,358281,358282,358291,358317,358335,358336,358342,360339,360342,360366,361084,361098,361110,361125,362452,362454,366644,366675,367781,367784,367894,367895,367896,367897,367898,367899,367900,367901,367902,367903,367904,367905,367906,367907,367908,367909,367910,367911,367912,367913,367914,367915,367916,367917,367918,367919,367920,367921,367922,368870,368875,369073,369084,369091,369104,369111,369120,369125,369132,369143,369150,369159,369164,370505,370539,370629,370660,371791,371795,371842,371878,371940,372045,372118,372187,372195,372205,372206,372220,372221,372756,373474,373491,373584,373585,373586,373587,373588,373589,373590,373591,373592,373593,373594,373595,373596,373597,373598,373599,373600,373601,373602,373603,373604,373605,373606,373607,373608,373609,373610,373611,373612,374824,374953,374970,375054,376055,376102,376103,376104,376105,376106,376278,376290,376410,376412,376504,376631,377496,377523,377524,377528,377553,377557,377574,377578,377581,377585,377586,377590,377591,377595,377596,377600,377601,377605,377706,377710,377711,377726,377740,377773,377781,377787,377804,377812,377813,377817,377818,377822,377823,377827,377828,377832,377833,377857,377858,377862,377863,378915,378938,379641,380068,380809,381305,381563,381565,381566,381567,381568,381574,382549,382555,382818,382824,382855,382861,383790,383791,384077,384082,385547,386042,386160,386161,386162,386163,386164,386165,386166,386172,386215,386216,386217,386218,386219,387223,387228,388164,388169,388182,388195,388196,388202,389093,389094,389118,389136,389137,389138,389144,389923,389995,390000,390779,390806,391179,391512,391535,391558,391564,391607,391608,391609,392353,392358,392360,392752,393111,393166,393179,393523,393867,393873,393918,393919,393923,393925,393926,393932,394633,394639,394691,395358,395363,395365,395370,395374,395388,395401,395402,395407,395412,395998,396005,396051,396062,396067,396069,396075,396081,396086,396668,396705,396707,396729,396730,396778,396783,396989,397193,397280,397283,397285,397699,397704,397708,397745,397785,397836,397838,397839,397841,397850,398165,398171,398266,398272,398330,398339,398649,398792,398797,398799,398800,398801,399104,399106,399107,399108,399114,399219,399222,399304,399591,399640,399687,399772,399774,399780,400099,400281,400286,400288,400294,400622,400623,400813,400820,400824,400857,401348,401361,401378,401391,401812,401863,401897,401912,401923,401979,402362,402370,402374,402380,402381,402489,402494,402500,402506,402508,402536,403014,403091,403099,403101,403109,403114,403172,403185,403193,403199,403201,403207,403815,403826,403828,403831,403835,403850,403864,403865,403868,403872,404431,404444,404486,404869,404874,404876,404882,404944,405005,405079,405114,405116,405122,405530,405733,405770,405774,406179,406390,406397,406402,406403,406407,406412,406416,406417,406455,406456,406464,406467,406471,406474,406478,406479,406483,406484,406488,406683,406861,406862,406866,406873,406877,406878,406882,406883,406889,406890,406894,406895,407029,407030,407034,407035,407039,407058,407062,407063,407077,407182,407547,407565,407578,407801,407840,407854,407861,408266,408271,408277,408286,408483,408496,408500,409460,409753,410450,410488,411433,411715,411778,411813,411814,411818,411820,412390,412399,413075,413127,413769,413770,413771,413775,413778,414321,414326,414749,415058,415097,415098,415102,415104,415717,415733,416047,416333,416337,416398,416407,416409,417588,417610,418476,418743,419346,419374,419639,419876,419877,419878,419879,419883,419885,419973,419978,420209,420438,420529,420538,420990,421018,421046,421054,421530,421532,421590,421593,422101,422106,422111,422114,422156,422571,422864,423085,423186,423191,423192,423658,423663,423975,424201,424314,424320,424325,424804,424891,425140,425457,425502,425507,425508,426086,426091,426397,426679,426734,426740,426745,427334,427343,427667,427963,428034,428035,428671,428676,428981,429282,429317,429322,429323,429959,429964,429969,429971,429972,429973,430009,430014,430019,430021,430022,430023,430627,430632,430684,431302,431309,431365,431368,431377,431992,432123,432684,433275,433352,433917,434060,434567,435178,435183,435450,435715,435746,436278,436279,436337,436400,436421,436425,436426,437002,437007,437250,437528,437542,437843,438100,438106,438153,438172,438176,438177,438679,438681,438682,438786,438791,438793,438794,439274,439281,439283,439345,439352,439358,439360,439677,439931,439989,440015,440019,440021,440559,440568,440570,440899,441163,441251,441252,441806,441811,441817,442164,442435,442534,442539,442540,443100,443105,443111,443470,443745,443850,443856,443861,444496,444505,444511,444846,445159,445204,445209,445210,445844,445857,445863,446206,446521,446572,446578,446583,447220,447229,447237,447590,447905,447974,447975,448649,448654,448660,449282,449314,449925,449930,449931,450587,450592,450594,451245,451283,452270,452552,453241,453285,454405,454414,455267,455533,455568,455575,455579,455581,456111,456249,456250,456283,456298,456299,456322,456323,456346,456347,456357,456363,456365,456366,456367,456475,456477,456478,456479,456997,456998,457003,457004,457009,457014,457021,457024,457033,457036,457041,457042,457047,457048,457081,457084,457089,457092,457111,457114,457121,457124,457131,457132,457137,457138,457143,457144,457150,457168,457173,457176,457181,457182,457187,457190,457195,457198,457203,457204,457728,457734,457739,457746,457747,457752,457753,457758,457787,457794,457797,457802,457817,457826,457829,457836,457837,457842,457843,457848,457849,457854,457873,457878,457879,457886,457887,457892,457894,457900,457903,457908,457909,457916,457921,457930,457931,457936,457939,457946,458504,458512,460090,460092,460097,460100,460127,460139,460150,460175,460176,460229,460282,460620,460628,460635,460640,460642,461431,462270,462288,462290,462316,462317,462328,462331,462344,462347,462358,462361,462368,462373,462380,462385,462398,462401,462410,462415,462426,462427,462538,462741,462754,462759,462766,462767,462774,462781,462790,462801,462806,462815,462822,462823,462830,462833,462868,462875,462888,462893,462900,462918,463049,463055,463059,463065,463071,463077,463090,463099,463106,463117,463118,463225,463402,463415,463420,463427,463428,463435,463442,463451,463457,463467,463476,463483,463484,463491,463494,463529,463536,463551,463556,463561,463580,463593,463596,463609,463614,463621,463630,463637,463809,463815,463866,463920,464030,464361,464364,464377,464381,464389,464394,464403,464406,464429,464436,464445,464450,464461,464466,464473,464474,464485,464486,464494,464498,464513,464515,464530,464534,464543,464544,464553,464556,464565,464578,464591,464594,464605,464613,464621,464714,464763,464833,464881,464885,465070,465082,465083,465114,465117,465126,465133,465142,465145,465150,465157,465162,465169,465174,465185,465194,465203,465212,465215,465224,465227,465236,465247,465258,465263,465276,465284,465292,465383,465418,465449,465512,465523,465530,465535,465548,465555,465572,465573,465588,465783,465793,465826,465879,465903,465909,465941,465942,465959,465964,465977,465980,465993,466000,466007,466096,466123,466144,466149,466206,466221,466224,466233,466242,466253,466266,466271,466282,466295,466298,466307,466338,466353,466366,466377,466378,466403,466414,466421,466430,466439,466446,466455,466463,466469,466470,466642,467393,467484,467492,467503,467514,467563,467569,467578,467629,467640,467641,467645,467690,467712,467721,467729,467730,467764,467774,467779,467783,467784,467820,467821,467854,467855,467872,467879,467888,467893,467908,467911,467923,467927,467944,467947,467966,467973,467982,467985,467998,467999,468016,468021,468034,468041,468060,468063,468070,468101,468127,468133,468140,468183,468192,468207,468214,468229,468234,468255,468264,468277,468513,468519,468534,468539,468550,468555,468564,468577,468592,468599,468608,468613,468621,468629,468642,468651,468660,468671,468686,468693,468696,468711,468732,468739,468750,468781,468786,468804,468808,468813,468828,468853,468859,468873,468884,468891,468900,468908,468944,468955,469162,469180,469227,469237,469272,469280,469300,469314,469320,469362,469365,469374,469384,469396,469429,469436,469451,469458,469461,469480,469481,469506,469521,469528,469539,469544,469553,469562,469597,469608,469621,469638,469657,469678,469681,469696,469699,469710,469719,469728,469739,469746,469747,469780,469781,469800,469807,469818,469827,470041,470049,470064,470071,470074,470093,470113,470133,470136,470151,470152,470165,470204,470209,470228,470233,470246,470269,470286,470293,470306,470311,470318,470331,470344,470353,470354,470359,470388,470393,470408,470421,470428,470439,470450,470455,470468,470487,470492,470513,470740,470746,470783,470797,470818,470842,470853,470898,470904,470924,470945,470980,470981,470982,470986,471033,471043,471045,471046,471047,471095,471115,471121,471126,471130,471173,471182,471191,471199,471215,471232,471249,471256,471267,471276,471283,471298,471309,471322,471333,471350,471359,471362,471371,471378,471385,471408,471417,471432,471439,471440,471447,471462,471467,471498,471513,471528,471535,471538,471553,471594,471599,471620,471641,471662,471886,471904,471911,471922,471931,471938,471953,471964,471977,471988,472005,472014,472017,472026,472031,472040,472061,472070,472085,472092,472095,472100,472115,472142,472160,472168,472182,472190,472196,472206,472247,472272,472289,472314,472333,472338,472356,472364,472371,472384,472607,472619,472678,472684,472715,472725,472735,472757,472761,472803,472806,472811,472826,472869,472872,472891,472894,472901,472912,472957,472958,472983,473000,473025,473044,473049,473060,473075,473082,473095,473108,473125,473128,473133,473150,473159,473176,473184,473198,473209,473218,473229,473241,473247,473264,473273,473292,473311,473318,473554,473559,473564,473575,473592,473593,473616,473631,473642,473655,473660,473677,473684,473691,473704,473723,473734,473737,473742,473755,473762,473777,473792,473799,473812,473823,473834,473839,473852,473857,473876,473879,473898,473905,473916,473921,473930,473942,473956,474165,474171,474234,474252,474275,474317,474341,474346,474354,474407,474477,474605,474606,474671,474706,474761,474808,474884,474918,474951,474952,474953,475038,475097,475168,475169,475262,475265,475275,475280,475281,475289,475309,475310,475311,475340,475341,475402,475403,475404,475919,475920,475921,475922,475923,475924,475925,475926,475927,475928,475929,475930,475931,475932,475933,475934,475935,475936,475937,475938,475939,475940,475941,475942,475943,475944,475945,475946,475947,476470,476471,476472,476473,476586,476639,476668,476714,476769,476779,476818,476820,476835,476837,476852,476854,476892,476921,476925,476936,477016,477018,477019,477020,477032,477062,477091,477092,477104,477159,477193,477219,477244,477245,477266,477329,477346,477423,477507,477601,477611,477629,477678,477700,477712,477723,477724,477735,477795,477831,477836,477838,477840,477842,477871,477927,477930,477932,477933,477945,478009,478012,478014,478015,478041,478115,478134,478162,478163,478193,478280,478299,478308,478309,478314,478315,478322,478376,478388,478429,478434,478463,478468,478479,478484,478485,478490,478505,478568,478571,478576,478595,478620,478621,478630,478643,478650,478651,478656,478673,478678,478701,478726,478729,478758,478760,478772,478773,478778,478814,478815,478820,478826,478832,478835,478840,478847,478852,478853,478858,478911,478916,478921,478926,478927,478934,478935,478940,479001,479006,479007,479016,479017,479022,479025,479034,479035,479040,479041,479134,479135,479156,479159,479164,479165,479170,479177,479182,479192,479193,479198,479275,479300,479301,479310,479311,479316,479317,479330,479378,479390,479431,479436,479461,479470,479481,479486,479487,479492,479507,479570,479573,479578,479613,479622,479623,479633,479644,479652,479653,479658,479675,479680,479701,479706,479727,479732,480044,480583,480630,480650,481236,481242,481243,481248,481249,481254,481285,481318,481319,481324,481325,481330,481331,481336,481409,481420,481433,481438,481439,481476,481479,481484,481485,481490,481491,481496,481497,481502,481519,481524,481525,481576,481583,481590,481591,481596,481601,481650,481651,481656,481657,481662,481663,481668,481681,481686,481687,481692,481758,481780,481781,481806,481807,481812,481821,481826,481827,481832,481833,481838,481839,481844,481845,481956,481959,481964,481965,481970,482021,482040,482041,482046,482047,482052,482053,482058,482075,482156,482216,482222,482224,482483,482538,482539,482604,482693,482742,482790,482998,483000,483061,483063,483064,483186,483188,483189,483562,483564,483565,483774,483775,483957,483959,483964,484032,484033,484218,484221,484236,484250,484383,484386,484599,484605,484794,484801,484816,484822,484893,484899,484955,484972,485736,485851,485853,486386,486389,486404,486410,486663,486666,486681,486687,487056,487059,487074,487190,487195,487201,487205,487222,487980,488005,488007,488008,488769,488772,488787,489349,489368,489371,489386,489392,489559,489562,489577,489583,489588,489594,489598,489615,490929,490944,490946,491113,492983,880744,1215934,1217163,1217461,1254856,1277384,1277385,1278777,1279075,1279079,1279107,1279117,1279123,1279128,1279246,1279301,1284380,1287277,1287315,1289019,1289020,1289021,1289022,1289023,1289024,1289025,1289026,1289027,1289028,1289029,1289030,1289031,1289032,1289033,1289034,1289035,1289036,1289037,1289038,1289039,1289040,1289041,1289042,1289043,1289044,1289045,1289046,1289047,1291084,1346824,1347577,1348680,1349773,1571147,1571731,1572504,1572678,1572795,1572873,1573121,1573131,1573300,1573301,1573348,1573349,1573350,1620388,1621870,1621949,1622866,1622951,1626073,1626079,1626109,1626110,1626111,1626112,1626113,1626114,1626115,1626281,1626282,1626283,1626284,1626285,1626286,1626287,1626288,1626289,1626290,1626291,1626292,1626293,1626294,1626295,1626296,1626297,1626298,1626299,1626300,1626301,1626302,1626303,1626304,1626305,1626306,1626307,1626308,1626421,1626422,1626423,1626424,1626425,1626426,1626449,1626450,1626451,1626452,1633137,1633143,1633393,1642382,1642383,1642384,1642385,1642386,1645383,1645384,1645385,1645386,1645852,1646134,1646536,1646602,1646603,1646665,1646668,1646680,1646681,1646695,1646700,1646712,1646727,1646728,1647106,1647676,1647694,1647730,1647748,1647778,1647781,1647796,1647798,1647823,1647834,1647864,1647866,1647881,1647887,1647895,1647918,1648444,1648468,1648473,1648474,1648567,1648568,1648569,1648570,1648571,1648572,1648573,1648574,1648575,1648576,1648577,1648578,1648579,1648580,1648581,1648651,1648657,1648662,1648667,1648672,1649394,1649667,1649668,1649669,1649670,1649671,1649672,1649673,1649674,1649675,1649676,1649677,1649678,1649679,1649680,1649681,1649682,1649683,1649684,1649685,1649686,1649687,1649688,1649689,1649690,1649691,1649692,1649693,1649694,1649695,1649696,1649892,1649911,1649929,1649934,1649939,1650796,1650980,1650981,1650984,1650985,1650986,1650987,1650988,1650989,1650990,1650991,1650992,1650993,1650994,1650995,1650998,1651168,1651183,1652203,1652348,1652349,1652350,1652351,1652352,1652353,1652354,1652355,1652356,1652357,1652358,1652359,1652360,1652361,1652362,1652486,1652535,1652553,1653805,1653825,1653842,1653858,1653859,1653860,1655058,1655134,1655196,1655257,1655258,1655262,1656554,1656680,1656737,1656793,1656794,1656957,1656958,1656959,1656960,1656961,1656962,1656963,1656964,1656965,1656966,1656967,1656968,1656969,1656970,1656971,1657167,1657187,1657255,1657318,1657319,1658745,1658815,1658816,1658924,1658925,1660571,1660845,1660846,1660847,1660848,1660849,1660850,1660851,1660852,1660853,1660854,1660855,1660856,1660857,1660858,1660859,1661029,1661030,1661035,1661158,1661169,1661170,1661207,1661208,1661213,1661214,1661229,1661256,1661305,1661316,1661321,1661322,1661327,1661328,1661333,1661340,1661405,1661406,1661507,1661510,1661515,1661516,1661521,1661522,1661527,1661626,1661647,1661648,1661718,1661805,1661859,1661861,1661869,1661870,1661875,1661915,1661940,1661967,1662026,1662031,1662032,1662037,1662038,1662151,1662184,1662191,1662192,1662197,1662214,1662223,1662224,1662229,1662230,1662235,1662240,1662367,1662368,1662373,1662378,1662383,1662384,1662419,1662420,1662425,1662548,1662559,1662576,1662597,1662598,1662603,1662604,1662609,1662624,1662651,1662711,1662712,1662717,1662718,1662788,1662790,1662795,1662892,1662899,1662900,1662905,1662906,1662911,1662912,1663021,1663030,1663035,1663148,1663153,1663237,1663247,1663251,1663257,1663258,1663263,1663264,1663269,1663306,1663353,1663405,1663421,1663422,1663427,1663428,1663433,1663500,1663579,1663582,1663587,1663613,1663614,1663619,1663685,1663751,1663752,1663757,1663762,1663767,1663798,1663803,1663804,1663809,1663935,1663943,1663976,1663981,1663982,1663987,1664002,1664007,1664074,1664089,1664090,1664095,1664098,1664103,1664104,1664109,1664176,1664181,1664278,1664285,1664286,1664291,1664292,1664297,1664298,1666162,1666308,1666311,1668099,1668151,1668232,1669989,1670989,1672699,1672721,1672800,1672971,1673085,1673294,1673471,1674927,1675132,1675282,1675370,1675535,1676925,1677053,1677054,1677059,1677060,1677065,1677066,1677071,1677238,1677243,1677244,1677249,1677356,1677361,1677362,1677367,1677368,1677375,1677409,1677505,1677506,1677515,1677516,1677521,1677522,1677527,1677528,1677533,1677706,1677729,1677730,1677735,1677736,1677771,1677772,1677777,1677778,1677921,1677944,1677961,1677964,1677969,1677970,1677975,1677976,1678038,1678118,1678127,1678144,1678197,1678202,1678207,1678208,1678213,1678341,1678369,1678370,1678375,1678376,1678381,1678408,1678481,1678482,1678487,1678548,1678553,1678554,1678559,1678560,1678565,1678622,1678737,1678738,1678743,1678744,1678855,1678856,1678861,1678862,1678867,1678868,1680288,1680354,1680426,1681884,1681983,1682084,1683612,1683792,1683793,1683798,1683799,1683804,1683805,1683942,1683951,1683956,1684011,1684026,1684031,1684036,1684037,1684042,1684147,1684196,1684197,1684202,1684203,1684208,1684210,1684244,1684245,1684314,1684317,1684382,1684385,1684390,1684391,1684396,1684397,1684402,1684403,1684574,1684577,1684582,1684691,1684696,1684697,1686227,1686243,1686244,1686271,1686274,1686406,1686412,1686417,1686418,1686423,1686424,1686461,1686462,1686467,1686488,1686665,1686666,1686671,1686672,1686677,1686740,1686745,1686746,1686751,1686917,1686933,1686934,1686939,1686940,1687077,1687086,1687091,1687151,1687161,1687166,1687171,1687172,1687187,1687303,1687329,1687330,1688579,1689213,1689214,1689215,1689216,1689217,1689218,1689219,1689220,1689221,1689222,1689223,1689224,1689225,1689226,1689227,1690407,1690532,1690755,1690757,1691104,1691173,1692095,1692097,1693954,1693955,1693956,1693957,1693958,1693959,1693960,1693961,1693962,1693963,1693964,1693965,1693966,1693967,1693968,1695124,1695214,1695636,1695762,1695982,1695992,1696340,1696409,1697883,1697893,1697895,1698079,1698081,1698227,1698228,1698238,1698241,1698251,1698254,1698266,1698650,1698653,1698663,1698665,1698676,1698682,1698871,1698881,1698883,1698893,1698895,1698905,1698907,1698989,1699357,1699358,1699370,1699372,1699377,1699380,1699381,1699391,1699393,1699398,1699402,1699451,1700940,1700948,1701974,1702667,1702717,1703713,1703714,1703715,1703716,1703717,1703718,1703719,1703720,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091,1704092,1704093,1704853,1704859,1704973,1704974,1704975,1704976,1704977,1704978,1704979,1704980,1704981,1704982,1704983,1704984,1704985,1704986,1704987,1704988,1704989,1704990,1704991,1704992,1704993,1704994,1704995,1704996,1704997,1704998,1704999,1705000,1706133,1706549,1706564,1708806,1708812,1710344,1710736,1710751,1711044,1711276,1711525,1713777,1714889,1715331,1715773,1715788,1715790,1715791,1716324,1716857,1716858,1716859,1719837,1719843,1721039,1721880,1721896,1723014,1723015,1723016,1723017,1723018,1723019,1723020,1723021,1723150,1723151,1723152,1723153,1723154,1723155,1723156,1723157,1723158,1723159,1723160,1723161,1723162,1723163,1723164,1723165,1723166,1723167,1723168,1723169,1723170,1723171,1723172,1723173,1723174,1723175,1723176,1723177,1724066,1724072,1724186,1724187,1724188,1724189,1724190,1724191,1724192,1724193,1724194,1724195,1724196,1724197,1724198,1724199,1724200,1724201,1724202,1724203,1724204,1724205,1724206,1724207,1724208,1724209,1724210,1724211,1724212,1724213,1725272,1725376,1725391,1727595,1727601,1729499,1729669,1729684,1729785,1730004,1730566,1732502,1733502,1733900,1735248,1735263,1735265,1735266,1738634,1738640,1738822,1740246,1740261,1740389,1740390,1740391,1740392,1740393,1740394,1740395,1740396,1740521,1740522,1740523,1740524,1740525,1740526,1740527,1740528,1740529,1740530,1740531,1740532,1740533,1740534,1740535,1740536,1740537,1740538,1740539,1740540,1740541,1740542,1740543,1740544,1740545,1740546,1740547,1740548,1741983,1741989,1742103,1742104,1742105,1742106,1742107,1742108,1742109,1742110,1742111,1742112,1742113,1742114,1742115,1742116,1742117,1742118,1742119,1742120,1742121,1742122,1742123,1742124,1742125,1742126,1742127,1742128,1742129,1742130,1742233,1742327,1742342,1744180,1744186,1745696,1745872,1745887,1746032,1746036,1746051,1748895,1749137,1749747,1750357,1750372,1750374,1751758,1751759,1751760,1751761,1751762,1751763,1753092,1753242,1753243,1753244,1753245,1753246,1753247,1753248,1753249,1753250,1753251,1753252,1753253,1753254,1753255,1753256,1753257,1753258,1753259,1753260,1753261,1753262,1753263,1753264,1753265,1753266,1753267,1753268,1753269,1753270,1753271,1753306,1753308,1754653,1754803,1754804,1754805,1754806,1754807,1754808,1754809,1754810,1754811,1754812,1754813,1754814,1754815,1754816,1754817,1754818,1754819,1754820,1754821,1754822,1754823,1754824,1754825,1754826,1754827,1754828,1754829,1754830,1754831,1754832,1756227,1756237,1757652,1757802,1757803,1757804,1757805,1757806,1757807,1757808,1757809,1757810,1757811,1757812,1757813,1757814,1757815,1757816,1757817,1757818,1757819,1757820,1757821,1757822,1757823,1757824,1757825,1757826,1757827,1757828,1757829,1757830,1757831,1757950,1757958,1759447,1759663,1759664,1759665,1759666,1759667,1759668,1759669,1759670,1759671,1759672,1759673,1759674,1759675,1759676,1759677,1759678,1759679,1759680,1759681,1759682,1759683,1759684,1759685,1759686,1759687,1759688,1759689,1759690,1759691,1759692,1761105,1761112,1761382,1762968,1762969,1762970,1762971,1762972,1762973,1762974,1762975,1762976,1762977,1762978,1762979,1762980,1762981,1762982,1762986,1762987,1762988,1762989,1762990,1762991,1762992,1762993,1762994,1762995,1762996,1762997,1762998,1762999,1763000,1763132,1763146,1764715,1764956,1764957,1764958,1764959,1764960,1764961,1764962,1764963,1764964,1764965,1764966,1764967,1764968,1764969,1764970,1764971,1764972,1764973,1764974,1764975,1764976,1764977,1764978,1764979,1764980,1764981,1764982,1764983,1764984,1764985,1766447,1766601,1766884,1768392,1768393,1768394,1768395,1768396,1768397,1768398,1768399,1768400,1768401,1768402,1768403,1768404,1768405,1768406,1768407,1768408,1768409,1768412,1768413,1768414,1768415,1768416,1768417,1768418,1768419,1768420,1768421,1768422,1768524,1768650,1768784,1770439,1770641,1770642,1770643,1770644,1770645,1770646,1770647,1770648,1770649,1770650,1770651,1770652,1770653,1770654,1770655,1770656,1770657,1770658,1770659,1770660,1770661,1770662,1770663,1770664,1770665,1770666,1770667,1770668,1770669,1770670,1771059,1772329,1772848,1773846,1773847,1773848,1773849,1773850,1773851,1773852,1773853,1773854,1773855,1773856,1773857,1773858,1773859,1773860,1773861,1773862,1773863,1773864,1773865,1773866,1773867,1773868,1773869,1773870,1773871,1773872,1773873,1773874,1773875,1774686,1774774,1776747,1777076,1777077,1777085,1778769,1778787,1778789,1778790,1778995,1779036,1779175,1779189,1779249,1779250,1779422,1779423,1779749,1779750,1785181,1820619,1820627,1820711,1820717,1820826,1821258,1821304,1821392,1822408,1822420,1822470,1822478,1822489,1822940,1822948,1822955,1822958,1822995,1823007,1823008,1823065,1823071,1823083,1823085,1823092,1823449,1823468,1823537,1823553,1823573,1823581,1823590,1823610,1823651,1823669,1823685,1823698,1823714,1823999,1824036,1824046,1824086,1824118,1824158,1824166,1824174,1824180,1824205,1824231,1824239,1824247,1824329,1824455,1824469,1824483,1824531,1824545,1824577,1824593,1824603,1824647,1824659,1824679,1824689,1824701,1824719,1824733,1824751,1824767,1824797,1824883,1824893,1824907,1824921,1824937,1824951,1824963,1825003,1825015,1825041,1825053,1825061,1825081,1825109,1825122,1825173,1825207,1825267,1825289,1825321,1825347,1825359,1825387,1825407,1825433,1825445,1825461,1825473,1825491,1825503,1825519,1825537,1825549,1825590,1825673,1825685,1825701,1825719,1825737,1825751,1825787,1825811,1825837,1825851,1825865,1825885,1825895,1825927,1825973,1825979,1826063,1826087,1826117,1826145,1826159,1826189,1826211,1826235,1826249,1826267,1826286,1826303,1826325,1826343,1826359,1826377,1826395,1826475,1826491,1826509,1826529,1826547,1826563,1826601,1826627,1826656,1826677,1826699,1826713,1826747,1826763,1826779,1826797,1826833,1826859,1826891,1826921,1826937,1826969,1826993,1827019,1827035,1827055,1827077,1827095,1827119,1827139,1827157,1827191,1827215,1827232,1827259,1827275,1827295,1827313,1827341,1827365,1827399,1827417,1827439,1827455,1827485,1827503,1827519,1827539,1827567,1827595,1827619,1827649,1827667,1827699,1827725,1827753,1827771,1827797,1827828,1827853,1827876,1827897,1827919,1827929,1845790,1845796,1845865,1845913,1845945,1845951,1845999,1846051,1846057,1846129,1846135,1846181,1846231,1846237,1846285,1846339,1846345,1846405,1846443,1846449,1846531,1846547,1846552,1846618,1846683,1846684,1846923,1846953,1847011,1847021,1847067,1847117,1847135,1847159,1847182,1847183,1847184,1847185,1847208,1847260,1847438,1847490,1847560,1847640,1847692,1847746,1847820,1847845,1847867,1847869,1847871,1847872,1847896,1847975,1847983,1848039,1848101,1848109,1848149,1848259,1848265,1848271,1848277,1848413,1848548,1848550,1848572,1848605,1848619,1848662,1848720,1848772,1848784,1848810,1848840,1848912,1848962,1848980,1848988,1849160,1849216,1849286,1849292,1849332,1849371,1849373,1849375,1849398,1849422,1849428,1849486,1849562,1849614,1849639,1849663,1849665,1849688,1849711,1849714,1849722,1849782,1849844,1849888,1849912,1849933,1849944,1849962,1849970,1849980,1850027,1850033,1850333,1850365,1850401,1850461,1850515,1850549,1850583,1850601,1850655,1850707,1850727,1850739,1850745,1850937,1850961,1851027,1851035,1851121,1851173,1851229,1851311,1851365,1851421,1851473,1851537,1851594,1851599,1851601,1851602,1851622,1851643,1851666,1851698,1851716,1851733,1851743,1851745,1851747,1851749,1851752,1851754,1851756,1851759,1851761,1851763,1851765,1851767,1851769,1851770,1851817,1851946,1852204,1852328,1852352,1852406,1852472,1852494,1852502,1852508,1852712,1852774,1852784,1852790,1852874,1852928,1853002,1853104,1853116,1853212,1853274,1853338,1853354,1853438,1853496,1853508,1853520,1853528,1853834,1853880,1853914,1853941,1853942,1853943,1853966,1853989,1853991,1854007,1854023,1854037,1854053,1854057,1854065,1854073,1854074,1854099,1854124,1854125,1854126,1854127,1854128,1854129,1854130,1854131,1854166,1854204,1854223,1854235,1854397,1854435,1854489,1854501,1854513,1854519,1854605,1854657,1854663,1854721,1854791,1854797,1854853,1854873,1854953,1854982,1855019,1855081,1855087,1855139,1855185,1855209,1855251,1855257,1855285,1855291,1855383,1855389,1855592,1855636,1855662,1855688,1855689,1855711,1855733,1855735,1855751,1855781,1855804,1855812,1855836,1855860,1855861,1855862,1855863,1855864,1855901,1855940,1855944,1855948,1856018,1856095,1856122,1856163,1856216,1856304,1856354,1856406,1856418,1856486,1856542,1856550,1856602,1856650,1856710,1856718,1856780,1856800,1856840,1856912,1856956,1856970,1856976,1857080,1857236,1857242,1857248,1857386,1857432,1857466,1857516,1857566,1857572,1857578,1857658,1857670,1857818,1857900,1857914,1857919,1857920,1857931,1857971,1858004,1858008,1858010,1858033,1858058,1858086,1858112,1858143,1858174,1858176,1858178,1858204,1858229,1858233,1858259,1858282,1858304,1858326,1858354,1858384,1858414,1858450,1858502,1858510,1858574,1858622,1858642,1858648,1858654,1858896,1858904,1858992,1859088,1859150,1859172,1859196,1859219,1859220,1859222,1859224,1859225,1859226,1859227,1859263,1859299,1859303,1859308,1859310,1859311,1859374,1859437,1859438,1859439,1859448,1859474,1859492,1859493,1859514,1859539,1859544,1859545,1859560,1859648,1859696,1859754,1859785,1859814,1859816,1859818,1859843,1859867,1859927,1860861,1860869,1860991,1861011,1861051,1861103,1861119,1861207,1861255,1861313,1861375,1861427,1861439,1861487,1861533,1861539,1861545,1861551,1861557,1861563,1861569,1861575,1861581,1861587,1861593,1861599,1861605,1861611,1861617,1861623,1861629,1861635,1861641,1861647,1861653,1862491,1862507,1862625,1862633,1862687,1862731,1862747,1862779,1862855,1862907,1862961,1863019,1863071,1863125,1863171,1863179,1863187,1863195,1863203,1863211,1863219,1863227,1863235,1863243,1863251,1863259,1863267,1863275,1863283,1863291,1863299,1863307,1863315,1863323,1863331,1863745,1864141,1864159,1864269,1864293,1864335,1864387,1864407,1864495,1864543,1864601,1864659,1864711,1864727,1864801,1864819,1864831,1864841,1864851,1864861,1864871,1864881,1864891,1864899,1864911,1864919,1864931,1864941,1864951,1864961,1864971,1864981,1864991,1865001,1865011,1865021,1865721,1865804,1865815,1865921,1865975,1866019,1866039,1866059,1866151,1866203,1866257,1866311,1866363,1866417,1866463,1866475,1866485,1866499,1866511,1866523,1866535,1866547,1866559,1866571,1866583,1866595,1866607,1866619,1866631,1866643,1866655,1866667,1866679,1866691,1866703,1866995,1867441,1867461,1867525,1867571,1867625,1867669,1867691,1867727,1867805,1867857,1867911,1867963,1868015,1868069,1868115,1868129,1868143,1868157,1868171,1868185,1868199,1868217,1868229,1868245,1868257,1868273,1868287,1868301,1868315,1868329,1868343,1868357,1868371,1868385,1868399,1868755,1869101,1869129,1869217,1869275,1869319,1869341,1869367,1869453,1869489,1869563,1869615,1869667,1869721,1869767,1869783,1869799,1869815,1869831,1869847,1869863,1869879,1869891,1869905,1869923,1869937,1869955,1869971,1869991,1870007,1870023,1870039,1870055,1870071,1870087,1870351,1870705,1870787,1870845,1870889,1870945,1870987,1871013,1871053,1871125,1871155,1871229,1871281,1871333,1871427,1871445,1871451,1871469,1871489,1871507,1871525,1871545,1871567,1871583,1871602,1871619,1871639,1871657,1871679,1871691,1871709,1871727,1871751,1871763,1871784,1871950,1872123,1872439,1872469,1872517,1872561,1872617,1872659,1872687,1872747,1872821,1872895,1872947,1872999,1873053,1873099,1873119,1873139,1873159,1873183,1873203,1873221,1873245,1873263,1873285,1873303,1873325,1873345,1873365,1873385,1873405,1873425,1873445,1873465,1873485,1873505,1873755,1874115,1874147,1874191,1874235,1874291,1874344,1874399,1874467,1874497,1874571,1874621,1874673,1874727,1874773,1874795,1874817,1874841,1874863,1874883,1874905,1874933,1874953,1874977,1874997,1875021,1875043,1875065,1875087,1875109,1875131,1875154,1875175,1875205,1875439,1875527,1875797,1875861,1875873,1875961,1875971,1876035,1876061,1876087,1876153,1876251,1876303,1876355,1876407,1876453,1876477,1876501,1876529,1876553,1876577,1876601,1876631,1876653,1876679,1876701,1876727,1876751,1876779,1876797,1876821,1876845,1876875,1876905,1876923,1877147,1877229,1877487,1877551,1877563,1877623,1877661,1877697,1877731,1877779,1877845,1877873,1877947,1877999,1878051,1878103,1878149,1878175,1878201,1878241,1878267,1878293,1878319,1878341,1878365,1878393,1878417,1878445,1878471,1878501,1878521,1878547,1878573,1878605,1878637,1878657,1878883,1878947,1879209,1879257,1879301,1879357,1879401,1879436,1879488,1879569,1879643,1879695,1879747,1879799,1879845,1879873,1879901,1879933,1879961,1879989,1880017,1880051,1880077,1880107,1880133,1880163,1880187,1880199,1880231,1880273,1880301,1880335,1880369,1880391,1880593,1880663,1880877,1880955,1880999,1881055,1881097,1881135,1881185,1881245,1881251,1881281,1881401,1881453,1881505,1881551,1881581,1881611,1881645,1881675,1881705,1881735,1881771,1881799,1881831,1881859,1881891,1881917,1881931,1881965,1882009,1882028,1882075,1882111,1882135,1882327,1882391,1882589,1882667,1882711,1882767,1882809,1882849,1882899,1882959,1882989,1883063,1883115,1883167,1883219,1883265,1883297,1883329,1883365,1883397,1883429,1883461,1883499,1883529,1883563,1883593,1883627,1883655,1883671,1883707,1883753,1883785,1883823,1883861,1883887,1884083,1884127,1884381,1884425,1884481,1884523,1884565,1884617,1884675,1884705,1884779,1884831,1884883,1884935,1884981,1885015,1885049,1885099,1885133,1885167,1885201,1885231,1885263,1885323,1885359,1885395,1885433,1885461,1885493,1885527,1885567,1885607,1885635,1885821,1885859,1886025,1886107,1886147,1886203,1886245,1886289,1886343,1886399,1886429,1886503,1886555,1886607,1886659,1886705,1886741,1886777,1886829,1886867,1886931,1886963,1886993,1887033,1887067,1887105,1887141,1887181,1887211,1887245,1887291,1887323,1887389,1887565,1887599,1887749,1887831,1887873,1887927,1887971,1888017,1888071,1888123,1888155,1888185,1888277,1888327,1888379,1888391,1888431,1888499,1888553,1888591,1888645,1888689,1888725,1888765,1888803,1888843,1888881,1888923,1888955,1888991,1889029,1889073,1889117,1889167,1889333,1889425,1889509,1889553,1889595,1889647,1889691,1889739,1889795,1889847,1889879,1889949,1890001,1890051,1890105,1890153,1890193,1890265,1890319,1890359,1890421,1890459,1890501,1890539,1890579,1890623,1890667,1890677,1890711,1890749,1890799,1890835,1890879,1890929,1891079,1891257,1891273,1891315,1891367,1891413,1891461,1891517,1891569,1891603,1891671,1891725,1891773,1891829,1891849,1891921,1891995,1892051,1892093,1892157,1892163,1892241,1892247,1892323,1892329,1892415,1892423,1892463,1892499,1892555,1892631,1892639,1892691,1892819,1892887,1892985,1893003,1893045,1893097,1893145,1893193,1893249,1893327,1893395,1893447,1893497,1893551,1893561,1893613,1893657,1893733,1893791,1893835,1893901,1893943,1893989,1894031,1894075,1894123,1894171,1894181,1894217,1894259,1894303,1894353,1894403,1894455,1894571,1894642,1894733,1894753,1894797,1894803,1894899,1894909,1895001,1895079,1895147,1895199,1895249,1895303,1895329,1895401,1895445,1895507,1895551,1895597,1895665,1895709,1895757,1895805,1895847,1895899,1895949,1895989,1896033,1896079,1896131,1896183,1896237,1896303,1896367,1896415,1896503,1896525,1896571,1896621,1896671,1896719,1896771,1896847,1896913,1896965,1897015,1897067,1897073,1897103,1897173,1897277,1897323,1897371,1897377,1897487,1897537,1897587,1897612,1897685,1897737,1897779,1897827,1897874,1897929,1897981,1898037,1898087,1898143,1898191,1898281,1898305,1898353,1898405,1898457,1898507,1898559,1898635,1898697,1898749,1898799,1898849,1898879,1898951,1898999,1899065,1899113,1899163,1899235,1899283,1899335,1899387,1899433,1899443,1899537,1899557,1899595,1899645,1899693,1899755,1899803,1899887,1899919,1899979,1900061,1900087,1900093,1900189,1900241,1900293,1900345,1900423,1900487,1900541,1900593,1900645,1900677,1900751,1900801,1900869,1900942,1901039,1901089,1901143,1901197,1901249,1901303,1901363,1901407,1901459,1901509,1901567,1901623,1901683,1901711,1901773,1901787,1901869,1901897,1901949,1902003,1902057,1902111,1902165,1902243,1902305,1902359,1902413,1902465,1902499,1902573,1902687,1902739,1902793,1902869,1902921,1902981,1903033,1903087,1903093,1903193,1903217,1903259,1903313,1903363,1903423,1903483,1903563,1903573,1903637,1903691,1903753,1903763,1903815,1903913,1903921,1903975,1904099,1904159,1904167,1904221,1904275,1904327,1904361,1904435,1904545,1904597,1904651,1904725,1904779,1904871,1904891,1904943,1904999,1905061,1905107,1905163,1905213,1905323,1905385,1905417,1905483,1905491,1905543,1905605,1905617,1905669,1905765,1905775,1905829,1905951,1906009,1906055,1906117,1906169,1906203,1906277,1906287,1906393,1906445,1906499,1906540,1906627,1906633,1906737,1906785,1906799,1906893,1906921,1906965,1907059,1907117,1907173,1907235,1907269,1907335,1907347,1907427,1907459,1907473,1907525,1907619,1907631,1907685,1907805,1907861,1907907,1907969,1908021,1908055,1908129,1908141,1908243,1908295,1908349,1908421,1908475,1908563,1908587,1908639,1908695,1908761,1908803,1908815,1908907,1908965,1909019,1909081,1909117,1909183,1909205,1909275,1909309,1909363,1909377,1909469,1909483,1909537,1909655,1909709,1909755,1909817,1909869,1909905,1909977,1909991,1910031,1910135,1910189,1910201,1910273,1910327,1910413,1910453,1910495,1910547,1910611,1910661,1910687,1910759,1910815,1910869,1910931,1910969,1911053,1911119,1911155,1911209,1911225,1911315,1911331,1911385,1911501,1911555,1911601,1911667,1911745,1911817,1911865,1911965,1912019,1912033,1912103,1912157,1912241,1912269,1912321,1912377,1912443,1912493,1912501,1912639,1912647,1912753,1912793,1912859,1912885,1912949,1912987,1913041,1913059,1913147,1913165,1913219,1913377,1913423,1913485,1913537,1913575,1913645,1913693,1913789,1913843,1913859,1913927,1913981,1914065,1914105,1914151,1914252,1914303,1914321,1914407,1914461,1914513,1914575,1914617,1914683,1914711,1914771,1914811,1914865,1914885,1914971,1915035,1915143,1915197,1915243,1915305,1915359,1915397,1915509,1915601,1915655,1915673,1915739,1915795,1915875,1915915,1916002,1916067,1916113,1916133,1916217,1916271,1916323,1916383,1916427,1916493,1916523,1916581,1916623,1916689,1916737,1916797,1916851,1916989,1917005,1917068,1917113,1917167,1917232,1917315,1917405,1917411,1917479,1917487,1917598,1917677,1917700,1917805,1917869,1917915,1917937,1918019,1918073,1918125,1918183,1918229,1918295,1918327,1918383,1918471,1918495,1918577,1918601,1918655,1918795,1918841,1918903,1918957,1918999,1919065,1919113,1919201,1919255,1919279,1919339,1919395,1919471,1919511,1919599,1919663,1919709,1919733,1919813,1919825,1919919,1919977,1920023,1920089,1920095,1920129,1920265,1920291,1920371,1920397,1920451,1920457,1920591,1920693,1920699,1920764,1920797,1920861,1920909,1920995,1921049,1921075,1921133,1921189,1921263,1921305,1921391,1921455,1921501,1921527,1921607,1921659,1921711,1921782,1921872,1921909,1921963,1921969,1922057,1922085,1922163,1922191,1922245,1922373,1922419,1922481,1922535,1922579,1922643,1922691,1922773,1922827,1922855,1922913,1922969,1923041,1923083,1923167,1923231,1923277,1923305,1923383,1923437,1923489,1923545,1923593,1923655,1923693,1923747,1923835,1923865,1923941,1923971,1924025,1924147,1924193,1924255,1924309,1924355,1924405,1924427,1924499,1924585,1924629,1924685,1924743,1924811,1924855,1924939,1925001,1925049,1925079,1925155,1925208,1925259,1925317,1925363,1925423,1925463,1925517,1925607,1925639,1925713,1925747,1925801,1925917,1925963,1926025,1926079,1926125,1926187,1926235,1926313,1926367,1926399,1926453,1926509,1926579,1926624,1926703,1926769,1926813,1926847,1926919,1926975,1927025,1927081,1927129,1927189,1927231,1927283,1927371,1927405,1927457,1927485,1927561,1927599,1927685,1927759,1927793,1927847,1927893,1927953,1928001,1928077,1928131,1928167,1928217,1928327,1928341,1928443,1928517,1928563,1928597,1928669,1928723,1928775,1928825,1928881,1928931,1928951,1928995,1929051,1929137,1929213,1929243,1929279,1929347,1929437,1929483,1929545,1929555,1929609,1929657,1929755,1929830,1929883,1929919,1929969,1930079,1930095,1930195,1930269,1930315,1930351,1930421,1930475,1930527,1930577,1930633,1930683,1930705,1930751,1930807,1930891,1930965,1930999,1931074,1931113,1931191,1931263,1931299,1931353,1931403,1931459,1931509,1931581,1931635,1931675,1931725,1931827,1931845,1931943,1932015,1932063,1932101,1932169,1932223,1932275,1932325,1932381,1932431,1932455,1932503,1932559,1932641,1932715,1932749,1932825,1932863,1932937,1933009,1933045,1933099,1933149,1933205,1933255,1933327,1933381,1933423,1933473,1933571,1933589,1933673,1933743,1933763,1933845,1933911,1933965,1934017,1934067,1934125,1934173,1934199,1934249,1934305,1934385,1934457,1934463,1934499,1934575,1934613,1934685,1934787,1934841,1934891,1934947,1934997,1935067,1935073,1935165,1935215,1935309,1935331,1935423,1935493,1935543,1935585,1935649,1935703,1935755,1935805,1935863,1935911,1935939,1935991,1936047,1936125,1936195,1936233,1936309,1936347,1936417,1936519,1936573,1936623,1936679,1936729,1936797,1936851,1936897,1936947,1937037,1937061,1937151,1937219,1937271,1937315,1937377,1937431,1937483,1937533,1937591,1937639,1937669,1937721,1937777,1937853,1937921,1937959,1938035,1938073,1938141,1938207,1938249,1938303,1938353,1938409,1938459,1938525,1938579,1938659,1938677,1938775,1938789,1938877,1938943,1938995,1939041,1939101,1939155,1939185,1939257,1939263,1939323,1939369,1939401,1939455,1939511,1939641,1939683,1939739,1939797,1939809,1939895,1939937,1940027,1940077,1940133,1940183,1940247,1940301,1940381,1940401,1940497,1940513,1940597,1940663,1940715,1940763,1940821,1940875,1940929,1940977,1941058,1941111,1941119,1941195,1941229,1941353,1941397,1941453,1941513,1941577,1941641,1941685,1941739,1941789,1941845,1941895,1941957,1942011,1942091,1942113,1942207,1942225,1942305,1942371,1942423,1942473,1942529,1942583,1942637,1942685,1942745,1942793,1942836,1942904,1942939,1943059,1943107,1943183,1943221,1943281,1943345,1943389,1943443,1943493,1943549,1943601,1943659,1943713,1943793,1943817,1943909,1943929,1944005,1944069,1944123,1944173,1944229,1944283,1944374,1944435,1944481,1944519,1944573,1944629,1944641,1944761,1944767,1944881,1944919,1944977,1944983,1945047,1945091,1945145,1945197,1945251,1945305,1945361,1945415,1945495,1945521,1945611,1945633,1945707,1945769,1945823,1945875,1945929,1945983,1946073,1946153,1946213,1946267,1946323,1946337,1946366,1946460,1946573,1946611,1946669,1946731,1946741,1946830,1946839,1946891,1946945,1946999,1947053,1947107,1947185,1947213,1947302,1947325,1947395,1947457,1947511,1947563,1947617,1947671,1947759,1947819,1947865,1947907,1947961,1948017,1948033,1948143,1948191,1948263,1948301,1948359,1948419,1948467,1948521,1948577,1948627,1948683,1948739,1948793,1948869,1948901,1948987,1949013,1949131,1949185,1949212,1949293,1949347,1949431,1949493,1949539,1949583,1949637,1949693,1949711,1949817,1949865,1949935,1949975,1950031,1950091,1950139,1950193,1950245,1950299,1950353,1950407,1950465,1950537,1950575,1950675,1950689,1950799,1950853,1950907,1950961,1951015,1951097,1951159,1951205,1951251,1951307,1951361,1951370,1951378,1951380,1951382,1951430,1951478,1951480,1951482,1951503,1951524,1951525,1951526,1951527,1951559,1951591,1951592,1951593,1951612,1951631,1951632,1951633,1951658,1951683,1951684,1951712,1951740,1951742,1951744,1951765,1951787,1951789,1951813,1951837,1951838,1951839,1951863,1951890,1951894,1951916,1951938,1951942,1951948,1951951,1951971,1951994,1951998,1951999,1952021,1952046,1952070,1952091,1952096,1952131,1952162,1952163,1952165,1952180,1952194,1952195,1952196,1952235,1952274,1952275,1952276,1952289,1952302,1952303,1952304,1952333,1952362,1952363,1952364,1952391,1952418,1952419,1952420,1952445,1952470,1952471,1952472,1952497,1952522,1952523,1952524,1952549,1952574,1952575,1952576,1952601,1952626,1952627,1952665,1952703,1952704,1952705,1952734,1952763,1952764,1952765,1952786,1952807,1952808,1952830,1952852,1952853,1952854,1952879,1952905,1952907,1952908,1952933,1952958,1952959,1952968,1952978,1952980,1953025,1953071,1953073,1953093,1953113,1953114,1953115,1953145,1953175,1953176,1953195,1953214,1953215,1953216,1953239,1953262,1953263,1953264,1953291,1953318,1953320,1953322,1953342,1953363,1953365,1953366,1953389,1953412,1953413,1953414,1953437,1953463,1953467,1953488,1953509,1953513,1953519,1953522,1953523,1953542,1953564,1953568,1953569,1953590,1953614,1953637,1953657,1953662,1953695,1953724,1953726,1953741,1953755,1953756,1953757,1953758,1953794,1953830,1953831,1953832,1953845,1953858,1953859,1953860,1953887,1953914,1953915,1953916,1953942,1953968,1953969,1953970,1953994,1954018,1954019,1954020,1954044,1954068,1954069,1954070,1954071,1954095,1954119,1954120,1954121,1954145,1954169,1954170,1954171,1954207,1954243,1954244,1954245,1954273,1954301,1954302,1954303,1954323,1954343,1954344,1954366,1954388,1954389,1954390,1954414,1954439,1954441,1954442,1954443,1954467,1954491,1954492,1954501,1954511,1954513,1954516,1954558,1954599,1954601,1954620,1954639,1954640,1954641,1954642,1954670,1954698,1954699,1954700,1954719,1954738,1954739,1954740,1954762,1954784,1954785,1954810,1954835,1954836,1954838,1954840,1954860,1954881,1954883,1954905,1954927,1954928,1954929,1954951,1954976,1954980,1955000,1955023,1955029,1955032,1955033,1955051,1955072,1955076,1955077,1955097,1955120,1955142,1955161,1955192,1955223,1955224,1955226,1955241,1955255,1955256,1955257,1955258,1955292,1955326,1955327,1955328,1955341,1955354,1955355,1955356,1955381,1955406,1955407,1955408,1955409,1955434,1955459,1955460,1955461,1955484,1955507,1955508,1955509,1955532,1955555,1955556,1955557,1955558,1955581,1955604,1955605,1955606,1955629,1955652,1955653,1955654,1955688,1955722,1955723,1955724,1955751,1955778,1955779,1955780,1955799,1955818,1955819,1955841,1955863,1955864,1955865,1955888,1955912,1955914,1955915,1955916,1955939,1955962,1955963,1955972,1955982,1955984,1955987,1956026,1956064,1956066,1956084,1956102,1956103,1956104,1956105,1956131,1956157,1956158,1956177,1956196,1956197,1956198,1956219,1956240,1956241,1956265,1956289,1956290,1956292,1956294,1956313,1956333,1956335,1956336,1956357,1956378,1956379,1956380,1956401,1956425,1956429,1956448,1956467,1956471,1956477,1956480,1956481,1956498,1956518,1956522,1956523,1956542,1956564,1956585,1956603,1956632,1956661,1956662,1956664,1956679,1956693,1956694,1956695,1956696,1956728,1956760,1956761,1956762,1956775,1956788,1956789,1956790,1956813,1956836,1956837,1956838,1956839,1956863,1956887,1956888,1956910,1956932,1956933,1956934,1956956,1956978,1956979,1956980,1956981,1956982,1957004,1957026,1957027,1957028,1957050,1957072,1957073,1957074,1957107,1957140,1957141,1957142,1957167,1957192,1957193,1957194,1957213,1957232,1957233,1957254,1957275,1957276,1957277,1957299,1957322,1957324,1957325,1957326,1957348,1957370,1957371,1957380,1957390,1957392,1957395,1957431,1957466,1957468,1957486,1957504,1957505,1957506,1957530,1957554,1957555,1957574,1957593,1957594,1957595,1957596,1957616,1957636,1957637,1957659,1957681,1957682,1957684,1957686,1957705,1957725,1957727,1957728,1957748,1957768,1957769,1957789,1957812,1957816,1957834,1957852,1957856,1957862,1957865,1957866,1957882,1957901,1957905,1957906,1957924,1957945,1957965,1957982,1958009,1958036,1958038,1958053,1958067,1958068,1958069,1958070,1958100,1958130,1958131,1958132,1958145,1958158,1958159,1958160,1958181,1958202,1958203,1958204,1958227,1958250,1958251,1958272,1958293,1958294,1958295,1958316,1958337,1958338,1958339,1958340,1958341,1958362,1958383,1958384,1958385,1958406,1958427,1958428,1958436,1958468,1958493,1958516,1958539,1958540,1958541,1958560,1958579,1958580,1958600,1958620,1958621,1958642,1958663,1958665,1958667,1958668,1958669,1958690,1958711,1958712,1958721,1958731,1958735,1958768,1958799,1958801,1958803,1958821,1958839,1958840,1958841,1958863,1958885,1958886,1958905,1958924,1958925,1958926,1958927,1958928,1958947,1958966,1958986,1959006,1959007,1959008,1959010,1959012,1959031,1959051,1959053,1959054,1959073,1959092,1959093,1959112,1959131,1959135,1959139,1959156,1959173,1959177,1959183,1959186,1959187,1959202,1959220,1959224,1959225,1959242,1959262,1959281,1959297,1959322,1959347,1959349,1959364,1959378,1959379,1959380,1959403,1959431,1959437,1959438,1959439,1959452,1959465,1959466,1959467,1959487,1959507,1959508,1959509,1959530,1959551,1959552,1959572,1959592,1959593,1959594,1959614,1959634,1959635,1959636,1959637,1959638,1959658,1959678,1959679,1959680,1959700,1959720,1959721,1959729,1959737,1959761,1959785,1959806,1959827,1959828,1959829,1959848,1959867,1959868,1959887,1959906,1959907,1959927,1959947,1959949,1959951,1959952,1959969,1959989,1959993,1960002,1960012,1960016,1960046,1960074,1960076,1960078,1960079,1960097,1960115,1960116,1960136,1960156,1960157,1960176,1960195,1960196,1960197,1960198,1960199,1960217,1960235,1960254,1960273,1960275,1960277,1960295,1960314,1960316,1960317,1960335,1960353,1960354,1960372,1960390,1960394,1960398,1960414,1960430,1960434,1960440,1960443,1960444,1960458,1960475,1960479,1960495,1960514,1960532,1960547,1960570,1960593,1960595,1960610,1960624,1960625,1960626,1960647,1960673,1960679,1960680,1960681,1960694,1960707,1960708,1960709,1960728,1960747,1960748,1960767,1960786,1960787,1960803,1960822,1960826,1960827,1960846,1960865,1960866,1960867,1960868,1960869,1960870,1960889,1960908,1960909,1960913,1960932,1960948,1960949,1960957,1960965,1960987,1961009,1961010,1961030,1961050,1961051,1961052,1961071,1961090,1961091,1961109,1961127,1961128,1961129,1961148,1961167,1961169,1961171,1961172,1961188,1961207,1961219,1961229,1961232,1961260,1961287,1961289,1961291,1961292,1961309,1961326,1961327,1961345,1961363,1961364,1961382,1961400,1961401,1961402,1961403,1961404,1961410,1961427,1961439,1961457,1961475,1961476,1961478,1961480,1961497,1961515,1961517,1961534,1961551,1961552,1961570,1961588,1961592,1961596,1961611,1961626,1961630,1961635,1961637,1961638,1961652,1961669,1961673,1961674,1961689,1961707,1961724,1961738,1961759,1961780,1961781,1961783,1961798,1961812,1961813,1961831,1961854,1961860,1961861,1961874,1961887,1961888,1961889,1961890,1961908,1961926,1961927,1961945,1961963,1961964,1961965,1961980,1961998,1962002,1962003,1962021,1962039,1962040,1962041,1962042,1962043,1962044,1962062,1962080,1962081,1962085,1962103,1962118,1962125,1962132,1962133,1962154,1962175,1962176,1962195,1962214,1962215,1962233,1962251,1962252,1962265,1962283,1962289,1962290,1962308,1962326,1962327,1962329,1962331,1962332,1962346,1962363,1962375,1962384,1962386,1962413,1962439,1962440,1962442,1962444,1962460,1962476,1962477,1962478,1962495,1962512,1962513,1962530,1962547,1962548,1962549,1962550,1962551,1962557,1962573,1962584,1962601,1962618,1962619,1962621,1962623,1962639,1962656,1962658,1962674,1962690,1962691,1962708,1962725,1962726,1962730,1962734,1962748,1962765,1962769,1962771,1962773,1962786,1962799,1962803,1962807,1962821,1962835,1962851,1962867,1962887,1962907,1962908,1962909,1962911,1962925,1962938,1962939,1962940,1962956,1962977,1962983,1962984,1962997,1963010,1963011,1963012,1963013,1963030,1963047,1963048,1963065,1963082,1963083,1963084,1963098,1963115,1963119,1963120,1963137,1963154,1963155,1963156,1963157,1963158,1963175,1963192,1963193,1963196,1963213,1963228,1963234,1963240,1963260,1963280,1963281,1963299,1963317,1963334,1963351,1963352,1963364,1963381,1963387,1963388,1963405,1963422,1963424,1963426,1963427,1963440,1963456,1963468,1963477,1963479,1963504,1963528,1963530,1963532,1963547,1963562,1963563,1963564,1963580,1963596,1963612,1963628,1963629,1963630,1963631,1963636,1963651,1963662,1963678,1963694,1963695,1963697,1963699,1963714,1963730,1963746,1963761,1963762,1963778,1963794,1963798,1963802,1963815,1963831,1963835,1963836,1963849,1963862,1963866,1963870,1963883,1963896,1963911,1963926,1963944,1963962,1963963,1963965,1963979,1963992,1963993,1964007,1964021,1964027,1964033,1964046,1964059,1964060,1964061,1964062,1964078,1964094,1964095,1964111,1964127,1964128,1964129,1964142,1964158,1964162,1964178,1964194,1964195,1964196,1964197,1964198,1964214,1964230,1964231,1964234,1964250,1964264,1964269,1964274,1964293,1964312,1964313,1964330,1964347,1964363,1964379,1964380,1964391,1964407,1964413,1964414,1964430,1964446,1964448,1964450,1964451,1964463,1964478,1964490,1964499,1964501,1964524,1964546,1964548,1964550,1964564,1964578,1964579,1964580,1964595,1964610,1964625,1964640,1964641,1964642,1964643,1964647,1964661,1964672,1964673,1964688,1964703,1964704,1964706,1964708,1964722,1964737,1964752,1964766,1964767,1964782,1964797,1964798,1964802,1964806,1964818,1964833,1964837,1964838,1964850,1964862,1964866,1964870,1964882,1964894,1964908,1964922,1964938,1964954,1964955,1964957,1964971,1964984,1964985,1964997,1965009,1965015,1965021,1965034,1965047,1965048,1965049,1965050,1965065,1965080,1965081,1965096,1965111,1965112,1965124,1965139,1965143,1965158,1965173,1965174,1965175,1965176,1965177,1965192,1965207,1965208,1965211,1965226,1965239,1965243,1965247,1965265,1965283,1965284,1965300,1965316,1965331,1965346,1965347,1965348,1965358,1965373,1965379,1965380,1965395,1965410,1965412,1965414,1965415,1965426,1965440,1965452,1965461,1965462,1965464,1965484,1965503,1965505,1965507,1965520,1965533,1965534,1965535,1965549,1965563,1965564,1965578,1965592,1965593,1965594,1965595,1965599,1965612,1965622,1965623,1965637,1965651,1965652,1965654,1965656,1965669,1965683,1965697,1965710,1965711,1965725,1965739,1965740,1965744,1965748,1965759,1965773,1965777,1965778,1965789,1965800,1965804,1965808,1965819,1965830,1965843,1965856,1965871,1965886,1965887,1965889,1965902,1965914,1965915,1965926,1965937,1965942,1965947,1965960,1965973,1965974,1965975,1965976,1965990,1966004,1966005,1966006,1966020,1966034,1966035,1966046,1966060,1966064,1966078,1966092,1966093,1966094,1966095,1966096,1966110,1966124,1966125,1966128,1966142,1966154,1966158,1966162,1966178,1966194,1966195,1966210,1966225,1966239,1966253,1966254,1966255,1966264,1966278,1966284,1966298,1966312,1966314,1966316,1966317,1966327,1966340,1966352,1966361,1966362,1966364,1966382,1966399,1966401,1966414,1966426,1966427,1966428,1966441,1966454,1966455,1966468,1966481,1966482,1966483,1966484,1966488,1966500,1966509,1966510,1966523,1966536,1966537,1966539,1966541,1966553,1966566,1966579,1966591,1966592,1966605,1966618,1966619,1966623,1966627,1966637,1966650,1966654,1966655,1966665,1966675,1966679,1966683,1966693,1966703,1966715,1966727,1966740,1966753,1966754,1966756,1966769,1966781,1966782,1966792,1966802,1966806,1966810,1966823,1966836,1966837,1966838,1966839,1966852,1966865,1966866,1966867,1966880,1966893,1966894,1966904,1966917,1966921,1966934,1966947,1966948,1966949,1966950,1966951,1966964,1966977,1966980,1966983,1966994,1967005,1967009,1967013,1967027,1967041,1967055,1967069,1967082,1967095,1967096,1967097,1967105,1967118,1967124,1967137,1967150,1967151,1967153,1967155,1967156,1967165,1967177,1967189,1967198,1967200,1967216,1967232,1967244,1967255,1967256,1967257,1967269,1967281,1967282,1967294,1967306,1967307,1967308,1967309,1967313,1967324,1967332,1967333,1967345,1967357,1967358,1967360,1967362,1967373,1967385,1967397,1967408,1967409,1967421,1967433,1967434,1967438,1967442,1967451,1967463,1967467,1967468,1967477,1967486,1967490,1967494,1967503,1967512,1967523,1967534,1967546,1967558,1967560,1967572,1967583,1967584,1967593,1967602,1967606,1967610,1967622,1967634,1967635,1967636,1967648,1967660,1967661,1967662,1967674,1967686,1967695,1967704,1967708,1967723,1967735,1967736,1967737,1967738,1967739,1967751,1967763,1967764,1967767,1967779,1967789,1967793,1967797,1967809,1967821,1967822,1967835,1967848,1967860,1967872,1967873,1967874,1967881,1967893,1967899,1967911,1967923,1967924,1967926,1967928,1967936,1967947,1967959,1967968,1967969,1967971,1967985,1967999,1968001,1968011,1968021,1968022,1968025,1968036,1968045,1968056,1968067,1968068,1968069,1968070,1968074,1968084,1968091,1968102,1968113,1968114,1968116,1968118,1968128,1968139,1968150,1968160,1968161,1968172,1968183,1968184,1968188,1968192,1968200,1968211,1968215,1968223,1968231,1968232,1968236,1968240,1968248,1968265,1968275,1968286,1968297,1968298,1968300,1968311,1968321,1968322,1968330,1968338,1968342,1968346,1968357,1968368,1968369,1968370,1968381,1968392,1968393,1968394,1968405,1968416,1968424,1968432,1968436,1968450,1968461,1968462,1968463,1968464,1968465,1968476,1968487,1968488,1968491,1968502,1968511,1968515,1968519,1968529,1968539,1968551,1968563,1968564,1968575,1968586,1968587,1968593,1968599,1968605,1968621,1968632,1968633,1968635,1968637,1968638,1968645,1968655,1968667,1968676,1968677,1968679,1968692,1968704,1968713,1968722,1968723,1968726,1968736,1968744,1968754,1968764,1968765,1968766,1968767,1968770,1968779,1968786,1968796,1968806,1968808,1968810,1968819,1968829,1968839,1968848,1968849,1968850,1968886,1969230,1969256,1969284,1969291,1969316,1969368,1969374,1969396,1969418,1969426,1969462,1969468,1969496,1969514,1969528,1969534,1969540,1969546,1969552,1969558,1969564,1969570,1969576,1969582,1969588,1969594,1969600,1969606,1969612,1969618,1969624,1969630,1969636,1969924,1969946,1969974,1969998,1970018,1970024,1970060,1970068,1970090,1970112,1970134,1970156,1970178,1970194,1970218,1970226,1970234,1970242,1970250,1970258,1970266,1970274,1970282,1970290,1970300,1970308,1970315,1970324,1970332,1970340,1970348,1970356,1970594,1970616,1970638,1970666,1970690,1970710,1970718,1970752,1970762,1970790,1970806,1970830,1970850,1970872,1970890,1970914,1970926,1970936,1970946,1970956,1970966,1970976,1970984,1970993,1971004,1971012,1971022,1971032,1971042,1971052,1971062,1971072,1971082,1971092,1971298,1971324,1971346,1971370,1971396,1971414,1971424,1971456,1971468,1971500,1971512,1971536,1971556,1971578,1971598,1971624,1971636,1971648,1971660,1971672,1971684,1971696,1971708,1971720,1971732,1971744,1971756,1971768,1971780,1971792,1971804,1971816,1971828,1971886,1972024,1972050,1972074,1972100,1972118,1972130,1972160,1972174,1972196,1972218,1972242,1972262,1972284,1972306,1972331,1972346,1972360,1972374,1972388,1972402,1972416,1972430,1972444,1972456,1972468,1972482,1972502,1972516,1972530,1972544,1972555,1972572,1972622,1972736,1972762,1972786,1972811,1972830,1972844,1972852,1972880,1972896,1972924,1972940,1972976,1972997,1973012,1973026,1973057,1973068,1973084,1973100,1973118,1973134,1973150,1973166,1973182,1973198,1973214,1973230,1973246,1973264,1973278,1973296,1973312,1973328,1973378,1973460,1973486,1973510,1973536,1973554,1973570,1973596,1973614,1973636,1973658,1973682,1973702,1973723,1973731,1973752,1973778,1973796,1973814,1973832,1973850,1973868,1973888,1973906,1973924,1973942,1973960,1973980,1973990,1974018,1974035,1974054,1974072,1974090,1974122,1974192,1974208,1974224,1974248,1974272,1974292,1974310,1974334,1974368,1974383,1974414,1974436,1974458,1974480,1974506,1974526,1974546,1974566,1974576,1974598,1974618,1974646,1974658,1974684,1974700,1974718,1974738,1974758,1974780,1974800,1974820,1974840,1974860,1974890,1974932,1974958,1974982,1975006,1975026,1975046,1975068,1975092,1975112,1975136,1975156,1975178,1975200,1975224,1975250,1975272,1975294,1975316,1975338,1975360,1975382,1975404,1975426,1975446,1975472,1975484,1975506,1975528,1975552,1975574,1975596,1975618,1975656,1975662,1975706,1975734,1975760,1975786,1975810,1975830,1975856,1975896,1975922,1975943,1975950,1975974,1976016,1976044,1976068,1976092,1976116,1976130,1976166,1976190,1976212,1976238,1976259,1976288,1976302,1976326,1976349,1976376,1976400,1976438,1976446,1976481,1976492,1976538,1976568,1976596,1976624,1976652,1976674,1976702,1976726,1976750,1976778,1976802,1976828,1976854,1976882,1976912,1976938,1976982,1976990,1977036,1977050,1977086,1977094,1977138,1977156,1977184,1977210,1977254,1977280,1977306,1977332,1977358,1977382,1977428,1977460,1977490,1977520,1977546,1977572,1977600,1977630,1977656,1977686,1977712,1977740,1977768,1977798,1977828,1977858,1977886,1977914,1977942,1977970,1977998,1978026,1978054,1978080,1978112,1978124,1978152,1978180,1978210,1978238,1978266,1978294,1978322,1978348,1978394,1978428,1978460,1978492,1978520,1978548,1978578,1978610,1978638,1978670,1978698,1978728,1978758,1978792,1978824,1978856,1978884,1978914,1978952,1978982,1979004,1979034,1979064,1979104,1979132,1979162,1979192,1979224,1979254,1979284,1979314,1979344,1979372,1979418,1979454,1979488,1979522,1979552,1979582,1979590,1979648,1979656,1979712,1979742,1979774,1979806,1979840,1979874,1979908,1979940,1979972,1980004,1980038,1980068,1980100,1980132,1980176,1980198,1980238,1980252,1980304,1980336,1980368,1980400,1980432,1980462,1980508,1980546,1980582,1980618,1980650,1980684,1980692,1980754,1980762,1980820,1980852,1980888,1980920,1980960,1980992,1981032,1981062,1981098,1981140,1981174,1981200,1981250,1981268,1981312,1981344,1981386,1981414,1981450,1981484,1981544,1981568,1981598,1981656,1981696,1981734,1981772,1981806,1981842,1981852,1981916,1981926,1981986,1982020,1982058,1982092,1982134,1982168,1982210,1982242,1982280,1982324,1982355,1982384,1982422,1982458,1982504,1982539,1982574,1982610,1982648,1982686,1982722,1982758,1982794,1982828,1982874,1982916,1982956,1982996,1983054,1983068,1983120,1983148,1983210,1983246,1983284,1983296,1983370,1983406,1983450,1983484,1983524,1983570,1983608,1983634,1983678,1983712,1983761,1983796,1983834,1983870,1983910,1983954,1984018,1984056,1984092,1984138,1984182,1984224,1984266,1984304,1984344,1984358,1984426,1984440,1984504,1984542,1984584,1984622,1984668,1984700,1984742,1984785,1984822,1984878,1984918,1984946,1984988,1985030,1985080,1985118,1985156,1985195,1985238,1985274,1985314,1985356,1985396,1985434,1985480,1985526,1985570,1985614,1985652,1985694,1985716,1985780,1985826,1985872,1985930,1985946,1985986,1986060,1986104,1986146,1986188,1986230,1986274,1986314,1986358,1986400,1986452,1986492,1986534,1986576,1986626,1986664,1986706,1986750,1986792,1986832,1986878,1986926,1986972,1987018,1987058,1987102,1987126,1987192,1987240,1987288,1987322,1987364,1987406,1987484,1987530,1987548,1987588,1987634,1987686,1987730,1987790,1987836,1987892,1987934,1987978,1988022,1988068,1988112,1988156,1988200,1988244,1988286,1988332,1988382,1988430,1988480,1988522,1988572,1988598,1988666,1988716,1988766,1988828,1988848,1988892,1988970,1989018,1989064,1989080,1989128,1989182,1989228,1989290,1989338,1989396,1989440,1989486,1989532,1989580,1989630,1989676,1989724,1989907,1990084,1990160,1990212,1990264,1990328,1990350,1990396,1990476,1990528,1990574,1990624,1990670,1990720,1990766,1990822,1990864,1990930,1990976,1991026,1991070,1991120,1991164,1991246,1991294,1991300,1991346,1991352,1991358,1991364,1991370,1991378,1991642,1991716,1991744,1991828,1991852,1991928,1991942,1992032,1992080,1992136,1992176,1992226,1992274,1992326,1992374,1992432,1992476,1992544,1992592,1992630,1992680,1992732,1992748,1992794,1992878,1992928,1992976,1992984,1992992,1993000,1993008,1993016,1993062,1993290,1993380,1993406,1993482,1993532,1993586,1993602,1993694,1993744,1993802,1993844,1993896,1993946,1994044,1994104,1994150,1994156,1994270,1994324,1994372,1994426,1994474,1994560,1994612,1994622,1994672,1994682,1994692,1994702,1994714,1994762,1994992,1995084,1995112,1995162,1995242,1995299,1995400,1995450,1995510,1995554,1995608,1995660,1995716,1995824,1995938,1995990,1996046,1996096,1996152,1996158,1996290,1996298,1996352,1996404,1996416,1996428,1996440,1996452,1996468,1996549,1996736,1996836,1996898,1996974,1997030,1997050,1997140,1997188,1997248,1997292,1997298,1997398,1997454,1997504,1997566,1997612,1997684,1997736,1997792,1997842,1997898,1997948,1998038,1998092,1998144,1998162,1998178,1998192,1998206,1998218,1998302,1998478,1998576,1998638,1998712,1998768,1998790,1998878,1998926,1998986,1999030,1999084,1999136,1999192,1999242,1999304,1999350,1999422,1999474,1999530,1999628,1999678,1999762,1999816,1999832,1999884,1999900,1999918,1999934,1999950,1999983,2000046,2000216,2000326,2000376,2000446,2000502,2000526,2000612,2000660,2000720,2000789,2000865,2000920,2000970,2001068,2001138,2001148,2001248,2001298,2001352,2001402,2001484,2001538,2001594,2001610,2001628,2001648,2001666,2001684,2001736,2001780,2001955,2002090,2002162,2002218,2002244,2002328,2002336,2002384,2002444,2002486,2002540,2002594,2002648,2002698,2002794,2002862,2002874,2002972,2003022,2003076,2003082,2003132,2003212,2003266,2003322,2003340,2003360,2003382,2003402,2003422,2003483,2003651,2003749,2003802,2003824,2003894,2003950,2003978,2004064,2004112,2004172,2004216,2004312,2004368,2004385,2004426,2004520,2004588,2004602,2004698,2004748,2004804,2004854,2004932,2004986,2005042,2005062,2005084,2005108,2005130,2005152,2005236,2005388,2005476,2005536,2005606,2005662,2005692,2005772,2005820,2005880,2005924,2005978,2006032,2006086,2006136,2006230,2006296,2006312,2006406,2006456,2006510,2006560,2006636,2006690,2006746,2006768,2006792,2006820,2006844,2006868,2006950,2007096,2007182,2007242,2007310,2007366,2007398,2007478,2007526,2007586,2007630,2007730,2007782,2007836,2007930,2007994,2008096,2008148,2008208,2008318,2008376,2008446,2008472,2008504,2008530,2008628,2008770,2008878,2008972,2009030,2009130,2009182,2009249,2009330,2009384,2009438,2009491,2009582,2009644,2009744,2009752,2009846,2009896,2009972,2010070,2010098,2010128,2010176,2010206,2010284,2010418,2010549,2010618,2010696,2010770,2010808,2010888,2010968,2010998,2011051,2011105,2011138,2011280,2011340,2011385,2011436,2011530,2011570,2011611,2011732,2011762,2011812,2011844,2011920,2012114,2012174,2012270,2012320,2012396,2012490,2012534,2012588,2012642,2012696,2012752,2012836,2012908,2012994,2013046,2013106,2013146,2013218,2013312,2013346,2013378,2013430,2013464,2013538,2013722,2013780,2013874,2013926,2013998,2014004,2014096,2014142,2014196,2014250,2014304,2014403,2014442,2014514,2014598,2014650,2014710,2014750,2014820,2014912,2014948,2014982,2015036,2015072,2015144,2015318,2015460,2015514,2015584,2015598,2015682,2015728,2015780,2015882,2015938,2016018,2016090,2016170,2016224,2016284,2016324,2016392,2016482,2016520,2016556,2016612,2016650,2016720,2016882,2016940,2017028,2017082,2017150,2017238,2017286,2017340,2017394,2017448,2017504,2017580,2017652,2017730,2017784,2017844,2017884,2017950,2018040,2018080,2018116,2018174,2018216,2018284,2018488,2018570,2018626,2018692,2018778,2018830,2018914,2018980,2019036,2019110,2019118,2019190,2019266,2019320,2019380,2019420,2019484,2019572,2019614,2019652,2019712,2019756,2019822,2019962,2020020,2020098,2020156,2020220,2020304,2020379,2020440,2020506,2020562,2020634,2020644,2020714,2020790,2020898,2020938,2021000,2021086,2021130,2021170,2021232,2021278,2021342,2021472,2021530,2021606,2021664,2021726,2021808,2021904,2021944,2022010,2022066,2022136,2022148,2022218,2022336,2022396,2022438,2022498,2022582,2022628,2022670,2022734,2022782,2022844,2022964,2023022,2023094,2023154,2023214,2023294,2023390,2023430,2023496,2023552,2023620,2023692,2023764,2023816,2023876,2023920,2023984,2024060,2024144,2024210,2024260,2024322,2024430,2024488,2024496,2024566,2024626,2024684,2024762,2024856,2024898,2024964,2025020,2025086,2025156,2025226,2025232,2025334,2025378,2025436,2025516,2025566,2025612,2025680,2025732,2025792,2025888,2025946,2025956,2026024,2026084,2026142,2026218,2026310,2026352,2026418,2026426,2026538,2026544,2026676,2026776,2026820,2026878,2026956,2027008,2027056,2027064,2027134,2027188,2027246,2027330,2027388,2027400,2027466,2027526,2027584,2027658,2027784,2027850,2027906,2027968,2028038,2028104,2028202,2028246,2028304,2028380,2028434,2028484,2028492,2028564,2028622,2028678,2028750,2028814,2028878,2028938,2028996,2029068,2029156,2029198,2029264,2029320,2029380,2029450,2029514,2029610,2029654,2029712,2029786,2029842,2029894,2029906,2030028,2030086,2030156,2030214,2030230,2030292,2030352,2030410,2030480,2030566,2030608,2030674,2030730,2030788,2030858,2030920,2031014,2031056,2031114,2031186,2031242,2031294,2031308,2031378,2031438,2031496,2031558,2031616,2031634,2031696,2031754,2031812,2031880,2031964,2032006,2032072,2032128,2032184,2032250,2032310,2032402,2032446,2032456,2032514,2032582,2032640,2032692,2032708,2032820,2032832,2032890,2032950,2033008,2033028,2033088,2033146,2033204,2033270,2033352,2033394,2033504,2033558,2033630,2033688,2033778,2033824,2033882,2033948,2034006,2034058,2034076,2034140,2034200,2034258,2034316,2034374,2034396,2034454,2034512,2034570,2034634,2034714,2034756,2034822,2034900,2034980,2035004,2035060,2035146,2035192,2035248,2035312,2035370,2035422,2035442,2035504,2035564,2035620,2035676,2035752,2035810,2035866,2035924,2035986,2036064,2036106,2036172,2036248,2036326,2036352,2036408,2036490,2036538,2036594,2036656,2036714,2036766,2036792,2036892,2036908,2036964,2037016,2037022,2037098,2037179,2037210,2037284,2037328,2037404,2037448,2037512,2037586,2037684,2037740,2037820,2037868,2037924,2037984,2038042,2038094,2038122,2038218,2038236,2038292,2038342,2038350,2038432,2038526,2038536,2038608,2038652,2038726,2038772,2038898,2038972,2039002,2039008,2039136,2039184,2039240,2039298,2039356,2039362,2039414,2039444,2039536,2039556,2039654,2039664,2039746,2039836,2039848,2039952,2040024,2040070,2040132,2040200,2040272,2040304,2040360,2040478,2040532,2040590,2040646,2040698,2040730,2040818,2040840,2040896,2040942,2040954,2041034,2041122,2041136,2041236,2041306,2041352,2041414,2041480,2041551,2041586,2041702,2041708,2041760,2041864,2041918,2041970,2042004,2042088,2042112,2042168,2042214,2042228,2042306,2042392,2042408,2042504,2042572,2042622,2042680,2042800,2042836,2042890,2042960,2043012,2043064,2043070,2043126,2043180,2043232,2043268,2043348,2043374,2043430,2043476,2043492,2043568,2043652,2043670,2043762,2043828,2043880,2043936,2044052,2044090,2044144,2044212,2044266,2044318,2044374,2044428,2044436,2044488,2044526,2044604,2044632,2044688,2044734,2044752,2044828,2044910,2044930,2045020,2045084,2045138,2045192,2045304,2045344,2045398,2045464,2045518,2045570,2045628,2045682,2045734,2045774,2045850,2045880,2045938,2045984,2046004,2046080,2046160,2046182,2046270,2046332,2046386,2046440,2046548,2046636,2046644,2046754,2046806,2046862,2046879,2046928,2046980,2047020,2047095,2047126,2047180,2047226,2047248,2047324,2047402,2047426,2047512,2047572,2047628,2047680,2047784,2047828,2047882,2047944,2047998,2048050,2048106,2048160,2048174,2048226,2048270,2048342,2048420,2048466,2048490,2048566,2048642,2048668,2048752,2048768,2048822,2048878,2048926,2049026,2049072,2049126,2049186,2049238,2049340,2049394,2049410,2049464,2049510,2049578,2049656,2049702,2049728,2049804,2049880,2049908,2049990,2050008,2050060,2050116,2050164,2050264,2050308,2050366,2050394,2050441,2050462,2050463,2050465,2050468,2050491,2050513,2050514,2050515,2050516,2050517,2050518,2050519,2050520,2050521,2050547,2050576,2050580,2050581,2050582,2050604,2050626,2050627,2050628,2050629,2050636,2050643,2050644,2050645,2050646,2050671,2050696,2050697,2050698,2050720,2050742,2050743,2050744,2050745,2050776,2050807,2050808,2050809,2050810,2050847,2050884,2050885,2050886,2050887,2050908,2050929,2050930,2050931,2050932,2050944,2050956,2050957,2050958,2050959,2050995,2051031,2051032,2051033,2051034,2051069,2051104,2051105,2051106,2051107,2051120,2051133,2051134,2051135,2051173,2051211,2051212,2051213,2051214,2051222,2051230,2051231,2051232,2051233,2051256,2051279,2051280,2051281,2051282,2051309,2051336,2051337,2051338,2051339,2051361,2051383,2051384,2051385,2051386,2051431,2051476,2051477,2051478,2051479,2051500,2051521,2051522,2051523,2051524,2051551,2051578,2051579,2051580,2051581,2051626,2051671,2051672,2051674,2051677,2051699,2051720,2051721,2051722,2051723,2051724,2051725,2051726,2051727,2051728,2051753,2051781,2051785,2051786,2051787,2051808,2051829,2051830,2051831,2051832,2051839,2051846,2051847,2051848,2051872,2051896,2051897,2051898,2051899,2051921,2051943,2051944,2051945,2051946,2051975,2052004,2052005,2052006,2052042,2052078,2052079,2052080,2052081,2052102,2052123,2052124,2052125,2052137,2052149,2052150,2052151,2052152,2052187,2052222,2052223,2052224,2052257,2052290,2052291,2052292,2052293,2052306,2052319,2052320,2052356,2052392,2052393,2052394,2052402,2052410,2052411,2052412,2052413,2052435,2052457,2052458,2052459,2052460,2052486,2052512,2052513,2052514,2052515,2052536,2052557,2052558,2052559,2052560,2052602,2052644,2052645,2052646,2052666,2052686,2052687,2052688,2052689,2052715,2052741,2052742,2052743,2052744,2052786,2052828,2052829,2052831,2052834,2052855,2052875,2052876,2052877,2052878,2052879,2052880,2052881,2052882,2052883,2052907,2052934,2052938,2052939,2052940,2052960,2052980,2052981,2052982,2052983,2052990,2052997,2052998,2052999,2053022,2053045,2053046,2053047,2053048,2053070,2053092,2053093,2053094,2053095,2053122,2053149,2053150,2053151,2053152,2053187,2053222,2053223,2053224,2053225,2053245,2053265,2053266,2053267,2053268,2053280,2053292,2053293,2053294,2053301,2053335,2053363,2053364,2053365,2053396,2053427,2053428,2053429,2053430,2053431,2053444,2053457,2053458,2053492,2053526,2053527,2053528,2053529,2053537,2053545,2053546,2053547,2053548,2053569,2053590,2053591,2053592,2053593,2053618,2053643,2053644,2053645,2053646,2053666,2053686,2053687,2053688,2053689,2053728,2053767,2053768,2053769,2053770,2053789,2053808,2053809,2053810,2053811,2053836,2053861,2053862,2053863,2053903,2053943,2053944,2053946,2053949,2053969,2053988,2053989,2053990,2053991,2053992,2053993,2053994,2053995,2053996,2054019,2054045,2054049,2054050,2054053,2054072,2054089,2054090,2054091,2054098,2054105,2054106,2054128,2054150,2054151,2054152,2054153,2054154,2054176,2054198,2054199,2054200,2054201,2054226,2054251,2054252,2054253,2054254,2054288,2054322,2054323,2054324,2054325,2054344,2054363,2054364,2054365,2054366,2054367,2054379,2054391,2054392,2054393,2054400,2054433,2054460,2054461,2054462,2054491,2054520,2054521,2054522,2054523,2054536,2054549,2054550,2054551,2054583,2054615,2054616,2054617,2054618,2054626,2054634,2054635,2054636,2054637,2054657,2054677,2054678,2054679,2054680,2054681,2054705,2054729,2054730,2054731,2054732,2054751,2054770,2054771,2054772,2054773,2054809,2054845,2054846,2054847,2054864,2054883,2054886,2054887,2054888,2054889,2054913,2054937,2054938,2054939,2054977,2055015,2055016,2055018,2055021,2055040,2055058,2055059,2055060,2055061,2055062,2055063,2055064,2055065,2055066,2055067,2055089,2055114,2055118,2055119,2055120,2055123,2055141,2055157,2055158,2055159,2055160,2055161,2055168,2055175,2055176,2055197,2055218,2055219,2055220,2055221,2055222,2055244,2055266,2055267,2055268,2055269,2055292,2055315,2055316,2055317,2055318,2055319,2055352,2055385,2055386,2055387,2055388,2055406,2055424,2055425,2055426,2055427,2055428,2055440,2055452,2055453,2055454,2055461,2055492,2055517,2055518,2055545,2055572,2055573,2055574,2055575,2055576,2055589,2055602,2055603,2055604,2055634,2055664,2055665,2055666,2055667,2055675,2055683,2055684,2055685,2055686,2055705,2055724,2055725,2055726,2055727,2055728,2055751,2055774,2055775,2055776,2055777,2055795,2055813,2055814,2055815,2055849,2055883,2055884,2055885,2055886,2055902,2055920,2055923,2055924,2055925,2055926,2055927,2055950,2055973,2055974,2055975,2056011,2056047,2056048,2056049,2056051,2056054,2056072,2056089,2056090,2056091,2056092,2056093,2056094,2056095,2056096,2056097,2056102,2056123,2056143,2056147,2056148,2056151,2056168,2056183,2056184,2056185,2056186,2056193,2056200,2056201,2056221,2056241,2056242,2056243,2056244,2056245,2056267,2056289,2056290,2056291,2056312,2056333,2056334,2056335,2056336,2056337,2056369,2056401,2056402,2056403,2056404,2056421,2056438,2056439,2056440,2056441,2056442,2056454,2056466,2056467,2056468,2056469,2056476,2056505,2056528,2056529,2056554,2056579,2056580,2056581,2056582,2056583,2056584,2056597,2056610,2056611,2056612,2056640,2056668,2056669,2056670,2056678,2056686,2056687,2056688,2056689,2056707,2056725,2056726,2056727,2056728,2056729,2056751,2056773,2056774,2056775,2056776,2056793,2056810,2056811,2056812,2056844,2056876,2056877,2056878,2056879,2056880,2056897,2056914,2056915,2056916,2056917,2056918,2056940,2056962,2056963,2056964,2056998,2057032,2057033,2057034,2057036,2057039,2057056,2057072,2057073,2057074,2057075,2057076,2057077,2057078,2057079,2057080,2057085,2057105,2057124,2057128,2057129,2057132,2057148,2057162,2057163,2057164,2057165,2057172,2057179,2057180,2057199,2057218,2057219,2057220,2057221,2057222,2057243,2057264,2057265,2057284,2057303,2057304,2057305,2057306,2057307,2057338,2057369,2057370,2057371,2057372,2057388,2057404,2057405,2057406,2057407,2057408,2057420,2057432,2057433,2057434,2057435,2057442,2057469,2057490,2057491,2057514,2057537,2057538,2057539,2057540,2057541,2057542,2057555,2057568,2057569,2057570,2057596,2057622,2057623,2057624,2057632,2057640,2057641,2057642,2057643,2057660,2057677,2057678,2057679,2057680,2057681,2057702,2057723,2057724,2057725,2057726,2057742,2057758,2057759,2057760,2057789,2057818,2057819,2057820,2057821,2057822,2057839,2057856,2057857,2057858,2057859,2057860,2057881,2057902,2057903,2057904,2057936,2057968,2057969,2057970,2057972,2057975,2057991,2058006,2058007,2058008,2058009,2058010,2058011,2058012,2058013,2058014,2058015,2058020,2058039,2058057,2058061,2058062,2058065,2058080,2058093,2058094,2058095,2058096,2058097,2058104,2058111,2058112,2058130,2058148,2058149,2058150,2058151,2058152,2058172,2058192,2058193,2058211,2058229,2058230,2058231,2058232,2058233,2058262,2058291,2058292,2058293,2058294,2058295,2058311,2058327,2058328,2058329,2058330,2058342,2058354,2058355,2058356,2058357,2058358,2058364,2058388,2058407,2058408,2058430,2058452,2058453,2058454,2058455,2058456,2058457,2058470,2058483,2058484,2058485,2058509,2058533,2058534,2058535,2058543,2058551,2058552,2058553,2058554,2058570,2058586,2058587,2058588,2058589,2058590,2058610,2058630,2058631,2058632,2058633,2058634,2058649,2058664,2058665,2058666,2058693,2058720,2058721,2058722,2058723,2058724,2058740,2058756,2058757,2058758,2058759,2058760,2058780,2058800,2058801,2058802,2058832,2058862,2058863,2058864,2058866,2058869,2058884,2058898,2058899,2058900,2058901,2058902,2058903,2058904,2058905,2058906,2058907,2058912,2058930,2058947,2058951,2058952,2058966,2058980,2058981,2058982,2058983,2058984,2058991,2058998,2058999,2059016,2059033,2059034,2059035,2059036,2059037,2059056,2059075,2059076,2059093,2059110,2059111,2059112,2059113,2059114,2059141,2059168,2059169,2059170,2059171,2059172,2059188,2059204,2059205,2059206,2059207,2059219,2059231,2059232,2059233,2059234,2059235,2059240,2059262,2059280,2059281,2059301,2059321,2059322,2059323,2059324,2059325,2059326,2059339,2059352,2059353,2059354,2059376,2059398,2059399,2059407,2059415,2059416,2059417,2059418,2059433,2059448,2059449,2059450,2059451,2059452,2059471,2059490,2059491,2059492,2059506,2059520,2059521,2059546,2059571,2059572,2059573,2059574,2059589,2059604,2059605,2059606,2059607,2059626,2059645,2059646,2059674,2059702,2059703,2059704,2059706,2059709,2059724,2059738,2059739,2059740,2059741,2059742,2059743,2059744,2059745,2059746,2059763,2059783,2059787,2059788,2059801,2059814,2059815,2059816,2059817,2059824,2059831,2059832,2059848,2059864,2059865,2059866,2059867,2059884,2059901,2059917,2059933,2059934,2059935,2059936,2059962,2059988,2059989,2059990,2059991,2060003,2060018,2060022,2060023,2060024,2060036,2060048,2060049,2060050,2060051,2060056,2060076,2060092,2060110,2060128,2060129,2060130,2060131,2060132,2060133,2060146,2060159,2060160,2060161,2060181,2060201,2060202,2060210,2060218,2060219,2060220,2060221,2060235,2060249,2060250,2060251,2060252,2060270,2060288,2060289,2060290,2060291,2060304,2060317,2060318,2060319,2060342,2060365,2060366,2060367,2060398,2060429,2060455,2060481,2060482,2060483,2060484,2060486,2060489,2060503,2060516,2060517,2060518,2060519,2060520,2060521,2060522,2060523,2060524,2060540,2060556,2060560,2060564,2060565,2060577,2060589,2060590,2060591,2060598,2060605,2060606,2060621,2060636,2060637,2060638,2060639,2060640,2060656,2060672,2060687,2060702,2060703,2060704,2060705,2060729,2060753,2060754,2060755,2060756,2060767,2060778,2060782,2060786,2060787,2060788,2060800,2060812,2060813,2060814,2060819,2060837,2060851,2060852,2060868,2060884,2060885,2060886,2060887,2060888,2060901,2060914,2060915,2060916,2060934,2060952,2060953,2060961,2060969,2060970,2060971,2060972,2060985,2060998,2060999,2061000,2061017,2061034,2061035,2061036,2061048,2061060,2061061,2061062,2061083,2061104,2061105,2061106,2061107,2061108,2061109,2061110,2061111,2061112,2061113,2061128,2061157,2061172,2061196,2061220,2061221,2061222,2061224,2061227,2061240,2061252,2061253,2061254,2061255,2061256,2061257,2061258,2061259,2061274,2061289,2061293,2061297,2061298,2061309,2061320,2061321,2061322,2061329,2061336,2061337,2061351,2061365,2061366,2061367,2061368,2061382,2061396,2061397,2061411,2061425,2061426,2061427,2061431,2061453,2061472,2061473,2061474,2061475,2061486,2061497,2061501,2061505,2061506,2061507,2061519,2061531,2061532,2061533,2061537,2061552,2061564,2061565,2061580,2061595,2061596,2061597,2061598,2061599,2061612,2061625,2061626,2061627,2061643,2061659,2061660,2061668,2061676,2061677,2061678,2061679,2061691,2061703,2061704,2061705,2061706,2061722,2061738,2061739,2061740,2061741,2061752,2061763,2061764,2061765,2061784,2061803,2061804,2061805,2061806,2061807,2061808,2061809,2061810,2061811,2061812,2061826,2061853,2061867,2061889,2061911,2061912,2061913,2061915,2061918,2061930,2061941,2061942,2061943,2061944,2061945,2061946,2061947,2061948,2061962,2061976,2061980,2061984,2061985,2061995,2062005,2062006,2062007,2062014,2062021,2062022,2062035,2062048,2062049,2062050,2062051,2062052,2062065,2062078,2062079,2062092,2062105,2062106,2062107,2062110,2062130,2062148,2062149,2062150,2062151,2062161,2062171,2062175,2062179,2062180,2062181,2062193,2062205,2062206,2062210,2062223,2062233,2062234,2062247,2062260,2062261,2062262,2062263,2062264,2062277,2062290,2062291,2062292,2062306,2062320,2062321,2062329,2062337,2062338,2062339,2062340,2062351,2062362,2062363,2062364,2062365,2062380,2062395,2062396,2062397,2062398,2062408,2062418,2062419,2062420,2062437,2062454,2062455,2062456,2062457,2062458,2062459,2062460,2062461,2062462,2062463,2062476,2062501,2062514,2062534,2062554,2062555,2062557,2062560,2062571,2062581,2062582,2062583,2062584,2062585,2062586,2062587,2062588,2062601,2062614,2062618,2062622,2062623,2062632,2062641,2062642,2062643,2062650,2062657,2062658,2062670,2062682,2062683,2062684,2062685,2062686,2062698,2062710,2062711,2062723,2062735,2062736,2062737,2062739,2062757,2062774,2062775,2062776,2062785,2062794,2062798,2062802,2062803,2062804,2062816,2062828,2062829,2062833,2062845,2062854,2062855,2062867,2062879,2062880,2062881,2062882,2062883,2062895,2062907,2062908,2062909,2062921,2062933,2062934,2062942,2062950,2062951,2062952,2062953,2062963,2062973,2062974,2062975,2062976,2062990,2063004,2063005,2063006,2063015,2063024,2063025,2063026,2063041,2063056,2063057,2063058,2063059,2063060,2063061,2063062,2063063,2063064,2063065,2063077,2063100,2063112,2063130,2063148,2063149,2063151,2063154,2063164,2063173,2063174,2063175,2063176,2063177,2063178,2063179,2063180,2063192,2063204,2063208,2063212,2063213,2063221,2063229,2063230,2063231,2063238,2063245,2063256,2063267,2063268,2063269,2063270,2063271,2063282,2063293,2063294,2063305,2063316,2063317,2063318,2063320,2063336,2063351,2063352,2063353,2063361,2063369,2063373,2063377,2063378,2063379,2063390,2063401,2063402,2063406,2063417,2063425,2063426,2063437,2063448,2063449,2063450,2063451,2063452,2063463,2063474,2063475,2063476,2063487,2063498,2063505,2063512,2063513,2063514,2063515,2063525,2063535,2063536,2063537,2063549,2063561,2063562,2063563,2063571,2063579,2063580,2063581,2063595,2063609,2063610,2063611,2063612,2063613,2063614,2063615,2063616,2063617,2063618,2063629,2063650,2063661,2063666,2063682,2063694,2063695,2063697,2063700,2063709,2063717,2063718,2063719,2063720,2063721,2063722,2063723,2063729,2063740,2063746,2063750,2063754,2063761,2063768,2063769,2063770,2063777,2063784,2063785,2063795,2063805,2063806,2063807,2063808,2063809,2063819,2063829,2063830,2063840,2063850,2063851,2063852,2063854,2063868,2063881,2063882,2063883,2063890,2063897,2063901,2063905,2063906,2063907,2063917,2063927,2063928,2063932,2063942,2063949,2063950,2063954,2063964,2063971,2063972,2063973,2063974,2063980,2063990,2063995,2138057,2138251,2138311,2138351,2138416,2138460,2138489,2138519,2138521,2138544,2138567,2138570,2138592,2138626,2138658,2138687,2138717,2138755,2138786,2138820,2138850,2138883,2138925,2138969,2139010,2139032,2139053,2139077,2139109,2139142,2139171,2139207,2139232,2139260,2139305,2139344,2139369,2139392,2139426,2139447,2139480,2139513,2139515,2139542,2139583,2139623,2139652,2139683,2139734,2139763,2139789,2139810,2139837,2139883,2139921,2139947,2139975,2140002,2140023,2140047,2140057,2140058,2140059,2140102,2140173,2140223,2140247,2140268,2140300,2140331,2140360,2140389,2140424,2140453,2140486,2140515,2140546,2140586,2140629,2140668,2140689,2140709,2140732,2140763,2140795,2140823,2140857,2140881,2140908,2140951,2140988,2141012,2141034,2141067,2141088,2141119,2141150,2141152,2141178,2141217,2141255,2141283,2141313,2141362,2141390,2141414,2141433,2141459,2141504,2141540,2141564,2141591,2141617,2141637,2141660,2141670,2141671,2141672,2141713,2141781,2141829,2141852,2141872,2141902,2141932,2141950,2141962,2141989,2142021,2142049,2142081,2142109,2142138,2142160,2142177,2142219,2142256,2142276,2142295,2142317,2142347,2142377,2142404,2142437,2142460,2142485,2142525,2142561,2142584,2142605,2142637,2142657,2142687,2142717,2142719,2142744,2142781,2142817,2142844,2142872,2142918,2142945,2142968,2142986,2143011,2143055,2143089,2143111,2143143,2143180,2143202,2143212,2143213,2143214,2143253,2143318,2143366,2143404,2143432,2143460,2143488,2143514,2143544,2143570,2143600,2143647,2143675,2143691,2143731,2143766,2143785,2143814,2143852,2143880,2143906,2143938,2143960,2144003,2144055,2144077,2144097,2144128,2144148,2144176,2144204,2144206,2144230,2144265,2144299,2144325,2144351,2144394,2144436,2144458,2144482,2144525,2144545,2144558,2144578,2144609,2144633,2144645,2144666,2144676,2144677,2144678,2144715,2144777,2144803,2144824,2144860,2144879,2144890,2144913,2144940,2144965,2144993,2145018,2145047,2145066,2145092,2145118,2145134,2145172,2145205,2145216,2145225,2145253,2145289,2145316,2145341,2145356,2145372,2145393,2145434,2145483,2145504,2145520,2145547,2145569,2145574,2145600,2145626,2145628,2145651,2145685,2145717,2145741,2145766,2145807,2145847,2145868,2145891,2145933,2145953,2145964,2145982,2146012,2146035,2146047,2146068,2146078,2146079,2146080,2146114,2146172,2146197,2146218,2146253,2146271,2146281,2146302,2146328,2146352,2146378,2146402,2146430,2146448,2146472,2146496,2146512,2146548,2146579,2146590,2146599,2146626,2146660,2146685,2146709,2146724,2146739,2146759,2146798,2146844,2146864,2146879,2146905,2146927,2146932,2146956,2146980,2147003,2147035,2147065,2147088,2147112,2147151,2147170,2147190,2147210,2147232,2147272,2147291,2147301,2147318,2147347,2147369,2147380,2147400,2147410,2147411,2147412,2147444,2147499,2147523,2147524,2147544,2147577,2147594,2147603,2147623,2147649,2147684,2147718,2147745,2147762,2147784,2147806,2147822,2147856,2147885,2147896,2147905,2147931,2147963,2147987,2148010,2148037,2148056,2148093,2148136,2148155,2148170,2148195,2148216,2148221,2148223,2148245,2148268,2148290,2148320,2148348,2148389,2148429,2148447,2148466,2148485,2148506,2148544,2148562,2148578,2148614,2148635,2148645,2148664,2148674,2148675,2148705,2148757,2148780,2148781,2148800,2148831,2148847,2148855,2148874,2148900,2148912,2148934,2148965,2148990,2149006,2149027,2149048,2149063,2149095,2149123,2149134,2149142,2149167,2149198,2149221,2149243,2149268,2149281,2149316,2149351,2149362,2149380,2149394,2149418,2149439,2149444,2149446,2149466,2149487,2149508,2149537,2149564,2149582,2149604,2149642,2149659,2149677,2149695,2149714,2149750,2149768,2149783,2149798,2149818,2149838,2149847,2149865,2149875,2149876,2149904,2149953,2149975,2149976,2149994,2150023,2150038,2150045,2150063,2150089,2150101,2150121,2150149,2150172,2150187,2150188,2150208,2150228,2150242,2150272,2150299,2150310,2150317,2150340,2150369,2150391,2150412,2150435,2150447,2150480,2150513,2150514,2150524,2150541,2150554,2150576,2150596,2150601,2150603,2150622,2150642,2150662,2150689,2150714,2150731,2150752,2150788,2150804,2150821,2150838,2150855,2150888,2150905,2150919,2150933,2150952,2150971,2150980,2150997,2151006,2151007,2151033,2151079,2151100,2151117,2151144,2151158,2151164,2151181,2151207,2151219,2151237,2151262,2151283,2151297,2151298,2151317,2151336,2151349,2151377,2151403,2151414,2151420,2151441,2151468,2151489,2151509,2151530,2151541,2151572,2151603,2151604,2151613,2151629,2151642,2151663,2151682,2151687,2151689,2151706,2151724,2151743,2151769,2151793,2151809,2151828,2151861,2151876,2151892,2151908,2151909,2151925,2151956,2151972,2151986,2152000,2152017,2152034,2152043,2152059,2152067,2152068,2152093,2152136,2152155,2152156,2152172,2152197,2152210,2152216,2152232,2152257,2152269,2152285,2152307,2152326,2152339,2152340,2152358,2152376,2152388,2152414,2152439,2152450,2152455,2152474,2152499,2152519,2152538,2152557,2152595,2152624,2152625,2152633,2152648,2152660,2152679,2152697,2152702,2152704,2152720,2152737,2152755,2152779,2152801,2152816,2152834,2152865,2152879,2152894,2152909,2152910,2152925,2152954,2152969,2152982,2152995,2153011,2153027,2153035,2153050,2153058,2153059,2153082,2153121,2153138,2153139,2153154,2153178,2153191,2153196,2153211,2153236,2153248,2153263,2153284,2153302,2153314,2153315,2153331,2153347,2153359,2153384,2153407,2153417,2153422,2153440,2153463,2153481,2153499,2153517,2153537,2153564,2153580,2153581,2153588,2153602,2153613,2153630,2153647,2153652,2153654,2153669,2153685,2153729,2153758,2153800,2153814,2153828,2153842,2153843,2153857,2153884,2153898,2153910,2153922,2153937,2153952,2153959,2153973,2153981,2153982,2154003,2154039,2154055,2154056,2154070,2154092,2154104,2154109,2154123,2154146,2154157,2154171,2154191,2154207,2154217,2154232,2154247,2154258,2154281,2154303,2154313,2154317,2154333,2154355,2154372,2154388,2154404,2154422,2154447,2154462,2154469,2154482,2154492,2154508,2154524,2154529,2154531,2154544,2154557,2154559,2154564,2154585,2154603,2154629,2154667,2154680,2154681,2154694,2154707,2154708,2154721,2154746,2154759,2154771,2154783,2154796,2154809,2154816,2154829,2154836,2154856,2154889,2154903,2154904,2154917,2154930,2154939,2154950,2154954,2154967,2154988,2154998,2155017,2155036,2155045,2155066,2155079,2155090,2155112,2155132,2155141,2155145,2155158,2155170,2155181,2155197,2155212,2155226,2155242,2155265,2155279,2155285,2155297,2155306,2155320,2155335,2155340,2155342,2155354,2155366,2155368,2155373,2155392,2155408,2155432,2155467,2155479,2155480,2155492,2155504,2155505,2155517,2155540,2155552,2155563,2155574,2155586,2155598,2155605,2155617,2155623,2155642,2155672,2155684,2155685,2155697,2155709,2155718,2155728,2155731,2155743,2155762,2155771,2155789,2155807,2155815,2155834,2155846,2155856,2155876,2155894,2155902,2155906,2155918,2155929,2155939,2155954,2155968,2155980,2155994,2156015,2156028,2156034,2156045,2156053,2156066,2156080,2156085,2156087,2156098,2156109,2156111,2156115,2156132,2156147,2156168,2156199,2156210,2156211,2156222,2156233,2156234,2156245,2156266,2156277,2156288,2156299,2156310,2156321,2156327,2156338,2156344,2156361,2156388,2156399,2156400,2156404,2156415,2156423,2156431,2156440,2156443,2156454,2156471,2156479,2156496,2156513,2156520,2156536,2156546,2156556,2156575,2156591,2156598,2156602,2156613,2156623,2156632,2156646,2156659,2156669,2156681,2156700,2156712,2156718,2156728,2156735,2156747,2156760,2156765,2156767,2156777,2156787,2156789,2156793,2156808,2156821,2156840,2156868,2156878,2156879,2156889,2156899,2156900,2156910,2156929,2156939,2156949,2156959,2156969,2156979,2156985,2156995,2157000,2157016,2157040,2157049,2157050,2157054,2157064,2157071,2157078,2157086,2157089,2157099,2157114,2157121,2157137,2157153,2157159,2157173,2157182,2157186,2157195,2157209,2157223,2157229,2157233,2157243,2157252,2157261,2157274,2157285,2157294,2157305,2157322,2157333,2157338,2157347,2157354,2157364,2157375,2157380,2157382,2157391,2157400,2157402,2157406,2157419,2157430,2157447,2157472,2157481,2157482,2157491,2157500,2157501,2157510,2157527,2157536,2157545,2157554,2157563,2157572,2157578,2157587,2157591,2157605,2157626,2157634,2157635,2157639,2157648,2157654,2157660,2157667,2157670,2157679,2157692,2157698,2157713,2157728,2157740,2157752,2157755,2157763,2157776,2157788,2157796,2157805,2157813,2157821,2157832,2157842,2157850,2157859,2157874,2157888,2157896,2157902,2157911,2157921,2157926,2157934,2157941,2157943,2157947,2157959,2157969,2157991,2158013,2158014,2158022,2158030,2158031,2158039,2158054,2158062,2158070,2158085,2158093,2158098,2158106,2158110,2158122,2158140,2158147,2158150,2158158,2158164,2158169,2158175,2158178,2158186,2158197,2158202,2158215,2158228,2158238,2158248,2158251,2158258,2158269,2158280,2158291,2158298,2158301,2158309,2158322,2158333,2158341,2158354,2158366,2158373,2158379,2158386,2158394,2158399,2158406,2158412,2158413,2158415,2158419,2158429,2158437,2158456,2158475,2158476,2158483,2158490,2158491,2158498,2158511,2158518,2158525,2158538,2158545,2158550,2158557,2158560,2158571,2158587,2158593,2158595,2158601,2158606,2158611,2158617,2158619,2158625,2158635,2158640,2158651,2158662,2158670,2158678,2158680,2158686,2158696,2158705,2158714,2158720,2158723,2158730,2158741,2158751,2158758,2158769,2158777,2158780,2158786,2158791,2158797,2158804,2158808,2158814,2158819,2158820,2158822,2158826,2158834,2158840,2158856,2158872,2158873,2158879,2158885,2158886,2158892,2158903,2158909,2158915,2158926,2158936,2158942,2158944,2158954,2158968,2158973,2158974,2158979,2158984,2158988,2158993,2158995,2159000,2159008,2159012,2159021,2159030,2159037,2159044,2159045,2159050,2159059,2159066,2159073,2159078,2159081,2159087,2159096,2159104,2159110,2159119,2159125,2159128,2159133,2159137,2159142,2159148,2159152,2159157,2159161,2159162,2159164,2159167,2159173,2159178,2159191,2159204,2159205,2159210,2159215,2159216,2159221,2159230,2159235,2159240,2159249,2159257,2159262,2159264,2159272,2159283,2159287,2159288,2159292,2159296,2159299,2159303,2159305,2159309,2159315,2159318,2159325,2159332,2159337,2159342,2159343,2159347,2159354,2159360,2159366,2159370,2159372,2159377,2159384,2159390,2159395,2159402,2159407,2159409,2159413,2159417,2159421,2159425,2159428,2159432,2159435,2159436,2159438,2159441,2159445,2159448,2159458,2159468,2159469,2159473,2159477,2159478,2159482,2159489,2159493,2159497,2159504,2159511,2159515,2159516,2159522,2159530,2159533,2159534,2159537,2159540,2159543,2159546,2159547,2159550,2159555,2159558,2159563,2159568,2159571,2159574,2159575,2159578,2159583,2159588,2159593,2159596,2159597,2159600,2159605,2159608,2159611,2159615,2159620,2159624,2159625,2159628,2159631,2159634,2159637,2159639,2159642,2159644,2159645,2159647,2159650,2159652,2159653,2159660,2159667,2159668,2159671,2159674,2159675,2159678,2159683,2159686,2159689,2159694,2159699,2159702,2159703,2159707,2159712,2159714,2159715,2159717,2159719,2159721,2159723,2159724,2159726,2159729,2159731,2159734,2159737,2159739,2159741,2159742,2159744,2159747,2159750,2159753,2159755,2159756,2159758,2159761,2159763,2159765,2159767,2159770,2159773,2159774,2159776,2159778,2159780,2159782,2159784,2159786,2159787,2159788,2159790,2159793,2159795,2159796,2159800,2159804,2159805,2159807,2159809,2159810,2159812,2159815,2159817,2159819,2159822,2159825,2159827,2159828,2159830,2159832,2159833,2159834,2159835,2159836,2159837,2159838,2159839,2159840,2159841,2159842,2159843,2159844,2159845,2159846,2159847,2159848,2159850,2159853,2159856,2159858,2159859,2159861,2159864,2159866,2159868,2159870,2159873,2159876,2159877,2159879,2159881,2159883,2159885,2159887,2159889,2159890,2159891,2159893,2159896,2159898,2159899,2159903,2159907,2159908,2159910,2159912,2159913,2159915,2159918,2159920,2159922,2159925,2159928,2159930,2159931,2159933,2159935,2159936,2159937,2159938,2159939,2159940,2159941,2159942,2159943,2159944,2159945,2159946,2159947,2159948,2159949,2159950,2159951,2159953,2159956,2159959,2159961,2159962,2159964,2159966,2159968,2159970,2159972,2159974,2159977,2159980,2159982,2159984,2159985,2159987,2159990,2159992,2159993,2159994,2159995,2159997,2160000,2160002,2160003,2160007,2160011,2160013,2160015,2160016,2160018,2160021,2160023,2160025,2160028,2160031,2160033,2160034,2160036,2160038,2160039,2160040,2160041,2160042,2160043,2160044,2160045,2160046,2160047,2160048,2160049,2160050,2160051,2160052,2160053,2160055,2160058,2160061,2160063,2160064,2160066,2160069,2160071,2160073,2160075,2160078,2160081,2160083,2160085,2160086,2160088,2160091,2160093,2160094,2160095,2160096,2160098,2160101,2160103,2160107,2160111,2160113,2160115,2160116,2160118,2160121,2160123,2160125,2160128,2160131,2160133,2160134,2160136,2160138,2160139,2160140,2160141,2160142,2160143,2160144,2160145,2160146,2160147,2160148,2160149,2160150,2160151,2160152,2160153,2160155,2160158,2160161,2160163,2160164,2160166,2160169,2160171,2160173,2160175,2160178,2160181,2160183,2160185,2160186,2160188,2160190,2160192,2160194,2160195,2160196,2160197,2160199,2160202,2160204,2160208,2160212,2160214,2160216,2160217,2160219,2160222,2160224,2160226,2160229,2160232,2160234,2160235,2160237,2160239,2160240,2160241,2160242,2160243,2160244,2160245,2160246,2160247,2160248,2160249,2160250,2160251,2160252,2160253,2160254,2160256,2160259,2160262,2160264,2160265,2160267,2160270,2160272,2160274,2160276,2160279,2160282,2160284,2160286,2160287,2160288,2160290,2160292,2160294,2160296,2160297,2160298,2160299,2160301,2160304,2160306,2160310,2160314,2160316,2160318,2160319,2160321,2160324,2160326,2160328,2160331,2160334,2160336,2160337,2160339,2160341,2160342,2160343,2160344,2160345,2160346,2160347,2160348,2160349,2160350,2160351,2160352,2160353,2160354,2160355,2160356,2160358,2160361,2160364,2160366,2160367,2160369,2160372,2160374,2160376,2160378,2160381,2160384,2160386,2160388,2186792,2186986,2187042,2187094,2187260,2187334,2187388,2187462,2187516,2187598,2187658,2187742,2187776,2187860,2187926,2187986,2188044,2188124,2188180,2188280,2188334,2188416,2188496,2188528,2188590,2188680,2188798,2188850,2188922,2188974,2188980,2189136,2189220,2189290,2189346,2189436,2189518,2189568,2189644,2189710,2189757,2189852,2189908,2189948,2190046,2190142,2190208,2190242,2190332,2190398,2190458,2190552,2190624,2190682,2190776,2190784,2190896,2190972,2191028,2191118,2191194,2191256,2191320,2191390,2191446,2191512,2191576,2191652,2191708,2191750,2191844,2191938,2192002,2192038,2192126,2192192,2192238,2192342,2192414,2192472,2192490,2192573,2192606,2192688,2192794,2192832,2192922,2192986,2193048,2193110,2193180,2193234,2193326,2193364,2193488,2193532,2193624,2193714,2193776,2193814,2193900,2193966,2194026,2194058,2194164,2194216,2194258,2194340,2194352,2194454,2194550,2194596,2194684,2194748,2194810,2194870,2194940,2194994,2195060,2195122,2195206,2195282,2195336,2195424,2195478,2195554,2195630,2195666,2195760,2195806,2195900,2195962,2195996,2196084,2196098,2196198,2196292,2196338,2196424,2196488,2196550,2196608,2196678,2196732,2196796,2196860,2196944,2197018,2197032,2197156,2197258,2197300,2197382,2197446,2197506,2197586,2197656,2197714,2197800,2197816,2197912,2197988,2198016,2198064,2198145,2198208,2198270,2198328,2198396,2198450,2198514,2198573,2198658,2198730,2198784,2198830,2198890,2198970,2199064,2199104,2199190,2199236,2199294,2199362,2199420,2199504,2199522,2199616,2199690,2199748,2199828,2199896,2199918,2200001,2200030,2200096,2200148,2200212,2200272,2200388,2200432,2200516,2200558,2200610,2200682,2200752,2200794,2200878,2200924,2200980,2201048,2201106,2201188,2201208,2201298,2201372,2201428,2201508,2201574,2201598,2201692,2201758,2201812,2201876,2201934,2202006,2202062,2202106,2202188,2202244,2202282,2202352,2202444,2202506,2202566,2202636,2202702,2202712,2202770,2202850,2202872,2202960,2203032,2203088,2203166,2203232,2203290,2203358,2203424,2203476,2203558,2203596,2203660,2203714,2203760,2203838,2203894,2203932,2204002,2204092,2204152,2204212,2204280,2204344,2204356,2204414,2204492,2204516,2204662,2204718,2204732,2204860,2204884,2204974,2205040,2205094,2205158,2205212,2205250,2205338,2205384,2205430,2205502,2205524,2205564,2205632,2205720,2205780,2205840,2205908,2205972,2206030,2206106,2206132,2206166,2206282,2206338,2206412,2206476,2206502,2206590,2206654,2206708,2206772,2206826,2206864,2206950,2206996,2207042,2207112,2207136,2207176,2207244,2207330,2207390,2207450,2207516,2207578,2207636,2207710,2207738,2207772,2207884,2207940,2208012,2208080,2208131,2208202,2208252,2208320,2208394,2208434,2208496,2208550,2208596,2208668,2208722,2208762,2208830,2208914,2208925,2209034,2209063,2209154,2209168,2209230,2209302,2209332,2209446,2209514,2209536,2209616,2209662,2209726,2209784,2209846,2209900,2209972,2210014,2210074,2210128,2210174,2210244,2210298,2210338,2210404,2210486,2210546,2210606,2210664,2210722,2210738,2210800,2210870,2210902,2211012,2211078,2211102,2211180,2211226,2211290,2211346,2211408,2211462,2211532,2211594,2211674,2211690,2211736,2211820,2211858,2211898,2211962,2212042,2212102,2212162,2212218,2212276,2212294,2212356,2212362,2212458,2212464,2212630,2212636,2212709,2212768,2212785,2212846,2212902,2213012,2213080,2213142,2213220,2213237,2213314,2213376,2213406,2213412,2213450,2213570,2213644,2213652,2213712,2213818,2213838,2213900,2213966,2214002,2214102,2214168,2214196,2214298,2214314,2214376,2214432,2214494,2214548,2214614,2214676,2214752,2214802,2214848,2214908,2214940,2214978,2215040,2215116,2215176,2215184,2215290,2215346,2215368,2215430,2215436,2215500,2215538,2215634,2215700,2215728,2215826,2215844,2215906,2215962,2216024,2216078,2216084,2216148,2216210,2216284,2216334,2216432,2216498,2216560,2216634,2216694,2216752,2216806,2216862,2216886,2216948,2217010,2217052,2217144,2217208,2217238,2217332,2217352,2217416,2217470,2217532,2217586,2217650,2217710,2217780,2217832,2217878,2217936,2217942,2218008,2218068,2218140,2218200,2218256,2218310,2218384,2218446,2218457,2218516,2218636,2218700,2218736,2218826,2218902,2218912,2219020,2219074,2219192,2219258,2219312,2219392,2219414,2219482,2219540,2219658,2219714,2219772,2219846,2219908,2219966,2220010,2220098,2220160,2220194,2220280,2220360,2220414,2220472,2220580,2220640,2220752,2220798,2220854,2220864,2220930,2221094,2221150,2221252,2221282,2221344,2221406,2221518,2221573,2221590,2221624,2221708,2221788,2221853,2221898,2222002,2222062,2222171,2222216,2222274,2222342,2222400,2222506,2222566,2222662,2222694,2222756,2222848,2222924,2222986,2223022,2223102,2223112,2223192,2223266,2223302,2223402,2223462,2223568,2223642,2223670,2223738,2223794,2223902,2223994,2224048,2224082,2224142,2224236,2224306,2224368,2224406,2224482,2224494,2224574,2224646,2224684,2224780,2224840,2224942,2225014,2225044,2225112,2225166,2225270,2225360,2225414,2225450,2225550,2225602,2225668,2225728,2225768,2225842,2225856,2225936,2226004,2226044,2226138,2226196,2226360,2226390,2226458,2226464,2226612,2226700,2226754,2226792,2226888,2226942,2227006,2227066,2227108,2227180,2227196,2227276,2227342,2227382,2227472,2227530,2227626,2227696,2227728,2227796,2227850,2227948,2228034,2228088,2228128,2228222,2228276,2228338,2228398,2228442,2228520,2228600,2228664,2228708,2228796,2228854,2228946,2229016,2229050,2229088,2229126,2229180,2229274,2229358,2229410,2229452,2229544,2229598,2229660,2229718,2229764,2229832,2229852,2229984,2230030,2230116,2230174,2230262,2230332,2230368,2230436,2230490,2230580,2230662,2230716,2230760,2230898,2230958,2230968,2231064,2231118,2231152,2231232,2231292,2231336,2231420,2231476,2231564,2231632,2231670,2231738,2231792,2231878,2231958,2232012,2232060,2232068,2232199,2232258,2232316,2232364,2232416,2232452,2232530,2232590,2232634,2232716,2232772,2232858,2232926,2232964,2233032,2233164,2233242,2233296,2233346,2233356,2233484,2233540,2233598,2233650,2233712,2233738,2233834,2233904,2233984,2234042,2234102,2234108,2234202,2234240,2234310,2234364,2234444,2234520,2234574,2234628,2234638,2234762,2234816,2234874,2234930,2234988,2235016,2235108,2235178,2235256,2235314,2235372,2235408,2235474,2235514,2235630,2235708,2235782,2235836,2235890,2235896,2235908,2236076,2236082,2236138,2236246,2236276,2236364,2236434,2236510,2236516,2236626,2236662,2236728,2236764,2236836,2236888,2236964,2237036,2237090,2237145,2237160,2237274,2237330,2237436,2237492,2237524,2237606,2237677,2237684,2237758,2237818,2237874,2237962,2238004,2238072,2238126,2238200,2238270,2238324,2238380,2238396,2238506,2238560,2238616,2238674,2238730,2238764,2238844,2238914,2238986,2239044,2239098,2239138,2239200,2239244,2239308,2239360,2239432,2239544,2239602,2239620,2239724,2239778,2239836,2239892,2239948,2239984,2240062,2240132,2240202,2240258,2240294,2240352,2240408,2240454,2240518,2240572,2240644,2240708,2240762,2240820,2240840,2240935,2240937,2240961,2240985,2240987,2240989,2240990,2240991,2241017,2241044,2241046,2241071,2241097,2241099,2241123,2241148,2241160,2241177,2241184,2241219,2241255,2241257,2241289,2241322,2241324,2241355,2241387,2241389,2241413,2241438,2241440,2241455,2241480,2241491,2241508,2241526,2241528,2241553,2241582,2241587,2241604,2241624,2241628,2241655,2241685,2241689,2241711,2241735,2241738,2241769,2241801,2241830,2241880,2241903,2241906,2241933,2241958,2241961,2241970,2241977,2241980,2242026,2242070,2242073,2242098,2242122,2242124,2242125,2242150,2242176,2242178,2242202,2242227,2242233,2242255,2242274,2242286,2242303,2242310,2242343,2242377,2242393,2242424,2242442,2242444,2242473,2242503,2242505,2242528,2242552,2242554,2242568,2242591,2242601,2242618,2242636,2242638,2242661,2242688,2242693,2242710,2242730,2242734,2242759,2242787,2242811,2242834,2242837,2242866,2242896,2242923,2242970,2242992,2242995,2243021,2243045,2243048,2243057,2243064,2243067,2243070,2243111,2243152,2243172,2243196,2243202,2243204,2243205,2243229,2243254,2243256,2243279,2243303,2243309,2243330,2243348,2243360,2243377,2243384,2243414,2243445,2243461,2243491,2243508,2243510,2243537,2243565,2243567,2243589,2243612,2243614,2243627,2243648,2243657,2243674,2243692,2243694,2243715,2243740,2243745,2243762,2243782,2243786,2243809,2243834,2243838,2243859,2243881,2243884,2243911,2243939,2243964,2244008,2244029,2244032,2244057,2244080,2244089,2244098,2244101,2244104,2244142,2244180,2244199,2244222,2244228,2244230,2244253,2244277,2244279,2244301,2244324,2244330,2244350,2244367,2244379,2244396,2244403,2244430,2244458,2244474,2244503,2244519,2244545,2244571,2244573,2244594,2244616,2244618,2244637,2244656,2244673,2244691,2244693,2244712,2244735,2244740,2244757,2244777,2244781,2244802,2244825,2244829,2244849,2244870,2244873,2244898,2244924,2244947,2244988,2245008,2245011,2245035,2245057,2245066,2245075,2245076,2245079,2245082,2245117,2245152,2245170,2245192,2245198,2245200,2245222,2245245,2245247,2245268,2245290,2245295,2245314,2245330,2245332,2245344,2245361,2245368,2245392,2245417,2245432,2245460,2245476,2245500,2245524,2245564,2245582,2245600,2245617,2245635,2245637,2245654,2245675,2245680,2245697,2245717,2245721,2245740,2245761,2245764,2245766,2245785,2245805,2245808,2245831,2245855,2245876,2245914,2245933,2245936,2245959,2245980,2245989,2245998,2246001,2246004,2246036,2246068,2246069,2246086,2246107,2246113,2246115,2246136,2246158,2246160,2246180,2246201,2246206,2246224,2246239,2246241,2246253,2246270,2246281,2246303,2246334,2246361,2246376,2246398,2246420,2246422,2246441,2246460,2246461,2246478,2246495,2246511,2246528,2246530,2246546,2246566,2246571,2246587,2246606,2246610,2246627,2246646,2246649,2246651,2246669,2246688,2246691,2246712,2246733,2246735,2246754,2246789,2246807,2246810,2246832,2246852,2246861,2246870,2246873,2246876,2246905,2246934,2246935,2246951,2246971,2246977,2246979,2246998,2247018,2247020,2247039,2247059,2247064,2247081,2247095,2247097,2247109,2247126,2247135,2247138,2247156,2247186,2247211,2247225,2247245,2247265,2247267,2247285,2247303,2247304,2247319,2247334,2247350,2247367,2247369,2247383,2247401,2247406,2247422,2247441,2247445,2247461,2247479,2247482,2247484,2247501,2247519,2247522,2247541,2247560,2247562,2247564,2247581,2247614,2247633,2247654,2247673,2247682,2247691,2247694,2247697,2247723,2247749,2247750,2247765,2247784,2247790,2247792,2247809,2247827,2247829,2247847,2247866,2247871,2247887,2247900,2247902,2247914,2247931,2247939,2247941,2247958,2247986,2248009,2248022,2248040,2248058,2248060,2248077,2248094,2248095,2248109,2248123,2248138,2248154,2248156,2248169,2248186,2248191,2248206,2248224,2248228,2248242,2248258,2248261,2248263,2248279,2248296,2248299,2248316,2248333,2248335,2248352,2248368,2248384,2248402,2248422,2248440,2248449,2248458,2248461,2248464,2248487,2248510,2248511,2248525,2248543,2248549,2248566,2248583,2248585,2248602,2248620,2248625,2248640,2248652,2248654,2248666,2248683,2248691,2248693,2248708,2248744,2248767,2248784,2248801,2248803,2248819,2248835,2248836,2248849,2248862,2248876,2248890,2248891,2248893,2248895,2248896,2248897,2248909,2248921,2248926,2248931,2248932,2248933,2248947,2248964,2248968,2248969,2248970,2248983,2248996,2248999,2249002,2249003,2249004,2249006,2249008,2249022,2249036,2249039,2249042,2249043,2249044,2249060,2249076,2249077,2249078,2249080,2249096,2249111,2249112,2249113,2249128,2249143,2249146,2249149,2249166,2249183,2249184,2249185,2249194,2249203,2249204,2249205,2249206,2249209,2249212,2249213,2249214,2249235,2249256,2249257,2249258,2249259,2249260,2249261,2249274,2249287,2249292,2249297,2249299,2249301,2249316,2249331,2249333,2249335,2249336,2249337,2249353,2249369,2249370,2249372,2249374,2249377,2249380,2249392,2249404,2249405,2249406,2249408,2249419,2249429,2249436,2249443,2249445,2249447,2249448,2249449,2249450,2249464,2249478,2249479,2249499,2249519,2249521,2249523,2249538,2249553,2249555,2249557,2249558,2249559,2249574,2249589,2249590,2249591,2249592,2249593,2249605,2249617,2249618,2249632,2249646,2249647,2249649,2249651,2249652,2249653,2249664,2249675,2249680,2249685,2249686,2249687,2249700,2249716,2249720,2249721,2249722,2249723,2249735,2249747,2249750,2249753,2249754,2249755,2249757,2249759,2249772,2249785,2249788,2249791,2249792,2249793,2249808,2249823,2249824,2249825,2249827,2249842,2249856,2249857,2249858,2249872,2249886,2249889,2249892,2249908,2249924,2249925,2249926,2249935,2249944,2249945,2249946,2249947,2249948,2249951,2249954,2249955,2249974,2249993,2249994,2249995,2249996,2249997,2249998,2249999,2250011,2250027,2250032,2250034,2250036,2250050,2250064,2250066,2250068,2250069,2250070,2250085,2250100,2250101,2250103,2250105,2250107,2250109,2250121,2250133,2250134,2250136,2250146,2250155,2250162,2250169,2250171,2250173,2250174,2250175,2250188,2250201,2250202,2250220,2250238,2250240,2250242,2250256,2250270,2250272,2250274,2250275,2250286,2250300,2250304,2250305,2250306,2250307,2250308,2250320,2250332,2250333,2250346,2250359,2250360,2250362,2250364,2250365,2250366,2250376,2250386,2250391,2250396,2250397,2250398,2250410,2250425,2250429,2250430,2250431,2250432,2250443,2250454,2250457,2250460,2250461,2250462,2250464,2250466,2250478,2250490,2250493,2250496,2250497,2250498,2250512,2250526,2250527,2250528,2250530,2250544,2250557,2250558,2250559,2250572,2250585,2250588,2250591,2250606,2250621,2250622,2250623,2250632,2250641,2250642,2250643,2250644,2250645,2250646,2250649,2250652,2250653,2250670,2250687,2250688,2250689,2250690,2250691,2250692,2250693,2250694,2250705,2250720,2250725,2250727,2250729,2250742,2250755,2250756,2250758,2250760,2250761,2250762,2250776,2250790,2250791,2250793,2250795,2250797,2250799,2250810,2250821,2250822,2250823,2250825,2250834,2250842,2250843,2250850,2250857,2250859,2250861,2250862,2250863,2250875,2250887,2250888,2250889,2250905,2250921,2250923,2250925,2250938,2250951,2250952,2250954,2250956,2250957,2250967,2250980,2250984,2250985,2250986,2250987,2250988,2251000,2251012,2251013,2251025,2251037,2251038,2251040,2251042,2251043,2251044,2251053,2251062,2251067,2251072,2251073,2251074,2251085,2251099,2251103,2251104,2251105,2251106,2251116,2251126,2251129,2251132,2251133,2251134,2251136,2251138,2251149,2251160,2251163,2251166,2251167,2251168,2251181,2251194,2251195,2251196,2251198,2251211,2251223,2251224,2251225,2251237,2251249,2251252,2251255,2251269,2251283,2251284,2251293,2251302,2251303,2251304,2251305,2251306,2251307,2251310,2251313,2251328,2251343,2251344,2251345,2251346,2251347,2251348,2251349,2251359,2251373,2251378,2251380,2251382,2251394,2251406,2251407,2251409,2251411,2251412,2251425,2251438,2251439,2251441,2251443,2251445,2251447,2251457,2251467,2251468,2251470,2251478,2251485,2251486,2251493,2251500,2251502,2251504,2251505,2251506,2251517,2251528,2251529,2251530,2251544,2251558,2251560,2251562,2251574,2251586,2251587,2251589,2251591,2251592,2251601,2251613,2251617,2251618,2251619,2251620,2251621,2251633,2251645,2251646,2251657,2251668,2251669,2251671,2251673,2251674,2251675,2251683,2251691,2251696,2251701,2251702,2251703,2251713,2251726,2251730,2251739,2251750,2251753,2251755,2251766,2251778,2251781,2251793,2251806,2251818,2251829,2251840,2251853,2251868,2251889,2251898,2251901,2251916,2251929,2251930,2251931,2251944,2251958,2251970,2251982,2251995,2252007,2252009,2252012,2252022,2252032,2252039,2252051,2252059,2252061,2252071,2252081,2252095,2252119,2252130,2252132,2252144,2252155,2252156,2252167,2252188,2252199,2252201,2252203,2252214,2252225,2252234,2252246,2252250,2252258,2252268,2252271,2252273,2252283,2252294,2252297,2252308,2252320,2252331,2252341,2252351,2252363,2252377,2252397,2252406,2252407,2252410,2252423,2252434,2252435,2252436,2252448,2252461,2252472,2252483,2252495,2252506,2252508,2252511,2252520,2252529,2252535,2252546,2252554,2252556,2252565,2252574,2252587,2252609,2252619,2252630,2252641,2252642,2252652,2252671,2252681,2252683,2252685,2252696,2252707,2252715,2252726,2252730,2252737,2252746,2252749,2252751,2252760,2252770,2252773,2252783,2252794,2252804,2252813,2252822,2252833,2252845,2252863,2252872,2252873,2252876,2252888,2252898,2252899,2252900,2252911,2252923,2252933,2252943,2252953,2252962,2252964,2252967,2252976,2252985,2252990,2253000,2253008,2253010,2253018,2253026,2253037,2253056,2253065,2253075,2253085,2253086,2253096,2253114,2253123,2253124,2253126,2253128,2253138,2253148,2253155,2253165,2253169,2253175,2253183,2253186,2253188,2253196,2253205,2253208,2253217,2253227,2253236,2253244,2253252,2253262,2253272,2253288,2253297,2253298,2253301,2253311,2253319,2253320,2253321,2253331,2253342,2253351,2253360,2253369,2253377,2253379,2253382,2253390,2253398,2253403,2253412,2253419,2253421,2253429,2253437,2253446,2253455,2253463,2253471,2253480,2253489,2253490,2253500,2253517,2253525,2253526,2253528,2253530,2253539,2253548,2253554,2253563,2253567,2253572,2253579,2253582,2253584,2253591,2253599,2253602,2253610,2253619,2253627,2253634,2253641,2253650,2253659,2253674,2253683,2253684,2253687,2253696,2253703,2253704,2253705,2253714,2253724,2253732,2253740,2253748,2253755,2253757,2253760,2253762,2253768,2253774,2253776,2253778,2253781,2253784,2253790,2253796,2253798,2253800,2253801,2253802,2253809,2253816,2253817,2253818,2253826,2253834,2253835,2253836,2253843,2253850,2253851,2253852,2253860,2253868,2253869,2253870,2253871,2253872,2253881,2253896,2253903,2253904,2253905,2253906,2253907,2253909,2253911,2253912,2253913,2253921,2253929,2253930,2253931,2253935,2253940,2253945,2253949,2253950,2253951,2253952,2253956,2253960,2253963,2253966,2253967,2253968,2253970,2253972,2253977,2253982,2253985,2253988,2253989,2253990,2253997,2254004,2254005,2254007,2254009,2254015,2254021,2254022,2254023,2254029,2254035,2254038,2254041,2254047,2254053,2254061,2254069,2254070,2254071,2254072,2254073,2254076,2254079,2254085,2254091,2254092,2254093,2254094,2254095,2254096,2254097,2254105,2254113,2254115,2254117,2254123,2254129,2254131,2254133,2254139,2254145,2254146,2254147,2254149,2254151,2254153,2254155,2254160,2254165,2254167,2254169,2254171,2254173,2254179,2254185,2254187,2254189,2254190,2254191,2254192,2254198,2254204,2254205,2254206,2254213,2254220,2254221,2254222,2254228,2254234,2254235,2254236,2254243,2254250,2254251,2254252,2254253,2254254,2254262,2254275,2254281,2254282,2254283,2254284,2254285,2254287,2254289,2254290,2254291,2254298,2254305,2254306,2254307,2254311,2254316,2254320,2254323,2254324,2254325,2254326,2254330,2254334,2254336,2254338,2254339,2254341,2254343,2254348,2254353,2254358,2254359,2254365,2254376,2254382,2254383,2254388,2254393,2254394,2254397,2254400,2254405,2254410,2254417,2254424,2254425,2254426,2254427,2254428,2254431,2254434,2254439,2254444,2254445,2254446,2254447,2254448,2254449,2254450,2254457,2254465,2254467,2254472,2254477,2254478,2254480,2254482,2254487,2254492,2254493,2254495,2254497,2254499,2254501,2254505,2254509,2254511,2254513,2254515,2254517,2254522,2254527,2254529,2254531,2254532,2254533,2254534,2254539,2254544,2254545,2254546,2254552,2254558,2254559,2254560,2254565,2254570,2254571,2254572,2254578,2254584,2254585,2254586,2254587,2254598,2254609,2254610,2254612,2254614,2254620,2254626,2254630,2254636,2254639,2254642,2254646,2254648,2254653,2254658,2254661,2254664,2254669,2254678,2254683,2254687,2254693,2254699,2254708,2254714,2254715,2254718,2254724,2254728,2254729,2254735,2254742,2254747,2254752,2254757,2254761,2254763,2254766,2254771,2254776,2254781,2254786,2254788,2254789,2254793,2254801,2254806,2254810,2254814,2254819,2254824,2254825,2254834,2254843,2254844,2254846,2254848,2254853,2254858,2254862,2254867,2254869,2254872,2254876,2254878,2254882,2254886,2254889,2254892,2254896,2254903,2254907,2254910,2254915,2254920,2254927,2254932,2254933,2254936,2254941,2254944,2254945,2254950,2254956,2254960,2254964,2254968,2254971,2254973,2254976,2254980,2254984,2254988,2254992,2254994,2254995,2254998,2255004,2255008,2255011,2255014,2255015,2255019,2255023,2255024,2255025,2255026,2255027,2255034,2255041,2255042,2255043,2255044,2255045,2255047,2255049,2255050,2255051,2255055,2255059,2255060,2255061,2255064,2255067,2255069,2255071,2255072,2255073,2255076,2255079,2255080,2255081,2255082,2255083,2255084,2255088,2255092,2255093,2255094,2255096,2255098,2255099,2255100,2255103,2255106,2255110,2255114,2255115,2255116,2255118,2255120,2255123,2255126,2255128,2255130,2255134,2255138,2255139,2255140,2255141,2255142,2255145,2255148,2255150,2255152,2255153,2255154,2255155,2255156,2255160,2255164,2255166,2255168,2255170,2255172,2255174,2255176,2255178,2255180,2255181,2255182,2255184,2255186,2255187,2255188,2255191,2255194,2255195,2255196,2255197,2255200,2255203,2255204,2255205,2255206,2255207,2255208,2255209,2255218,2255228,2255236,2255246,2255260,2255266,2255278,2255286,2255296,2255302,2255312,2255320,2255332,2255342,2255354,2255362,2255370,2255380,2255388,2255396,2255404,2255412,2255418,2255428,2255438,2255450,2255462,2255470,2255480,2255490,2255500,2255510,2255518,2255528,2255538,2255548,2255558,2255570,2255582,2255592,2255602,2255610,2255620,2255630,2255640,2255652,2255666,2255676,2255690,2255700,2255712,2255724,2255736,2255748,2255758,2255770,2255782,2255794,2255806,2255818,2255832,2255844,2255856,2255866,2255878,2255890,2255902,2255916,2255932,2255944,2255960,2255972,2255986,2256000,2256014,2256028,2256040,2256054,2256068,2256082,2256096,2256110,2256124,2256138,2256152,2256164,2256178,2256192,2256206,2256222,2256240,2256262,2256272,2256286,2256302,2256318,2256334,2256350,2256364,2256380,2256396,2256412,2256428,2256444,2256460,2256474,2256490,2256504,2256520,2256536,2256552,2256570,2256590,2256614,2256626,2256642,2256660,2256678,2256696,2256714,2256730,2256748,2256766,2256784,2256802,2256820,2256838,2256854,2256870,2256886,2256904,2256922,2256940,2256960,2256982,2257008,2257022,2257040,2257060,2257080,2257100,2257120,2257138,2257158,2257178,2257198,2257218,2257238,2257258,2257276,2257294,2257312,2257330,2257350,2257370,2257392,2257398,2257422,2257450,2257466,2257486,2257508,2257530,2257552,2257574,2257594,2257616,2257638,2257660,2257682,2257704,2257726,2257746,2257766,2257786,2257806,2257826,2257866,2257892,2257922,2257940,2257962,2257986,2258010,2258018,2258042,2258066,2258088,2258128,2258146,2258176,2258200,2258224,2258246,2258268,2258290,2258312,2258334,2258356,2258380,2258408,2258440,2258460,2258484,2258510,2258536,2258562,2258588,2258612,2258638,2258664,2258690,2258716,2258742,2258768,2258792,2258816,2258840,2258864,2258888,2258912,2258938,2258966,2259000,2259022,2259048,2259076,2259104,2259132,2259160,2259186,2259214,2259242,2259270,2259298,2259326,2259354,2259380,2259406,2259432,2259458,2259484,2259510,2259538,2259566,2259602,2259626,2259654,2259684,2259714,2259744,2259774,2259802,2259832,2259862,2259892,2259910,2259928,2259958,2259988,2260016,2260044,2260072,2260078,2260106,2260134,2260162,2260192,2260222,2260228,2260264,2260290,2260320,2260352,2260384,2260390,2260422,2260454,2260484,2260516,2260548,2260567,2260587,2260618,2260650,2260682,2260710,2260720,2260750,2260780,2260810,2260840,2260872,2260878,2260938,2260972,2261002,2261021,2261068,2261079,2261109,2261142,2261176,2261184,2261216,2261250,2261284,2261318,2261353,2261386,2261420,2261430,2261464,2261494,2261526,2261558,2261590,2261600,2261633,2261666,2261700,2261736,2261766,2261776,2261838,2261865,2261884,2261918,2261956,2261990,2262026,2262062,2262098,2262134,2262146,2262180,2262216,2262230,2262258,2262292,2262326,2262360,2262394,2262406,2262440,2262476,2262498,2262550,2262582,2262594,2262630,2262666,2262702,2262740,2262752,2262790,2262826,2262864,2262902,2262940,2262978,2263016,2263057,2263094,2263110,2263170,2263195,2263220,2263256,2263292,2263330,2263340,2263408,2263422,2263456,2263494,2263532,2263570,2263608,2263622,2263662,2263700,2263740,2263780,2263820,2263860,2263900,2263916,2263956,2263994,2264032,2264070,2264108,2264124,2264164,2264200,2264240,2264252,2264322,2264338,2264374,2264414,2264454,2264494,2264534,2264550,2264590,2264630,2264672,2264697,2264722,2264768,2264840,2264882,2264888,2264934,2264954,2264986,2265026,2265078,2265120,2265158,2265200,2265216,2265288,2265326,2265344,2265386,2265428,2265470,2265512,2265530,2265572,2265614,2265656,2265700,2265742,2265786,2265830,2265874,2265894,2265936,2265978,2266020,2266064,2266106,2266126,2266168,2266212,2266242,2266302,2266342,2266362,2266406,2266450,2266494,2266538,2266558,2266602,2266646,2266690,2266734,2266778,2266824,2266872,2266916,2266938,2266982,2267026,2267070,2267116,2267160,2267182,2267246,2267298,2267360,2267402,2267424,2267470,2267516,2267562,2267608,2267630,2267676,2267722,2267768,2267848,2267896,2267906,2268012,2268058,2268104,2268150,2268198,2268244,2268268,2268314,2268362,2268396,2268460,2268504,2268528,2268576,2268624,2268672,2268730,2268778,2268826,2268909,2268964,2269012,2269068,2269074,2269140,2269228,2269276,2269326,2269394,2269442,2269492,2269528,2269634,2269660,2269710,2269804,2269864,2269914,2269972,2270056,2270106,2270156,2270212,2270220,2270328,2270378,2270428,2270522,2270550,2270600,2270652,2270750,2270798,2270826,2270922,2271008,2271036,2271096,2271182,2271234,2271286,2271338,2271396,2271462,2271514,2271606,2271662,2271714,2271744,2271814,2271880,2271950,2272000,2272074,2272162,2272216,2272246,2272308,2272396,2272450,2272504,2272612,2272618,2272686,2272740,2272834,2272892,2272946,2272978,2273048,2273114,2273182,2273258,2273354,2273440,2273472,2273480,2273542,2273628,2273682,2273736,2273788,2273849,2273918,2273972,2274064,2274122,2274176,2274210,2274278,2274344,2274410,2274488,2274582,2274666,2274700,2274710,2274716,2274778,2274906,2274960,2275014,2275023,2275080,2275148,2275202,2275292,2275302,2275356,2275410,2275446,2275512,2275518,2275584,2275616,2275704,2275738,2275830,2275874,2275918,2275954,2275966,2276028,2276114,2276160,2276214,2276268,2276328,2276340,2276404,2276458,2276546,2276604,2276618,2276666,2276704,2276768,2276834,2276846,2276876,2276962,2276998,2277088,2277168,2277206,2277220,2277230,2277292,2277412,2277424,2277474,2277528,2277588,2277656,2277710,2277720,2277806,2277864,2277918,2277932,2278022,2278030,2278096,2278132,2278192,2278254,2278264,2278352,2278474,2278486,2278548,2278664,2278678,2278728,2278782,2278842,2278910,2278964,2278976,2279060,2279118,2279172,2279188,2279278,2279288,2279354,2279390,2279448,2279512,2279522,2279610,2279684,2279690,2279744,2279806,2279848,2279883,2279884,2279904,2279925,2279929,2279932,2279933,2279956,2279979,2279982,2280007,2280032,2280060,2280086,2280093,2280125,2280153,2280160,2280185,2280208,2280211,2280229,2280268,2280292,2280319,2280346,2280371,2280396,2280401,2280406,2280411,2280429,2280472,2280501,2280503,2280529,2280560,2280568,2280584,2280600,2280620,2280638,2280661,2280684,2280701,2280720,2280725,2280765,2280803,2280806,2280841,2280874,2280876,2280878,2280880,2280905,2280929,2280935,2280941,2280967,2280996,2281019,2281053,2281087,2281109,2281133,2281157,2281181,2281205,2281232,2281257,2281264,2281295,2281322,2281348,2281374,2281377,2281394,2281431,2281454,2281480,2281506,2281530,2281554,2281559,2281564,2281569,2281587,2281628,2281655,2281657,2281682,2281712,2281720,2281735,2281750,2281770,2281788,2281810,2281832,2281849,2281868,2281873,2281911,2281947,2281950,2281983,2282014,2282016,2282018,2282020,2282045,2282069,2282075,2282090,2282115,2282134,2282155,2282187,2282220,2282241,2282264,2282287,2282310,2282333,2282359,2282383,2282390,2282420,2282444,2282447,2282472,2282497,2282500,2282516,2282551,2282573,2282598,2282623,2282646,2282669,2282676,2282683,2282701,2282741,2282767,2282769,2282792,2282820,2282828,2282843,2282858,2282877,2282894,2282915,2282936,2282953,2282972,2282977,2283013,2283047,2283048,2283051,2283082,2283111,2283113,2283115,2283117,2283142,2283166,2283172,2283186,2283210,2283229,2283248,2283278,2283293,2283311,2283331,2283353,2283375,2283397,2283419,2283444,2283467,2283474,2283503,2283526,2283529,2283553,2283577,2283580,2283595,2283610,2283629,2283650,2283674,2283713,2283735,2283742,2283749,2283756,2283774,2283813,2283838,2283840,2283862,2283889,2283897,2283911,2283925,2283928,2283944,2283960,2283980,2284000,2284017,2284036,2284041,2284075,2284107,2284108,2284111,2284140,2284167,2284169,2284171,2284173,2284198,2284227,2284240,2284263,2284282,2284313,2284341,2284358,2284377,2284398,2284419,2284440,2284461,2284485,2284507,2284514,2284542,2284564,2284565,2284569,2284592,2284614,2284630,2284644,2284662,2284682,2284705,2284726,2284747,2284770,2284777,2284784,2284802,2284840,2284864,2284866,2284887,2284913,2284921,2284934,2284947,2284950,2284965,2284980,2284981,2285000,2285019,2285036,2285055,2285060,2285092,2285122,2285125,2285152,2285177,2285179,2285181,2285183,2285208,2285232,2285238,2285250,2285272,2285291,2285295,2285321,2285347,2285363,2285381,2285401,2285421,2285441,2285461,2285484,2285505,2285512,2285539,2285560,2285564,2285586,2285605,2285608,2285623,2285636,2285653,2285672,2285694,2285714,2285734,2285756,2285763,2285770,2285788,2285825,2285848,2285850,2285870,2285895,2285903,2285915,2285927,2285930,2285944,2285958,2285959,2285977,2285995,2286012,2286031,2286036,2286066,2286094,2286097,2286122,2286145,2286147,2286149,2286151,2286176,2286200,2286206,2286217,2286238,2286257,2286261,2286285,2286309,2286324,2286341,2286360,2286379,2286398,2286417,2286439,2286459,2286466,2286491,2286510,2286514,2286535,2286553,2286556,2286570,2286582,2286598,2286616,2286637,2286656,2286675,2286696,2286703,2286710,2286727,2286762,2286784,2286786,2286805,2286829,2286837,2286847,2286857,2286860,2286874,2286888,2286889,2286906,2286923,2286939,2286957,2286962,2286990,2287016,2287019,2287042,2287063,2287065,2287067,2287069,2287093,2287116,2287122,2287133,2287153,2287171,2287175,2287197,2287219,2287233,2287249,2287267,2287285,2287303,2287321,2287342,2287361,2287368,2287391,2287411,2287431,2287448,2287451,2287464,2287475,2287490,2287507,2287527,2287545,2287563,2287583,2287590,2287597,2287613,2287645,2287665,2287667,2287686,2287710,2287718,2287727,2287736,2287739,2287753,2287767,2287768,2287784,2287800,2287815,2287832,2287837,2287863,2287887,2287890,2287911,2287930,2287932,2287934,2287936,2287959,2287981,2287987,2287997,2288016,2288034,2288038,2288058,2288078,2288091,2288106,2288123,2288140,2288157,2288174,2288194,2288212,2288213,2288220,2288241,2288259,2288278,2288294,2288297,2288309,2288319,2288333,2288349,2288368,2288385,2288402,2288421,2288428,2288435,2288450,2288495,2288497,2288523,2288553,2288561,2288564,2288565,2288579,2288593,2288594,2288595,2288596,2288597,2288612,2288627,2288628,2288629,2288643,2288657,2288660,2288663,2288666,2288669,2288691,2288713,2288714,2288717,2288720,2288737,2288754,2288755,2288756,2288758,2288760,2288761,2288762,2288764,2288766,2288787,2288808,2288809,2288810,2288816,2288822,2288827,2288832,2288846,2288860,2288864,2288868,2288869,2288870,2288888,2288906,2288907,2288908,2288920,2288932,2288935,2288938,2288952,2288966,2288969,2288972,2288986,2289000,2289003,2289006,2289023,2289040,2289041,2289042,2289043,2289044,2289051,2289058,2289071,2289084,2289088,2289092,2289107,2289122,2289123,2289124,2289125,2289128,2289131,2289140,2289149,2289150,2289151,2289164,2289177,2289180,2289183,2289198,2289213,2289214,2289215,2289231,2289247,2289250,2289253,2289258,2289265,2289268,2289280,2289292,2289308,2289324,2289325,2289326,2289328,2289330,2289331,2289332,2289333,2289334,2289357,2289380,2289386,2289392,2289395,2289398,2289399,2289400,2289413,2289426,2289427,2289428,2289429,2289443,2289457,2289458,2289459,2289460,2289473,2289486,2289489,2289494,2289497,2289506,2289526,2289538,2289539,2289542,2289545,2289561,2289577,2289578,2289579,2289580,2289582,2289584,2289585,2289586,2289588,2289590,2289610,2289630,2289631,2289632,2289638,2289644,2289648,2289652,2289665,2289678,2289682,2289686,2289687,2289703,2289719,2289720,2289721,2289733,2289745,2289748,2289751,2289764,2289777,2289780,2289783,2289796,2289809,2289812,2289815,2289830,2289845,2289846,2289847,2289848,2289849,2289856,2289863,2289875,2289887,2289891,2289895,2289909,2289923,2289924,2289925,2289926,2289929,2289932,2289940,2289948,2289949,2289950,2289962,2289974,2289977,2289980,2289994,2290008,2290009,2290010,2290025,2290040,2290043,2290046,2290051,2290058,2290061,2290072,2290083,2290098,2290113,2290114,2290115,2290117,2290119,2290120,2290121,2290122,2290123,2290144,2290165,2290171,2290177,2290180,2290183,2290184,2290185,2290197,2290209,2290210,2290211,2290212,2290225,2290238,2290239,2290240,2290241,2290253,2290265,2290268,2290273,2290276,2290284,2290302,2290313,2290314,2290317,2290320,2290334,2290348,2290349,2290350,2290351,2290353,2290355,2290356,2290357,2290359,2290361,2290380,2290399,2290400,2290401,2290407,2290413,2290417,2290421,2290433,2290445,2290449,2290453,2290454,2290468,2290482,2290483,2290484,2290495,2290506,2290509,2290512,2290524,2290536,2290539,2290542,2290543,2290555,2290567,2290570,2290573,2290587,2290601,2290602,2290603,2290604,2290605,2290612,2290619,2290629,2290639,2290643,2290647,2290660,2290673,2290674,2290675,2290676,2290679,2290682,2290689,2290696,2290697,2290698,2290709,2290720,2290723,2290726,2290739,2290752,2290753,2290754,2290768,2290782,2290785,2290788,2290793,2290800,2290803,2290804,2290814,2290824,2290838,2290852,2290853,2290854,2290856,2290858,2290859,2290860,2290861,2290862,2290881,2290900,2290906,2290912,2290915,2290918,2290919,2290920,2290931,2290942,2290943,2290944,2290945,2290957,2290969,2290970,2290971,2290972,2290983,2290994,2290997,2291002,2291005,2291012,2291028,2291038,2291039,2291042,2291045,2291057,2291069,2291070,2291071,2291072,2291073,2291075,2291077,2291078,2291080,2291082,2291083,2291101,2291119,2291120,2291121,2291127,2291133,2291137,2291141,2291152,2291163,2291167,2291171,2291176,2291188,2291196,2291197,2291198,2291208,2291218,2291221,2291224,2291235,2291246,2291249,2291252,2291253,2291264,2291275,2291278,2291281,2291294,2291307,2291308,2291309,2291310,2291311,2291318,2291325,2291333,2291341,2291345,2291349,2291361,2291373,2291374,2291375,2291376,2291379,2291382,2291388,2291394,2291395,2291396,2291406,2291416,2291419,2291422,2291434,2291446,2291447,2291448,2291461,2291474,2291475,2291478,2291485,2291492,2291495,2291496,2291505,2291514,2291527,2291540,2291541,2291542,2291544,2291546,2291547,2291548,2291549,2291550,2291553,2291570,2291585,2291591,2291599,2291602,2291603,2291604,2291614,2291624,2291625,2291626,2291627,2291638,2291649,2291650,2291651,2291652,2291662,2291672,2291675,2291680,2291683,2291689,2291703,2291712,2291713,2291716,2291719,2291730,2291741,2291742,2291743,2291744,2291746,2291748,2291749,2291751,2291753,2291754,2291771,2291788,2291789,2291795,2291803,2291806,2291816,2291826,2291830,2291834,2291844,2291854,2291855,2291856,2291866,2291876,2291879,2291891,2291901,2291904,2291907,2291908,2291918,2291928,2291931,2291944,2291955,2291956,2291957,2291958,2291959,2291966,2291978,2291984,2291988,2291992,2292003,2292014,2292015,2292016,2292019,2292022,2292028,2292034,2292035,2292036,2292044,2292054,2292057,2292068,2292079,2292080,2292081,2292093,2292105,2292108,2292115,2292122,2292125,2292126,2292134,2292153,2292165,2292166,2292167,2292169,2292171,2292172,2292173,2292174,2292177,2292192,2292205,2292211,2292219,2292222,2292223,2292232,2292241,2292242,2292243,2292244,2292254,2292264,2292265,2292266,2292275,2292284,2292287,2292292,2292295,2292300,2292312,2292320,2292321,2292324,2292336,2292346,2292347,2292348,2292349,2292351,2292353,2292354,2292356,2292358,2292359,2292375,2292391,2292392,2292398,2292404,2292406,2292408,2292417,2292429,2292433,2292436,2292445,2292452,2292453,2292454,2292463,2292472,2292475,2292486,2292495,2292498,2292501,2292502,2292511,2292520,2292523,2292534,2292543,2292544,2292545,2292546,2292547,2292554,2292565,2292570,2292574,2292578,2292588,2292598,2292599,2292600,2292603,2292606,2292611,2292616,2292617,2292618,2292625,2292634,2292637,2292647,2292657,2292658,2292659,2292670,2292681,2292684,2292691,2292698,2292701,2292702,2292709,2292725,2292735,2292736,2292737,2292739,2292741,2292742,2292743,2292744,2292747,2292761,2292773,2292779,2292787,2292790,2292791,2292799,2292807,2292808,2292809,2292810,2292819,2292828,2292829,2292837,2292845,2292848,2292853,2292856,2292857,2292861,2292871,2292878,2292879,2292882,2292893,2292902,2292903,2292904,2292905,2292907,2292909,2292910,2292912,2292914,2292915,2292930,2292945,2292946,2292952,2292958,2292959,2292960,2292961,2292969,2292980,2292984,2292987,2292995,2293001,2293002,2293003,2293004,2293012,2293020,2293023,2293033,2293041,2293044,2293047,2293048,2293056,2293064,2293067,2293077,2293085,2293086,2293087,2293088,2293089,2293096,2293106,2293110,2293114,2293118,2293127,2293136,2293137,2293138,2293141,2293144,2293149,2293154,2293155,2293156,2293162,2293170,2293173,2293174,2293182,2293190,2293191,2293192,2293202,2293212,2293215,2293222,2293229,2293232,2293233,2293239,2293253,2293262,2293263,2293264,2293266,2293268,2293269,2293270,2293271,2293274,2293286,2293296,2293302,2293310,2293313,2293314,2293321,2293328,2293329,2293330,2293331,2293339,2293347,2293348,2293349,2293356,2293363,2293366,2293371,2293374,2293377,2293385,2293391,2293392,2293395,2293405,2293413,2293414,2293415,2293416,2293418,2293420,2293421,2293423,2293425,2293426,2293440,2293454,2293460,2293466,2293467,2293468,2293469,2293476,2293486,2293490,2293492,2293499,2293505,2293506,2293507,2293508,2293515,2293522,2293525,2293534,2293541,2293544,2293547,2293554,2293561,2293564,2293573,2293580,2293581,2293582,2293583,2293584,2293591,2293600,2293603,2293607,2293611,2293619,2293627,2293628,2293629,2293632,2293635,2293640,2293645,2293646,2293647,2293652,2293659,2293662,2293663,2293670,2293677,2293678,2293679,2293688,2293697,2293700,2293707,2293714,2293717,2293718,2293723,2293735,2293743,2293744,2293745,2293747,2293749,2293750,2293751,2293752,2293755,2293766,2293775,2293780,2293787,2293790,2293791,2293798,2293805,2293806,2293807,2293814,2293821,2293822,2293823,2293829,2293835,2293838,2293843,2293846,2293847,2293850,2293857,2293862,2293863,2293866,2293875,2293882,2293883,2293884,2293885,2293887,2293889,2293890,2293892,2293894,2293895,2293908,2293921,2293927,2293933,2293934,2293935,2293936,2293942,2293951,2293955,2293956,2293962,2293968,2293969,2293970,2293971,2293977,2293983,2293986,2293994,2294000,2294003,2294006,2294012,2294018,2294021,2294029,2294035,2294036,2294037,2294038,2294039,2294046,2294054,2294059,2294063,2294070,2294077,2294078,2294079,2294082,2294085,2294090,2294095,2294096,2294097,2294101,2294105,2294108,2294111,2294112,2294118,2294124,2294125,2294133,2294141,2294144,2294151,2294158,2294161,2294162,2294169,2294179,2294183,2294184,2294186,2294188,2294189,2294190,2294191,2294194,2294204,2294212,2294217,2294224,2294227,2294233,2294239,2294240,2294241,2294247,2294253,2294254,2294255,2294260,2294265,2294268,2294273,2294276,2294277,2294283,2294289,2294290,2294293,2294301,2294307,2294308,2294309,2294310,2294312,2294314,2294315,2294317,2294319,2294320,2294332,2294344,2294350,2294356,2294357,2294358,2294363,2294371,2294375,2294380,2294385,2294386,2294387,2294392,2294397,2294400,2294407,2294412,2294415,2294418,2294423,2294428,2294435,2294442,2294443,2294444,2294445,2294446,2294453,2294460,2294464,2294468,2294474,2294480,2294481,2294482,2294485,2294488,2294493,2294498,2294499,2294502,2294505,2294508,2294511,2294512,2294517,2294522,2294523,2294530,2294537,2294540,2294547,2294554,2294557,2294558,2294564,2294572,2294575,2294576,2294578,2294580,2294581,2294582,2294583,2294586,2294595,2294602,2294607,2294614,2294617,2294622,2294627,2294628,2294629,2294634,2294639,2294640,2294641,2294642,2294647,2294654,2294657,2294660,2294663,2294664,2294669,2294674,2294675,2294678,2294685,2294690,2294691,2294692,2294694,2294696,2294697,2294699,2294701,2294702,2294712,2294722,2294728,2294734,2294735,2294736,2294737,2294741,2294748,2294752,2294756,2294760,2294761,2294762,2294763,2294768,2294773,2294775,2294781,2294786,2294789,2294792,2294796,2294800,2294806,2294812,2294813,2294814,2294815,2294816,2294822,2294828,2294832,2294836,2294841,2294846,2294847,2294848,2294851,2294854,2294858,2294862,2294863,2294866,2294869,2294878,2294890,2294910,2294926,2294940,2294941,2294943,2294945,2294946,2294947,2294990,2295013,2295014,2295035,2295055,2295089,2295130,2295131,2295148,2295166,2295184,2295262,2295277,2295297,2295321,2295322,2295349,2295390,2295391,2295404,2295430,2295444,2295445,2295476,2295507,2295512,2295529,2295551,2295561,2295562,2295601,2295626,2295627,2295648,2295664,2295678,2295679,2295716,2295750,2295767,2295795,2295809,2295843,2295871,2295872,2295894,2295926,2295936,2296015,2296068,2296164,2296193,2296372,2296390,2296417,2296418,2296455,2296488,2296504,2296528,2296576,2296582,2296604,2296618,2296633,2296789,2296884,2296918,2296925,2296929,2297021,2297034,2297047,2297126,2297144,2297147,2297163,2297608,2297631,2297651,2297731,2297748,2297754,2297828,2297837,2297853,2297857,2297859,2297860,2297876,2297880,2297882,2297883,2297901,2297911,2297913,2297914,2297936,2297946,2297948,2297949,2297959,2297961,2297983,2297984,2297992,2297994,2298011,2298013,2298035,2298037,2298039,2298136,2298143,2298162,2298184,2298188,2298266,2298403,2298577,2298582,2298599,2298605,2298617,2298685,2298944,2298949,2298955,2299038,2299199,2299216,2299235,2299244,2299264,2299268,2299334,2299832,2300012,2300068,2300246,2300247,2300267,2300343,2300344,2300459,2300547,2300660,2300758,2300761,2300769,2300774,2300775,2300781,2300790,2300791,2300795,2300811,2300886,2300887,2301281,2301282,2301283,2301284,2301285,2301286,2301287,2301288,2301289,2301290,2301291,2301292,2301293,2301294,2301295,2301296,2301297,2301298,2301299,2301300,2301301,2301302,2301303,2301304,2301305,2301306,2301307,2301308,2301309,2301777,2301778,2301823,2301916,2301931,2302017,2302059,2302064,2302141,2302239,2302330,2302445,2302566,2304613,2304728,2304853,2304905,2304938,2304963,2305029,2305163,2306933,2306954,2307303,2307355,2307369,2307419,2307465,2307493,2307495,2309033,2309054,2309145,2309156,2309168,2309183,2309187,2309215,2309423,2309519,2309533,2310787,2310808,2310931,2310943,2311251,2311265,2311273,2311305,2312655,2312676,2312995,2313007,2313017,2313033,2313040,2313069,2313231,2313387,2314294,2314315,2314336,2314354,2314364,2314378,2314380,2314408,2315164,2315185,2315438,2315450,2315462,2315476,2315484,2315514,2316353,2316374,2316395,2316669,2316681,2316697,2316705,2316735,2317664,2317691,2317716,2317726,2317736,2317750,2317758,2318060,2319051,2319094,2319129,2319141,2319152,2319167,2319185,2319227,2320300,2320338,2320373,2320476,2320627,2320641,2320666,2320735,2320737,2321942,2321989,2322026,2322061,2322278,2322295,2322298,2322401,2322404,2323693,2323722,2323736,2323784,2323800,2323811,2323990,2323992,2323999,2324007,2324021,2324090,2325287,2325333,2325365,2325409,2325411,2325412,2325413,2325416,2325422,2325430,2325460,2325513,2326808,2326813,2326827,2327171,2327177,2327178,2327191,2327192,2327196,2327206,2327244,2327281,2327476,2327655,2328913,2328918,2328932,2329000,2329002,2329003,2329004,2329005,2329009,2329017,2329027,2329044,2330368,2330373,2330387,2330791,2330795,2330796,2330797,2330798,2330804,2330812,2330826,2330851,2331289,2331293,2434675,2448458,2566676,2595411,2595431,2595433,2595447,2595455,2595458,2595463,2595466,2595471,2595472,2595477,2595526,2595533,2595548,2595555,2595556,2595561,2595572,2595577,2595580,2595587,2595618,2595625,2595628,2595633,2595642,2595654,2595668,2595675,2595676,2595683,2595684,2595689,2595690,2595717,2595718,2595735,2595738,2595743,2595758,2595763,2595769,2606847,2606907,2607091,2607144,2607295,2607304,2607411,2607607,2607608,2607890,2607902,2607928,2607929,2607930,2607936,2607976,2608463,2609019,2609022,2609133,2609178,2609318,2609319,2609320,2609321,2609322,2609335,2609347,2609348,2609355,2609452,2609820,2609891,2610281,2610390,2610517,2610868,2611024,2611377,2611537,2611838,2611993,2612088,2615037,2617630,2617741,2618065,2618124,2618246,2618569,2618725,2618754,2619110,2619235,2619515,2619566,2619846,2619923,2619961,2620169,2620244,2620286,2620376,2620523,2620585,2620591,2620637,2620830,2620906,2620940,2620964,2621089,2621101,2621227,2621354,2621372,2621496,2621535,2621653,2621663,2621745,2621822,2621944,2621950,2621988,2622123,2622147,2622281,2622396,2622468,2622602,2622639,2622745,2622751,2622831,2622978,2623006,2623013,2623190,2623367,2623538,2623639,2623787,2623807,2623952,2624046,2624196,2624253,2624367,2624373,2624471,2624630,2624674,2624680,2624800,2625031,2625055,2625209,2625328,2625462,2625520,2625649,2625757,2625763,2625905,2626070,2626088,2626094,2626326,2626365,2626517,2626643,2626798,2626818,2626984,2627117,2627270,2627299,2627582,2627607,2627755,2629057,2629238,2629355,2629379,2630561,2630708,2630849,2630951,2630957,2632030,2632079,2632216,2632348,2632356,2633426,2633535,2633580,2633714,2633720,2634946,2635077,2635222,2635356,2635368,2636496,2636627,2636780,2636916,2636926,2638112,2638251,2638410,2638556,2638562,2639771,2639912,2639953,2640217,2640225,2641496,2641641,2641804,2641950,2641960,2643229,2643279,2643418,2643574,2643580,2644901,2645064,2645207,2645365,2645373,2646714,2646873,2647186,2647323,2647387,2647578,2647579,2647729,2647875,2647925,2647932,2648065,2648402,2648407,2649815,2650204,2650351,2650605,2650824,2651342,2651530,2651747,2652312,2652317,2652325,2652344,2652963,2652982,2652991,2653807,2665302,2665336,2665557,2666009,2666036,2666178,2666239,2666240,2666241,2666243,2666935,2666943,2666958,2666959,2666964,2666965,2666969,2666985,2668358,2668595,2669114,2669166,2669211,2669223,2669235,2669244,2670605,2671098,2671151,2671201,2671207,2671235,2671262,2672689,2673216,2673270,2673321,2673326,2673389,2673794,2673824,2673835,2673840,2673897,2675466,2676121,2676135,2676148,2676153,2676207,2676267,2676270,2677972,2678533,2678539,2678545,2678647,2678651,2680250,2680679,2680687,2680693,2680701,2680707,2681834,2682197,2682213,2682253,2682259,2682260,2683172,2683555,2683591,2683597,2683654,2683661,2684720,2684857,2684872,2684914,2684963,2685379,2685475,2687325,2687331,2689649,2689655,2691630,2695399,2715939,2799472,2829798,2857021,2857026,2857054,2857074,2857096,2857097,2857123,2857150,2857180,2857202,2857210,2857229,2857277,2857284,2857322,2857356,2857394,2857397,2857426,2857441,2857460,2857463,2857490,2857505,2857515,2857527,2857540,2857557,2857570,2857585,2857617,2857622,2857648,2857692,2857722,2857755,2857760,2857804,2857809,2857842,2857873,2857884,2857896,2857924,2857939,2857968,2857979,2857990,2858015,2858020,2858038,2858056,2858065,2858070,2858105,2858112,2858137,2858144,2858156,2858170,2858213,2858228,2858247,2858254,2858281,2858286,2858312,2858334,2858337,2858376,2858401,2858414,2858436,2858454,2858485,2858500,2858523,2858548,2858569,2858588,2858602,2858619,2858642,2858669,2858848,2858867,2858883,2858925,2858955,2859004,2859011,2859053,2859077,2859087,2859109,2859110,2859122,2859134,2859139,2859145,2859180,2859203,2859217,2859245,2859271,2859321,2859334,2859364,2859375,2859403,2859441,2859459,2859501,2859524,2859537,2859572,2859579,2859606,2859629,2859644,2859653,2859678,2859685,2859708,2859721,2859731,2859829,2859858,2859902,2859915,2859940,2859971,2859976,2859995,2860026,2860033,2860038,2860075,2860108,2860141,2860146,2860173,2860178,2860209,2860218,2860243,2860248,2860273,2860278,2860289,2860304,2860332,2860350,2860367,2860386,2860395,2860424,2860425,2860470,2860483,2860510,2860539,2860546,2860563,2860594,2860601,2860642,2860679,2860716,2860744,2860782,2860787,2860803,2860823,2860855,2860870,2860886,2860915,2860942,2860963,2860979,2861011,2861012,2861065,2861066,2861120,2861141,2861147,2861179,2861203,2861255,2861262,2861298,2861328,2861373,2861386,2861408,2861440,2861452,2861488,2861511,2861529,2861559,2861565,2861566,2861580,2861594,2861595,2861618,2862136,2862143,2862173,2862214,2862219,2862252,2862273,2862289,2862310,2862327,2862339,2862365,2862399,2862430,2862437,2862460,2862465,2862496,2862509,2862530,2862535,2862562,2862571,2862585,2862591,2862620,2862651,2862662,2862677,2862696,2862708,2862730,2862737,2862778,2862801,2862830,2862851,2862854,2862885,2862896,2862903,2862962,2862993,2863019,2863053,2863059,2863070,2863093,2863098,2863144,2863151,2863185,2863217,2863243,2863260,2863299,2863304,2863352,2863376,2863410,2863437,2863468,2863484,2863518,2863552,2863581,2863583,2863594,2863605,2863606,2863622,2863638,2863645,2863677,2863686,2863730,2863740,2863776,2863808,2863831,2864917,2864948,2864988,2864995,2866088,2866133,2866143,2866181,2866223,2866246,2866301,2866308,2866340,2866348,2866362,2866415,2866425,2866426,2866428,2866438,2866447,2866489,2866494,2866502,2866530,2866567,2866577,2866608,2866617,2866642,2866647,2866688,2866697,2866724,2866737,2866774,2866797,2866802,2866833,2866854,2866859,2866888,2866893,2866906,2866947,2866968,2866973,2866992,2866997,2867026,2867039,2867044,2867053,2867074,2867081,2867115,2867151,2867160,2867189,2867190,2867197,2867217,2867269,2867278,2867283,2867340,2867349,2867395,2867399,2867708,2867721,2867751,2867759,2867969,2867976,2868010,2868028,2868050,2868239,2868244,2868284,2868300,2868330,2868335,2868345,2868412,2868428,2868466,2868492,2868519,2868542,2868548,2868578,2868589,2868602,2868637,2868648,2868664,2868705,2868710,2868734,2868746,2868776,2868821,2868826,2868872,2868897,2868904,2868908,2868914,2868951,2868984,2868995,2869044,2869055,2869060,2869101,2869108,2869134,2869142,2869156,2869164,2869211,2869222,2869241,2869264,2869279,2869290,2869299,2869304,2869346,2869368,2869375,2869406,2869421,2869446,2869453,2869522,2869577,2869592,2869623,2869640,2869667,2869686,2869737,2869756,2869764,2869804,2869824,2869833,2869844,2869871,2869915,2869922,2869954,2869998,2870004,2870010,2870080,2870085,2870145,2870151,2870187,2870238,2870247,2870265,2870313,2870331,2870342,2870352,2870353,2874359,2874368,2874424,2874466,2874494,2874495,2874531,2874536,2874561,2874584,2874609,2874629,2877782,2877803,2877811,2877849,2877869,2877875,2878809,2878814,2878840,2878850,2878884,2878888,2881406,2881451,2881489,2881525,2881547,2881576,2891814,2892066,2892622,2901338,2901486,2901940,2902404,2902839,2903278,2903723,2904073,2904495,2904893,2905245,2905379,2905851,2906142,2912716,2912804]},"uniswap-v3-core_d8b1c63":{"timeMs":17935.157971,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,2702,2715,2718,2731,2734,2747,2750,2753,2756,2759,2762,2765,2768,2771,2775,2784,2787,2790,2793,2796,2799,2802,2805,2808,2812,2821,2824,2827,2830,2833,2836,2839,2842,2845,2849,4326,4344,4353,4399,4424,4442,4481,4506,4524,4582,4602,4613,4633,4648,4650,4653,4659,4672,4697,4717,4730,4732,4735,4741,4754,4779,4893,4905,4913,4932,4947,4965,4977,4989,4995,5014,5029,5047,5636,5654,5666,5671,5682,5686,5694,5702,5706,5712,5715,5721,5725,5736,5737,5740,5750,5754,5755,5758,5766,5770,5778,5784,5788,5794,5797,5803,5807,5818,5819,5822,5832,5836,5837,5840,6152,6199,6214,6234,6243,6253,6268,6278,6286,6298,6316,6325,6335,6350,6360,6368,15803,15823,15836,15870,15904,15938,15972,16006,16040,16074,16108,16142,16176,16210,16244,16278,16312,16326,17482,17502,17515,17549,17583,17617,17651,17665,17699,17713,17747,17781,17815,17849,17883,17917,17931,17945,19493,19504,19525,19542,19559,19593,19610,19629,19663,19680,19697,19731,19748,19765,19799,19816,19833,19867,19884,19901,19918,19935,19969,20000,21199,21209,21224,21229,21245,21279,21297,21313,21347,21365,21381,21413,21429,21461,21477,21511,21529,21545,21579,21611,21627,21645,21661,22855,22860,22866,22873,22887,22904,22907,22921,22935,22952,22955,22969,22983,23000,23003,23017,23031,23048,23051,23065,23079,23096,23099,23113,23127,23144,23147,23158,23161,23175,23189,23209,23223,23240,23243]}} diff --git a/crates/tools/python/env.yml b/crates/tools/python/env.yml deleted file mode 100644 index 652b5aae6c..0000000000 --- a/crates/tools/python/env.yml +++ /dev/null @@ -1,223 +0,0 @@ -name: hardhat -channels: - - conda-forge - - defaults -dependencies: - - anyio=4.2.0=py311hca03da5_0 - - appnope=0.1.2=py311hca03da5_1001 - - argon2-cffi=21.3.0=pyhd3eb1b0_0 - - argon2-cffi-bindings=21.2.0=py311h80987f9_0 - - asttokens=2.0.5=pyhd3eb1b0_0 - - async-lru=2.0.4=py311hca03da5_0 - - attrs=23.1.0=py311hca03da5_0 - - babel=2.11.0=py311hca03da5_0 - - beautifulsoup4=4.12.2=py311hca03da5_0 - - blas=1.0=openblas - - bleach=4.1.0=pyhd3eb1b0_0 - - bottleneck=1.3.7=py311hb9f6ed7_0 - - brotli=1.0.9=h1a28f6b_7 - - brotli-bin=1.0.9=h1a28f6b_7 - - brotli-python=1.0.9=py311h313beb8_7 - - bzip2=1.0.8=h80987f9_5 - - ca-certificates=2024.2.2=hf0a4a13_0 - - certifi=2024.2.2=pyhd8ed1ab_0 - - cffi=1.16.0=py311h80987f9_0 - - charset-normalizer=2.0.4=pyhd3eb1b0_0 - - click=8.1.7=py311hca03da5_0 - - comm=0.2.1=py311hca03da5_0 - - contourpy=1.2.0=py311h48ca7d4_0 - - cycler=0.11.0=pyhd3eb1b0_0 - - cyrus-sasl=2.1.28=h9131b1a_1 - - debugpy=1.6.7=py311h313beb8_0 - - decorator=5.1.1=pyhd3eb1b0_0 - - defusedxml=0.7.1=pyhd3eb1b0_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - executing=0.8.3=pyhd3eb1b0_0 - - fonttools=4.25.0=pyhd3eb1b0_0 - - freetype=2.12.1=h1192e45_0 - - gettext=0.21.0=h13f89a0_1 - - glib=2.78.4=h313beb8_0 - - glib-tools=2.78.4=h313beb8_0 - - gst-plugins-base=1.14.1=h313beb8_1 - - gstreamer=1.14.1=h80987f9_1 - - icu=73.1=h313beb8_0 - - idna=3.4=py311hca03da5_0 - - ipykernel=6.28.0=py311hca03da5_0 - - ipython=8.20.0=py311hca03da5_0 - - ipython_genutils=0.2.0=py_1 - - ipywidgets=8.0.4=py311hca03da5_0 - - jedi=0.18.1=py311hca03da5_1 - - jinja2=3.1.3=py311hca03da5_0 - - joblib=1.2.0=py311hca03da5_0 - - jpeg=9e=h80987f9_1 - - json5=0.9.6=pyhd3eb1b0_0 - - jsonschema=4.19.2=py311hca03da5_0 - - jsonschema-specifications=2023.7.1=py311hca03da5_0 - - jupyter=1.0.0=py311hca03da5_9 - - jupyter-lsp=2.2.0=py311hca03da5_0 - - jupyter_client=8.6.0=py311hca03da5_0 - - jupyter_console=6.6.3=py311hca03da5_0 - - jupyter_contrib_core=0.4.0=pyhd8ed1ab_0 - - jupyter_contrib_nbextensions=0.7.0=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311hca03da5_0 - - jupyter_events=0.8.0=py311hca03da5_0 - - jupyter_highlight_selected_word=0.2.0=pyhd8ed1ab_1006 - - jupyter_latex_envs=1.4.6=pyhd8ed1ab_1002 - - jupyter_nbextensions_configurator=0.6.1=pyhd8ed1ab_0 - - jupyter_server=2.10.0=py311hca03da5_0 - - jupyter_server_terminals=0.4.4=py311hca03da5_1 - - jupyterlab=4.0.11=py311hca03da5_0 - - jupyterlab_pygments=0.1.2=py_0 - - jupyterlab_server=2.25.1=py311hca03da5_0 - - jupyterlab_widgets=3.0.9=py311hca03da5_0 - - kiwisolver=1.4.4=py311h313beb8_0 - - krb5=1.20.1=hf3e1bf2_1 - - lcms2=2.12=hba8e193_0 - - lerc=3.0=hc377ac9_0 - - libbrotlicommon=1.0.9=h1a28f6b_7 - - libbrotlidec=1.0.9=h1a28f6b_7 - - libbrotlienc=1.0.9=h1a28f6b_7 - - libclang=14.0.6=default_h1b80db6_1 - - libclang13=14.0.6=default_h24352ff_1 - - libcxx=14.0.6=h848a8c0_0 - - libdeflate=1.17=h80987f9_1 - - libedit=3.1.20230828=h80987f9_0 - - libffi=3.4.4=hca03da5_0 - - libgfortran=5.0.0=11_3_0_hca03da5_28 - - libgfortran5=11.3.0=h009349e_28 - - libglib=2.78.4=h0a96307_0 - - libiconv=1.16=h1a28f6b_2 - - libllvm14=14.0.6=h7ec7a93_3 - - libopenblas=0.3.21=h269037a_0 - - libpng=1.6.39=h80987f9_0 - - libpq=12.17=h02f6b3c_0 - - libsodium=1.0.18=h1a28f6b_0 - - libtiff=4.5.1=h313beb8_0 - - libwebp-base=1.3.2=h80987f9_0 - - libxml2=2.10.4=h0dcf63f_1 - - libxslt=1.1.37=h1bd8bc4_0 - - llvm-openmp=14.0.6=hc6e5704_0 - - lz4-c=1.9.4=h313beb8_0 - - markupsafe=2.1.3=py311h80987f9_0 - - matplotlib=3.8.0=py311hca03da5_0 - - matplotlib-base=3.8.0=py311h7aedaa7_0 - - matplotlib-inline=0.1.6=py311hca03da5_0 - - mistune=2.0.4=py311hca03da5_0 - - munkres=1.1.4=py_0 - - mysql=5.7.24=ha71a6ea_2 - - nbclassic=1.0.0=pyhb4ecaf3_1 - - nbclient=0.8.0=py311hca03da5_0 - - nbconvert=7.10.0=py311hca03da5_0 - - nbconvert-core=7.10.0=pyhd8ed1ab_0 - - nbformat=5.9.2=py311hca03da5_0 - - ncurses=6.4=h313beb8_0 - - nest-asyncio=1.6.0=py311hca03da5_0 - - nltk=3.8.1=py311hca03da5_0 - - notebook=6.5.4=pyha770c72_0 - - notebook-shim=0.2.3=py311hca03da5_0 - - numexpr=2.8.7=py311h6dc990b_0 - - numpy=1.26.4=py311he598dae_0 - - numpy-base=1.26.4=py311hfbfe69c_0 - - openjpeg=2.3.0=h7a6adac_2 - - openssl=3.2.1=h0d3ecfb_0 - - overrides=7.4.0=py311hca03da5_0 - - packaging=23.1=py311hca03da5_0 - - pandas=2.1.4=py311h7aedaa7_0 - - pandocfilters=1.5.0=pyhd3eb1b0_0 - - parso=0.8.3=pyhd3eb1b0_0 - - pcre2=10.42=hb066dcc_0 - - pexpect=4.8.0=pyhd3eb1b0_3 - - pillow=10.2.0=py311h80987f9_0 - - pip=23.3.1=py311hca03da5_0 - - platformdirs=3.10.0=py311hca03da5_0 - - ply=3.11=py311hca03da5_0 - - prometheus_client=0.14.1=py311hca03da5_0 - - prompt-toolkit=3.0.43=py311hca03da5_0 - - prompt_toolkit=3.0.43=hd3eb1b0_0 - - psutil=5.9.0=py311h80987f9_0 - - ptyprocess=0.7.0=pyhd3eb1b0_2 - - pure_eval=0.2.2=pyhd3eb1b0_0 - - pycparser=2.21=pyhd3eb1b0_0 - - pygments=2.15.1=py311hca03da5_1 - - pyparsing=3.0.9=py311hca03da5_0 - - pyqt=5.15.10=py311h313beb8_0 - - pyqt5-sip=12.13.0=py311h80987f9_0 - - pysocks=1.7.1=py311hca03da5_0 - - python=3.11.8=hb885b13_0 - - python-dateutil=2.8.2=pyhd3eb1b0_0 - - python-fastjsonschema=2.16.2=py311hca03da5_0 - - python-json-logger=2.0.7=py311hca03da5_0 - - python-tzdata=2023.3=pyhd3eb1b0_0 - - pytz=2023.3.post1=py311hca03da5_0 - - pyyaml=6.0.1=py311h80987f9_0 - - pyzmq=25.1.2=py311h313beb8_0 - - qt-main=5.15.2=h0917680_10 - - qtconsole=5.5.1=py311hca03da5_0 - - qtpy=2.4.1=py311hca03da5_0 - - readline=8.2=h1a28f6b_0 - - referencing=0.30.2=py311hca03da5_0 - - regex=2023.10.3=py311h80987f9_0 - - requests=2.31.0=py311hca03da5_1 - - rfc3339-validator=0.1.4=py311hca03da5_0 - - rfc3986-validator=0.1.1=py311hca03da5_0 - - rpds-py=0.10.6=py311hf0e4da2_0 - - send2trash=1.8.2=py311hca03da5_0 - - setuptools=68.2.2=py311hca03da5_0 - - sip=6.7.12=py311h313beb8_0 - - six=1.16.0=pyhd3eb1b0_1 - - sniffio=1.3.0=py311hca03da5_0 - - soupsieve=2.5=py311hca03da5_0 - - sqlite=3.41.2=h80987f9_0 - - stack_data=0.2.0=pyhd3eb1b0_0 - - terminado=0.17.1=py311hca03da5_0 - - tinycss2=1.2.1=py311hca03da5_0 - - tk=8.6.12=hb8d0fd4_0 - - tornado=6.3.3=py311h80987f9_0 - - tqdm=4.65.0=py311hb6e6a13_0 - - traitlets=5.7.1=py311hca03da5_0 - - typing-extensions=4.9.0=py311hca03da5_1 - - typing_extensions=4.9.0=py311hca03da5_1 - - tzdata=2024a=h04d1e81_0 - - urllib3=2.1.0=py311hca03da5_1 - - wcwidth=0.2.5=pyhd3eb1b0_0 - - webencodings=0.5.1=py311hca03da5_1 - - websocket-client=0.58.0=py311hca03da5_4 - - wheel=0.41.2=py311hca03da5_0 - - widgetsnbextension=4.0.10=py311hca03da5_0 - - wordcloud=1.9.2=py311h80987f9_0 - - xz=5.4.6=h80987f9_0 - - yaml=0.2.5=h1a28f6b_0 - - zeromq=4.3.5=h313beb8_0 - - zlib=1.2.13=h5a0b063_0 - - zstd=1.5.5=hd90d995_0 - - pip: - - arrow==1.3.0 - - cached-property==1.5.2 - - cytoolz==0.12.3 - - eth-bloom==3.0.0 - - eth-hash==0.7.0 - - eth-keys==0.5.0 - - eth-typing==4.0.0 - - eth-utils==4.0.0 - - fqdn==1.5.1 - - hexbytes==0.3.1 - - ipython-genutils==0.2.0 - - isoduration==20.11.0 - - jsonpointer==2.4 - - jupyter-contrib-core==0.4.2 - - jupyter-nbextensions-configurator==0.6.3 - - lru-dict==1.3.0 - - lxml==5.1.0 - - py-ecc==7.0.0 - - py-evm==0.9.0b1 - - pycryptodome==3.20.0 - - pygtrie==2.5.0 - - rlp==4.0.0 - - seaborn==0.13.2 - - sortedcontainers==2.4.0 - - toolz==0.12.1 - - trie==3.0.0 - - types-python-dateutil==2.8.19.20240106 - - uri-template==1.3.0 - - webcolors==1.13 -prefix: /opt/homebrew/Caskroom/miniconda/base/envs/hardhat diff --git a/crates/tools/python/js-benchmark-variance/1.json b/crates/tools/python/js-benchmark-variance/1.json deleted file mode 100644 index 2c9b04e4c5..0000000000 --- a/crates/tools/python/js-benchmark-variance/1.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":851392.3211599999,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22846,22898,22940,22987,23621,23638,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116827.94931,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31223,31224,31238,31272,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":73496.31457,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3418.560447,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18228.190137,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2620857.535202,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44489.244506,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/10.json b/crates/tools/python/js-benchmark-variance/10.json deleted file mode 100644 index 7987ba228f..0000000000 --- a/crates/tools/python/js-benchmark-variance/10.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":833017.995759,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23621,23638,24228,24229,25449,25515,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":115980.913146,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75126.738669,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3330.553116,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":17649.617374,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2618506.557723,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43620.736048,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/11.json b/crates/tools/python/js-benchmark-variance/11.json deleted file mode 100644 index 331f73a354..0000000000 --- a/crates/tools/python/js-benchmark-variance/11.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":846003.319464,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116604.289097,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":72993.676974,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3350.7758000000003,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18009.47715,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2609160.885863,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43934.661269000004,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/12.json b/crates/tools/python/js-benchmark-variance/12.json deleted file mode 100644 index 29478a536f..0000000000 --- a/crates/tools/python/js-benchmark-variance/12.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":850369.291096,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20998,21038,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23621,23638,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117985.921893,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":76094.347699,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3581.1882290000003,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18057.876060000002,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2606401.687078,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43956.868533,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/13.json b/crates/tools/python/js-benchmark-variance/13.json deleted file mode 100644 index ef8441e756..0000000000 --- a/crates/tools/python/js-benchmark-variance/13.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":846704.720877,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116494.192819,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31223,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75786.55418899999,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3478.68892,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18719.422646,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2593691.231365,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44140.529471,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/14.json b/crates/tools/python/js-benchmark-variance/14.json deleted file mode 100644 index 5f92cf619d..0000000000 --- a/crates/tools/python/js-benchmark-variance/14.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":843355.687546,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20998,21038,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117060.640404,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":73252.77713799999,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3431.768824,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18303.357863,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2615083.7793050003,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44217.897678,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/15.json b/crates/tools/python/js-benchmark-variance/15.json deleted file mode 100644 index e4df71146e..0000000000 --- a/crates/tools/python/js-benchmark-variance/15.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":851078.4545730001,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20998,21038,21667,21673,21674,21681,21686,22846,22898,22940,22987,23621,23638,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26179,26203,26209,26752,26758,26769,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":118563.069988,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31223,31224,31238,31272,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":74486.14041600001,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3517.01621,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18542.467588,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2605519.90853,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":45030.248913,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/16.json b/crates/tools/python/js-benchmark-variance/16.json deleted file mode 100644 index c0c74cabae..0000000000 --- a/crates/tools/python/js-benchmark-variance/16.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":830061.95749,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116598.260819,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20222,20228,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":73524.323785,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3452.7291800000003,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18365.631957999998,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2603411.782983,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44167.842981,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/17.json b/crates/tools/python/js-benchmark-variance/17.json deleted file mode 100644 index 3d8fe3dd05..0000000000 --- a/crates/tools/python/js-benchmark-variance/17.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":828002.1092310001,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":118569.953863,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16706,16712,16722,16728,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18312,18331,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75289.181551,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3742.56842,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":17886.293863,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2614598.5457760002,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44042.083350999994,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/18.json b/crates/tools/python/js-benchmark-variance/18.json deleted file mode 100644 index dc8de368b6..0000000000 --- a/crates/tools/python/js-benchmark-variance/18.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":851346.389747,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116300.09797999999,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21380,21386,21392,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":72309.248914,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3558.436614,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18146.223074,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2610897.476203,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44149.032561,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/19.json b/crates/tools/python/js-benchmark-variance/19.json deleted file mode 100644 index 3678756863..0000000000 --- a/crates/tools/python/js-benchmark-variance/19.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":844932.633048,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116695.455438,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":72175.296418,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3364.52528,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18044.350521,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2607547.357347,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44398.481194,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/2.json b/crates/tools/python/js-benchmark-variance/2.json deleted file mode 100644 index 89cdd5cc43..0000000000 --- a/crates/tools/python/js-benchmark-variance/2.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":830122.582613,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117824.46910300001,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75100.051451,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3842.4088060000004,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18198.620339999998,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2612045.499244,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43938.078148,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/20.json b/crates/tools/python/js-benchmark-variance/20.json deleted file mode 100644 index 9e5079b971..0000000000 --- a/crates/tools/python/js-benchmark-variance/20.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":619171.9379469999,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22846,22898,22940,22987,23621,23638,24228,24229,25449,25515,25569,26179,26203,26209,26752,26758,26769,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117486.603979,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21380,21386,21392,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":74163.41871499999,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3367.854817,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18868.79558,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2613114.224097,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43587.497979,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/21.json b/crates/tools/python/js-benchmark-variance/21.json deleted file mode 100644 index 6c0a3f5842..0000000000 --- a/crates/tools/python/js-benchmark-variance/21.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":837944.150966,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31853,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117454.819444,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":78576.525876,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3325.1999849999997,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18262.255924999998,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2612243.764971,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43965.442185,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/22.json b/crates/tools/python/js-benchmark-variance/22.json deleted file mode 100644 index 44203166aa..0000000000 --- a/crates/tools/python/js-benchmark-variance/22.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":830732.49477,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22846,22898,22940,22987,23621,23638,24189,24198,24212,24221,24228,24229,24784,24793,25449,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":118022.468103,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":74098.930492,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3291.501891,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18217.772322,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2606999.0856830003,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44371.318455,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/23.json b/crates/tools/python/js-benchmark-variance/23.json deleted file mode 100644 index 03b0b9df25..0000000000 --- a/crates/tools/python/js-benchmark-variance/23.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":845484.844816,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":118107.91657700001,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":77504.0732,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3445.3110619999998,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18060.102060999998,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2614462.8826360004,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43422.459071,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/3.json b/crates/tools/python/js-benchmark-variance/3.json deleted file mode 100644 index e2dfa37946..0000000000 --- a/crates/tools/python/js-benchmark-variance/3.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":849751.258197,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31091,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116862.624912,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":76687.503764,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3474.459708,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18171.307256,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2599543.103835,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43602.610047999995,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/4.json b/crates/tools/python/js-benchmark-variance/4.json deleted file mode 100644 index 3c2264a214..0000000000 --- a/crates/tools/python/js-benchmark-variance/4.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":844312.199908,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24228,24229,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116668.429873,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":73811.927909,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3516.236566,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":17607.332813999998,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2602122.201487,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44325.114234,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/5.json b/crates/tools/python/js-benchmark-variance/5.json deleted file mode 100644 index c9544e9568..0000000000 --- a/crates/tools/python/js-benchmark-variance/5.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":847444.747061,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116467.853472,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22369,22381,22393,22479,22483,22525,22578,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":76354.94253,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3393.12806,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":17959.899133,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2603868.0557460003,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43927.128794000004,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/6.json b/crates/tools/python/js-benchmark-variance/6.json deleted file mode 100644 index e4d425770e..0000000000 --- a/crates/tools/python/js-benchmark-variance/6.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":835150.870492,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22846,22898,22940,22987,23621,23638,24228,24229,25449,25515,25569,26179,26203,26209,26752,26758,26769,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":118336.105309,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20239,20290,20323,20349,20386,20391,20396,20450,20478,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,22060,22078,22099,22125,22151,22173,22198,22230,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31273,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75325.564002,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3370.5344379999997,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18429.746299,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2610962.579503,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43610.137813999994,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/7.json b/crates/tools/python/js-benchmark-variance/7.json deleted file mode 100644 index 1c2248215c..0000000000 --- a/crates/tools/python/js-benchmark-variance/7.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":837646.9130040001,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20998,21038,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":115959.826307,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19801,19932,19981,20189,20196,20203,20222,20228,20239,20290,20323,20349,20386,20391,20396,20450,20478,20556,20562,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30757,30772,30779,30787,30843,30857,30968,30989,30999,31084,31085,31110,31111,31157,31204,31224,31238,31281,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":75307.77720699999,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3449.9605530000003,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18395.94249,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2608544.002185,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44156.196734000005,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/8.json b/crates/tools/python/js-benchmark-variance/8.json deleted file mode 100644 index 1093693b19..0000000000 --- a/crates/tools/python/js-benchmark-variance/8.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":849904.113397,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,17231,17779,18324,18868,19415,20946,20998,21038,21623,21628,21648,21667,21673,21674,21681,21686,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25449,25515,25569,26179,26203,26209,26752,26758,26769,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":116400.03221399999,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19788,19794,19801,19809,19815,19853,19859,19922,19928,19932,19948,19954,19960,19981,19997,20003,20009,20035,20041,20047,20143,20150,20166,20173,20189,20196,20203,20222,20228,20239,20290,20323,20349,20386,20391,20396,20450,20478,20520,20526,20532,20556,20562,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":72794.94631900001,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3657.128498,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18472.675471000002,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2611264.045154,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":44204.894625,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/js-benchmark-variance/9.json b/crates/tools/python/js-benchmark-variance/9.json deleted file mode 100644 index 429a805111..0000000000 --- a/crates/tools/python/js-benchmark-variance/9.json +++ /dev/null @@ -1 +0,0 @@ -{"neptune-mutual-blue-protocol_8db6480":{"timeMs":849029.5063440001,"failures":[2033,2044,2050,2072,2109,2146,2734,2738,2742,3899,4493,4499,4505,4522,4549,5736,6327,6908,7502,8110,8716,9074,10046,10052,10072,10404,10426,10438,10450,10467,10479,10501,10523,10545,10567,11133,12245,12793,14452,14460,17231,17779,18324,18868,19415,20891,20900,20909,20925,20946,20947,20956,20972,20981,20998,21003,21019,21038,21041,21050,21623,21628,21648,21667,21673,21674,21681,21686,22789,22800,22809,22825,22846,22847,22856,22872,22881,22898,22903,22921,22940,22943,22952,22968,22987,22990,22999,23554,23567,23577,23586,23591,23604,23614,23621,23624,23633,23638,24189,24198,24212,24221,24228,24229,24784,24793,25366,25380,25389,25398,25414,25433,25449,25450,25459,25475,25494,25500,25515,25520,25536,25555,25569,25572,25581,26155,26164,26174,26179,26184,26193,26203,26209,26752,26758,26769,28305,28316,28849,29392,29398,29405,29418,29429,29438,29445,29456,29467,29476,29485,29494,29504,29515,29518,29527,29537,29550,29559,29564,29570,29579,29584,29589,29594,29600,29612,29620,29629,29639,29648,29655,29660,29663,30210,30216,30227,30236,30246,30270,30276,30289,30296,30306,30330,30336,30345,30354,30361,30385,30395,30396,30404,30414,30438,30444,30453,30458,30468,30492,30498,30509,30516,30519,31052,31061,31066,31080,31091,31094,31103,31113,31122,31127,31132,31142,31151,31158,31161,31166,31172,31184,31192,31201,31211,31220,31229,31234,31239,31782,31788,31797,31806,31819,31843,31853,31854,31862,31872,31896,31904,31913,31918,31928,31952,31958,31967,31976,31983,32534,32547,32557,32566,32571,32576,32586,32593,32596,32605,32610,33143,33661,33667,33673,34185,34191,34197,34732,35267,35804,36339,36874,37411,37946,40967,40981,41027,41043,41044,41055,41076,41102,41108,41124,41135,41181,41190,41199,41222,41231,41240,41249,41255,41266,41282,41288,41299,41305,41311,41327,43513,44060,44607,46793,47340,47887,48985,49542,50087,50630,51161,51729,51760,51765,51768,51777,52353,52384,52389,52392,52401,52973,52979,52981,52988,52995,53543,53560,54080,54087,54093,54094,54095,54096,54097,54119,54130,54140,55734,56252,57406,58408,58912,59418,60422,60924,61430,62438,62944,63460,63471,64009,64021,64630,64682,64684,64699,65253,65264,65265,65266,65267,65273,65828,65834,65835,65841,66404,66417,66424,66433,68052,68058,68059,68065,69149,69165,69747,71690,71992,72298,73185,73491,73801,74111,74731,75352,75664,75940,75951,76224,76225,76231,76242,76522,76533,76534,76535,78848,79427,81772,84085,84662,84668,87013,87019,87582,87608,87619,88233,90956,90957,90958,90959,90965,90983,92603,92604,92607,93167,94859,95419,95984,96539,97229,97233,97240,97779,97780,98323,98324,98327,99879,99881,101016,101033,101040,101041,101053,101075,101646,102418,102831,102832,102833,102839,102845,103537,103556,103589,103951,103957,103970,103983,103989,103997,105414,105438,105878,105912,105939,105958,105977,105996,106015,106034,106058,106082,106106,106469,106480,106481,107152,107171,107205,107229,107604,108017,108033,108395,109044,109050,109066,109084,110068,110303,111115,111319,111520,111730,111939,112140,112392,112403,112653,113142,113156,113424,113665,113942,114240,114246,114538,114544,114649,114665,114754,114794,114837,114858,114901,114922,114965,114986,115029,115050,115093,115114,115157,115178,115221,115242,115274,115352,115505,115521,115552,115568,115599,115615,115646,115662,115693,115709,115760,115776,115807,115823,115854,115870,115904,115920,115951,115967,115998,116014,116091,116103,116119,116184,116186,116192,116212,116267,116285,116303,116321,116353,116407,116472,116478,116484,116504,116662,116664,116670,116671,116673,118154,118166,118178,118182,118186,119663,119666,124110]},"openzeppelin-contracts_0a5fba7a":{"timeMs":117942.296259,"failures":[39,75,110,172,183,195,201,243,257,261,272,312,331,350,354,358,362,366,398,434,469,531,542,554,560,744,851,889,937,954,1034,1284,1395,1431,1466,1528,1539,1551,1557,1674,1684,1698,1722,1726,1783,2361,2365,2379,2386,2398,2422,2496,2514,2538,2612,2630,2654,2728,2746,2802,2858,2870,2900,2912,2916,2930,2937,2949,2973,3047,3065,3089,3163,3181,3205,3279,3297,3353,3409,3421,3451,3463,3467,3481,3488,3500,3524,3598,3616,3640,3714,3732,3756,3830,3848,3904,3960,3972,4002,4006,4020,4027,4039,4063,4137,4155,4179,4253,4271,4295,4369,4387,4443,4499,4511,4541,4612,4619,4631,4655,4729,4747,4771,4845,4863,4887,4961,4979,5035,5091,5103,5133,5236,5251,5271,5300,5389,5412,5500,5580,5600,5654,5670,5684,5691,5703,5724,5789,5804,5860,5916,5928,5958,5993,6000,6012,6033,6098,6113,6169,6225,6237,6267,6280,6312,6328,6349,6379,6471,6495,6587,6670,6691,6748,7085,7123,7142,7166,7199,7300,7327,7431,7523,7547,7613,7696,7703,7725,7751,7797,7824,7907,7928,8008,8082,8100,8148,8234,8251,8263,8267,8279,8294,8311,8327,8391,8412,8453,8472,8560,8573,8605,8643,8673,8765,8789,8860,8943,8964,9001,9016,9039,9089,9106,9199,9249,9272,9286,9300,9313,9342,9355,9473,10469,10473,10477,10481,10485,10489,10493,10497,10501,10505,10509,10513,10517,10521,10525,10529,10533,10537,10541,10545,10549,10553,10557,10561,10565,10569,10573,10577,10581,10585,10589,10593,10597,10601,10605,10609,10613,10617,10621,10625,10629,10633,10637,10641,10645,10649,10653,10657,10661,10665,10669,10673,10677,10681,10685,10689,10693,10697,10701,10705,10709,10713,10717,10721,12034,12038,12042,12046,12050,12054,12058,12062,12066,12070,12074,12078,12082,12086,12090,12094,12098,12102,12106,12110,12114,12118,12122,12126,12130,12134,12138,12142,12146,12150,12154,12158,12162,12166,12170,12174,12178,12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12222,12226,12230,12234,12238,12242,12246,12250,12254,12258,12262,12266,12270,12274,12278,12282,12286,12306,13303,13307,13311,13315,13319,13323,13327,13331,13335,13339,13343,13347,13351,13355,13359,13363,13367,13371,13375,13379,13383,13387,13391,13395,13399,13403,13407,13411,13415,13419,13423,13427,13431,13435,13439,13443,13447,13451,13455,13459,13463,13467,13471,13475,13479,13483,13487,13491,13495,13499,13503,13507,13511,13515,13519,13523,13527,13531,13535,13539,13543,13547,13551,13555,14868,14872,14876,14880,14884,14888,14892,14896,14900,14904,14908,14912,14916,14920,14924,14928,14932,14936,14940,14944,14948,14952,14956,14960,14964,14968,14972,14976,14980,14984,14988,14992,14996,15000,15004,15008,15012,15016,15020,15024,15028,15032,15036,15040,15044,15048,15052,15056,15060,15064,15068,15072,15076,15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15120,15336,15343,15347,15354,15364,15377,15387,15403,15419,15435,15439,15452,15465,15478,15494,15510,15529,15532,15600,15614,15634,15654,15673,15677,15692,15702,15715,15731,15750,15754,15758,15762,15766,15818,15822,15826,15880,16152,16159,16163,16170,16180,16193,16203,16219,16235,16251,16255,16268,16281,16294,16310,16326,16345,16348,16416,16430,16450,16470,16489,16493,16508,16518,16531,16547,16566,16570,16574,16578,16582,16650,16654,16658,16712,16984,16991,16995,17002,17012,17025,17035,17051,17067,17083,17087,17100,17113,17126,17142,17158,17177,17180,17248,17262,17282,17302,17321,17325,17340,17350,17363,17379,17398,17402,17406,17410,17414,17466,17470,17474,17528,17664,17668,17672,17682,17689,17699,17721,17747,17784,17788,17792,17796,17800,17804,17814,17821,17831,17860,17870,17880,17890,17916,17939,17946,17950,17976,18015,18025,18035,18062,18076,18455,18596,18733,18734,18861,18862,18934,18955,19086,19135,19393,19444,19477,19503,19540,19545,19550,19604,19632,19780,19788,19794,19801,19809,19815,19853,19859,19922,19928,19932,19948,19954,19960,19981,19997,20003,20009,20035,20041,20047,20143,20150,20166,20173,20189,20196,20203,20222,20228,20239,20290,20323,20349,20386,20391,20396,20450,20472,20478,20520,20526,20532,20556,20562,20614,20684,20700,20702,20719,20739,20762,20787,20798,20809,20820,20841,20865,20904,20950,21030,21100,21116,21118,21135,21155,21178,21203,21214,21225,21236,21257,21281,21320,21366,21464,21561,21579,21600,21626,21652,21674,21699,21731,21819,21828,21870,21882,21894,21963,21985,22001,22011,22027,22033,22039,22051,22057,22060,22071,22078,22089,22095,22099,22110,22116,22122,22125,22136,22142,22148,22151,22162,22173,22184,22190,22198,22209,22215,22219,22230,22244,22250,22256,22283,22289,22295,22318,22327,22342,22348,22354,22369,22381,22393,22479,22483,22525,22611,22615,22657,22812,22828,22983,22999,23101,23116,23123,23131,23181,23195,23259,23427,23442,23449,23457,23513,23527,23594,23824,23835,23857,23864,23871,23878,23885,23892,23902,23910,23917,23984,24000,24018,24034,24047,24060,24073,24086,24102,24119,24295,24324,24395,24445,24473,24502,24573,24625,24651,24677,24745,24792,24822,24827,24853,24887,24900,24913,24942,24959,24967,24976,25004,25008,25053,25070,25074,25098,25108,25112,25144,25202,25260,25408,25511,25680,25696,25882,25910,26001,26039,26136,26156,26191,26197,26242,26244,26246,26276,26285,26297,26370,26373,26429,26433,26441,26445,26456,26464,26497,26498,26550,26560,26570,26632,26835,26849,26863,26877,26891,26901,26911,26921,26923,26933,26943,26992,27195,27209,27223,27237,27251,27261,27283,27299,27303,27305,27321,27325,27332,27354,27358,27360,27364,27431,27452,27469,27482,27495,27508,27521,27534,27547,27560,27818,27822,27826,27830,27834,27838,27860,27864,27868,27872,27876,27880,27909,27913,27960,27967,27977,28029,28039,28061,28107,28111,28137,28141,28229,28245,28249,28253,28299,28303,28374,28378,28425,28432,28442,28495,28505,28527,28573,28577,28603,28607,28695,28711,28715,28719,28765,28769,28857,28861,28908,28915,28925,28977,28987,29009,29055,29076,29083,29090,29097,29104,29108,29112,29161,29191,29201,29211,29221,29231,29238,29245,29303,29324,29331,29338,29345,29352,29356,29408,29448,29455,29526,29542,29549,29568,29600,29608,29616,29624,29756,29808,29841,29874,29907,29913,29920,29934,30056,30071,30078,30086,30136,30150,30257,30278,30288,30484,30555,30632,30659,30699,30701,30724,30725,30727,30728,30746,30748,30757,30772,30779,30787,30842,30843,30857,30890,30925,30927,30954,30956,30968,30989,30999,31020,31021,31023,31024,31040,31041,31062,31063,31084,31085,31110,31111,31156,31157,31204,31224,31238,31273,31281,31301,31315,31350,31427,31436,31477,31489,31596,31676,31688,31774,31789,31807,31899,31917,31963,32131,32140,32149,32487,32500,32513,32526,33152,33233,33861,33942,34570,34651,34883,34885,34887,34889,34891,34893,34895,34897,34899,34901,34953,34986,35038,35071,35144,35177,35182,35229,35231,35233,35235,35237,35239,35241,35243,35245,35265,35312,35330,35800,35816,35832,35848,36318,36351,36367,36851,36867,36883,36899,37517,37537,37557,37577,37597,38081,38097,38113,38129,38747,38767,38787,38807,38827,38847,38867,38887,38907,38927,38947,39431,39464,39480,40098,40139,40159,40179,40663,40696,40712,41330,41371,41391,41411,41431,41451,41471,41491,41511,41531,41577,41591,41605,41619,41633,41647,41795,41808,41848,41957,41966,41991,42011,42015,42040,42053,42087,42149,42167,42659,42675,42691,42707,43199,43232,43248,43754,43770,43786,43802,44442,44462,44482,44502,44522,45028,45044,45060,45076,45716,45736,45756,45776,45796,45816,45836,45856,45876,45896,45916,46422,46455,46471,47111,47152,47172,47192,47698,47731,47747,48387,48428,48448,48468,48488,48508,48528,48548,48568,48588,48634,48648,48662,48676,48690,48704,48852,48865,48905,49014,49023,49048,49068,49072,49097,49110,49144,49202,49211,49244,49263,49309,49325,49365,49383,49399,49409,49419,49565,49569,49572,49581,49594,49602,49612,49763,49767,49770,49779,49792,49800,49810,49961,49965,49968,49977,49990,49998,50008,50017,50021,50025,50029,50043,50053,50063,50073,50083,50201,50203,50231,50233,50288,50373,50385,50397,50499,50514,50521,50529,50579,50593,50886,50941,50979,50999,51042,51060,51530,51546,51562,51578,52048,52081,52097,52581,52597,52613,52629,53247,53267,53287,53307,53327,53811,53827,53843,53859,54477,54497,54517,54537,54557,54577,54597,54617,54637,54657,54677,55161,55194,55210,55828,55869,55889,55909,56393,56426,56442,57060,57101,57121,57141,57161,57181,57201,57221,57241,57261,57307,57321,57335,57349,57363,57377,57525,57538,57578,57687,57696,57721,57741,57745,57770,57783,57853,57857,57861,57865,57869,57873,57899,57946,57972,57989,57993,57997,58001,58005,58009,58020,58055,58061,58064,58067,58079,58083,59858,59862,59866,59902,59907,59952,59961,59967,59973,59979,59985,59991,59997,60003,60009,60015,60032,60048,60066,60111,60122,60140,60152,60156,60222,60230,60235,60243,60248,60256,60452,60469,60472,60475,60476,60491,60504,60505,60506,60507,60510,60523,60524,60525,60526,60529,60619,60620,60623,60624,60635,60636,61037,61055,61058,61520,61526,62026,62029,62041,62044,62056,62059,62071,62074,62086,62089,62101,62104,62116,62119,62131,62134,62146,62149,62161,62164,62176,62179,62191,62194,62206,62209,62221,62224,62236,62239,62251,62254,62266,62269,62281,62284,62296,62299,62311,62314,62326,62329,62341,62344,62356,62359,62371,62374,62386,62389,62401,62404,62416,62419,62431,62434,62446,62449,62461,62464,62476,62479,62491,62494,62512,62515,62518,62521,62539,62542,62545,62548,62566,62569,62572,62575,62593,62596,62599,62602,62620,62623,62626,62629,62647,62650,62653,62656,62674,62677,62680,62683,62701,62704,62707,62710,62728,62731,62734,62737,62755,62758,62761,62764,62782,62785,62788,62791,62809,62812,62815,62818,62836,62839,62842,62845,62863,62866,62869,62872,62890,62893,62896,62899,62917,62920,62923,62926,62944,62947,62950,62953,62971,62974,62977,62980,62998,63001,63004,63007,63025,63028,63031,63034,63052,63055,63058,63061,63079,63082,63085,63088,63106,63109,63112,63115,63133,63136,63139,63142,63160,63163,63166,63169,63187,63190,63193,63196,63214,63217,63220,63223,63241,63244,63247,63250,63268,63271,63274,63277,63295,63298,63301,63304,63322,63325,63328,63331,63343,63346,63680,63767,63954,64041,64228,64315,64507,64509,64510,64511,64542,64778,64933,65088,65243,65398,65553,65708,65863,66018,66079,66198,66317,66572]},"rocketpool_6a9dbfd8":{"timeMs":73993.803125,"failures":[2253,2256,2280,2284,2719,2722,2848,2856,3435,3447,3764,3765,4088,4103,4997,4998,5288,5291,5578,5595,5923,5932,8498,8553,8739,8764,9544,9559,9839,9840,11394,11403,12532,12550,13440,13467,15937,15974,16935,16938,17891,17908,17916,17957,18842,18845,18904,18915,18980,18981,19939,19970,20001,20006,20085,20086,21049,21050,21065,21066,21081,21112,21762,21763,21782,21793,23073,23075,24697,24698,25200,25204,25708,25709,26349,26356,26906,26909,26924,26941,26954,27115,27178,27179,27294,27319,28420,28421,28932,28975,29355,29458,29786,29805,31697,31740,32434,32493,32828,32829,33151,33168,33804,33823,34103,34146,34440,34481,34789,34790,36279,36280,36355,36460,38107,38108,38109,38110,38392,38393,38804,38805,39087,39088,39540,39541,40695,41080,41083,41420,41559,42331,42627,42628,43089,43090,43567,43578,44428,44429,44663,44666,44765,44902,45140,45169,47452,47453,49778,49779,52049,52050,52542,52557,53947,53948,54610,54611,54805,54806,55125,55132,58033,58044,58045,58657,58666,59806,59811,60897,61829,61830,62323,62324,63029,63032,64440,64441,65059,65060,65186,65187,66353,66354,66509,66656,67551,67558,67689,67690,68367,68368,69047,69048,74038,74039,74182,74183,75955,75956,75967,75968,75973,75974,79933,79934,80621,80624,81113,81116,81320,81321,82350,82356,82544,82545,83183,83192,83666,83667,83835,83838,83844,83847,84495,84512,84517,84518,84525,84526,84531,84532,92072,92075,93281,93282,93412,93574,99023,99027,100476,100477,101158,101161,104328,104329,105077,105088,105648,105649,105678,105679,105838,105839,106586,106588,108898,108901,111509,111512,112017,112020,112171,112180,112893,112902,113138,113139,116482,116483,117037,117040,117305,117318,117671,117775,118076,118077,118497,118648,121466,121469,123676,123723,123921,123938,124178,124209,124625,124626,125160,125216,125746,125773,126319,126320,126797,126806,126836,126837,130382,130383,131503,131504,132005,132006,132204,132205,133337,133338,133389,133390,134110,134112,134744,134745,135186,135189,135258,135259,135952,135953,136396,136397,139727,139728,140899,140900,141433,141436,142740,142746,143596,143597,143981,144157,146514,146521,147393,147394,147880,147881,149482,149483,150509,150510,164880,165031,165180,165181,165529,165530,165568,165569,167529,167571,167614,167615,167640,167641,167762,167763,167808,167809,181779,181780,183873,183874,186498,186499,194346,194347,196716,196717,196741,196742,196772,196773,196799,196804,204422,204423,214608,214609,214653,214654,214678,214737,214873,214874]},"safe-contracts_914d0f8":{"timeMs":3601.1777029999994,"failures":[195,271,316,361,367,523,576,665,690,716,731,787,802,846,851,872,898,906,914,928,966,974,982,996,1010,1030,1070,1075,1109,1114,1174,1178,1186,1242,1250,1258,1266,1280,1288,1296,1329,1343,1357,1371,1385,1399,1413,1427,1435,1497,1502,1510,1518,1526,1534,1542,1550,1558,1566,1574,1598,1620,1621,1623,1642,1647,1652,1657,1662,1667,1672,1677,1682,1710,1718,1753,1780,1785,1822,1836,1841,1846,1879,1907,1939,1959,1987,2043,2049,2055,2076,2082,2097,2117,2145,2196,2203,2210,2232,2239,2260,2289,2339,2345,2351,2358,2364,2384,2412,2511,2538,2544,2550,2556,2563,2569,2590,2619,2721,2758,2762,2766,2769,2801,2806,2842,2847,2852,2898,2917,2980,3031,3035,3047,3071,3125,3167,3178,3257,3261,3265,3311,3330,3458,3492,3528,3530,3571,3572,3595,3610,3643,3657,3716,3721,3777,3784,3877,3881,3931,3937,4019,4035,4087,4095,4126,4134,4167,4175,4183,4214,4312,4338,4365,4390,4415,4442,4468,4496,4521,4562,4587,4628,4653,4677,4720,4744,4868,4876,4884,4902,4994,5014]},"seaport_4f4e7c20":{"timeMs":18672.556515,"failures":[1144,1217,1290,1362,1435,1506,1579,1652,1725,1798,1871,1944,2036,2118,2209,2282,2355,2428,2492,2573,2637,2710,3174,3736,4657,5377,10275,13575,16175,16219,16238,16346,16713,16727,16739,16751,16809,16893,16905,16917,16929,16948,16955,16962,16980,16987,16992,17008,17024,17031,17250,17257,17321,17365,17374,17448,17457,17473,17480,17627,17667,17685,17727,17756,17798,17816,17869,17887,17990,18049,18160,18187,18271,18298,18552,18855,19087,19749,19758,19767,19844,19921,20030,20105,20147,20209,20251,20293,20337,20379,20421,20463,20513,20570,20578,20671,20738,20807,20856,20863,20903,20910,20917,20965,20972,20979,21044,21109,21157,21212,21267,21332,21397,21462,21527,21585,21643,21701,21759,21814,21862,21902,21950,21990,22030,22070,22110,22150,22190,22290,22344,22351,22358,22451,22458,22545,22622,22699,22706,22783,22861,22915,23014,23068,23143,23183,23223,23263,23303,23343,23383,23431,23479,23519,23594,23601,23668,23675,23724,23733,23816,23823,23860,23999,24068,24115,24196,24225,24342,24400,24468,24533,24774,24891,24976,25020,25092,25114,25136,25158,25198,25238,25260,25304,25336,25378,25418,25458,25470,25482,25533,25582,25631,25682,25731,25780,25839,25898,25949,26002,26053,26077,26101,26125,26149,26302,26410,26454,26498,26571,26904,26913,26980,27402,27459,27478,27670,28049,28371,28390,28573,28592,28626,28645,28679,28698,28741,28760,28803,28822,28871,28890,28942,28961,29019,29038,29096,29115,29167,29186,29238,29257,29343,29362,29402,29421,29507,29526,29612,29631,29683,29702,31063,32254,32273,33057,33076,33110,33129,33163,33182,33225,33244,33332,33384,33403,33457,33476,33526,33545,33618,33637,33689,33708,33760,33779,33865,33884,33924,33943,34029,34048,34134,34153,34205,34874,34912,34957,34964,34973,34982,35034,35098,35132,35194,35261,35286,35320,35327,35387,35449,35483,35492,35501,35510]},"synthetix_9a3a109f":{"timeMs":2595917.773587,"failures":[8,9,12,13,16,17,20,21,24,25,28,29,32,33,36,37,40,41,44,45,48,49,52,53,56,57,60,61,64,65,68,69,72,73,76,77,80,81,93,94,97,98,101,102,165,186,971,972,979,980,991,992,1153,1154,1858,1859,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1914,1915,1918,1919,1922,1923,1926,1927,1930,1931,1934,1935,1943,1944,1947,1948,1951,1952,1955,1956,1959,1960,1963,1964,1967,1968,1971,1972,1975,1976,1979,1980,1983,1984,1987,1988,1991,1992,1995,1996,1999,2000,2003,2004,2007,2008,2011,2012,2015,2016,2019,2020,2028,2029,2032,2033,2036,2037,2040,2041,2044,2045,2048,2049,2052,2053,2056,2057,2060,2061,2064,2065,2068,2069,2072,2073,2076,2077,2080,2081,2084,2085,2088,2089,2092,2093,2096,2097,2100,2101,2104,2105,2113,2114,2117,2118,2121,2122,2125,2126,2129,2130,2133,2134,2137,2138,2141,2142,2145,2146,2149,2150,2153,2154,2157,2158,2161,2162,2165,2166,2169,2170,2173,2174,2177,2178,2181,2182,2185,2186,2189,2190,2198,2199,2202,2203,2206,2207,2210,2211,2214,2215,2218,2219,2222,2223,2226,2227,2230,2231,2234,2235,2238,2239,2242,2243,2246,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2270,2271,2274,2275,2283,2284,2287,2288,2291,2292,2295,2296,2299,2300,2303,2304,2307,2308,2311,2312,2315,2316,2319,2320,2323,2324,2327,2328,2331,2332,2335,2336,2339,2340,2343,2344,2347,2348,2351,2352,2355,2356,2359,2360,2368,2369,2372,2373,2376,2377,2380,2381,2384,2385,2388,2389,2392,2393,2396,2397,2400,2401,2404,2405,2408,2409,2412,2413,2416,2417,2420,2421,2424,2425,2428,2429,2432,2433,2436,2437,2440,2441,2444,2445,2453,2454,2457,2458,2461,2462,2465,2466,2469,2470,2473,2474,2477,2478,2481,2482,2485,2486,2489,2490,2493,2494,2497,2498,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2521,2522,2525,2526,2529,2530,2538,2539,2542,2543,2546,2547,2550,2551,2554,2555,2558,2559,2562,2563,2566,2567,2570,2571,2574,2575,2578,2579,2582,2583,2586,2587,2590,2591,2594,2595,2598,2599,2602,2603,2606,2607,2610,2611,2614,2615,2623,2624,2627,2628,2631,2632,2635,2636,2639,2640,2643,2644,2647,2648,2651,2652,2655,2656,2659,2660,2663,2664,2667,2668,2671,2672,2675,2676,2679,2680,2683,2684,2687,2688,2691,2692,2695,2696,2699,2700,2708,2709,2712,2713,2716,2717,2720,2721,2724,2725,2728,2729,2732,2733,2736,2737,2740,2741,2744,2745,2748,2749,2752,2753,2756,2757,2760,2761,2764,2765,2768,2769,2772,2773,2776,2777,2780,2781,2784,2785,2833,2853,2873,2893,3674,3675,3791,3792,3906,3907,4019,4020,4188,4189,4451,4452,4564,4565,5008,5009,5117,5118,5331,5332,5440,5441,5671,5672,5675,5676,5679,5680,5683,5684,5687,5688,5691,5692,5695,5696,5699,5700,5703,5704,5707,5708,5711,5712,5715,5716,5719,5720,5723,5724,5727,5728,5731,5732,5735,5736,5739,5740,5743,5744,5747,5748,5979,5980,6233,6234,6373,6374,6377,6378,6413,6414,6417,6418,6437,6438,6441,6442,6601,6602,6605,6606,6625,6626,6629,6630,7129,7130,7383,7384,7516,7517,7520,7521,7524,7525,7528,7529,7532,7533,7536,7537,7540,7541,7544,7545,7548,7549,7552,7553,7556,7557,7560,7561,7564,7565,7568,7569,7572,7573,7576,7577,7580,7581,7584,7585,7588,7589,7641,7642,7781,7782,7785,7786,7789,7790,7793,7794,7797,7798,7801,7802,7805,7806,7809,7810,7813,7814,7817,7818,7821,7822,7825,7826,7829,7830,7833,7834,7837,7838,7841,7842,7845,7846,7849,7850,7853,7854,7902,7903,8092,8093,8137,8138,8182,8183,8227,8231,8239,8240,8284,8288,8333,8337,8382,8386,8431,8435,8480,8481,8525,8526,8529,8530,8533,8534,8537,8538,8541,8542,8545,8546,8549,8550,8553,8554,8557,8558,8561,8562,8565,8566,8569,8570,8573,8574,8577,8578,8581,8582,8585,8586,8589,8590,8593,8594,8597,8598,8601,8646,8650,8695,8699,8744,8748,8791,8833,8834,9008,9009,9016,9017,9028,9029,9685,9889,9890,9893,9894,9897,9898,9901,9902,9905,9906,9909,9910,9913,9914,9917,9918,9921,9922,9925,9926,9929,9930,9933,9934,9937,9938,9941,9942,9945,9946,9949,9950,9953,9954,9957,9958,9961,9962,13720,13721,13724,13725,13728,13729,13732,13733,13736,13737,13740,13741,13744,13745,13748,13749,13752,13753,13756,13757,13760,13761,13764,13765,13768,13769,13772,13773,13776,13777,13780,13781,13784,13785,13788,13789,13792,13793,16132,16133,16136,16137,16140,16141,16144,16145,16148,16149,16152,16153,16156,16157,16160,16161,16164,16165,16168,16169,16172,16173,16176,16177,16180,16181,16184,16185,16188,16189,16192,16193,16196,16197,16200,16201,16204,16205,16208,16209,16231,16232,16235,16236,16239,16240,16243,16244,16247,16248,16251,16252,16255,16256,16259,16260,16263,16264,16267,16268,16271,16272,16275,16276,16279,16280,16283,16284,16287,16288,16291,16292,16295,16296,16299,16300,16303,16304,16326,16327,16330,16331,16334,16335,16338,16339,16342,16343,16346,16347,16350,16351,16354,16355,16358,16359,16362,16363,16366,16367,16370,16371,16374,16375,16378,16379,16382,16383,16386,16387,16390,16391,16394,16395,16398,16399,16402,16403,16425,16426,16485,16486,16489,16490,16493,16494,16497,16498,16501,16502,16505,16506,16509,16510,16513,16514,16517,16518,16521,16522,16525,16526,16529,16530,16533,16534,16537,16538,16541,16542,16545,16546,16549,16550,16553,16554,16557,16558,16691,16692,16730,16731,17108,17109,17373,17374,17404,17405,17439,17440,18449,18450,18453,18454,18457,18458,18461,18462,18465,18466,18469,18470,18473,18474,18477,18478,18481,18482,18485,18486,18489,18490,18493,18494,18497,18498,18501,18502,18505,18506,18509,18510,18513,18514,18517,18518,18521,18522,18525,18526,18613,18614,18617,18618,18621,18622,18625,18626,18629,18630,18633,18634,18637,18638,18641,18642,18645,18646,18649,18650,18653,18654,18657,18658,18661,18662,18665,18666,18669,18670,18673,18674,18677,18678,18681,18682,18685,18686,18689,18690,18777,18778,18781,18782,18785,18786,18789,18790,18793,18794,18797,18798,18801,18802,18805,18806,18809,18810,18813,18814,18817,18818,18821,18822,18825,18826,18829,18830,18833,18834,18837,18838,18841,18842,18845,18846,18849,18850,18853,18854,18941,18942,18945,18946,18949,18950,18953,18954,18957,18958,18961,18962,18965,18966,18969,18970,18973,18974,18977,18978,18981,18982,18985,18986,18989,18990,18993,18994,18997,18998,19001,19002,19005,19006,19009,19010,19013,19014,19101,19102,19105,19106,19109,19110,19113,19114,19117,19118,19121,19122,19125,19126,19129,19130,19133,19134,19137,19138,19141,19142,19145,19146,19149,19150,19153,19154,19157,19158,19161,19162,19165,19166,19169,19170,19173,19174,19261,19262,19265,19266,19269,19270,19273,19274,19277,19278,19281,19282,19285,19286,19289,19290,19293,19294,19297,19298,19301,19302,19305,19306,19309,19310,19313,19314,19317,19318,19321,19322,19325,19326,19329,19330,19333,19334,19421,19422,19425,19426,19429,19430,19433,19434,19437,19438,19441,19442,19445,19446,19449,19450,19453,19454,19457,19458,19461,19462,19465,19466,19469,19470,19473,19474,19477,19478,19481,19482,19485,19486,19489,19490,19493,19494,19497,19498,20880,20881,22669,22670,22673,22674,22677,22678,22831,22832,22985,22986,23299,23300,23457,23458,23624,23625,23817,23818,25852,25853,29427,29428,29431,29432,29435,29436,29439,29440,29443,29444,29447,29448,29451,29452,29455,29456,29459,29460,29463,29464,29467,29468,29471,29472,29475,29476,29479,29480,29483,29484,29487,29488,29491,29492,29495,29496,29499,29500,29515,29516,29536,29537,29540,29541,29544,29545,29548,29549,29552,29553,29556,29557,29560,29561,29564,29565,29568,29569,29572,29573,29576,29577,29580,29581,29584,29585,29588,29589,29592,29593,29596,29597,29600,29601,29604,29605,29608,29609,29616,29617,29661,29662,29669,29670,30121,30122,30125,30126,30140,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30203,30204,30207,30208,30211,30212,30215,30216,30219,30220,30223,30224,30227,30228,30231,30232,30235,30236,30239,30240,30243,30244,30247,30248,30251,30252,30255,30256,30259,30260,30263,30264,30267,30268,30271,30272,30275,30276,30297,30298,30397,30398,30457,30458,30517,30518,30577,30578,30886,30887,30890,30891,30894,30895,30898,30899,30902,30903,30906,30907,30910,30911,30914,30915,30918,30919,30922,30923,30926,30927,30930,30931,30934,30935,30938,30939,30942,30943,30946,30947,30950,30951,30954,30955,30958,30959,31780,31781,31783,31784,31786,31787,31789,31790,31792,31793,31795,31796,31798,31799,31801,31802,31804,31805,31807,31808,31810,31811,31813,31814,31816,31817,31819,31820,31822,31823,31825,31826,31828,31829,31831,31832,31834,31835,31837,31838,33043,33044,33179,33180,33218,33219,33318,33319,33616,33617,33619,33620,33622,33623,33625,33626,33628,33629,33631,33632,33634,33635,33637,33638,33640,33641,33643,33644,33646,33647,33649,33650,33652,33653,33655,33656,33658,33659,33661,33662,33664,33665,33667,33668,33670,33671,34336,34337,34367,34368,34399,34400,34467,34468,34607,34608,34750,34751,34818,34819,35230,35231,35342,35343,35553,35554,35629,35630,35785,35786,35944,35945,36020,36021,36400,36401,36420,36421,36541,36542,36545,36546,36549,36550,36553,36554,36557,36558,36561,36562,36565,36566,36569,36570,36573,36574,36577,36578,36581,36582,36585,36586,36589,36590,36593,36594,36597,36598,36601,36602,36605,36606,36609,36610,36613,36614,36617,36618,36640,36641,36644,36645,36648,36649,36652,36653,36656,36657,36660,36661,36664,36665,36668,36669,36672,36673,36676,36677,36680,36681,36684,36685,36688,36689,36692,36693,36696,36697,36700,36701,36704,36705,36708,36709,36712,36713,36813,36814,36817,36818,36821,36822,36825,36826,36829,36830,36833,36834,36837,36838,36841,36842,36845,36846,36849,36850,36853,36854,36857,36858,36861,36862,36865,36866,36869,36870,36873,36874,36877,36878,36881,36882,36885,36886,36889,36890,36912,36913,36916,36917,36920,36921,36924,36925,36928,36929,36932,36933,36936,36937,36940,36941,36944,36945,36948,36949,36952,36953,36956,36957,36960,36961,36964,36965,36968,36969,36972,36973,36976,36977,36980,36981,36984,36985,37158,37159,37162,37163,37166,37167,37170,37171,37174,37175,37178,37179,37182,37183,37186,37187,37190,37191,37194,37195,37198,37199,37202,37203,37206,37207,37210,37211,37214,37215,37218,37219,37222,37223,37226,37227,37230,37231,37234,37235,37257,37258,37261,37262,37265,37266,37269,37270,37273,37274,37277,37278,37281,37282,37285,37286,37289,37290,37293,37294,37297,37298,37301,37302,37305,37306,37309,37310,37313,37314,37317,37318,37321,37322,37325,37326,37329,37330,37430,37431,37434,37435,37438,37439,37442,37443,37446,37447,37450,37451,37454,37455,37458,37459,37462,37463,37466,37467,37470,37471,37474,37475,37478,37479,37482,37483,37486,37487,37490,37491,37494,37495,37498,37499,37502,37503,37506,37507,37529,37530,37533,37534,37537,37538,37541,37542,37545,37546,37549,37550,37553,37554,37557,37558,37561,37562,37565,37566,37569,37570,37573,37574,37577,37578,37581,37582,37585,37586,37589,37590,37593,37594,37597,37598,37601,37602,37775,37776,37779,37780,37783,37784,37787,37788,37791,37792,37795,37796,37799,37800,37803,37804,37807,37808,37811,37812,37815,37816,37819,37820,37823,37824,37827,37828,37831,37832,37835,37836,37839,37840,37843,37844,37847,37848,37851,37852,37874,37875,37878,37879,37882,37883,37886,37887,37890,37891,37894,37895,37898,37899,37902,37903,37906,37907,37910,37911,37914,37915,37918,37919,37922,37923,37926,37927,37930,37931,37934,37935,37938,37939,37942,37943,37946,37947,38047,38048,38051,38052,38055,38056,38059,38060,38063,38064,38067,38068,38071,38072,38075,38076,38079,38080,38083,38084,38087,38088,38091,38092,38095,38096,38099,38100,38103,38104,38107,38108,38111,38112,38115,38116,38119,38120,38123,38124,38146,38147,38150,38151,38154,38155,38158,38159,38162,38163,38166,38167,38170,38171,38174,38175,38178,38179,38182,38183,38186,38187,38190,38191,38194,38195,38198,38199,38202,38203,38206,38207,38210,38211,38214,38215,38218,38219,38392,38393,38396,38397,38400,38401,38404,38405,38408,38409,38412,38413,38416,38417,38420,38421,38424,38425,38428,38429,38432,38433,38436,38437,38440,38441,38444,38445,38448,38449,38452,38453,38456,38457,38460,38461,38464,38465,38468,38469,38491,38492,38495,38496,38499,38500,38503,38504,38507,38508,38511,38512,38515,38516,38519,38520,38523,38524,38527,38528,38531,38532,38535,38536,38539,38540,38543,38544,38547,38548,38551,38552,38555,38556,38559,38560,38563,38564,38664,38665,38668,38669,38672,38673,38676,38677,38680,38681,38684,38685,38688,38689,38692,38693,38696,38697,38700,38701,38704,38705,38708,38709,38712,38713,38716,38717,38720,38721,38724,38725,38728,38729,38732,38733,38736,38737,38740,38741,38763,38764,38767,38768,38771,38772,38775,38776,38779,38780,38783,38784,38787,38788,38791,38792,38795,38796,38799,38800,38803,38804,38807,38808,38811,38812,38815,38816,38819,38820,38823,38824,38827,38828,38831,38832,38835,38836,39009,39010,39013,39014,39017,39018,39021,39022,39025,39026,39029,39030,39033,39034,39037,39038,39041,39042,39045,39046,39049,39050,39053,39054,39057,39058,39061,39062,39065,39066,39069,39070,39073,39074,39077,39078,39081,39082,39085,39086,39108,39109,39112,39113,39116,39117,39120,39121,39124,39125,39128,39129,39132,39133,39136,39137,39140,39141,39144,39145,39148,39149,39152,39153,39156,39157,39160,39161,39164,39165,39168,39169,39172,39173,39176,39177,39180,39181,39281,39282,39285,39286,39289,39290,39293,39294,39297,39298,39301,39302,39305,39306,39309,39310,39313,39314,39317,39318,39321,39322,39325,39326,39329,39330,39333,39334,39337,39338,39341,39342,39345,39346,39349,39350,39353,39354,39357,39358,39380,39381,39384,39385,39388,39389,39392,39393,39396,39397,39400,39401,39404,39405,39408,39409,39412,39413,39416,39417,39420,39421,39424,39425,39428,39429,39432,39433,39436,39437,39440,39441,39444,39445,39448,39449,39452,39453,40255,40256,40406,40407,40415,40416,40443,40444,40447,40448,40451,40452,40455,40456,40459,40460,40463,40464,40467,40468,40471,40472,40475,40476,40479,40480,40483,40484,40487,40488,40491,40492,40495,40496,40499,40500,40503,40504,40507,40508,40511,40512,40515,40516,40523,40524,40527,40528,40531,40532,40535,40536,40539,40540,40543,40544,40547,40548,40551,40552,40555,40556,40559,40560,40563,40564,40567,40568,40571,40572,40575,40576,40579,40580,40583,40584,40587,40588,40591,40592,40595,40596,40603,40604,40607,40608,40611,40612,40615,40616,40619,40620,40623,40624,40627,40628,40631,40632,40635,40636,40639,40640,40643,40644,40647,40648,40651,40652,40655,40656,40659,40660,40663,40664,40667,40668,40671,40672,40675,40676,40716,40717,40783,40784,40787,40788,40791,40792,40795,40796,40799,40800,40803,40804,40807,40808,40811,40812,40815,40816,40819,40820,40823,40824,40827,40828,40831,40832,40835,40836,40839,40840,40843,40844,40847,40848,40851,40852,40855,40856,40859,40860,40863,40864,40867,40868,40871,40872,40875,40876,40879,40880,40883,40884,40887,40888,40891,40892,40895,40896,40899,40900,40903,40904,40907,40908,40911,40912,40915,40916,40919,40920,40923,40924,40927,40928,40931,40932,40935,40936,40939,40940,41698,41699,41719,41720,42691,42692,42694,42695,42697,42698,42700,42701,42703,42704,42706,42707,42709,42710,42712,42713,42715,42716,42718,42719,42721,42722,42724,42725,42727,42728,42730,42731,42733,42734,42736,42737,42739,42740,42742,42743,42745,42746,42817,42818,42820,42821,42889,42890,42892,42893,42895,42896,42898,42899,42901,42902,42904,42905,42907,42908,42910,42911,42913,42914,42916,42917,42919,42920,42922,42923,42925,42926,42928,42929,42931,42932,42934,42935,42937,42938,42940,42941,42943,42944,42946,42947,43015,43016,43018,43019,43021,43022,43024,43025,43027,43028,43030,43031,43033,43034,43036,43037,43039,43040,43042,43043,43045,43046,43048,43049,43051,43052,43054,43055,43057,43058,43060,43061,43063,43064,43066,43067,43069,43070,43072,43073,43141,43142,43144,43145,43147,43148,43150,43151,43153,43154,43156,43157,43159,43160,43162,43163,43165,43166,43168,43169,43171,43172,43174,43175,43177,43178,43180,43181,43183,43184,43186,43187,43189,43190,43192,43193,43195,43196,43198,43199,43267,43268,43270,43271,43273,43274,43276,43277,43279,43280,43282,43283,43285,43286,43288,43289,43291,43292,43294,43295,43297,43298,43300,43301,43303,43304,43306,43307,43309,43310,43312,43313,43315,43316,43318,43319,43321,43322,43324,43325,43393,43394,43396,43397,43399,43400,43402,43403,43405,43406,43408,43409,43411,43412,43414,43415,43417,43418,43420,43421,43423,43424,43426,43427,43429,43430,43432,43433,43435,43436,43438,43439,43441,43442,43444,43445,43447,43448,43450,43451,43519,43520,43522,43523,43525,43526,43528,43529,43531,43532,43534,43535,43537,43538,43540,43541,43543,43544,43546,43547,43549,43550,43552,43553,43555,43556,43558,43559,43561,43562,43564,43565,43567,43568,43570,43571,43573,43574,43576,43577,43645,43646,43648,43649,43651,43652,43654,43655,43657,43658,43660,43661,43663,43664,43666,43667,43669,43670,43672,43673,43675,43676,43678,43679,43681,43682,43684,43685,43687,43688,43690,43691,43693,43694,43696,43697,43699,43700,43702,43703,43771,43772,43774,43775,43777,43778,43780,43781,43783,43784,43786,43787,43789,43790,43792,43793,43795,43796,43798,43799,43801,43802,43804,43805,43807,43808,43810,43811,43813,43814,43816,43817,43819,43820,43822,43823,43825,43826,43828,43829,43897,43898,43900,43901,43903,43904,43906,43907,43909,43910,43912,43913,43915,43916,43918,43919,43921,43922,43924,43925,43927,43928,43930,43931,43933,43934,43936,43937,43939,43940,43942,43943,43945,43946,43948,43949,43951,43952,43954,43955,44023,44024,44026,44027,44029,44030,44032,44033,44035,44036,44038,44039,44041,44042,44044,44045,44047,44048,44050,44051,44053,44054,44056,44057,44059,44060,44062,44063,44065,44066,44068,44069,44071,44072,44074,44075,44077,44078,44080,44081,44149,44150,44152,44153,44155,44156,44158,44159,44161,44162,44164,44165,44167,44168,44170,44171,44173,44174,44176,44177,44179,44180,44182,44183,44185,44186,44188,44189,44191,44192,44194,44195,44197,44198,44200,44201,44203,44204,44206,44207,44337,44338,44505,44506,44594,44595,45937,46817,47716,47717,47719,47720,47722,47723,47725,47726,47728,47729,47731,47732,47734,47735,47737,47738,47740,47741,47743,47744,47746,47747,47749,47750,47752,47753,47755,47756,47758,47759,47761,47762,47764,47765,47767,47768,47770,47771,47874,47875,47998,47999,48339,48340,48342,48343,48345,48346,48348,48349,48351,48352,48354,48355,48357,48358,48360,48361,48363,48364,48366,48367,48369,48370,48372,48373,48375,48376,48378,48379,48381,48382,48384,48385,48387,48388,48390,48391,48393,48394,48513,48514,49805,49806,49952,49953,50053,50054,50154,50155,50882,50883,51099,51100,51183,51184,51443,51444,51527,51528,51973,51974,52057,52058,52744,52745,52752,52753,52841,52842,53296,53297,53384,53385,53656,53657,53744,53745,54210,54211,54298,54299,54768,54769,56224,56225,56324,56325,60269,60270,60273,60274,60277,60278,60281,60282,60285,60286,60289,60290,60293,60294,60297,60298,60301,60302,60305,60306,60309,60310,60313,60314,60317,60318,60321,60322,60325,60326,60329,60330,60333,60334,60337,60338,60341,60342,60345,60346,60447,60448,60451,60452,60455,60456,60459,60460,60463,60464,60467,60468,60471,60472,60475,60476,60479,60480,60483,60484,60487,60488,60491,60492,60495,60496,60499,60500,60503,60504,60507,60508,60511,60512,60515,60516,60519,60520,60523,60524,60625,60626,60629,60630,60633,60634,60637,60638,60641,60642,60645,60646,60649,60650,60653,60654,60657,60658,60661,60662,60665,60666,60669,60670,60673,60674,60677,60678,60681,60682,60685,60686,60689,60690,60693,60694,60697,60698,60701,60702,60803,60804,60807,60808,60811,60812,60815,60816,60819,60820,60823,60824,60827,60828,60831,60832,60835,60836,60839,60840,60843,60844,60847,60848,60851,60852,60855,60856,60859,60860,60863,60864,60867,60868,60871,60872,60875,60876,60879,60880,60997,60998,61115,61116,61233,61234,61351,61352,61979,61980,62097,62098,62215,62216,62333,62334,63085,63086,63088,63089,63091,63092,63094,63095,63097,63098,63100,63101,63103,63104,63106,63107,63109,63110,63112,63113,63115,63116,63118,63119,63121,63122,63124,63125,63127,63128,63130,63131,63133,63134,63136,63137,63139,63140,63142,63143,63864,63865,63946,63947,64216,64217,64298,64299,64540,65173,65174,65203,65204,65235,65236,65267,65268,65298,65299,65340,65341,65385,65386,65419,65420,65453,65454,65456,65457,65459,65460,65462,65463,65465,65466,65468,65469,65471,65472,65474,65475,65477,65478,65480,65481,65483,65484,65486,65487,65489,65490,65492,65493,65495,65496,65498,65499,65501,65502,65504,65505,65507,65508,65604,65605,66010,66011,66103,66104,66196,66197,67318,67319,67362,67363,67747,67748,67822,67823,68513,68514,68913,68914,68991,68992,69388,69389,69502,69503,69616,69617,69730,69731,74230,74231,78433,78434,78465,78466,78497,78498,78633,78634,78862,80216,80217,80220,80221,80224,80225,80228,80229,80232,80233,80236,80237,80240,80241,80244,80245,80248,80249,80252,80253,80256,80257,80260,80261,80264,80265,80268,80269,80272,80273,80276,80277,80280,80281,80284,80285,80288,80289,80292,80293,81263,81315,81316,81347,81631,81632,81635,81636,81639,81640,81643,81644,81647,81648,81651,81652,81655,81656,81659,81660,81663,81664,81667,81668,81671,81672,81675,81676,81679,81680,81683,81684,81687,81688,81691,81692,81695,81696,81699,81700,81703,81704,81707,81746,81786,81787,81790,81791,81794,81795,81798,81799,81802,81803,81806,81807,81810,81811,81814,81815,81818,81819,81822,81823,81826,81827,81830,81831,81834,81835,81838,81839,81842,81843,81846,81847,81850,81851,81854,81855,81858,81859,81862,81901,81941,81942,81945,81946,81949,81950,81953,81954,81957,81958,81961,81962,81965,81966,81969,81970,81973,81974,81977,81978,81981,81982,81985,81986,81989,81990,81993,81994,81997,81998,82001,82002,82005,82006,82009,82010,82013,82014,82017,82056,82103,82104,82953,82954,83014,83015,83075,83076,83136,83137,83193,83194,83197,83198,83201,83202,83205,83206,83209,83210,83213,83214,83217,83218,83221,83222,83225,83226,83229,83230,83233,83234,83237,83238,83241,83242,83245,83246,83249,83250,83253,83254,83257,83258,83261,83262,83265,83266,83269,83270,83326,83327,83330,83331,83334,83335,83338,83339,83342,83343,83346,83347,83350,83351,83354,83355,83358,83359,83362,83363,83366,83367,83370,83371,83374,83375,83378,83379,83382,83383,83386,83387,83390,83391,83394,83395,83398,83399,83402,83403,83709,83710,83713,83714,83717,83718,83721,83722,83725,83726,83729,83730,83733,83734,83737,83738,83741,83742,83745,83746,83749,83750,83753,83754,83757,83758,83761,83762,83765,83766,83769,83770,83773,83774,83777,83778,83781,83782,83792,83810,83811,83823,83829,83835,83836,83850,83851,83870,83871,83920,83921,83924,83925,83928,83929,83932,83933,83936,83937,83940,83941,83944,83945,83948,83949,83952,83953,83956,83957,83960,83961,83964,83965,83968,83969,83972,83973,83976,83977,83980,83981,83984,83985,83988,83989,83992,83993,84185,84186,84339,84340,84343,84344,84351,84352,84355,84356,84368,84369,84372,84373,84380,84381,84384,84385,84624,84625,84792,84825,84858,84891,84924,84957,86271,86272,86344,86345,86417,86418,86522,86523,86552,86553,86578,86579,86608,86609,86638,86639,86668,86669,86694,86695,86721,86722,86867,86868,86942,86943,86983,86984,87009,87010,87013,87014,87051,87052,87089,87090,87121,87122,87165,87166,87302,87303,87411,87412,87507,87508,87523,87524,87539,87540,87555,87556,87619,87620,87627,87628,87633,87634,87677,87678,87681,87682,87713,87714,87745,87746,87777,87778,87809,87810,87841,87842,87873,87874,87905,87906,87937,87938,87941,87942,88021,88022,88025,88026,88069,88070,88073,88074,88109,88110,88178,88179,88226,88227,88929,88930,89032,89033,89141,89142,90381,90382,90385,90386,90389,90390,90393,90394,90403,90404,90407,90408,90411,90412,90415,90416,90419,90420,90423,90424,90427,90428,90431,90432,90435,90436,90439,90440,90443,90444,90447,90448,90451,90452,90455,90456,90459,90460,90463,90464,90467,90468,90471,90472,90475,90476,90479,90480,90483,90484,90487,90488,90491,90492,90495,90496,90504,90505,90508,90509,90512,90513,90516,90517,90520,90521,90524,90525,90528,90529,90532,90533,90536,90537,90540,90541,90544,90545,90548,90549,90558,90559,90562,90563,90566,90567,90570,90571,90574,90575,90578,90579,90582,90583,90586,90587,90590,90591,90594,90595,90598,90599,90602,90603,90606,90607,90610,90611,90614,90615,90618,90619,90629,90630,90632,90633,90635,90636,90638,90639,90641,90642,90644,90645,90647,90648,90650,90651,90654,90655,90657,90658,90660,90661,90663,90664,90666,90667,90669,90670,90672,90673,90675,90676,90679,90680,90683,90684,90687,90688,90691,90692,90695,90696,90699,90700,90703,90704,90707,90708,90716,90717,90720,90721,90724,90725,90728,90729,90732,90733,90736,90737,90740,90741,90744,90745,90748,90749,90752,90753,90756,90757,90760,90761,90764,90765,90768,90769,90772,90773,90776,90777,90780,90781,90784,90785,90788,90789,90792,90793,90796,90797,90800,90801,90804,90805,90808,90809,90812,90813,90816,90817,90820,90821,90824,90825,90828,90829,90832,90833,90836,90837,90840,90841,90844,90845,90848,90849,90852,90853,90856,90857,90860,90861,90864,90865,90868,90869,90872,90873,90876,90877,90880,90881,90884,90885,90888,90889,90892,90893,90896,90897,90900,90901,90904,90905,92179,92180,92196,92197,92222,92223,92241,92242,92254,92255,92424,92425,92432,92433,92526,92527,92556,92557,92595,92596,92618,92619,92664,92665,92790,92791,92796,92797,92823,92824,92888,92889,93073,93074,93159,93160,93306,93307,93343,93344,93964,93965,94002,94003,94035,94036,94073,94074,94106,94107,94157,94158,94203,94204,94254,94255,94300,94301,94410,94411,94470,94471,94481,94482,94555,94556,94578,94579,94652,94653,94675,94676,94699,94700,94716,94717,94742,94743,97418,97419,98522,98599,98600,98814,98815,98881,98882,98950,98951,99100,99101,99260,99261,99329,99330,99479,99480,99634,99635,99696,99697,99758,99759,99820,99821,99845,99846,99849,99850,99853,99854,99878,99879,99882,99883,99886,99887,99890,99891,99894,99895,99919,99920,99923,99924,99927,99928,99952,99953,99956,99957,99960,99961,99964,99965,99968,99969,99990,99991,99994,99995,99998,99999,100002,100003,100006,100007,100065,100066,100151,100152,100155,100156,100159,100160,100163,100164,100167,100168,100226,100227,100444,100445,100448,100449,102110,102111,102145,102146,102176,102177,102211,102212,102246,102247,102281,102282,102321,102322,102410,102450,102456,102480,102512,102513,102516,102517,102553,102554,102596,102597,102639,102640,102680,102681,102687,102688,102693,102694,102750,102751,102757,102758,102763,102764,102833,102834,102905,102906,102955,102956,102959,102960,103004,103005,103049,103050,103094,103095,103139,103140,103185,103186,103231,103232,103276,103277,103321,103322,103366,103367,103411,103412,103456,103457,103501,103502,103546,103547,103604,103605,103608,103609,103666,103667,103724,103725,103782,103783,103845,103846,103900,103901,103955,103956,104022,104028,104032,104100,104106,104110,104186,104192,104196,104272,104278,104282,104336,104337,104395,104396,104454,104513,104731,104732,107878,107879,108809,108810,108818,108819,109041,109042,109045,109046,109049,109050,109053,109054,109057,109058,109061,109062,109065,109066,109069,109070,109073,109074,109077,109078,109081,109082,109085,109086,109089,109090,109093,109094,109097,109098,109101,109102,109105,109106,109109,109110,109113,109114,109121,109122,109125,109126,109129,109130,109133,109134,109137,109138,109141,109142,109145,109146,109149,109150,109153,109154,109157,109158,109161,109162,109165,109166,109169,109170,109173,109174,109177,109178,109181,109182,109185,109186,109189,109190,109193,109194,109201,109202,109205,109206,109209,109210,109213,109214,109217,109218,109221,109222,109225,109226,109229,109230,109233,109234,109237,109238,109241,109242,109245,109246,109249,109250,109253,109254,109257,109258,109261,109262,109265,109266,109269,109270,109273,109274,109281,109282,109285,109286,109289,109290,109293,109294,109297,109298,109301,109302,109305,109306,109309,109310,109313,109314,109317,109318,109321,109322,109325,109326,109329,109330,109333,109334,109337,109338,109341,109342,109345,109346,109349,109350,109353,109354,109506,109507,109659,109660,110044,110045,110241,110242,110245,110246,110249,110250,110253,110254,110257,110258,110261,110262,110265,110266,110269,110270,110273,110274,110277,110278,110281,110282,110285,110286,110289,110290,110293,110294,110297,110298,110301,110302,110305,110306,110309,110310,110313,110314,110317,110318,110321,110322,110325,110326,110329,110330,110333,110334,110337,110338,110341,110342,110345,110346,110349,110350,110353,110354,110357,110358,110361,110362,110365,110366,110369,110370,110373,110374,110377,110378,110381,110382,110385,110386,110389,110390,110393,110394,110397,110398,110652,110653,110656,110657,110660,110661,110664,110665,110668,110669,110672,110673,110676,110677,110680,110681,110684,110685,110688,110689,110692,110693,110696,110697,110700,110701,110704,110705,110708,110709,110712,110713,110716,110717,110720,110721,110724,110725,110728,110729,110811,110812,110815,110816,110819,110820,110823,110824,110827,110828,110831,110832,110835,110836,110839,110840,110843,110844,110847,110848,110851,110852,110855,110856,110859,110860,110863,110864,110867,110868,110871,110872,110875,110876,110879,110880,110883,110884,110887,110888,111493,111494,111554,111555,116696,116697,116700,116701,116704,116705,116708,116709,116712,116713,116716,116717,116720,116721,116724,116725,116728,116729,116732,116733,116736,116737,116740,116741,116744,116745,116748,116749,116752,116753,116756,116757,116760,116761,116764,116765,116768,116769,116772,116773,116776,116777,116780,116781,116784,116785,116788,116789,116792,116793,116800,116801,116804,116805,116808,116809,116812,116813,116816,116817,116820,116821,116824,116825,116828,116829,116832,116833,116836,116837,116840,116841,116844,116845,116848,116849,116852,116853,116856,116857,116860,116861,116864,116865,116868,116869,116872,116873,116880,116881,116884,116885,116888,116889,116892,116893,116896,116897,116900,116901,116904,116905,116908,116909,116912,116913,116916,116917,116920,116921,116924,116925,116928,116929,116932,116933,116936,116937,116940,116941,116944,116945,116948,116949,116952,116953,116960,116961,116964,116965,116968,116969,116972,116973,116976,116977,116980,116981,116984,116985,116988,116989,116992,116993,116996,116997,117000,117001,117004,117005,117008,117009,117012,117013,117016,117017,117020,117021,117024,117025,117028,117029,117032,117033,117040,117041,117044,117045,117048,117049,117052,117053,117056,117057,117060,117061,117064,117065,117068,117069,117072,117073,117076,117077,117080,117081,117084,117085,117088,117089,117092,117093,117096,117097,117100,117101,117104,117105,117108,117109,117112,117113,117120,117121,117124,117125,117128,117129,117132,117133,117136,117137,117140,117141,117144,117145,117148,117149,117152,117153,117156,117157,117160,117161,117164,117165,117168,117169,117172,117173,117176,117177,117180,117181,117184,117185,117188,117189,117192,117193,117200,117201,117204,117205,117208,117209,117212,117213,117216,117217,117220,117221,117224,117225,117228,117229,117232,117233,117236,117237,117240,117241,117244,117245,117248,117249,117252,117253,117256,117257,117260,117261,117264,117265,117268,117269,117272,117273,117280,117281,117284,117285,117288,117289,117292,117293,117296,117297,117300,117301,117304,117305,117308,117309,117312,117313,117316,117317,117320,117321,117324,117325,117328,117329,117332,117333,117336,117337,117340,117341,117344,117345,117348,117349,117352,117353,117360,117361,117364,117365,117368,117369,117372,117373,117376,117377,117380,117381,117384,117385,117388,117389,117392,117393,117396,117397,117400,117401,117404,117405,117408,117409,117412,117413,117416,117417,117420,117421,117424,117425,117428,117429,117432,117433,117440,117441,117444,117445,117448,117449,117452,117453,117456,117457,117460,117461,117464,117465,117468,117469,117472,117473,117476,117477,117480,117481,117484,117485,117488,117489,117492,117493,117496,117497,117500,117501,117504,117505,117508,117509,117512,117513,117520,117521,117524,117525,117528,117529,117532,117533,117536,117537,117540,117541,117544,117545,117548,117549,117552,117553,117556,117557,117560,117561,117564,117565,117568,117569,117572,117573,117576,117577,117580,117581,117584,117585,117588,117589,117592,117593,117600,117601,117604,117605,117608,117609,117612,117613,117616,117617,117620,117621,117624,117625,117628,117629,117632,117633,117636,117637,117640,117641,117644,117645,117648,117649,117652,117653,117656,117657,117660,117661,117664,117665,117668,117669,117672,117673,117680,117681,117684,117685,117688,117689,117692,117693,117696,117697,117700,117701,117704,117705,117708,117709,117712,117713,117716,117717,117720,117721,117724,117725,117728,117729,117732,117733,117736,117737,117740,117741,117744,117745,117748,117749,117752,117753,117760,117761,117764,117765,117768,117769,117772,117773,117776,117777,117780,117781,117784,117785,117788,117789,117792,117793,117796,117797,117800,117801,117804,117805,117808,117809,117812,117813,117816,117817,117820,117821,117824,117825,117828,117829,117832,117833,117840,117841,117844,117845,117848,117849,117852,117853,117856,117857,117860,117861,117864,117865,117868,117869,117872,117873,117876,117877,117880,117881,117884,117885,117888,117889,117892,117893,117896,117897,117900,117901,117904,117905,117908,117909,117912,117913,117920,117921,117924,117925,117928,117929,117932,117933,117936,117937,117940,117941,117944,117945,117948,117949,117952,117953,117956,117957,117960,117961,117964,117965,117968,117969,117972,117973,117976,117977,117980,117981,117984,117985,117988,117989,117992,117993,118000,118001,118004,118005,118008,118009,118012,118013,118016,118017,118020,118021,118024,118025,118028,118029,118032,118033,118036,118037,118040,118041,118044,118045,118048,118049,118052,118053,118056,118057,118060,118061,118064,118065,118068,118069,118072,118073,118080,118081,118084,118085,118088,118089,118092,118093,118096,118097,118100,118101,118104,118105,118108,118109,118112,118113,118116,118117,118120,118121,118124,118125,118128,118129,118132,118133,118136,118137,118140,118141,118144,118145,118148,118149,118152,118153,118274,118275,118278,118279,118282,118283,118286,118287,118290,118291,118294,118295,118298,118299,118302,118303,118306,118307,118310,118311,118314,118315,118318,118319,118322,118323,118326,118327,118330,118331,118334,118335,118338,118339,118342,118343,118346,118347,118366,118367,118370,118371,118374,118375,118378,118379,118382,118383,118386,118387,118390,118391,118394,118395,118398,118399,118402,118403,118406,118407,118410,118411,118414,118415,118418,118419,118422,118423,118426,118427,118430,118431,118434,118435,118438,118439,118447,118448,118452,118453,118469,118470,118473,118474,118477,118478,118481,118482,118485,118486,118489,118490,118493,118494,118497,118498,118501,118502,118505,118506,118509,118510,118513,118514,118517,118518,118521,118522,118525,118526,118529,118530,118533,118534,118537,118538,118541,118542,118550,118551,118567,118568,118571,118572,118575,118576,118579,118580,118583,118584,118587,118588,118591,118592,118595,118596,118599,118600,118603,118604,118607,118608,118611,118612,118615,118616,118619,118620,118623,118624,118627,118628,118631,118632,118635,118636,118639,118640,118660,118661,118664,118665,118668,118669,118672,118673,118676,118677,118680,118681,118684,118685,118688,118689,118692,118693,118696,118697,118700,118701,118704,118705,118708,118709,118712,118713,118716,118717,118720,118721,118724,118725,118728,118729,118732,118733,118845,118846,118849,118850,118853,118854,118857,118858,118861,118862,118865,118866,118869,118870,118873,118874,118877,118878,118881,118882,118885,118886,118889,118890,118893,118894,118897,118898,118901,118902,118905,118906,118909,118910,118913,118914,118917,118918,118921,118922,118925,118926,118929,118930,118933,118934,118937,118938,118963,118964,118989,118990,162235,162306,162425,162453,162892,162926,162976,163776,163777,163779,163780,163782,163783,163785,163786,163788,163789,163791,163792,163794,163795,163797,163798,163800,163801,163803,163804,163806,163807,163809,163810,163812,163813,163815,163816,163818,163819,163821,163822,163824,163825,163827,163828,163830,163831,164771,164772,164870,164871,165218,165219,165222,165223,165226,165227,165230,165231,165234,165235,165238,165239,165242,165243,165246,165247,165250,165251,165254,165255,165258,165259,165262,165263,165266,165267,165270,165271,165274,165275,165278,165279,165282,165283,165286,165287,165290,165291,165345,165438,165460,165461,165503,165526,165527,165633,165634,165651,165652,167756,167757,170995,170996,171226,171227,171900,171901,171902,171903,171904,171905,171944,171945,171948,171949,171952,171954,171967,171968,171971,171972,171975,171976,171979,171980,171983,171985,171988,171989,171997,171998,172001,172002,172014,172015,172027,172028,172031,172032,172035,172036,172039,172040,172043,172044,172047,172049,172095,172096,172180,172181,172184,172185,172188,172189,172726,172727,172776,172777,172828,172829,173309,173310,173318,173319,173327,173328,173398,173399,173456,173457,173487,173488,173516,173517,173545,173546,179074,179075,179345,179362,179363,179364,179412,179430,179431,179432,179478,179496,179497,179498,180078,180079,180082,180083,180086,180087,180090,180091,180094,180095,180098,180099,180102,180103,180106,180107,180110,180111,180114,180115,180118,180119,180122,180123,180126,180127,180132,180133,180136,180137,180140,180141,180144,180145,180148,180149,180152,180153,180171,180172,180175,180176,180179,180180,180183,180184,180187,180188,180191,180192,180195,180196,180199,180200,180203,180204,180207,180208,180211,180212,180215,180216,180219,180220,180223,180226,180229,180230,180233,180234,180237,180238,180241,180242,180245,180246,180266,180267,180270,180271,180274,180275,180278,180279,180282,180283,180286,180287,180290,180291,180294,180295,180298,180299,180302,180303,180306,180307,180310,180311,180314,180315,180318,180319,180322,180323,180326,180327,180330,180331,180334,180335,180338,180339,180359,180360,180363,180364,180367,180368,180371,180372,180375,180376,180379,180380,180383,180384,180387,180388,180391,180392,180395,180396,180399,180400,180403,180404,180407,180408,180411,180412,180415,180416,180419,180420,180423,180424,180427,180428,180431,180432,180462,180465,180503,180504,180507,180508,180511,180512,180515,180516,180519,180520,180523,180524,180527,180528,180531,180532,180535,180536,180539,180540,180543,180544,180547,180548,180551,180552,180555,180556,180561,180562,180565,180566,180569,180570,180573,180574,180577,180578,180601,180602,180729,180730,180938,180939,181059,181060,181095,181096,181154,181155,181175,181176,181285,181286,181289,181290,181293,181294,181297,181298,181301,181302,181305,181306,181309,181312,181315,181316,181319,181320,181323,181324,181327,181328,181331,181332,181335,181336,181339,181340,181343,181344,181347,181348,181351,181352,181355,181356,181359,181360,181386,181387,181390,181391,181394,181395,181398,181399,181402,181403,181406,181407,181410,181411,181414,181415,181418,181419,181422,181423,181428,181429,181432,181433,181436,181437,181440,181441,181444,181445,181448,181449,181452,181453,181456,181457,181460,181461,181479,181480,181483,181484,181487,181488,181491,181492,181495,181496,181499,181500,181503,181504,181507,181508,181511,181512,181515,181516,181519,181520,181523,181524,181527,181528,181531,181532,181535,181538,181541,181542,181545,181546,181549,181550,181553,181554,181576,181577,181580,181581,181584,181585,181588,181589,181592,181593,181596,181597,181600,181601,181604,181605,181608,181609,181612,181613,181616,181617,181620,181621,181624,181625,181628,181629,181632,181633,181636,181637,181640,181641,181644,181647,181650,181651,181681,181682,181685,181686,181689,181690,181693,181694,181697,181698,181701,181702,181705,181706,181709,181710,181713,181714,181717,181718,181721,181722,181725,181726,181729,181730,181733,181734,181737,181738,181741,181742,181745,181746,181749,181750,181776,181777,181780,181781,181784,181785,181788,181789,181792,181793,181796,181797,181800,181801,181804,181805,181808,181809,181812,181813,181816,181817,181820,181821,181824,181825,181828,181829,181832,181833,181836,181837,181840,181841,181844,181845,181848,181849,181957,181958,182011,182012,182015,182016,182019,182022,182025,182026,182029,182030,182033,182034,182037,182038,182041,182042,182045,182046,182049,182050,182053,182054,182057,182058,182061,182062,182065,182066,182069,182070,182073,182074,182077,182078,182081,182082,182085,182086,182151,182152,182155,182156,182159,182160,182163,182164,182167,182168,182173,182174,182177,182178,182181,182182,182185,182186,182189,182190,182193,182194,182197,182198,182201,182202,182205,182206,182209,182210,182213,182214,182217,182218,182221,182222,182225,182226,182262,182263,182266,182267,182270,182271,182274,182275,182278,182279,182282,182283,182286,182287,182290,182291,182294,182295,182298,182299,182302,182303,182306,182307,182312,182313,182316,182317,182320,182321,182324,182325,182328,182329,182332,182333,182336,182337,182373,182374,182377,182378,182381,182382,182385,182386,182389,182390,182393,182394,182397,182398,182401,182402,182405,182406,182409,182410,182413,182414,182417,182418,182421,182422,182425,182426,182429,182430,182433,182434,182437,182438,182441,182442,182445,182448,182512,182513,182520,182521,183713,183714,183782,183783,183815,183816,183891,183892,183895,183896,183899,183900,183903,183904,183907,183908,183911,183912,183915,183916,183919,183920,183923,183924,183927,183928,183931,183932,183935,183936,183941,183942,183945,183946,183949,183950,183953,183954,183957,183958,183961,183962,183965,183966,183969,183970,183973,183974,183977,183978,183981,183982,183985,183986,183989,183990,183993,183994,183997,183998,184001,184002,184005,184006,184009,184010,184013,184016,184019,184020,184023,184024,184027,184028,184031,184032,184035,184036,184039,184040,184043,184044,184047,184048,184051,184052,184080,184081,184084,184085,184088,184089,184092,184093,184096,184097,184102,184103,184106,184107,184110,184111,184114,184115,184118,184119,184122,184123,184126,184127,184130,184131,184134,184135,184138,184139,184142,184143,184146,184147,184150,184151,184154,184157,184160,184161,184164,184165,184168,184169,184172,184173,184176,184177,184180,184181,184184,184185,184188,184189,184192,184193,184196,184197,184200,184201,184204,184205,184208,184209,184212,184213,184216,184217,184220,184221,184224,184225,184228,184229,184232,184233,184236,184237,184240,184241,184312,184313,184343,184344,184376,184377,184409,184410,184481,184484,184518,184519,184637,184638,184674,184675,185015,185016,185050,185051,185169,185170,185206,185207,185453,185454,185507,185510,185881,185882,185946,185947,188505,188506,188632,188633,188890,188891,189041,189042,189848,189849,189873,189874,189877,189880,189883,189884,189887,189888,189891,189892,189895,189896,189899,189900,189903,189904,189907,189908,189911,189912,189915,189916,189919,189920,189923,189924,189927,189928,189931,189932,189935,189936,189939,189940,189943,189944,189947,189948,189951,189963,189975,190445,190448,190451,190452,190561,190562,190565,190566,190569,190570,190573,190574,190577,190578,190581,190582,190585,190586,190589,190590,190593,190594,190597,190598,190601,190602,190605,190606,190609,190610,190613,190614,190617,190618,190621,190622,190625,190626,190629,190630,190633,190634,190637,190685,190686,190731,190779,190825,190828,190877,190878,190925,190971,191019,191065,191066,191117,191118,191163,191211,191257,191305,191306,191309,191310,191313,191314,191317,191318,191321,191322,191325,191326,191329,191330,191333,191334,191337,191338,191341,191342,191345,191346,191349,191352,191355,191356,191359,191360,191363,191364,191367,191368,191371,191372,191375,191376,191379,191380,191383,191429,191432,191477,191525,191571,191572,191575,191576,191579,191580,191583,191584,191587,191588,191591,191592,191595,191596,191599,191600,191603,191606,191609,191610,191613,191614,191617,191618,191621,191622,191625,191626,191629,191630,191633,191634,191637,191638,191641,191642,191645,191646,191649,191697,191698,191743,191791,191837,191838,191841,191842,191845,191846,191849,191850,191853,191854,191857,191858,191861,191862,191865,191866,191871,191872,191875,191876,191879,191880,191883,191884,191887,191888,191891,191892,191895,191896,191899,191900,191903,191904,191907,191908,191911,191912,191915,191963,191964,192009,192057,192520,192521,192526,192527,192530,192531,192545,192548,192697,192698,192742,192743,192785,192830,192879,192880,192922,192923,192967,193010,193059,193060,193104,193105,193147,193148,193196,193197,193241,193242,193284,193329,193374,193419,193462,193507,193552,193597,193640,193689,193690,193734,193777,193822,193871,193872,193916,193917,193959,194004,194049,194050,194053,194054,194057,194058,194061,194062,194065,194066,194069,194070,194073,194074,194077,194078,194081,194082,194085,194086,194089,194090,194093,194094,194097,194098,194101,194102,194105,194106,194111,194112,194115,194116,194119,194120,194123,194124,194127,194172,194215,194260,194305,194306,194309,194310,194313,194314,194317,194318,194321,194322,194325,194326,194329,194330,194333,194334,194337,194338,194341,194342,194345,194346,194349,194350,194353,194354,194357,194358,194361,194364,194367,194368,194371,194372,194375,194376,194379,194380,194383,194428,194429,194471,194516,194560,194561,194566,194567,194570,194571,194574,194575,194578,194579,194582,194583,194586,194587,194590,194591,194594,194595,194598,194599,194602,194603,194606,194607,194610,194611,194614,194615,194618,194619,194622,194623,194628,194629,194632,194633,194636,194637,194746,194747,194750,194751,194754,194755,194758,194759,194762,194763,194766,194767,194770,194771,194774,194775,194778,194779,194782,194785,194788,194789,194792,194793,194796,194797,194800,194801,194804,194805,194808,194809,194812,194813,194816,194817,194820,194821,194847,194848,194906,194907,194910,194911,194914,194915,194918,194919,194922,194923,194926,194927,194930,194931,194934,194935,194938,194941,194944,194945,194948,194949,194952,194953,194956,194957,194960,194961,194964,194965,194968,194969,194972,194973,194976,194977,194980,194981,195063,195064,195067,195068,195076,195077,195080,195081,195084,195085,195088,195089,195092,195093,195096,195099,195102,195103,195106,195107,195110,195111,195114,195115,195118,195119,195122,195123,195126,195127,195130,195131,195134,195135,195138,195139,195142,195143,195146,195147,195150,195151,195158,195159,195162,195165,195168,195169,195172,195173,195176,195177,195180,195181,195184,195185,195188,195189,195192,195193,195196,195197,195200,195201,195204,195205,195208,195209,195212,195213,195216,195217,195220,195221,195224,195227,195230,195231,195234,195235,195277,195278,195281,195282,195285,195286,195289,195290,195293,195294,195297,195298,195301,195302,195305,195306,195309,195312,195315,195316,195319,195320,195323,195324,195327,195328,195331,195332,195335,195336,195339,195340,195343,195344,195347,195348,195351,195352,195359,195360,195363,195364,195367,195368,195371,195372,195377,195378,195381,195382,195385,195386,195389,195390,195393,195394,195397,195398,195401,195402,195405,195406,195409,195410,195413,195414,195417,195418,195421,195422,195425,195426,195429,195430,195433,195434,195476,195482,195494,195495,195498,195499,195502,195503,195506,195507,195510,195511,195514,195515,195518,195519,195522,195523,195526,195527,195530,195533,195536,195537,195540,195541,195544,195545,195548,195549,195552,195553,195556,195557,195560,195561,195564,195565,195568,195569,195591,195592,198302,198435,198436,198439,198440,198443,198444,198447,198448,198451,198452,198455,198458,198461,198462,198465,198466,198469,198470,198473,198474,198477,198478,198481,198482,198485,198486,198489,198490,198493,198494,198497,198498,198501,198502,198505,198506,198509,198510,198593,198594,198599,198600,198603,198604,198607,198608,198611,198612,198615,198616,198619,198620,198623,198624,198627,198628,198631,198632,198635,198636,198639,198640,198643,198644,198647,198648,198651,198652,198655,198656,198661,198662,198665,198666,198669,198670,198816,198817,198829,198830,199208,199209,199789,199790,199792,199793,199795,199796,199798,199799,199801,199802,199804,199805,199807,199808,199810,199811,199813,199814,199816,199817,199819,199820,199822,199825,199827,199828,199830,199831,199833,199834,199836,199837,199839,199840,199842,199843,199845,199846,199851,199852,199854,199855,199883,199884,199886,199887,199889,199890,199892,199895,199897,199898,199900,199901,199903,199904,199906,199907,199909,199910,199912,199913,199915,199916,199918,199919,199921,199922,199924,199925,199927,199928,199930,199931,199933,199934,199936,199939,199941,199942,199951,199952,199954,199955,199957,199958,199960,199961,199963,199964,199966,199967,199969,199970,199972,199973,199975,199976,199978,199981,199983,199984,199986,199987,199989,199990,199992,199993,199995,199996,199998,199999,200001,200002,200004,200005,200007,200008,200017,200018,200022,200023,200025,200026,200028,200029,200031,200032,200034,200035,200037,200038,200040,200041,200043,200044,200046,200047,200049,200050,200052,200053,200055,200056,200058,200059,200061,200062,200064,200067,200069,200070,200072,200073,200075,200076,200091,200092,200094,200095,200097,200098,200100,200101,200105,200106,200108,200109,200111,200112,200114,200115,200117,200118,200120,200121,200123,200124,200126,200127,200129,200130,200132,200133,200135,200136,200138,200139,200141,200142,200144,200145,200147,200150,200158,200159,200161,200162,200164,200165,200167,200168,200170,200171,200173,200174,200176,200177,200179,200180,200182,200183,200185,200186,200190,200191,200193,200194,200196,200197,200199,200200,200202,200203,200205,200206,200208,200209,200211,200212,200214,200215,200217,200218,200227,200230,200236,200237,200246,200247,200249,200250,200252,200253,200255,200256,200258,200259,200261,200262,200264,200267,200269,200270,200272,200273,200275,200276,200278,200279,200281,200282,200284,200285,200287,200288,200290,200291,200293,200294,200296,200297,200299,200300,200302,200303,200310,200311,200320,200321,200334,200335,200337,200340,200346,200347,200349,200350,200352,200353,200355,200356,200358,200359,200361,200362,200364,200365,200367,200368,200370,200371,200373,200374,200376,200377,200379,200382,200384,200385,200387,200388,200390,200391,200393,200394,200396,200397,200399,200400,200402,200403,200408,200409,200411,200412,200996,200997,200999,201000,201002,201003,201005,201006,201008,201009,201011,201012,201014,201017,201019,201020,201022,201023,201025,201026,201028,201029,201031,201032,201034,201035,201037,201038,201040,201041,201043,201044,201046,201047,201049,201050,201052,201053,201086,201087,201092,201093,201111,201112,201121,201122,201148,201149,201151,201152,201154,201155,201157,201158,201160,201161,201165,201166,201168,201169,201171,201172,201174,201175,201177,201178,201180,201181,201183,201184,201186,201187,201189,201190,201192,201193,201195,201196,201198,201199,201201,201202,201204,201205,201220,201221,201223,201224,201226,201227,201229,201230,201232,201233,201235,201236,201238,201239,201241,201242,201244,201245,201247,201248,201250,201251,201255,201256,201258,201259,201261,201262,201264,201265,201267,201268,201270,201271,201273,201274,201276,201277,201282,201283,201299,201300,201302,201303,201305,201306,201308,201309,201311,201312,201314,201315,201317,201318,201320,201321,201323,201324,201326,201327,201329,201330,201332,201335,201337,201338,201340,201341,201343,201344,201346,201347,201349,201350,201352,201353,201355,201356,201361,201362,201378,201379,201381,201382,201384,201385,201387,201388,201390,201391,201393,201394,201396,201397,201399,201400,201402,201403,201405,201406,201408,201409,201411,201414,201416,201417,201419,201420,201422,201423,201425,201426,201428,201429,201431,201432,201434,201435,201440,201441,201457,201458,201471,201472,201492,201493,201495,201496,201498,201499,201501,201502,201504,201505,201507,201508,201510,201511,201513,201514,201516,201517,201519,201520,201522,201523,201525,201526,201530,201531,201533,201534,201536,201537,201539,201540,201542,201543,201545,201546,201548,201549,201562,201563,201565,201568,201570,201571,201573,201574,201576,201577,201579,201580,201582,201583,201585,201586,201588,201589,201591,201592,201594,201595,201597,201598,201600,201601,201603,201604,201606,201607,201609,201610,201612,201615,201617,201618,201620,201621,201629,201630,201632,201633,201635,201636,201638,201639,201641,201642,201644,201645,201647,201648,201650,201651,201653,201654,201658,201659,201661,201662,201664,201665,201667,201668,201670,201671,201673,201674,201676,201677,201679,201680,201682,201683,201685,201686,201691,201692,201694,201695,201717,201718,201720,201721,201725,201726,201728,201729,201731,201732,201734,201735,201737,201738,201740,201741,201743,201744,201746,201747,201749,201750,201752,201753,201755,201756,201758,201759,201761,201762,201764,201765,201767,201770,201772,201773,201775,201776,201781,201782,201799,201802,201804,201805,201807,201808,201810,201811,201813,201814,201816,201817,201819,201820,201822,201823,201825,201826,201828,201829,201831,201832,201834,201835,201837,201838,201840,201841,201843,201846,201848,201849,201851,201852,201854,201855,201857,201858,201863,201864,201873,201874,201876,201877,201879,201880,201884,201885,201887,201888,201890,201891,201893,201894,201896,201897,201899,201900,201902,201903,201905,201906,201908,201909,201911,201912,201914,201915,201917,201918,201920,201921,201923,201924,201926,201929,201931,201932,201944,201945,201947,201948,201950,201951,201953,201954,201956,201957,201959,201960,201962,201963,201965,201966,201970,201971,201973,201974,201976,201977,201979,201980,201982,201983,201985,201986,201988,201989,201991,201992,201994,201995,201997,201998,202000,202001,202006,202007,202018,202019,202021,202022,202024,202025,202027,202028,202030,202031,202033,202034,202036,202037,202039,202040,202042,202043,202045,202046,202048,202051,202053,202054,202056,202057,202059,202060,202062,202063,202065,202066,202068,202069,202071,202072,202074,202075,202080,202081,202092,202093,202095,202096,202098,202099,202101,202102,202104,202105,202107,202108,202110,202111,202113,202114,202116,202117,202119,202120,202122,202123,202125,202126,202128,202129,202131,202132,202134,202137,202139,202140,202142,202143,202145,202146,202148,202149,202154,202155,202180,202181,202183,202184,202186,202187,202189,202190,202192,202193,202195,202196,202198,202199,202201,202202,202204,202205,202207,202208,202210,202211,202213,202216,202218,202219,202221,202222,202224,202225,202227,202228,202230,202231,202233,202234,202236,202237,202242,202243,202245,202246,202264,202265,202267,202268,202270,202271,202273,202274,202276,202277,202279,202280,202282,202283,202285,202286,202288,202289,202291,202292,202296,202297,202299,202300,202302,202303,202305,202306,202308,202309,202311,202312,202314,202315,202317,202318,202320,202321,202345,202346,202355,202356,202358,202359,202361,202362,202364,202365,202367,202368,202370,202371,202373,202376,202378,202379,202381,202382,202384,202385,202387,202388,202390,202391,202393,202394,202396,202397,202399,202400,202402,202403,202405,202406,202408,202409,202411,202412,202417,202420,202443,202444,202446,202447,202449,202450,202452,202455,202457,202458,202460,202461,202463,202464,202466,202467,202469,202470,202472,202473,202475,202476,202478,202479,202481,202482,202484,202485,202487,202488,202490,202491,202493,202494,202496,202497,202499,202500,202507,202508,202510,202511,202536,202537,202539,202540,202542,202543,202545,202546,202548,202549,202551,202552,202554,202555,202557,202558,202560,202561,202563,202564,202566,202567,202569,202570,202572,202573,202575,202576,202578,202579,202583,202584,202586,202587,202589,202590,202592,202593,202621,202622,202624,202625,202627,202628,202630,202631,202633,202634,202636,202637,202639,202640,202642,202643,202645,202646,202648,202649,202651,202652,202654,202655,202657,202658,202660,202661,202663,202666,202668,202669,202671,202672,202674,202675,202677,202678,202697,202698,202700,202701,202705,202706,202708,202709,202711,202712,202714,202715,202717,202718,202720,202721,202723,202724,202726,202727,202729,202730,202732,202733,202735,202736,202738,202739,202741,202742,202744,202745,202747,202748,202750,202753,202755,202756,202772,202773,202775,202776,202778,202779,202781,202782,202784,202785,202787,202788,202790,202793,202795,202796,202798,202799,202801,202802,202804,202805,202807,202808,202810,202811,202813,202814,202816,202817,202819,202820,202822,202823,202825,202826,202828,202829,202834,202837,202839,202840,202864,202865,202867,202868,202870,202871,202873,202874,202876,202877,202879,202880,202882,202883,202885,202886,202888,202889,202891,202892,202894,202895,202897,202898,202900,202901,202903,202904,202906,202907,202911,202912,202914,202915,202917,202918,202920,202921,202926,202927,202929,202930,202954,202955,202957,202958,202960,202961,202963,202964,202966,202967,202969,202970,202972,202973,202975,202976,202978,202979,202983,202984,202986,202987,202989,202990,202992,202993,202995,202996,202998,202999,203001,203002,203004,203005,203007,203008,203010,203011,203020,203021,203023,203024,203028,203029,203031,203032,203034,203035,203037,203038,203040,203041,203043,203044,203046,203047,203049,203050,203052,203053,203055,203056,203058,203059,203061,203062,203064,203065,203067,203068,203070,203071,203073,203076,203078,203079,203088,203089,203091,203092,203094,203095,203097,203098,203100,203101,203103,203104,203106,203107,203109,203110,203112,203113,203115,203116,203120,203121,203123,203124,203126,203127,203129,203130,203132,203133,203135,203136,203138,203139,203141,203142,203144,203145,203154,203155,203157,203158,203160,203163,203165,203166,203168,203169,203171,203172,203174,203175,203177,203178,203180,203181,203183,203184,203186,203187,203189,203190,203192,203193,203195,203196,203198,203199,203201,203202,203204,203205,203207,203208,203212,203213,203222,203223,203225,203226,203228,203229,203231,203232,203234,203235,203237,203238,203240,203241,203243,203244,203246,203247,203249,203250,203254,203255,203257,203258,203260,203261,203263,203264,203266,203267,203269,203270,203272,203273,203275,203276,203278,203279,203281,203282,203306,203307,203310,203311,203314,203315,203318,203319,203322,203323,203326,203327,203330,203331,203334,203335,203391,203392,203395,203396,203399,203400,203403,203404,203407,203408,203411,203412,203415,203416,203419,203420,203423,203424,203427,203428,203431,203432,203435,203436,203439,203442,203445,203446,203449,203450,203453,203454,203457,203458,203461,203462,203465,203466,203542,203543,203544,203545,203546,203547,203581,203582,203585,203586,203663,203664,203665,203666,203667,203668,203689,203692,203713,203714,203717,203718,203721,203722,203725,203726,203729,203730,203733,203734,203737,203738,203741,203742,203745,203746,203783,203784,203787,203788,203791,203792,203795,203796,203799,203800,203803,203804,203807,203808,203811,203812,203815,203816,203819,203820,203823,203824,203827,203828,203831,203832,203837,203838,203841,203842,203845,203846,203849,203850,203853,203854,203857,203858,203883,203884,203887,203888,203986,203987,204014,204015,204018,204019,204022,204023,204026,204027,204030,204031,204034,204035,204038,204039,204042,204043,204046,204047,204071,204074,204077,204078,204081,204082,204085,204086,204089,204090,204093,204094,204097,204098,204101,204102,204105,204106,204109,204110,204113,204114,204117,204118,204121,204122,204125,204126,204129,204130,204133,204136,204139,204140,204143,204144,204147,204148,204184,204185,204188,204189,204247,204289,204290,204313,204314,204317,204318,204321,204322,204325,204326,204329,204330,204333,204334,204337,204338,204373,204374,204377,204378,204381,204384,204387,204388,204391,204392,204395,204396,204399,204400,204403,204404,204407,204408,204411,204412,204415,204416,204419,204420,204423,204424,204427,204428,204431,204432,204435,204436,204439,204440,204443,204444,204449,204450,204475,204476,204479,204480,204578,204579,204604,204605,204608,204609,204612,204613,204616,204619,204622,204623,204626,204627,204630,204631,204655,204656,204659,204660,204663,204664,204667,204668,204671,204672,204675,204676,204679,204680,204683,204684,204689,204690,204693,204694,204697,204698,204701,204702,204705,204706,204709,204710,204713,204714,204717,204718,204721,204722,204725,204726,204729,204730,204768,204769,204772,204773,204829,204850,204851,204870,204911,204912,204935,204936,204939,204940,204943,204944,204947,204948,204951,204952,204955,204956,204959,204960,204995,204996,204999,205000,205003,205005,205009,205010,205013,205014,205017,205018,205021,205022,205025,205026,205029,205030,205033,205034,205037,205038,205041,205042,205045,205046,205049,205050,205053,205054,205057,205058,205061,205062,205065,205068,205071,205072,205097,205098,205101,205102,205202,205203,205228,205229,205232,205235,205238,205239,205242,205243,205246,205247,205250,205251,205254,205255,205279,205280,205283,205284,205287,205288,205291,205292,205295,205296,205299,205302,205305,205306,205309,205310,205313,205314,205317,205318,205321,205322,205325,205326,205329,205330,205333,205334,205337,205338,205341,205342,205345,205346,205349,205350,205353,205354,205418,205419,205422,205423,205481,205524,205525,205550,205551,205586,205587,205590,205591,205594,205595,205598,205599,205602,205603,205606,205609,205612,205613,205616,205617,205620,205621,205624,205625,205628,205629,205632,205633,205636,205637,205640,205641,205644,205645,205648,205649,205652,205653,205656,205657,205660,205661,205688,205689,205692,205693,205795,205796,205832,205833,205836,205839,205842,205843,205846,205847,205850,205851,205854,205855,205858,205859,205862,205863,205866,205867,205870,205871,205874,205875,205878,205879,205882,205883,205886,205887,205890,205891,205894,205895,205898,205901,205904,205905,205908,205909,205971,205972,205975,205976,205981,205982,205985,205986,205989,205990,205993,205994,205997,205998,206001,206002,206005,206006,206009,206010,206013,206014,206017,206018,206021,206022,206025,206026,206029,206030,206033,206034,206037,206040,206043,206044,206047,206048,206152,206153,206156,206157,206160,206161,206164,206165,206168,206169,206172,206173,206176,206177,206180,206181,206184,206185,206188,206191,206194,206195,206198,206199,206202,206203,206206,206207,206210,206211,206214,206215,206218,206219,206222,206223,206226,206227,206265,206266,206269,206270,206326,206345,206389,206390,206411,206412,206415,206416,206419,206420,206423,206424,206427,206430,206465,206466,206469,206470,206473,206474,206477,206478,206481,206482,206485,206486,206489,206490,206493,206494,206497,206500,206503,206504,206507,206508,206511,206512,206515,206516,206519,206520,206523,206524,206527,206528,206531,206532,206535,206536,206539,206540,206567,206568,206571,206572,206669,206670,206695,206696,206699,206700,206703,206704,206707,206708,206711,206714,206738,206739,206742,206743,206746,206747,206750,206751,206754,206755,206758,206759,206762,206763,206766,206767,206770,206771,206774,206775,206778,206779,206784,206785,206788,206789,206792,206793,206796,206797,206800,206801,206804,206805,206808,206809,206812,206813,206820,206821,206824,206825,206828,206829,206832,206833,206836,206837,206840,206841,206846,206847,206850,206851,206854,206855,206858,206859,206862,206863,206866,206867,206870,206871,206874,206875,206878,206879,206882,206883,206886,206887,206890,206891,206894,206895,206992,206993,206996,206997,207000,207001,207057,207121,207122,207143,207144,207147,207150,207153,207154,207157,207158,207161,207162,207223,207226,207288,207289,207312,207313,207316,207317,207320,207321,207324,207325,207328,207329,207364,207365,207368,207369,207372,207373,207376,207377,207380,207383,207386,207387,207390,207391,207394,207395,207398,207399,207402,207403,207406,207407,207410,207411,207414,207415,207418,207419,207422,207423,207426,207427,207430,207431,207434,207435,207438,207441,207448,207449,207452,207453,207456,207457,207460,207461,207464,207465,207468,207469,207472,207473,207476,207477,207480,207481,207484,207485,207488,207489,207492,207493,207498,207499,207502,207503,207506,207507,207510,207511,207514,207515,207518,207519,207522,207523,207548,207549,207552,207553,207556,207557,207654,207679,207680,207705,207706,207709,207710,207713,207714,207717,207720,207723,207724,207797,207823,207824,207827,207828,207831,207832,207835,207836,207839,207840,207843,207844,207847,207848,207851,207852,207855,207856,207859,207860,207863,207866,207869,207870,207873,207874,207877,207878,207881,207882,207885,207886,207889,207890,207893,207894,207897,207898,207962,207963,207966,207967,208025,208104,208105,208126,208127,208150,208151,208174,208175,208178,208179,208182,208183,208186,208187,208190,208191,208226,208227,208230,208231,208234,208235,208238,208241,208244,208245,208248,208249,208252,208253,208256,208257,208260,208261,208264,208265,208268,208269,208272,208273,208276,208277,208280,208281,208284,208285,208288,208289,208292,208293,208296,208299,208302,208303,208365,208366,208369,208370,208373,208374,208377,208380,208383,208384,208387,208388,208391,208392,208395,208396,208399,208400,208403,208404,208407,208408,208411,208412,208415,208416,208419,208420,208423,208424,208427,208428,208431,208432,208435,208438,208441,208442,208467,208468,208471,208472,208570,208571,208596,208597,208601,208602,208605,208606,208609,208610,208613,208614,208650,208651,208654,208655,208658,208659,208662,208663,208666,208668,208671,208672,208675,208676,208679,208680,208683,208684,208687,208688,208691,208692,208695,208696,208699,208700,208703,208704,208707,208708,208711,208712,208715,208716,208719,208721,208722,208725,208726,208751,208752,208755,208756,208838,208839,208842,208843,208846,208847,208850,208851,208854,208855,208858,208859,208862,208863,208866,208867,208870,208871,208874,208875,208878,208879,208882,208883,208886,208887,208890,208891,208894,208895,208898,208899,208902,208903,208906,208907,208910,208911,208928,208929,208978,208979,209018,209019,209032,209033,209036,209037,209040,209041,209044,209045,209048,209049,209052,209053,209056,209057,209060,209061,209064,209065,209068,209069,209072,209073,209076,209077,209080,209081,209084,209085,209088,209089,209092,209093,209096,209097,209100,209101,209104,209105,209122,209123,209136,209137,209198,209199,209202,209203,209206,209207,209210,209211,209224,209225,209228,209229,209232,209233,209236,209237,209240,209241,209244,209245,209248,209249,209252,209253,209256,209257,209260,209261,209264,209265,209268,209269,209272,209273,209276,209277,209280,209281,209284,209285,209288,209289,209292,209293,209296,209297,209322,209323,209326,209327,209330,209331,209334,209335,209338,209339,209342,209343,209346,209347,209350,209351,209354,209355,209358,209359,209362,209363,209366,209367,209370,209371,209374,209375,209378,209379,209382,209383,209386,209387,209390,209391,209394,209395,210088,210617,210618,210626,210627,211924,211931,211932,211934,211935,211937,211938,211940,211941,211943,211944,211946,211947,211949,211950,211952,211953,211955,211956,211958,211959,211961,211962,211964,211965,211967,211968,211970,211971,211973,211974,211976,211977,211979,211980,211982,211983,211985,211986]},"uniswap-v3-core_d8b1c63":{"timeMs":43832.407850999996,"failures":[14,554,1100,1102,1104,1106,1108,1118,1120,1122,1124,1126,1128,1159,1163,1167,1204,1212,1491,1498,1604,1883,1888,2008,2013,2071,2073,2075,2097,2099,2101,2103,2105,2107,2111,2121,2123,2432,2466,3679,3681,3871,3873,4077,4078,4101,4102,4125,4126,4149,4150,4168,4171,4172,4173,4176,4188,4208,4213,4216,4219,4222,4228,4253,4254,8436,8451,8452,8467,8468,8580,8695,8849,8898,8931,8964,8999,9052,9059,9066,9108,10672,11771,11772,11811,12449,12456,12630,12633,12636,12656,12659,12662,12980,12983,13098,13101,13136,13139,13519,13605,13623,13624,13625,13626,13627,13628,13872,13900,13928,13956,13984,14012,14040,14724,14765,14849,14890,14974,15015,15099,15140,15739,15753,16312,16326,16885,16899,17152,17200,17350,17432,17651,17699,17917,17931,18617,18637,19390,19416,19989,20003,20562,20576,21135,21149,21402,21450,21600,21682,21903,21951,22169,22183,22776,22790,22907,22955,23003,23051,23099,23147,23161,23243,23326,23374,23422,23470,23518,23566,23648,23662]}} diff --git a/crates/tools/python/rs-benchmark-variance.txt b/crates/tools/python/rs-benchmark-variance.txt deleted file mode 100644 index 962b0e85e8..0000000000 --- a/crates/tools/python/rs-benchmark-variance.txt +++ /dev/null @@ -1,93 +0,0 @@ -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1259s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1247s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1229s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1240s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1257s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1228s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1249s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1251s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1216s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1247s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1238s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1218s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1262s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1230s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1244s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1223s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1246s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1241s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1239s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1245s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1233s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1254s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1227s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1242s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1244s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1246s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1224s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1238s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1238s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1279s, Success: 2910119, Failure: 10264 -Loading requests from "crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz" -Executing requests -Total time: 1218s, Success: 2910119, Failure: 10264 diff --git a/crates/tools/python/scenarios.ipynb b/crates/tools/python/scenarios.ipynb deleted file mode 100644 index 7351780280..0000000000 --- a/crates/tools/python/scenarios.ipynb +++ /dev/null @@ -1,1905 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "eceb1b87-6b50-43f4-9d69-9e1a531c3f8b", - "metadata": {}, - "source": [ - "# Scenarios Data Analysis" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "2e487f49-ddcc-4ad7-bbb0-e27e070eef85", - "metadata": {}, - "outputs": [], - "source": [ - "# Load scenarios\n", - "\n", - "%matplotlib inline\n", - "\n", - "from collections import Counter, defaultdict\n", - "import gzip\n", - "import json\n", - "import math\n", - "from operator import itemgetter\n", - "from pathlib import Path\n", - "\n", - "from IPython.display import display, Markdown\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "import nltk\n", - "import numpy as np\n", - "import pandas as pd\n", - "from pygtrie import StringTrie\n", - "import seaborn as sns\n", - "\n", - "SCENARIO_DIR = Path(\"../scenarios\")\n", - "\n", - "rpc_calls = defaultdict(list)\n", - "scenario_configs = {}\n", - "\n", - "for scenario in SCENARIO_DIR.glob(\"*.gz\"):\n", - " name = scenario.name.split(\"_\")[0]\n", - " with gzip.open(scenario) as f:\n", - " for i, line in enumerate(f.readlines()):\n", - " item = json.loads(line)\n", - " if i == 0:\n", - " scenario_configs[name] = item\n", - " else:\n", - " rpc_calls[name].append(item)" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "a52735a6-a427-4fd7-b299-37fd5548ae75", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
scenariologger_enabledhardforkforkingauto_mininginterval_mining
0neptune-mutual-blue-protocolFalseSHANGHAIFalseTrueFalse
1openzeppelin-contractsFalseSHANGHAIFalseTrueFalse
2rocketpoolFalseSHANGHAIFalseTrueFalse
3safe-contractsFalseSHANGHAIFalseTrueFalse
4seaportFalseSHANGHAIFalseTrueFalse
5synthetixFalseSHANGHAIFalseTrueFalse
6uniswap-v3-coreFalseSHANGHAIFalseTrueFalse
\n", - "
" - ], - "text/plain": [ - " scenario logger_enabled hardfork forking \\\n", - "0 neptune-mutual-blue-protocol False SHANGHAI False \n", - "1 openzeppelin-contracts False SHANGHAI False \n", - "2 rocketpool False SHANGHAI False \n", - "3 safe-contracts False SHANGHAI False \n", - "4 seaport False SHANGHAI False \n", - "5 synthetix False SHANGHAI False \n", - "6 uniswap-v3-core False SHANGHAI False \n", - "\n", - " auto_mining interval_mining \n", - "0 True False \n", - "1 True False \n", - "2 True False \n", - "3 True False \n", - "4 True False \n", - "5 True False \n", - "6 True False " - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "config_data = defaultdict(list)\n", - "for scenario in sorted(scenario_configs.keys()):\n", - " config_data[\"scenario\"].append(scenario)\n", - " config_data[\"logger_enabled\"].append(scenario_configs[scenario][\"logger_enabled\"])\n", - " provider_conf = scenario_configs[scenario][\"provider_config\"]\n", - " config_data[\"hardfork\"].append(provider_conf[\"hardfork\"])\n", - " config_data[\"forking\"].append(provider_conf[\"fork\"] is not None)\n", - " config_data[\"auto_mining\"].append(provider_conf[\"mining\"][\"auto_mine\"])\n", - " config_data[\"interval_mining\"].append(provider_conf[\"mining\"][\"interval\"] is not None)\n", - "\n", - "df = pd.DataFrame(config_data)\n", - "Markdown(\"## Provider Configs\")\n", - "display(df)" - ] - }, - { - "cell_type": "markdown", - "id": "d7ac7f80-16b2-48ea-b9d2-eaa92a8d721f", - "metadata": {}, - "source": [ - "The table above shows the provider config for each scenario. No scenario has the logger enabled since they were collected with the in process provider. All scenarios use the Shanghai hardfork which makes sense since it's the latest. No scenario uses fork mode or interval mining which questions the representativeness of the dataset." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "6358513f-550a-46e6-9f24-ef943fefb17a", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAAIYCAYAAABkLEb9AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAABmTElEQVR4nO3de1yO9/8H8NdV3Z3oSKySDiIiZ3OaszUxxw3DHBbb0G/Ox20k5xnJpjmMMZthzGnOVsjxq5DkOESh5FRRDh2u3x8e3dvtjhV1f+q6Xs/Ho8fD/bmu7l7ddel9f67PQZJlWQYRERGRAhmJDkBERERUVFjoEBERkWKx0CEiIiLFYqFDREREisVCh4iIiBSLhQ4REREpFgsdIiIiUiwWOkRERKRYLHSIiIhIsVjoEAm2cuVKSJKk/TAxMYGjoyM++ugj/P3333rnt2zZUud8CwsL1KpVCyEhIcjJydE7/88//0THjh1Rvnx5mJqawt7eHm3atMHq1auRmZlpiG8RwD/f57Vr17RtAwYMgJubW6E8vyRJ+L//+79CeS61yutnRFTSmYgOQETPrVixAlWrVsWTJ09w+PBhzJgxA/v27cOFCxdgZ2enc66HhwdWr14NAEhOTsbixYsxcuRIJCYm4ptvvgEAyLIMf39/rFy5Eu3bt0dwcDBcXFyQmpqKffv2YejQobh79y6GDx9u8O+ViqcOHTrg6NGjcHR0FB2FqNCw0CEqJmrUqIH69esDeN5rk52djcDAQGzevBmffPKJzrkWFhZo1KiR9rGfnx+qVq2KhQsXYvr06dBoNPj222+xcuVKBAUFYfLkyTqf37FjR4wbNw6XL18u+m+Mir3Hjx/D3NwcDg4OcHBwEB2HqFDx1hVRMZVb9Ny+ffs/z9VoNKhXrx4yMjJw584dZGZm4ptvvkHVqlUxadKkPD/nrbfewjvvvPOfz/3bb7+hcePGKF26NEqXLo3atWtj+fLl2uN79+5F586dUaFCBZibm8PT0xOff/457t69m8/vVNf69evRsGFD2NjYwNLSEh4eHvD398/35y9ZsgRVqlSBmZkZvL29sXbtWu2xa9euwcTEBLNmzdL7vIiICEiShPXr17/0uXNycjB9+nR4eXnBwsICtra2qFmzJhYsWKBz3oULF9CrVy+UL18eZmZmqFixIvr164enT59qz0lKSsLnn3+OChUqwNTUFO7u7ggKCkJWVpZOXkmSMHfuXAQHB8Pd3R2lS5dG48aNcezYMZ2vGRUVhY8++ghubm6wsLCAm5sbevXqhevXr+ucl3t7as+ePfD394eDgwMsLS3x9OnTl966+umnn1CrVi2Ym5vD3t4eXbt2xfnz51/+QyAqRtijQ1RMxcXFAQCqVKmSr/OvXLkCExMT2NnZISoqCvfv38enn34KSZJeO8PkyZMxbdo0dOvWDaNHj4aNjQ1iY2N1/nheuXIFjRs3xqBBg2BjY4Nr164hODgY77zzDs6cOQONRpPvr3f06FH07NkTPXv2xJQpU2Bubo7r168jPDw8X5+/detW7Nu3D1OnTkWpUqXwww8/oFevXjAxMcGHH34INzc3dOrUCYsXL8a4ceNgbGys/dyFCxfCyckJXbt2fenzz5kzB1OmTMHXX3+N5s2bIzMzExcuXEBKSor2nNOnT+Odd95B2bJlMXXqVFSuXBmJiYnYunUrnj17BjMzMyQlJeHtt9+GkZERJk+ejEqVKuHo0aOYPn06rl27hhUrVuh83dDQUFStWhUhISEAgEmTJqF9+/aIi4uDjY0NgOdFkZeXFz766CPY29sjMTERixYtQoMGDXDu3DmULVtW5zn9/f3RoUMH/PLLL0hPT3/pz2nWrFn48ssv0atXL8yaNQv37t3DlClT0LhxY0RGRqJy5cr5+tkQCSMTkVArVqyQAcjHjh2TMzMz5YcPH8q7du2S33rrLbl58+ZyZmamzvktWrSQq1evLmdmZsqZmZnyrVu35AkTJsgA5O7du8uyLMtr166VAciLFy9+7VxXr16VjY2N5T59+uT7c3JycuTMzEz5+vXrMgB5y5Ytet9nXFyctq1///6yq6ur9vHcuXNlAHJKSkqB8wKQLSws5KSkJG1bVlaWXLVqVdnT01Pbtm/fPhmAvGnTJm3bzZs3ZRMTEzkoKOiVX+P999+Xa9eu/cpzWrduLdva2srJyckvPefzzz+XS5cuLV+/fl2nPff7P3v2rCzLshwXFycDkH18fOSsrCztecePH5cByGvWrHnp18jKypIfPXoklypVSl6wYIG2Pffn0K9fP73PefFn9ODBA9nCwkJu3769znnx8fGymZmZ3Lt375e/EETFBG9dERUTjRo1gkajgZWVFdq1awc7Ozts2bIFJib6Ha9nz56FRqOBRqOBk5MT5s2bhz59+uDHH38stDx79+5FdnY2AgICXnlecnIyBg8eDBcXF5iYmECj0cDV1RUACnx7o0GDBgCAHj164Pfff8fNmzcL9Plt2rRB+fLltY+NjY3Rs2dPXL58GTdu3ADwfPxTrVq1EBoaqj1v8eLFkCQJn3322Suf/+2338bp06cxdOhQ7N69G2lpaTrHMzIycODAAfTo0eOVY122bduGVq1awcnJCVlZWdoPPz8/AMCBAwd0zu/QoYNO71PNmjUBQKdn7dGjRxg/fjw8PT1hYmICExMTlC5dGunp6Xn+HD744INXfq/A8x62x48fY8CAATrtLi4uaN26NcLCwv7zOYhEY6FDVEysWrUKkZGRCA8Px+eff47z58+jV69eeZ5bqVIlREZGIioqCrGxsUhJScGvv/6qvY1RsWJFAP/c/nodd+7cAQBUqFDhpefk5OTA19cXGzduxLhx4xAWFobjx49rx488fvy4QF+zefPm2Lx5M7KystCvXz9UqFABNWrUwJo1a/L1+W+99dZL2+7du6dtGzZsGMLCwnDx4kVkZmbixx9/xIcffpjn5//bxIkTMXfuXBw7dgx+fn4oU6YM2rRpg6ioKADAgwcPkJ2d/crXDHg+7urPP//UFqu5H9WrVwcAvfFNZcqU0XlsZmYGQPf17d27NxYuXIhBgwZh9+7dOH78OCIjI+Hg4JDnzyE/M6tyX7O8znVyctJ5TYmKK47RISomqlWrph2A3KpVK2RnZ2PZsmXYsGEDPvzwQ51zzc3NtefmpX79+rC3t8eWLVswa9as1xqnk9sjcePGDbi4uOR5TmxsLE6fPo2VK1eif//+2vY3mc3VuXNndO7cGU+fPsWxY8cwa9Ys9O7dG25ubmjcuPErPzcpKemlbf8uFnr37o3x48cjNDQUjRo1QlJS0n/2XAGAiYkJRo0ahVGjRiElJQV//fUXvvzyS7z33ntISEiAvb09jI2Ntb1HL1O2bFnUrFkTM2bMyPO4k5PTf2b5t9TUVGzbtg2BgYGYMGGCtv3p06e4f/9+np+Tn9+J3NcsMTFR79itW7f0xv0QFUfs0SEqpubMmQM7OztMnjw5z4UAX0Wj0WD8+PG4cOECpk2bluc5ycnJOHz48Eufw9fXF8bGxli0aNFLz8n9Y5nbw5BryZIlBcqbFzMzM7Ro0UK7LtCpU6f+83PCwsJ0ZqllZ2dj3bp1qFSpkk4vi7m5OT777DP8/PPPCA4ORu3atdG0adMC5bO1tcWHH36IgIAA3L9/H9euXYOFhQVatGiB9evXv3LW2fvvv4/Y2FhUqlQJ9evX1/soaKEjSRJkWdb7OSxbtgzZ2dkFeq5/a9y4MSwsLPDrr7/qtN+4cQPh4eFo06bNaz83kaGwR4eomLKzs8PEiRMxbtw4/Pbbb/j4448L9Pljx47F+fPnERgYiOPHj6N3797aBQMjIiKwdOlSBAUFvfQPvJubG7788ktMmzYNjx8/Rq9evWBjY4Nz587h7t27CAoKQtWqVVGpUiVMmDABsizD3t4ef/75J/bu3fta3/PkyZNx48YNtGnTBhUqVEBKSgoWLFgAjUaDFi1a/Ofnly1bFq1bt8akSZO0s64uXLigM8U819ChQzFnzhycOHECy5Yty1e+jh07atc7cnBwwPXr1xESEgJXV1ft7KPcGWcNGzbEhAkT4Onpidu3b2Pr1q1YsmQJrKysMHXqVOzduxdNmjTBsGHD4OXlhSdPnuDatWvYsWMHFi9e/J+3v/7N2toazZs3x7fffouyZcvCzc0NBw4cwPLly2Fra5vv53mRra0tJk2ahC+//BL9+vVDr169cO/ePQQFBcHc3ByBgYGv/dxEBiN6NDSR2uXOdImMjNQ79vjxY7lixYpy5cqVtbNucmdd5deWLVvkDh06yA4ODrKJiYlsZ2cnt2rVSl68eLH89OnT//z8VatWyQ0aNJDNzc3l0qVLy3Xq1JFXrFihPX7u3Dn53Xffla2srGQ7Ozu5e/fucnx8vAxADgwM1Ps+XzXratu2bbKfn5/s7Owsm5qayuXKlZPbt28vHzx48D9zApADAgLkH374Qa5UqZKs0WjkqlWryqtXr37p57Rs2VK2t7eXMzIy/vP5ZVmW582bJzdp0kQuW7asbGpqKlesWFEeOHCgfO3aNZ3zzp07J3fv3l0uU6aM9rwBAwbIT5480Z5z584dediwYbK7u7us0Whke3t7uV69evJXX30lP3r0SJblf2Zdffvtt3l+v/9+fW/cuCF/8MEHsp2dnWxlZSW3a9dOjo2NlV1dXeX+/ftrz3vV71tePyNZluVly5bJNWvWlE1NTWUbGxu5c+fO2plhRMWdJMuyLK7MIiISIzk5Ga6urvjiiy8wZ84c0XGIqIjw1hURqcqNGzdw9epVfPvttzAyMuJeX0QKx8HIRKQqy5YtQ8uWLXH27FmsXr0azs7OoiMRURHirSsiIiJSLPboEBERkWKx0CEiIiLFYqFDREREiqX6WVc5OTm4desWrKysXmuZfCIiIjI8WZbx8OFDODk5wcjo5f02qi10QkNDERoaimfPnuHKlSui4xAREdFrSEhIeOVK4qqfdZWamgpbW1skJCTA2tpadBwiIiLKh7S0NLi4uCAlJQU2NjYvPU+1PTq5cm9XWVtbs9AhIiIqYf5r2AkHIxMREZFisdAhIiIixWKhQ0RERIrFQoeIiIgUi4UOERERKRYLHSIiIlIsFjpERESkWCx0iIiISLFUW+iEhobC29sbDRo0EB2FiIiIiojqt4BIS0uDjY0NUlNTC31lZClIeZuEyoGq/nUhIqJiIr9/v1Xbo0NERETKx0KHiIiIFIuFDhERESkWCx0iIiJSLBY6REREpFgsdIiIiEixWOgQERGRYrHQISIiIsVioUNERESKxUKHiIiIFIuFDhERESkWCx0iIiJSLBY6REREpFgsdIiIiEixWOgQERGRYqm20AkNDYW3tzcaNGggOgoREREVEdUWOgEBATh37hwiIyNFRyEiIqIiotpCh4iIiJSPhQ4REREpFgsdIiIiUiwWOkRERKRYLHSIiIhIsVjoEBERkWKx0CEiIiLFYqFDREREisVCh4iIiBSLhQ4REREpFgsdIiIiUiwWOkRERKRYLHSIiIhIsVjoEBERkWKx0CEiIiLFYqFDREREisVCh4iIiBSLhQ4REREpFgsdIiIiUiwWOkRERKRYiih04uLi0KpVK3h7e8PHxwfp6emiIxEREVExYCI6QGEYMGAApk+fjmbNmuH+/fswMzMTHYmIiIiKgRJf6Jw9exYajQbNmjUDANjb2wtORERERMWF8FtXERER6NixI5ycnCBJEjZv3qx3zg8//AB3d3eYm5ujXr16OHjwoPbY33//jdKlS6NTp06oW7cuZs6cacD0REREVJwJL3TS09NRq1YtLFy4MM/j69atw4gRI/DVV1/h1KlTaNasGfz8/BAfHw8AyMzMxMGDBxEaGoqjR49i79692Lt370u/3tOnT5GWlqbzQURERMokvNDx8/PD9OnT0a1btzyPBwcHY+DAgRg0aBCqVauGkJAQuLi4YNGiRQCAChUqoEGDBnBxcYGZmRnat2+P6Ojol369WbNmwcbGRvvh4uJSFN8WERERFQPCC51XefbsGU6cOAFfX1+ddl9fXxw5cgQA0KBBA9y+fRsPHjxATk4OIiIiUK1atZc+58SJE5Gamqr9SEhIKNLvgYiIiMQp1oOR7969i+zsbJQvX16nvXz58khKSgIAmJiYYObMmWjevDlkWYavry/ef//9lz6nmZkZZ2URERGpRLEudHJJkqTzWJZlnTY/Pz/4+fkZOhYREREVc8X61lXZsmVhbGys7b3JlZycrNfLQ0RERPSiYl3omJqaol69enqzqPbu3YsmTZq80XOHhobC29sbDRo0eKPnISIiouJL+K2rR48e4fLly9rHcXFxiI6Ohr29PSpWrIhRo0ahb9++qF+/Pho3boylS5ciPj4egwcPfqOvGxAQgICAAKSlpcHGxuZNvw0iIiIqhoQXOlFRUWjVqpX28ahRowAA/fv3x8qVK9GzZ0/cu3cPU6dORWJiImrUqIEdO3bA1dVVVGQiIiIqISRZlmXRIUTK7dFJTU2FtbV1oT63FCT990kljByo6l8XIiIqJvL797tYj9EpShyjQ0REpHyqLXQCAgJw7tw5REZGio5CRERERUS1hQ4REREpHwsdIiIiUiwWOkRERKRYLHSIiIhIsVRb6HDWFRERkfKpttDhrCsiIiLlU22hQ0RERMr3RoXO06dPCysHERERUaErUKGze/duDBgwAJUqVYJGo4GlpSWsrKzQokULzJgxA7du3SqqnEREREQFlq9CZ/PmzfDy8kL//v1hZGSEsWPHYuPGjdi9ezeWL1+OFi1a4K+//oKHhwcGDx6MO3fuFHVuIiIiov+Ur0093377bUyaNAkdOnSAkdHLa6ObN29iwYIFKF++PEaPHl2oQQtbaGgoQkNDkZ2djUuXLnFTz3zipp5ERFQc5HdTT+5ezt3LC4SFDhERFQfcvZyIiIhUr8CFzocffojZs2frtX/77bfo3r17oYQiIiIiKgwFLnQOHDiADh066LW3a9cOERERhRKKiIiIqDAUuNB59OgRTE1N9do1Gg3S0tIKJRQRERFRYShwoVOjRg2sW7dOr33t2rXw9vYulFBEREREhcGkoJ8wadIkfPDBB7hy5Qpat24NAAgLC8OaNWuwfv36Qg9YVP49vZyIiIiU6bWml2/fvh0zZ85EdHQ0LCwsULNmTQQGBqJFixZFkbFIcXp5wXB6ORERFQf5/ftd4B4dAOjQoUOeA5KJiIiIihOuo0NERESKla8eHXt7e1y6dAlly5aFnZ0dJOnlt2Tu379faOGIiIiI3kS+Cp358+fDysoKABASElKUeYiIiIgKTb4Knf79++f5byIiIqLi7LUGIwNAcnIykpOTkZOTo9Nes2bNNw5FREREVBgKXOicOHEC/fv3x/nz5/HizHRJkrguDRERERUbBS50PvnkE1SpUgXLly9H+fLlXzkwuTjjgoFERETKV+AFA62srHDq1Cl4enoWVSaD4oKBBcMFA4mIqDjI79/vAq+j06ZNG5w+ffqNwhEREREZQoFvXS1btgz9+/dHbGwsatSoAY1Go3O8U6dOhRaOiIiI6E0UuNA5cuQIDh06hJ07d+od42BkIiIiKk4KfOtq2LBh6Nu3LxITE5GTk6PzwSKHiIiIipMCFzr37t3DyJEjUb58+aLIQ0RERFRoClzodOvWDfv27SuKLERERESFqsBjdKpUqYKJEyfi0KFD8PHx0RuMPGzYsEILR0RERPQmCryOjru7+8ufTJJw9erVNw5lSFxHp2C4jg4RERUH+f37XeAenbi4uDcKRkRERGQoBR6jQ0RERFRSFLhHJzs7GytXrkRYWFieu5eHh4cXWriixL2uiIiIlK/Ahc7w4cOxcuVKdOjQATVq1Cixm3oGBAQgICBAe4+PiIiIlKfAhc7atWvx+++/o3379kWRh4iIiKjQFHiMjqmpqWJ2LiciIiJlK3ChM3r0aCxYsAAFnJVOREREZHD5unXVrVs3ncfh4eHYuXMnqlevrrdg4MaNGwsvHREREdEbyFeh8+Jg3a5duxZJGCIiIqLClK9CZ8WKFUWdg4iIiKjQFXiMTuvWrZGSkqLXnpaWhtatWxdGJiIiIqJCUeBCZ//+/Xj27Jle+5MnT3Dw4MFCCUVERERUGPK9jk5MTIz23+fOnUNSUpL2cXZ2Nnbt2gVnZ+fCTUdERET0BvJd6NSuXRuSJEGSpDxvUVlYWOD7778v1HBEREREbyLfhU5cXBxkWYaHhweOHz8OBwcH7TFTU1OUK1cOxsbGRRKSiIiI6HXku9BxdXUFAL1NPInyQwoqmXuivYocyEUziYiKu3wVOlu3boWfnx80Gg22bt36ynM7depUKMGIiIiI3lS+Cp0uXbogKSkJ5cqVQ5cuXV56niRJyM7OLqxsRERERG8kX4XOv29XKeXWVWhoKEJDQ1mYERERKViB1tHJzMxEq1atcOnSpaLKYzABAQE4d+4cIiMjRUchIiKiIlKgQkej0SA2NhaSpLyBpURERKQ8BV4ZuV+/fli+fHlRZCEiIiIqVPmeXp7r2bNnWLZsGfbu3Yv69eujVKlSOseDg4MLLRwRERHRmyhwoRMbG4u6desCgN5YHd7SIiIiouKkwIXOvn37iiIHERERUaEr8BgdIiIiopKiwD06ABAZGYn169cjPj4ez5490zm2cePGQglGRERE9KYK3KOzdu1aNG3aFOfOncOmTZuQmZmJc+fOITw8HDY2NkWRkYiIiOi1FLjQmTlzJubPn49t27bB1NQUCxYswPnz59GjRw9UrFixKDISERERvZYCFzpXrlxBhw4dAABmZmZIT0+HJEkYOXIkli5dWugBiYiIiF5XgQsde3t7PHz4EADg7OyM2NhYAEBKSgoyMjIKNx0RERHRGyjwYORmzZph79698PHxQY8ePTB8+HCEh4dj7969aNOmTVFkJCIiInotBS50Fi5ciCdPngAAJk6cCI1Gg0OHDqFbt26YNGlSoQckIiIiel0FLnTs7e21/zYyMsK4ceMwbty4Qg1FREREVBgKXOikpaXl2S5JEszMzGBqavrGoYiIiIgKQ4ELHVtb21fuaVWhQgUMGDAAgYGBMDLiwstEREQkToELnZUrV+Krr77CgAED8Pbbb0OWZURGRuLnn3/G119/jTt37mDu3LkwMzPDl19+WRSZiUosKUh5G9/KgbLoCEREL1XgQufnn3/GvHnz0KNHD21bp06d4OPjgyVLliAsLAwVK1bEjBkzWOgQERGRUAW+t3T06FHUqVNHr71OnTo4evQoAOCdd95BfHz8m6cjIiIiegMFLnQqVKiA5cuX67UvX74cLi4uAIB79+7Bzs7uzdMRERERvYEC37qaO3cuunfvjp07d6JBgwaQJAmRkZG4cOECNmzYAOD57uY9e/Ys9LAvY2Jigho1agAA6tevj2XLlhnsaxMREVHxVeBCp1OnTrh48SIWL16MS5cuQZZl+Pn5YfPmzXBzcwMADBkypLBzvpKtrS2io6MN+jWJiIio+CtwoQMAbm5umD17dmFnISIiIipUr7XQTUpKCubNm4dBgwbh008/xfz585GamvpaASIiItCxY0c4OTlBkiRs3rxZ75wffvgB7u7uMDc3R7169XDw4EGd42lpaahXrx7eeecdHDhw4LVyEBERkfIUuNCJiopCpUqVMH/+fNy/fx93795FcHAwKlWqhJMnTxY4QHp6OmrVqoWFCxfmeXzdunUYMWIEvvrqK5w6dQrNmjWDn5+fzqyua9eu4cSJE1i8eDH69ev30tWbiYiISF0kWZYLtNpXs2bN4OnpiR9//BEmJs/vfGVlZWHQoEG4evUqIiIiXj+MJGHTpk3o0qWLtq1hw4aoW7cuFi1apG2rVq0aunTpglmzZuk9h5+fH6ZNm4b69evn+TWePn2Kp0+fah+npaXBxcUFqampsLa2fu3seeHicP/ga/EcXwciosKRlpYGGxub//z7/Vo9OuPHj9cWOcDzWU/jxo1DVFTU66V9iWfPnuHEiRPw9fXVaff19cWRI0cAAA8ePNAWLjdu3MC5c+fg4eHx0uecNWsWbGxstB+5U+KJiIhIeQpc6FhbW+e5GGBCQgKsrKwKJVSuu3fvIjs7G+XLl9dpL1++PJKSkgAA58+fR/369VGrVi28//77WLBggc4O6y+aOHEiUlNTtR8JCQmFmpmIiIiKjwLPuurZsycGDhyIuXPnokmTJpAkCYcOHcLYsWPRq1evosiot4moLMvatiZNmuDMmTP5fi4zMzOYmZkVaj4iIiIqnl5rwUBJktCvXz9kZWUBADQaDYYMGVLoU87Lli0LY2Njbe9NruTkZL1eHiIiIqIXFfjWlampKRYsWIAHDx4gOjoap06dwv379zF//vxC7ykxNTVFvXr1sHfvXp32vXv3okmTJm/03KGhofD29kaDBg3e6HmIiIio+HqtBQMBwNLSEj4+Pm8c4NGjR7h8+bL2cVxcHKKjo2Fvb4+KFSti1KhR6Nu3L+rXr4/GjRtj6dKliI+Px+DBg9/o6wYEBCAgIEA7apuIiIiUJ1+FTrdu3fL9hBs3bixQgKioKLRq1Ur7eNSoUQCA/v37Y+XKlejZsyfu3buHqVOnIjExETVq1MCOHTvg6upaoK9DRERE6pOvQqcoezxatmyJ/1rKZ+jQoRg6dGiRZSAiIiJlylehs2LFiqLOQURERFToXmuvKyXgYGQiIiLly1eh065dO+1KxK/y8OFDfPPNNwgNDX3jYEUtICAA586dQ2RkpOgoREREVETydeuqe/fu6NGjB6ysrNCpUyfUr18fTk5OMDc3x4MHD3Du3DkcOnQIO3bswPvvv49vv/22qHMTERER/ad8FToDBw5E3759sWHDBqxbtw4//vgjUlJSADxftdjb2xvvvfceTpw4AS8vr6LMS0RERJRv+V5Hx9TUFL1790bv3r0BAKmpqXj8+DHKlCkDjUZTZAGJiIiIXtdrD0a2sbHBW2+9VWKLHA5GJiIiUj7VzrriYGQiIiLlU22hQ0RERMrHQoeIiIgU67U39SQiel1SkCQ6QqGTA1+9lQ0RiVHgHh0PDw/cu3dPrz0lJQUeHh6FEoqIiIioMBS40Ll27Rqys7P12p8+fYqbN28WSihD4KwrIiIi5cv3rautW7dq/717926dHc2zs7MRFhYGNze3Qg1XlAICAhAQEIC0tLQi3Z2diIiIxMl3odOlSxcAz1dC7t+/v84xjUYDNzc3zJs3r1DDEREREb2JfBc6OTk5AAB3d3dERkaibNmyRRaKiIiIqDAUeNZVXFxcUeQgIiIiKnSvNb08LCwMYWFhSE5O1vb05Prpp58KJRgRERHRmypwoRMUFISpU6eifv36cHR0hCQpbz0MIiIiUoYCFzqLFy/GypUr0bdv36LIYzChoaEIDQ3Nc6o8ERERKUOB19F59uwZmjRpUhRZDIqbehIRESlfgQudQYMG4bfffiuKLERERESFqsC3rp48eYKlS5fir7/+Qs2aNaHRaHSOBwcHF1o4IiIiojdR4EInJiYGtWvXBgDExsbqHOPAZCIiIipOClzo7Nu3ryhyEBERERW6Ao/RISIiIiopCtyj06pVq1feogoPD3+jQERERESFpcCFTu74nFyZmZmIjo5GbGys3mafRERERCIVuNCZP39+nu1TpkzBo0eP3jiQoXDBQCIiIuUrtDE6H3/8cYna54oLBhIRESlfoRU6R48ehbm5eWE9HREREdEbK/Ctq27duuk8lmUZiYmJiIqKwqRJkwotGBEREdGbKnChY2Njo/PYyMgIXl5emDp1Knx9fQstGBGR0klByltkVQ6URUcg0lHgQmfFihVFkYOIiIio0BW40Ml14sQJnD9/HpIkwdvbG3Xq1CnMXERERERvrMCFTnJyMj766CPs378ftra2kGUZqampaNWqFdauXQsHB4eiyElERERUYAWedfXFF18gLS0NZ8+exf379/HgwQPExsYiLS0Nw4YNK4qMRERERK+lwD06u3btwl9//YVq1app27y9vREaGsrByERERFSsFLhHJycnBxqNRq9do9EgJyenUEIRERERFYYCFzqtW7fG8OHDcevWLW3bzZs3MXLkSLRp06ZQwxERERG9iQIXOgsXLsTDhw/h5uaGSpUqwdPTE+7u7nj48CG+//77oshYJEJDQ+Ht7Y0GDRqIjkJERERFpMBjdFxcXHDy5Ens3bsXFy5cgCzL8Pb2Rtu2bYsiX5EJCAhAQEAA0tLS9BZBJCIiImV47XV03n33Xbz77ruFmYWIiIioUOX71lV4eDi8vb2Rlpamdyw1NRXVq1fHwYMHCzUcERER0ZvId6ETEhKCTz/9FNbW1nrHbGxs8PnnnyM4OLhQwxERERG9iXwXOqdPn0a7du1eetzX1xcnTpwolFBEREREhSHfhc7t27fzXD8nl4mJCe7cuVMooYiIiIgKQ74LHWdnZ5w5c+alx2NiYuDo6FgooYiIiIgKQ74Lnfbt22Py5Ml48uSJ3rHHjx8jMDAQ77//fqGGIyIiInoT+Z5e/vXXX2Pjxo2oUqUK/u///g9eXl6QJAnnz59HaGgosrOz8dVXXxVlViIiUigpSBIdodDJgbLoCIQCFDrly5fHkSNHMGTIEEycOBGy/PwHKEkS3nvvPfzwww8oX758kQUlIiIiKqgCLRjo6uqKHTt24MGDB7h8+TJkWUblypVhZ2dXVPmIiIiIXttrrYxsZ2fHPaKIiIio2Cvwpp5EREREJQULHSIiIlIsFjpERESkWKotdEJDQ+Ht7c2xRkRERAqm2kInICAA586dQ2RkpOgoREREVERUW+gQERGR8rHQISIiIsVioUNERESKxUKHiIiIFIuFDhERESkWCx0iIiJSLBY6REREpFgsdIiIiEixWOgQERGRYrHQISIiIsVioUNERESKxUKHiIiIFIuFDhERESkWCx0iIiJSLBY6REREpFgsdIiIiEixWOgQERGRYrHQISIiIsVioUNERESKxUKHiIiIFEsxhU5GRgZcXV0xZswY0VGIiIiomFBMoTNjxgw0bNhQdAwiIiIqRhRR6Pz999+4cOEC2rdvLzoKERERFSPCC52IiAh07NgRTk5OkCQJmzdv1jvnhx9+gLu7O8zNzVGvXj0cPHhQ5/iYMWMwa9YsAyUmIiKikkJ4oZOeno5atWph4cKFeR5ft24dRowYga+++gqnTp1Cs2bN4Ofnh/j4eADAli1bUKVKFVSpUsWQsYmIiKgEMBEdwM/PD35+fi89HhwcjIEDB2LQoEEAgJCQEOzevRuLFi3CrFmzcOzYMaxduxbr16/Ho0ePkJmZCWtra0yePDnP53v69CmePn2qfZyWlla43xAREREVG8J7dF7l2bNnOHHiBHx9fXXafX19ceTIEQDArFmzkJCQgGvXrmHu3Ln49NNPX1rk5J5vY2Oj/XBxcSnS74GIiIjEKdaFzt27d5GdnY3y5cvrtJcvXx5JSUmv9ZwTJ05Eamqq9iMhIaEwohIREVExJPzWVX5IkqTzWJZlvTYAGDBgwH8+l5mZGczMzAorGhERERVjxbpHp2zZsjA2NtbrvUlOTtbr5SEiIiJ6UbEudExNTVGvXj3s3btXp33v3r1o0qTJGz13aGgovL290aBBgzd6HiIiIiq+hN+6evToES5fvqx9HBcXh+joaNjb26NixYoYNWoU+vbti/r166Nx48ZYunQp4uPjMXjw4Df6ugEBAQgICEBaWhpsbGze9NsgIiKiYkh4oRMVFYVWrVppH48aNQoA0L9/f6xcuRI9e/bEvXv3MHXqVCQmJqJGjRrYsWMHXF1dRUUmIiKiEkJ4odOyZUvIsvzKc4YOHYqhQ4caKBEREREpRbEeo0NERET0JlRb6HAwMhERkfKpttAJCAjAuXPnEBkZKToKERERFRHVFjpERESkfCx0iIiISLFY6BAREZFiqbbQ4WBkIiIi5VNtocPByERERMqn2kKHiIiIlI+FDhERESkWCx0iIiJSLBY6REREpFiqLXQ464qIiEj5VFvocNYVERGR8qm20CEiIiLlY6FDREREisVCh4iIiBTLRHQAIiIiek4KkkRHKHRyoCz067NHh4iIiBSLhQ4REREplmoLHa6jQ0REpHyqLXS4jg4REZHyqbbQISIiIuVjoUNERESKxUKHiIiIFIuFDhERESkWCx0iIiJSLBY6REREpFgsdIiIiEixVLvXVWhoKEJDQ5GVlQUASEtLK/wv8qTwn1K0136d+Fo8x9fhOb4Oz/F1+Adfi+f4OhT4eWX51XtpSfJ/naFwN27cgIuLi+gYRERE9BoSEhJQoUKFlx5XfaGTk5ODW7duwcrKCpJUMneNTUtLg4uLCxISEmBtbS06jjB8HZ7j6/APvhbP8XV4jq/DP5TwWsiyjIcPH8LJyQlGRi8fiaPaW1e5jIyMXlkJliTW1tYl9he2MPF1eI6vwz/4WjzH1+E5vg7/KOmvhY2NzX+ew8HIREREpFgsdIiIiEixWOgogJmZGQIDA2FmZiY6ilB8HZ7j6/APvhbP8XV4jq/DP9T0Wqh+MDIREREpF3t0iIiISLFY6BAREZFisdAhIiIixWKhQ0RERIrFQoeIiIgUi4UOEZECTZ06FRkZGXrtjx8/xtSpUwUkIhKDhU4JNGnSJGRnZ+u1p6amolevXgISERUPjx8/1vnjfv36dYSEhGDPnj0CU4kRFBSER48e6bVnZGQgKChIQCKxLl++jN27d+Px48cA/nvHa6VR87Wh+r2uSqJVq1Zh7969WL16NSpVqgQA2L9/P/r16wdnZ2fB6Ypet27d8n3uxo0bizAJFTedO3dGt27dMHjwYKSkpKBhw4bQaDS4e/cugoODMWTIENERDUaW5Tw3Kj59+jTs7e0FJBLj3r176NmzJ8LDwyFJEv7++294eHhg0KBBsLW1xbx580RHNAg1XxssdEqgmJgYfP7556hduzaCg4Nx6dIlLFiwABMmTEBgYKDoeEUuP5u4qUWdOnXy/GOWl5MnTxZxGvFOnjyJ+fPnAwA2bNiA8uXL49SpU/jjjz8wefJkRf9nnsvOzg6SJEGSJFSpUkXn9yM7OxuPHj3C4MGDBSY0rJEjR8LExATx8fGoVq2atr1nz54YOXKkagodNV8bLHRKIBsbG6xduxZfffUVPv/8c5iYmGDnzp1o06aN6GgGsWLFCtERio0uXbqIjlCsZGRkwMrKCgCwZ88edOvWDUZGRmjUqBGuX78uOJ1hhISEQJZl+Pv7IygoSOeNgampKdzc3NC4cWOBCQ1rz5492L17NypUqKDTXrlyZdX8TgDqvjZY6JRQ33//PebPn49evXrhxIkTGDZsGH777TfUqlVLdDQh7ty5g4sXL2rfxTo4OIiOZBBq6MErCE9PT2zevBldu3bF7t27MXLkSABAcnIyrK2tBaczjP79+yMrKwsA0LZtW70/8GqTnp4OS0tLvfa7d++qYp+nXGq+NjgYuQTy8/NDUFAQVq1ahdWrV+PUqVNo3rw5GjVqhDlz5oiOZ1Dp6enw9/eHo6MjmjdvjmbNmsHJyQkDBw7Mc8aJGpw4cQK//vqr9ndDTSZPnowxY8bAzc0NDRs21PZc7NmzB3Xq1BGcznBMTEwwdOjQPCctqE3z5s2xatUq7WNJkpCTk4Nvv/0WrVq1EpjMsFR9bchU4rRt21a+efOmXvu2bdvkt956S0AicT777DPZw8ND3rFjh5yamiqnpqbK27dvlytVqiQPHjxYdDyDun37ttyqVStZkiTZzs5OtrW1lSVJklu3bi0nJyeLjmcwiYmJ8smTJ+Xs7Gxt2//+9z/5woULAlMZXsuWLeVNmzaJjiHc2bNnZQcHB7ldu3ayqamp/OGHH8rVqlWTy5cvL1++fFl0PINS67XB3csV5u7duyhbtqzoGAZTtmxZbNiwAS1bttRp37dvH3r06IE7d+6ICSZAz549ceXKFfzyyy/aQZfnzp1D//794enpiTVr1ghOWPT8/f2xYMEC7ViEXOnp6fjiiy/w008/CUpmeOvXr8eECRMwcuRI1KtXD6VKldI5XrNmTUHJDC8pKQmLFi3CiRMnkJOTg7p16yIgIACOjo6ioxmMmq8NFjpUollaWuLEiRM6sykA4OzZs3j77beRnp4uKJnh2djY4K+//kKDBg102o8fPw5fX1+kpKSICWZAxsbGSExMRLly5XTa7969i7feeks7dkUNjIz0RyZIkqSddq6G21qZmZnw9fXFkiVLUKVKFdFxhFLztcHByCWEvb09Ll26hLJly2qnj77M/fv3DZhMrMaNGyMwMBCrVq2Cubk5gOcLYwUFBalqZgkA5OTkQKPR6LVrNBrk5OQISGQ4aWlpkGUZsizj4cOH2t8F4PmU6h07duj9B690cXFxoiMIp9FoEBsbm+8lGJSI1wYLnRJj/vz52i7H+fPnq/rC/bcFCxagXbt2qFChAmrVqgVJkhAdHQ1zc3Ps3r1bdDyDat26NYYPH441a9bAyckJAHDz5k2MHDlS8UsP2Nra6qwd8yJJklS3GrCrq6voCMVCv379sHz5csyePVt0FCF4bfDWFSnA48eP8euvv+LChQuQZRne3t7o06cPLCwsREczqISEBHTu3BmxsbFwcXGBJEmIj4+Hj48PtmzZouhpxgcOHIAsy2jdujX++OMPnZV/TU1N4erqqi3+1OTKlSsICQnB+fPnIUkSqlWrhuHDh2tXVFeDL774AqtWrYKnpyfq16+vN1YpODhYUDLD4LXBQqdEetm91nv37qFcuXKquPdOL7d3716doq9t27aiIxnM9evXUbFiRfZ4Ati9ezc6deqE2rVro2nTppBlGUeOHMHp06fx559/4t133xUd0SBeNYVckiSEh4cbMI04ar42WOiUQEZGRkhKStIrdG7duoVKlSppN61TC75rpVwrVqxA6dKl0b17d5329evXIyMjA/379xeUzPDq1KmD9957T++WzYQJE7Bnzx5VbAlC/1DztcFCpwT57rvvADzfu2XatGkoXbq09lh2djYiIiJw7do1VS0Sx3et/xg2bBg8PT0xbNgwnfaFCxfi8uXLCAkJERPMgLy8vLB48WK9d/EHDhzAZ599hosXLwpKZnjm5uY4c+YMKleurNN+6dIl1KxZE0+ePBGUTJwbN25AkiRVbH78IlVfGwZcs4fekJubm+zm5iZLkiS7uLhoH7u5uclVqlSRfX195WPHjomOaVC1a9eWx48fr9c+fvx4uU6dOgISiePk5CRHRUXptZ84cUJ2dnYWkMjwzMzM5Li4OL32uLg42dzc3PCBBKpQoYL8+++/67WvW7dOdnFxEZBIjOzsbDkoKEi2traWjYyMZCMjI9nGxkaeOnWqzsJ5Sqfma4OzrkqQ3OmirVq1wsaNG2FnZyc4kXjnz5/H77//rtfu7++vih6Mf7t3716eO7tbW1vj7t27AhIZXrly5RATEwM3Nzed9tOnT6NMmTJiQgny6aef4rPPPsPVq1fRpEkTSJKEQ4cO4ZtvvsHo0aNFxzOYr776SjvrKrfX9/Dhw5gyZQqePHmCGTNmiI5oEKq+NkRXWvT6nj59Kl+4cEHOzMwUHUUYvmv9R/Xq1eXvv/9er/27776Tq1WrJiCR4Y0dO1Z2dXWVw8PD5aysLDkrK0sOCwuTXV1d5dGjR4uOZ1A5OTlycHCw7OzsLEuSJEuSJDs7O8shISFyTk6O6HgG4+joKG/ZskWvffPmzbKTk5OARGKo+dpgoVMCZWRkyP7+/rKxsbFsbGwsX7lyRZZlWf7iiy/kWbNmCU5nWEFBQbKtra08e/ZsOSIiQj548KA8a9Ys2dbWVp42bZroeAa1fPly2cLCQp48ebK8f/9+ef/+/fKkSZNkS0tLeenSpaLjGcTTp0/lHj16yJIkyRqNRtZoNLKxsbH8ySefyE+fPhUdT5i0tDQ5LS1NdAwhzMzM5IsXL+q1X7hwQfG3bP5NzdcGByOXQMOHD8fhw4cREhKCdu3aISYmBh4eHti6dSsCAwNVNRhZlmWEhIRg3rx5uHXrFgDAyckJY8eOxbBhw1Q3lXLRokWYMWOG9rVwc3PDlClT0K9fP8HJDOvSpUs4ffo0LCws4OPjo+rF85KTk3Hx4kVIkgQvLy84ODiIjmRQDRs2RMOGDbWTOXJ98cUXiIyMxLFjxwQlE0ON1wYLnRLI1dUV69atQ6NGjWBlZYXTp0/Dw8MDly9fRt26dZGWliY6ohAPHz4EAL1N69Tozp07sLCw0JmZR+qSlpaGgIAArFmzRrsFiLGxMXr27InQ0NA8x3Mp0YEDB9ChQwdUrFgRjRs3hiRJOHLkCBISErBjxw40a9ZMdEQqYhyMXALduXMnz71J0tPTVdeDkUvt71r/7c6dOzqvhZp2sweeTyHeunUr4uPj8ezZM51jSl8F998GDRqE6OhobN++XecP/PDhw/Hpp5/mOYhfiVq0aIGLFy/ihx9+0C6k2a1bNwwdOlTxKwK/SLXXhsj7ZvR6mjdvLn/33XeyLMty6dKl5atXr8qyLMsBAQHye++9JzKawaWmpsoff/yxbGxsrB1waWJiIvfp00dOSUkRHc+gHj16JH/yySd6r4W/v7+cnp4uOp5B/PXXX7KlpaVcvXp12cTERK5du7Zsa2sr29jYyK1atRIdz6AsLS3lgwcP6rVHRETIlpaWAhKRSGq+NoxEF1pUcLNmzcJXX32FIUOGICsrCwsWLMC7776LlStXqmaqZK5Bgwbhf//7H7Zv346UlBSkpqZi27ZtiIqKwqeffio6nkGNGjUKBw4cwJ9//omUlBSkpKRgy5YtOHDggGqmE0+cOBGjR49GbGwszM3N8ccffyAhIQEtWrTQWxFW6cqUKZPn7SkbGxtVLU2xYsUKrF+/Xq99/fr1+PnnnwUkEkPV14boSoteT0xMjNyvXz+5evXqcrVq1eQ+ffrIMTExomMZHN+1/qNMmTLyvn379NrDw8PlsmXLGj6QAKVLl5YvX74sy7Is29rayrGxsbIsy3J0dLTs6uoqMJnhLVmyRG7btq1869YtbVtiYqLs6+srL168WGAyw6pSpYocHh6u175//365SpUqAhKJoeZrg2N0SigfHx9VvRt5Gb5r/UdGRgbKly+v116uXDlkZGQISGR4pUqVwtOnTwE8n3135coVVK9eHQBUs2hirkWLFuHy5ctwdXVFxYoVAQDx8fEwMzPDnTt3sGTJEu25St736vr163B3d9drd3V1RXx8vIBEYqj52mChU0Ll5OTg8uXLSE5O1s6oyNW8eXNBqQzv66+/xqhRo7Bq1So4OjoCAJKSkjB27FhMmjRJcDrDaty4MQIDA7Fq1SqYm5sDAB4/foygoCA0btxYcDrDaNSoEQ4fPgxvb2906NABo0ePxpkzZ7Bx40Y0atRIdDyD6tKli+gIxYKqVwT+FzVfG5xeXgIdO3YMvXv3xvXr1/Hij0+SJGRnZwtKZnh16tTB5cuX8fTpU713rS9uZqjkd60AcObMGfj5+eHJkyeoVasWJElCdHQ0zM3NsXv3bu27NyW7evUqHj16hJo1ayIjIwNjxozBoUOH4Onpifnz56tizRDSNW7cOPz+++9YsWKF9k3ggQMH4O/vjw8//BBz584VnNAw1HxtsNApgWrXro0qVaogKCgIjo6OelPK1bI+BgBMmTIl31PqAwMDiziNeI8fP8avv/6qnUbr7e2NPn36wMLCQnS0IpednY1Dhw6hZs2aqrttSS/37Nkz9O3bF+vXr4eJyfObGDk5OejXrx8WL14MU1NTwQmLntqvDRY6JVCpUqVw+vRpeHp6io5CxUhERASaNGmi/c88V1ZWFo4cOaKKW5rm5uY4f/58nmMy1CY7Oxvz58/H77//nue6Kffv3xeUTIy///4b0dHRqloR+N/UfG1wenkJ1LBhQ1y+fFl0jGLBw8MD9+7d02tPSUmBh4eHgETitGrVKs8/XqmpqWjVqpWARIbn4+ODq1evio5RLAQFBSE4OBg9evRAamoqRo0ahW7dusHIyAhTpkwRHc/gKleuDCcnJ7z77ruqK3IAdV8b7NEpIWJiYrT/vnLlCr7++muMHTsWPj4+0Gg0OufWrFnT0PGEMTIyQlJSkt5K0bdv34aLi4veu1glMzIywu3bt/VWhb506RLq16+viq1B9uzZg/Hjx2PatGmoV68eSpUqpXPc2tpaUDLDq1SpEr777jt06NABVlZWiI6O1rYdO3YMv/32m+iIBmdtbY3o6GjVvQkC1H1tsNApIYyMjCBJkt7g41y5x9QyGHnr1q0Ans8s+fnnn3XGJWVnZyMsLAx79+7FxYsXRUU0mG7dugEAtmzZgnbt2sHMzEx7LDs7GzExMfDy8sKuXbtERTQYI6N/Oqn/PXZLTddGrlKlSuH8+fOoWLEiHB0dsX37dtStWxdXr15FnTp1kJqaKjqiwf17b0C1UfO1wenlJURcXJzoCMVK7tRZSZLQv39/nWMajQZubm6YN2+egGSGl1vkybIMKysrnYHHpqamaNSokWpWid63b5/oCMVGhQoVkJiYiIoVK8LT0xN79uxB3bp1ERkZqVMMkzqo+dpgoVNC/Pue8n8NOlXD/efctYPc3d0RGRmpuo0r/23FihUAADc3N4wZM0avS1pN3N3d4eLiojcTT5ZlJCQkCEolRteuXREWFoaGDRti+PDh6NWrF5YvX474+HiMHDlSdDwhlixZkueimmqg5muDt65KIGNjYyQmJuqNS7l37x7KlSun6C7IV3ny5Il2oTw1+/fu5VWqVFHVTu68Nl7u2LFjOHLkCDw9PdGpUyfRccjA1HxtcNZVCZR7T/VF9+7dU927+ZycHEybNg3Ozs4oXbq0dlbBpEmTsHz5csHpDCsjIwP+/v5wdHRE8+bN0axZMzg5OWHgwIGq2QLiZdfGo0ePVF8EN2rUCKNGjVJVkbN3714EBgYiPDwcwPPecD8/P7Ru3VrbE6oWar42eOuqBMkddCpJEgYMGJDnoNMmTZqIiifE9OnT8fPPP2POnDk641B8fHwwf/58DBw4UGA6wxo5cqR29/KmTZsCAA4dOoRhw4Zh9OjRWLRokeCERWfUqFEAnl8bkyZNgqWlpfZYdnY2/ve//6F27dqC0onzyy+/YPHixYiLi8PRo0fh6uqKkJAQuLu7o3PnzqLjFalff/0Vn3zyCWrWrIng4GB8//33GDlyJD788EPIsozBgwfDysoKH374oeioRYrXBgudEoWDTvWtWrUKS5cuRZs2bTB48GBte82aNXHhwgWByQzvjz/+wIYNG9CyZUttW/v27WFhYYEePXooutA5deoUgOfXxpkzZ3RWuzU1NUWtWrUwZswYUfGEWLRoESZPnowRI0ZgxowZ2lsTtra2CAkJUXyhM2/ePMybNw/Dhg1DWFgYOnbsiBkzZmjHJ3l7eyMkJETxhQ6vDQCG2SSdCtOUKVPkR48eiY5RLJibm8vXrl2TZVmWS5cuLV+5ckWWZVk+e/asXKpUKZHRDM7CwkI+d+6cXntsbKxsaWkpIJHhDRgwQE5NTRUdo1ioVq2avGnTJlmWda+NM2fOyGXKlBGYzDBKlSolX716VftYo9HIp0+f1j6+cOGCKl6HXGq+NjhGpwQKDAxU3Vicl6levToOHjyo175+/XrUqVNHQCJxcncvf/LkibZNbbuXr1ixQtELnxVEXFxcnteAmZkZ0tPTBSQyLI1Go7NgqJmZGUqXLq19bGpqisePH4uIJoSarw3euiqBbt++jTFjxiAsLAzJycl6iwgqefT8iwIDA9G3b1/cvHkTOTk52LhxIy5evIhVq1Zh27ZtouMZVEhICPz8/FChQoU8dy9Xg/T0dMyePVt7beQuQ5BLTUvgu7u7Izo6Wm+5iZ07d8Lb21tQKsPx9PTEhQsX4OXlBQC4efMmrKystMevXLmCChUqiIpncGq+NljolEADBgxAfHw8Jk2alOfu5WrSsWNHrFu3DjNnzoQkSZg8eTLq1q2LP//8E++++67oeAbl4+ODv//+W2f38o8++kg1u5cDwKBBg3DgwAH07dtX9dfG2LFjERAQgCdPnkCWZRw/fhxr1qzBrFmzsGzZMtHxityXX36ps1P3i70ZUVFR6NGjh6FjCaPma4Pr6JRAVlZWOHjwoOJHyudHQkICXFxc8jx27NgxNGrUyMCJxMjMzISXlxe2bduminfrL2Nra4vt27drZ52p3Y8//ojp06drF4SrUKECAgMDVTUbkZ5T87XBMTolkIuLy0v3vFKbd999N8/dyw8fPox27doJSCSGRqPB06dPVfUuLS92dnawt7cXHaNYePz4Mfr06YPr168jOTkZx44dw8iRI1V1uwZ4vov7lStXRMcQTs3XBgudEigkJAQTJkzAtWvXREcRrlmzZvD19cXDhw+1bREREWjfvj0CAwMFJjO8L774At988w2ysrJERxFm2rRpmDx5smoWSHyVzp07Y9WqVQAAExMTdOrUCcHBwejSpYuilxp40R9//IEqVaqgUaNGWLhwIe7cuSM6khBqvjZ466oEsrOzQ0ZGBrKysmBpaQmNRqNz/P79+4KSGZ4sy+jevTuSk5OxZ88eHD16FJ06dcL06dMxfPhw0fEMKndvo9KlS8PHx0dvZt7GjRsFJTOcOnXq4MqVK5BlGW5ubnrXxsmTJwUlM7yyZcviwIEDqF69OpYtW4bvv/8ep06dwh9//IHJkyfj/PnzoiMazNmzZ7F69WqsXbsWN27cQNu2bfHxxx+jS5cuOgvoKZmarw0ORi6B5s+fr/pbFLkkScKaNWvQoUMHtGnTBjExMZg1axb+7//+T3Q0g7O1tcUHH3wgOoZQubva0/MtQXJnGe3ZswfdunWDkZERGjVqhOvXrwtOZ1jVq1fHzJkzMXPmTBw+fBi//fYbRowYgcGDByMtLU10PINQ87XBHh0qcWJiYvTaHj58iF69eqFDhw4YMmSItr1mzZqGjEZUbNSsWRODBg1C165dUaNGDezatQuNGzfGiRMn0KFDByQlJYmOKER0dDR+/fVXrF27Fvfu3VPVWjpqxUKnBGrZsiX8/f3RvXt31Uwb/jcjIyNIkqQzIPvfj3P/LUmSqtYUypWcnKyze/mLuxWrwYkTJ3D+/HlIkgRvb2/VLR4JABs2bEDv3r2RnZ2NNm3aYM+ePQCAWbNmISIiAjt37hSc0HDi4uLw22+/YfXq1bh06RKaN2+O3r17o3v37tqtddRCjdcGC50SaPTo0Vi9ejUeP36MHj16YODAgaqZRg2gQN3uLy6WpmRpaWkICAjA2rVrtQWesbExevbsidDQUFX8h56cnIyPPvoI+/fvh62tLWRZRmpqKlq1aoW1a9fCwcFBdESDSkpKQmJiImrVqgUjo+dzT44fPw5ra2tUrVpVcDrDaNy4MY4fPw4fHx/06dMHvXv3hrOzs+hYBqfqa8OQ+01Q4cnKypI3b94sd+7cWdZoNHK1atXkb7/9Vk5KShIdjQTp3r27XLlyZXnXrl1yamqqnJaWJu/atUv28vKSu3fvLjqeQfTo0UOuV6+ezp5fZ8+elevXry9/9NFHApORKBMnTpRjY2NFxxBOzdcGCx0FSE5OlqdNmyabm5vLGo1G7ty5sxwWFiY6lkHMnDlTXr58uV778uXL5dmzZwtIJI6lpaV88OBBvfaIiAjVbOppbW0tHz9+XK/9f//7n2xjY2P4QFSsDBkyRL5z547oGEKo+drgOjol3PHjxzF58mTMnTsX5cqVw8SJE1GuXDl07NgRY8aMER2vyC1ZsiTPLvjq1atj8eLFAhKJU6ZMmTxvT9nY2Ogsha9kOTk5etNmgecLKr64tw+pz6+//qqaWVYvUvO1wUKnBEpOTsa8efNQo0YNNGvWDHfu3MHatWtx7do1BAUFYenSpdiyZYsq/tAnJSXB0dFRr93BwQGJiYkCEonz9ddfY9SoUTrfd1JSEsaOHYtJkyYJTGY4rVu3xvDhw3Hr1i1t282bNzFy5Ei0adNGYDIqDmQVD0lV87XBdXRKoAoVKqBSpUrw9/fHgAED8hxE9vbbb6NBgwYC0hmWi4sLDh8+DHd3d532w4cPw8nJSVAqMRYtWoTLly/D1dUVFStWBADEx8fDzMwMd+7cwZIlS7TnKnVxsIULF6Jz585wc3ODi4sLJElCfHw8fHx88Ouvv4qORySMmq8NFjol0F9//YV69eppV769fv06Nm3ahGrVquG9994D8Hyn3n379omMaRCDBg3CiBEjkJmZidatWwMAwsLCMG7cOIwePVpwOsNS84JguVxcXHDy5Ens3btXu4O7t7c32rZtKzoaFQP/3ipGbdR8bXB6eQnk6+uLbt26YfDgwUhJSYGXlxdMTU1x9+5dBAcH6yyYp3SyLGPChAn47rvv8OzZMwCAubk5xo8fj8mTJwtOR0TFQXZ2NjZt2qRdP6Zq1aro0qULTEz4Xl8NOEanBDp58iSaNWsG4PmiYG+99RauX7+OVatW4bvvvhOczrAkScI333yDO3fu4NixYzh9+jTu37+v+iJn6NChuHv3rugYBjds2LA8r4GFCxdixIgRhg9EwsXGxqJKlSro378/Nm3ahI0bN2LAgAGoXLkyzpw5Izqewaj52mChUwJxDxt9pUuXhqOjI+zs7GBmZiY6jnBqnV3yxx9/oGnTpnrtTZo0wYYNGwQkItEGDRqE6tWr48aNGzh58iROnjyJhIQE1KxZE5999pnoeAaj5muDhU4J5Onpic2bNyMhIQG7d++Gr68vgOezsaytrQWnM6ycnBxMnToVNjY22kG4tra2mDZtmuKnTL6KWu9I37t3L88p9tbW1qrs4SLg9OnTmDVrls4SC3Z2dpgxYwaio6PFBTMwNV8bLHRKoMmTJ2PMmDFwc3NDw4YN0bhxYwDPe3fUsG/Jv3311VdYuHAhZs+ejVOnTuHkyZOYOXMmvv/+e9VMqaZ/eHp6YteuXXrtO3fuhIeHh4BEJJqXlxdu376t156cnAxPT08BicRQ9bUhcLFCegOJiYnyyZMn5ezsbG3b//73P/n8+fMCUxmeo6OjvGXLFr32zZs3y05OTgISkUjLly+XLSws5MmTJ8v79++X9+/fL0+aNEm2tLSUly5dKjoeCbB9+3a5evXq8vr16+WEhAQ5ISFBXr9+vezj4yNv375dTk1N1X4omZqvDc66ohLN3NwcMTExqFKlik77xYsXUbt2bTx+/FhQMjGuXLmCFStW4OrVqwgJCUG5cuWwa9cuuLi4oHr16qLjGcSiRYswY8YM7cJobm5umDJlCvr16yc4GYmQu5kp8HzyAvDPrd1/P5YkSbsZrlKp9dpgoUMlWsOGDdGwYUO92QRffPEFIiMjcezYMUHJDO/AgQPw8/ND06ZNERERgfPnz8PDwwNz5szB8ePHFT/g8EV37tyBhYUFSpcuLToKCXTgwIF8n9uiRYsiTFJ8qO3aYKFDJVpERATat2+PihUronHjxpAkCUeOHEFCQgJ27NihnYavBo0bN0b37t0xatQoWFlZ4fTp0/Dw8EBkZCS6dOmCmzdvio5oULNnz8bgwYNha2srOgpRsaK2a4OFDpVYmZmZ8PX1xYwZM7B9+3ad1T6HDh2qui0gSpcujTNnzsDd3V2n0Ll27RqqVq2KJ0+eiI5oUNbW1oiOjlb+QEvKl4yMDMTHx2sXFs1Vs2ZNQYnEUdu1wWUhqcTSaDSIjY2Fg4MDZsyYITqOcLa2tkhMTNTb9+vUqVNwdnYWlEocvocj4Pltmk8++QQ7d+7M87jSx+XkRW3XBqeXU4nWr18/LF++XHSMYqF3794YP348kpKSIEkScnJycPjwYYwZM0bxgw2JXmbEiBF48OABjh07BgsLC+zatQs///wzKleujK1bt4qORwbAW1dUon3xxRdYtWoVPD09Ub9+fe1Gp7mCg4MFJTO8zMxMDBgwAGvXroUsyzAxMUF2djZ69+6NlStXwtjYWHREg0pISICTk5Pqvm/S5ejoiC1btuDtt9+GtbU1oqKiUKVKFWzduhVz5szBoUOHREc0uISEBDg7O+vMSFMyFjpUorVq1eqlxyRJQnh4uAHTFA9XrlzBqVOnkJOTgzp16qBy5cqiIxncs2fPkJycrLc6dsWKFQUlIlGsra0RExMDNzc3uLm5YfXq1WjatCni4uJQvXp1ZGRkiI5oMCkpKdiwYQOuXLmCsWPHwt7eHidPnkT58uUVfXubY3SoRNu3b5/oCMVOpUqVUKlSJdExhPj777/h7++PI0eO6LSrZZ0U0ufl5YWLFy/Czc0NtWvXxpIlS+Dm5obFixfD0dFRdDyDiYmJQdu2bWFjY4Nr167h008/hb29PTZt2qTdFFqpWOgQKYS/v/8rj//0008GSiLOgAEDYGJigm3btsHR0VG7IByp14gRI5CYmAgACAwMxHvvvYfVq1fD1NQUK1euFBvOgEaNGoUBAwZgzpw52k2hAcDPzw+9e/cWmKzosdAhUogHDx7oPM7MzERsbCxSUlLQunVrQakMKzo6GidOnEDVqlVFR6Fiok+fPtp/16lTB9euXcOFCxdQsWJFlC1bVmAyw4qMjMSSJUv02p2dnZGUlCQgkeGw0CFSiE2bNum15eTkYOjQoapZL8Pb21vxOzFTwfz9998649QsLS1Rt25dgYnEMDc3R1paml77xYsX4eDgICCR4XAwMpHCXbx4ES1bttR23ytZeHg4vv76a8ycORM+Pj7QaDQ6x62trQUlI1GMjIzg6OiIFi1aoEWLFmjZsiW8vLxExzK4zz77DHfu3MHvv/8Oe3t7xMTEwNjYGF26dEHz5s0REhIiOmKRYaFDpHA7duxA//79cefOHdFRilzudNkXx+ZwMLJ63b59G+Hh4Thw4AD279+PS5cuoXz58tqiZ/DgwaIjGkRaWhrat2+Ps2fP4uHDh3ByckJSUhIaN26MHTt26C3NoSQsdIgUYtSoUTqPZVlGYmIitm/fjv79+2PhwoWCkhnOf23gqJZNG+nlLl++jOnTp2P16tXIyclRXfEbHh6OkydPIicnB3Xr1kXbtm1FRypyLHSIFOLFNYWMjIzg4OCA1q1bw9/fHyYmHJJH6vPo0SMcOnQI+/fvx4EDBxAdHY1q1aqhZcuWaNGiBTp37iw6YpGxt7fHpUuXULZsWfj7+2PBggU6M67UgoUOEZVoMTExqFGjBoyMjBATE/PKc9W4gaPaaTQa2Nvbo2/fvmjVqhXeeecd2NjYiI5lEKVLl0ZMTAw8PDxgbGyMpKQkxQ88zgsLHSIq0YyMjJCUlIRy5crByMgIkiTluWkhx+ioU5cuXXDo0CEYGxujZcuW2o9q1aqJjlbk3n33Xdy+fRv16tXDzz//jJ49e8LCwiLPc5W8zhb7solKsDp16uR7UbyTJ08WcRox4uLitO9S4+LiBKeh4mbz5s0Anvf8HThwAGFhYZgyZQokSULLli2xdu1asQGL0K+//or58+fjypUrkCQJqampePLkiehYBsceHaISLCgoKN/nBgYGFmESouLv1KlT2LdvH/bt24ddu3ZBkiQ8e/ZMdCyDcHd3R1RUFMqUKSM6isGx0CGiEm3r1q35PrdTp05FmISKo/nz52P//v04ePAgHj58iNq1a2unljdv3pxrK6kACx0ihYmKisL58+chSRKqVauGevXqiY5UpHLXzvkvHKOjTvXr19eOy1F7YZOeno4DBw4gPj5erydr2LBhglIVPRY6RApx48YN9OrVC4cPH4atrS0AICUlBU2aNMGaNWvg4uIiNiARCXPq1Cm0b98eGRkZSE9Ph729Pe7evQtLS0uUK1cOV69eFR2xyOTvrRARFXv+/v7IzMzE+fPncf/+fdy/fx/nz5+HLMsYOHCg6HgGp8ZBl6Rv165dOHTokPZxaGgoateujd69e+tthKtkI0eORMeOHXH//n1YWFjg2LFjuH79OurVq4e5c+eKjlekWOgQKcTBgwexaNEinX18vLy88P333+PgwYMCkxlOdnY2pk2bBmdnZ5QuXVr7LnXSpElYvny54HQkwtixY7WbWZ45cwajR49G+/btcfXqVb3VxJUsOjoao0ePhrGxMYyNjfH06VO4uLhgzpw5+PLLL0XHK1IsdIgUomLFisjMzNRrz8rKgrOzs4BEhjdjxgysXLkSc+bMgampqbbdx8cHy5YtE5iMRImLi4O3tzcA4I8//sD777+PmTNn4ocffsDOnTsFpzMcjUajXYqifPnyiI+PBwDY2Nho/61ULHSIFGLOnDn44osvEBUVpV0wLyoqCsOHD1d813SuVatWYenSpejTpw+MjY217TVr1sSFCxcEJiNRTE1NkZGRAQD466+/4OvrC+D59gi5PT1qUKdOHURFRQF4vl3M5MmTsXr1aowYMQI+Pj6C0xUtLhhIVILZ2dnpLBiYnp6Ohg0bave1ysrKgomJCfz9/dGlSxdBKQ3n5s2b8PT01GvPycnJs7eLlO+dd97BqFGj0LRpUxw/fhzr1q0DAFy6dAkVKlQQnM5wZs6ciYcPHwIApk2bhv79+2PIkCGoXLmy4m/rstAhKsFCQkJERyhWqlevjoMHD8LV1VWnff369ahTp46gVCTSwoULMXToUGzYsAGLFi3S3sbduXMn2rVrJzid4VSvXl3b0+vg4IAffvgBmzZtgre3N2rXri02XBHj9HIiUow///wTffv2xcSJEzF16lQEBQXh4sWLWLVqFbZt24Z3331XdEQiIXx9fdGtWzcMHjwYKSkpqFq1KjQaDe7evYvg4GAMGTJEdMQiwzE6RArUoUMHJCYmio5hcB07dsS6deuwY8cOSJKEyZMn4/z58/jzzz9Z5KjIv8fepKWlvfJDLU6ePIlmzZoBADZs2IDy5cvj+vXrWLVqFb777jvB6YoWb10RKVBERAQeP34sOoYQ7733Ht577z3RMUggOzs7JCYmoly5crC1tc1z41tZllW1WnZGRgasrKwAAHv27EG3bt1gZGSERo0a4fr164LTFS0WOkSkOGrbBoN0hYeHw97eHgCwb98+wWmKB09PT2zevBldu3bF7t27MXLkSABAcnKy4rfF4BgdIgWqUaMGdu7cqbptH7gNBlHeNmzYgN69eyM7Oxtt2rTBnj17AACzZs1CRESEotcUYqFDRIrh6+uLtLQ0/Pzzz9oVoi9evAh/f3+UKlVK+587qUtKSgqOHz+O5ORk5OTk6Bzr16+foFSGl5SUhMTERNSqVUu7Ge7x48dhbW2NqlWrCk5XdFjoEJVgMTEx+T63Zs2aRZikeLCwsMCRI0f0ppKfPHkSTZs2Ve24JTX7888/0adPH6Snp8PKykpnvI4kSbh//77AdGQIHKNDVILVrl0bkiThZe9Xco+pZdAlt8GgF40ePRr+/v6YOXMmLC0tRcchAVjoEJVgcXFxoiMUK7nbYISGhqJevXqQJEl122CQrps3b2LYsGEsclSMt66ISDHs7OyQkZGh3foC+GcbjFKlSumcy1sW6tCtWzd89NFH6NGjh+goJAh7dIgU5ty5c4iPj8ezZ8902jt16iQokeFwSwx6UYcOHTB27FicO3cOPj4+0Gg0OsfVcF2oHXt0iBTi6tWr6Nq1K86cOaMzbid38KUaxugQvSh3dlFe1DJ2Te3Yo0OkEMOHD4e7uzv++usveHh44Pjx47h37x5Gjx6tqvEp2dnZ2LRpk86CgZ07d9beyiJ1eXE6OakPe3SIFKJs2bIIDw9HzZo1YWNjg+PHj8PLywvh4eEYPXo0Tp06JTpikYuNjUXnzp2RlJSkXUfn0qVLcHBwwNatW+Hj4yM4IRna1KlTX3pMkiRMmjTJgGlIBL7FIVKI7OxslC5dGsDzoufWrVvw8vKCq6srLl68KDidYQwaNAjVq1dHVFQU7OzsAAAPHjzAgAED8Nlnn+Ho0aOCE5Khbdq0SedxZmYm4uLiYGJigkqVKrHQUQEWOkQKUaNGDcTExMDDwwMNGzbEnDlzYGpqiqVLl8LDw0N0PIM4ffq0TpEDPJ+JNWPGDDRo0EBgMhIlr57MtLQ0DBgwAF27dhWQiAzt5aO0iKhE+frrr7XjEaZPn47r16+jWbNm2LFjB7777jvB6QzDy8sLt2/f1mtPTk6Gp6engERUHFlbW2Pq1KnszVEJjtEhUrD79+/Dzs5OZ9l7JduxYwfGjRuHKVOmoFGjRgCAY8eOYerUqZg9ezbeeecd7blK37GZXu3QoUPo2LEjHjx4IDoKFTEWOkSkGP+eSpxb3L04zV5NW2IQ9HozZVlGYmIifvnlFzRv3hxr1qwRlIwMhYUOkUK0atXqlT034eHhBkwjxoEDB/J9bosWLYowCRUX7u7uOo+NjIzg4OCA1q1bY+LEibCyshKUjAyFg5GJFKJ27do6jzMzMxEdHY3Y2Fj0799fTCgDY/FCL+J+cMRCh0gh5s+fn2f7lClT8OjRIwOnEefgwYNYsmQJrl69ivXr18PZ2Rm//PIL3N3ddcboEJE6cNYVkcJ9/PHH+Omnn0THMIg//vgD7733HiwsLHDy5Ek8ffoUAPDw4UPMnDlTcDoiEoGFDpHCHT16FObm5qJjGMT06dOxePFi/PjjjzqbNzZp0gQnT54UmIyIROGtKyKF6Natm87j3NklUVFRqlkv5OLFi2jevLleu7W1NVJSUgwfiIiEY6FDpBDW1tY6s66MjIzg5eWFqVOnwtfXV2Ayw3F0dMTly5fh5uam037o0CHVrA5NRLpY6BApxMqVK0VHEO7zzz/H8OHD8dNPP0GSJNy6dQtHjx7FmDFjMHnyZNHxiEgArqNDpBAeHh6IjIxEmTJldNpTUlJQt25dXL16VVAyw/rqq68wf/58PHnyBABgZmaGMWPGYNq0aYKTEZEILHSIFMLIyAhJSUkoV66cTvvt27dRsWJF7QwkNcjIyMC5c+eQk5MDb29v7a7uRKQ+vHVFVMJt3bpV++/du3fDxsZG+zg7OxthYWF6Y1aUatWqVWjQoAGqVauG+vXra9ufPHmC33//Hf369ROYjohEYI8OUQmXu7+TJEl48XLWaDRwc3PDvHnz8P7774uIZ1BGRkYoVaoUVq5ciQ8++EDbfvv2bTg5OXF/KyIVYo8OUQmXk5MD4PmePpGRkShbtqzgRGIFBQWhb9++OHPmDKZMmSI6DhEJxh4dIlKM3HFKV69eRdeuXdG0aVP88ssvSEtLY48OkUqx0CFSiKlTp77yuBqmVxsbGyMxMRHlypVDfHw8OnXqBEmSsHjxYjRp0oSFDpEKsdAhUog6deroPM7MzERcXBxMTExQqVIlVWyB8OLMs4yMDPTp0wdhYWFIT09noUOkQhyjQ6QQp06d0mtLS0vDgAED0LVrVwGJDC8wMFBnKrmlpSU2bdqEwMBARERECExGRKKwR4dI4WJjY/H+++/j2rVroqMQERkce3SIFC4lJQWpqamiYxjMpUuXsH//fiQnJ2tnpAHPp9+rZXNTIvoHCx0ihfjuu+90HufuXv7LL7+gXbt2glIZ1o8//oghQ4agbNmyeOutt3Q2OWWhQ6ROvHVFpBDu7u46j42MjODg4IDWrVtj4sSJsLKyEpTMcFxdXTF06FCMHz9edBQiKiZY6BCRYlhbWyM6OhoeHh6ioxBRMWEkOgARUWHp3r079uzZIzoGERUjHKNDpBBPnjzB999/j3379ukNxAWginV0PD09MWnSJBw7dgw+Pj7QaDQ6x4cNGyYoGRGJwltXRArRu3dv7N27Fx9++CHKly+vMxAXeL7GjNK9OE7p3yRJwtWrVw2YhoiKAxY6RAphY2ODHTt2oGnTpqKjEBEVGxyjQ6QQzs7OqphZlR/Pnj3DxYsXkZWVJToKEQnGQodIIebNm4fx48fj+vXroqMIk5GRgYEDB8LS0hLVq1dHfHw8gOdjc2bPni04HRGJwEKHSCHq16+PJ0+ewMPDA1ZWVrC3t9f5UIOJEyfi9OnT2L9/P8zNzbXtbdu2xbp16wQmIyJROOuKSCF69eqFmzdvYubMmXkORlaDzZs3Y926dWjUqJHO9+/t7Y0rV64ITEZEorDQIVKII0eO4OjRo6hVq5boKMLcuXMH5cqV02tPT09XZeFHRLx1RaQYVatWxePHj0XHEKpBgwbYvn279nFucfPjjz+icePGomIRkUDs0SFSiNmzZ2P06NGYMWNGnovlWVtbC0pmOLNmzUK7du1w7tw5ZGVlYcGCBTh79iyOHj2KAwcOiI5HRAJwHR0ihTAyet5B++ItGlmWIUkSsrOzRcQyuDNnzmDu3Lk4ceIEcnJyULduXYwfPx4+Pj6ioxGRACx0iBTiv3osWrRoYaAkRETFBwsdIlKU7OxsbNq0CefPn4ckSahWrRo6d+4MExPeqSdSI175RArk4+ODHTt2wMXFRXQUg4qNjUXnzp2RlJQELy8vAMClS5fg4OCArVu38vYVkQqxR4dIgaysrHD69Gl4eHiIjmJQjRo1Qrly5fDzzz/Dzs4OAPDgwQMMGDAAycnJOHr0qOCERGRoLHSIFEithY6FhQWioqJQvXp1nfbY2Fg0aNBA9dPvidSI6+gQKVCzZs1gYWEhOobBeXl54fbt23rtycnJ8PT0FJCIiERjjw4RKcaOHTswbtw4TJkyBY0aNQIAHDt2DFOnTsXs2bPxzjvvaM9Vw7pCRMRCh0hRfvnlFyxevBhxcXE4evQoXF1dERISAnd3d3Tu3Fl0vCKXu5YQ8M96Qrn/xf37sZrWFSJSO866IlKIRYsWYfLkyRgxYgSmT5+u/UNua2uLkJAQVRQ6+/btEx2BiIoZ9ugQKYS3tzdmzpyJLl266AxGjo2NRcuWLXH37l3REQ0iJSUFy5cv11lHZ+DAgbCxsREdjYgE4GBkIoWIi4tDnTp19NrNzMyQnp4uIJHhRUVFwdPTE/Pnz8f9+/dx9+5dzJ8/H5UqVcLJkydFxyMiAXjrikgh3N3dER0dDVdXV532nTt3wtvbW1Aqwxo5ciQ6duyIH3/8UbsSclZWFgYNGoQRI0YgIiJCcEIiMjQWOkQKMXbsWAQEBODJkyeQZRnHjx/HmjVrMGvWLCxbtkx0PIOIiorSKXIAwMTEBOPGjUP9+vUFJiMiUVjoECnEJ598gqysLIwbNw4ZGRno3bs3nJ2dsWDBAnz00Uei4xmEtbU14uPjUbVqVZ32hIQEWFlZCUpFRCJxMDKRAt29exc5OTkoV66c6CgGNWzYMGzatAlz585FkyZNIEkSDh06hLFjx+KDDz5ASEiI6IhEZGDs0SFSoLJly4qOIMTcuXMhSRL69euHrKwsAIBGo8GQIUMwe/ZswemISAT26BApxO3btzFmzBiEhYUhOTkZL17aalogLyMjA1euXIEsy/D09ISlpaXoSEQkCAsdIoXw8/NDfHw8/u///g+Ojo7alYBzqWHBQCKiF7HQIVIIKysrHDx4ELVr1xYdhYio2OCCgUQK4eLione7iohI7VjoEClESEgIJkyYgGvXromOQkRUbPDWFZFC2NnZISMjA1lZWbC0tIRGo9E5fv/+fUHJiIjE4fRyIoXgGjFERPrYo0NERESKxR4dIoWIj49/5fGKFSsaKAkRUfHBHh0ihTAyMtJbO+ff1LRgIBFRLvboECnEqVOndB5nZmbi1KlTCA4OxowZMwSlIiISiz06RAq3fft2fPvtt9i/f7/oKEREBsd1dIgUrkqVKoiMjBQdg4hICN66IlKItLQ0nceyLCMxMRFTpkxB5cqVBaUiIhKLhQ6RQtja2uoNRpZlGS4uLli7dq2gVEREYnGMDpFCHDhwQOexkZERHBwc4OnpCRMTvqchInXi/35ECiFJEpo0aaJX1GRlZSEiIgLNmzcXlIyISBz26BAphLGxMRITE1GuXDmd9nv37qFcuXJcR4eIVImzrogUQpblPBcMvHfvHkqVKiUgERGReLx1RVTCdevWDcDzW1cDBgyAmZmZ9lh2djZiYmLQpEkTUfGIiIRioUNUwtnY2AB43qNjZWUFCwsL7TFTU1M0atQIn376qah4RERCcYwOkUIEBQVhzJgxvE1FRPQvLHSIFCY5ORkXL16EJEmoUqWK3uBkIiI14WBkIoVIS0tD37594ezsjBYtWqB58+ZwdnbGxx9/jNTUVNHxiIiEYKFDpBCDBg3C//73P2zbtg0pKSlITU3Ftm3bEBUVxTE6RKRavHVFpBClSpXC7t278c477+i0Hzx4EO3atUN6erqgZERE4rBHh0ghypQpo52B9W82Njaws7MTkIiISDwWOkQK8fXXX2PUqFFITEzUtiUlJWHs2LGYNGmSwGREROLw1hWRQtSpUweXL1/G06dPUbFiRQBAfHw8zMzMULlyZZ1zT548KSIiEZHBccFAIoXo0qWL6AhERMUOe3SIiIhIsThGh0hBUlJSsGzZMkycOBH3798H8Pw21c2bNwUnIyISgz06RAoRExODtm3bwsbGBteuXcPFixfh4eGBSZMm4fr161i1apXoiEREBsceHSKFGDVqFAYMGIC///4b5ubm2nY/Pz9EREQITEZEJA4LHSKFiIyMxOeff67X7uzsjKSkJAGJiIjEY6FDpBDm5uZIS0vTa7948SIcHBwEJCIiEo+FDpFCdO7cGVOnTkVmZiYAQJIkxMfHY8KECfjggw8EpyMiEoODkYkUIi0tDe3bt8fZs2fx8OFDODk5ISkpCY0aNcLOnTtRqlQp0RGJiAyOhQ6Rwuzbtw8nTpxATk4O6tati7Zt24qOREQkDAsdIgUJCwtDWFgYkpOTkZOTo3Psp59+EpSKiEgcbgFBpBBBQUGYOnUq6tevD0dHR0iSJDoSEZFw7NEhUghHR0fMmTMHffv2FR2FiKjY4KwrIoV49uwZmjRpIjoGEVGxwkKHSCEGDRqE3377TXQMIqJihWN0iBTiyZMnWLp0Kf766y/UrFkTGo1G53hwcLCgZERE4nCMDpFCtGrV6qXHJElCeHi4AdMQERUPLHSIiIhIsThGh4iIiBSLhQ4REREpFgsdIiIiUiwWOkRERKRYLHSIiIhIsVjoEBERkWKx0CEiIiLF+n9W4/e2aSqFoQAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
scenariorpc_call_count
0synthetix2920383
1rocketpool215846
2neptune-mutual-blue-protocol125637
3openzeppelin-contracts62857
4seaport36035
5uniswap-v3-core23853
6safe-contracts5272
\n", - "
" - ], - "text/plain": [ - " scenario rpc_call_count\n", - "0 synthetix 2920383\n", - "1 rocketpool 215846\n", - "2 neptune-mutual-blue-protocol 125637\n", - "3 openzeppelin-contracts 62857\n", - "4 seaport 36035\n", - "5 uniswap-v3-core 23853\n", - "6 safe-contracts 5272" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "rpc_call_counts = {key: len(value) for key, value in rpc_calls.items()}\n", - "rpc_call_counts = list(zip(*sorted(rpc_call_counts.items(), key=lambda item: item[1], reverse=True)))\n", - "\n", - "plt.bar(rpc_call_counts[0], rpc_call_counts[1], color='g')\n", - "plt.title('RPC calls by scenario')\n", - "plt.ylabel('Count (logarithmic)')\n", - "plt.gca().set_yscale('log')\n", - "plt.xticks(rotation='vertical')\n", - "plt.subplots_adjust(bottom=0.3)\n", - "plt.show()\n", - "\n", - "df = pd.DataFrame({\"scenario\": rpc_call_counts[0], \"rpc_call_count\": rpc_call_counts[1]})\n", - "display(df)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "04ee2ac3-225f-4263-b603-d702bc0ecd17", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABNUAAAJMCAYAAADdb5CjAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3xO9///8eclMowkxEhrRuzYRBWlgiLU7KcUVbstqV1K+1GjRqtmK5RSocP8WG19ELvWR+zaW2jtlhCtkbx/f/jl+oqEusi5LuRxv93Orb3e5ziv97mSnPE672EzxhgBAAAAAAAAeGhpXF0BAAAAAAAA4GlDUg0AAAAAAABwEEk1AAAAAAAAwEEk1QAAAAAAAAAHkVQDAAAAAAAAHERSDQAAAAAAAHAQSTUAAAAAAADAQSTVAAAAAAAAAAeRVAMAAAAAAAAcRFINAADgASIiImSz2exL2rRp9fzzz+uNN97Q4cOHk2xfrVq1RNunS5dOpUqV0tixYxUfH59k+x9//FH169eXv7+/PDw85Ofnpxo1auj777/XrVu3nHGIkv7vOE+cOGEva9OmjQICAv7x3/7www8aO3asZXUDAAB4EpFUAwAAeAjTpk3Tpk2btGLFCr333ntavHixXnrpJf35559Jtg0MDNSmTZu0adMmzZ49Wzlz5lSPHj3Ur18/+zbGGLVt21YNGjRQfHy8Ro8erRUrVmj69OkqVaqUOnfurAkTJjjzEB8ZSTUAAJAapXV1BQAAAJ4GxYsXV3BwsKQ7rdHi4uI0YMAALVy4UG3btk20bbp06fTiiy/aP4eGhqpIkSIaP368hgwZInd3d33++eeKiIjQoEGD9PHHHyf69/Xr11efPn105MgR6w8MAAAAj4SWagAAAI8gIcF27ty5f9zW3d1d5cqV0/Xr13XhwgXdunVLn332mYoUKaL+/fsn+2+ee+45vfTSS/+47x9++EEVK1ZUxowZlTFjRpUuXVpTp061r4+MjFTDhg2VK1cueXl5qUCBAnrnnXd08eLFhzzSB6tWrZp+/vlnnTx5MlG3V2OMChYsqNq1ayf5N9euXZOvr6/CwsIkSWvWrJHNZtN3332nnj176rnnnlO6dOn08ssva8eOHUn+/datW9WgQQP5+fnJy8tLZcqU0Zw5cxJtc/36db3//vvKly+fvLy85Ofnp+DgYM2cOTNFjhsAAICWagAAAI/g+PHjkqRChQo91PZHjx5V2rRplTlzZm3dulV//PGHOnbsKJvN9sh1+Pjjj/XJJ5+oSZMm6tWrl3x9fbVnzx6dPHkyUdyKFSuqQ4cO8vX11YkTJzR69Gi99NJL+vXXX+Xu7v7I8SVpwoQJevvtt3X06FEtWLDAXm6z2dSlSxd1795dhw8fVsGCBe3rZsyYoZiYGHtSLcGHH36osmXLasqUKbpy5YoGDhyoatWqaceOHQoMDJQkrV69WnXq1FGFChX01VdfydfXV7NmzVKzZs10/fp1tWnTRpLUs2dPffvttxoyZIjKlCmj2NhY7dmzR5cuXXqs4wUAAEhAUg0AAOAhxMXF6fbt2/r777+1YcMGDRkyRFWrVlWDBg2S3f727duSpAsXLuiLL77Q9u3b9frrrytdunSKjo6WJOXLl++R63P8+HENGzZMLVu21HfffWcvf+WVVxJt9+6779r/3xijSpUqqVq1asqbN6/++9//3rf+DysoKEiZMmWSp6dnoi6vktS2bVv9+9//Vnh4eKIx18LDwxUSEqKgoKBE22fLlk0LFiywJxpfeuklFSxYUMOHD9fXX38tSercubOKFSumVatWKW3aO7eytWvX1sWLF/Xhhx/qrbfeUpo0abRhwwbVqlVLPXr0sO+/Xr16j3WsAAAAd6P7JwAAwEN48cUX5e7uLm9vb9WpU0eZM2fWokWL7Imdu+3du1fu7u5yd3dXjhw5NGrUKLVs2dKeGEoJkZGRiouLS9La617nz5/Xu+++q9y5cytt2rRyd3dX3rx5JUn79+9Psfokx9vbW23btlVERIRiY2MlSatWrdK+ffv03nvvJdm+RYsWiVru5c2bV5UqVdLq1aslSUeOHNGBAwfUsmVLSXcSlwlL3bp1debMGR08eFCS9MILL+i///2v+vbtqzVr1uivv/6y9FgBAEDqQ1INAADgIcyYMUNRUVFatWqV3nnnHe3fv1/NmzdPdtv8+fMrKipKW7du1Z49e3T58mV999138vX1lSTlyZNH0v91IX0UFy5ckCTlypXrvtvEx8erVq1amj9/vvr06aOVK1dqy5Yt2rx5syQ5JdHUpUsXXb16Vd9//70kafz48cqVK5caNmyYZNvnnnsu2bKELpsJ49e9//779qRlwtK5c2dJso8V98UXX+iDDz7QwoULFRISIj8/PzVq1EiHDx+25DgBAEDqQ/dPAACAh1C0aFH75AQhISGKi4vTlClTNG/ePP3rX/9KtK2Xl5d92+QEBwfLz89PixYt0vDhwx9pXLVs2bJJkk6fPq3cuXMnu82ePXu0a9cuRUREqHXr1vZyZ84qWqBAAYWGhio8PFyhoaFavHixBg0aJDc3tyTbnj17NtmyLFmySJKyZs0qSerXr5+aNGmSbLzChQtLkjJkyKBBgwZp0KBBOnfunL3VWv369XXgwIGUOjwAAJCK0VINAADgEYwYMUKZM2fWxx9/rPj4eIf+rbu7uz744AMdOHBAn3zySbLbnD9/Xhs2bLjvPmrVqiU3NzdNnDjxvtskJOs8PT0TlU+aNMmh+v4TT0/PB7Z669atm3bv3q3WrVvLzc1NHTt2THa7mTNnyhhj/3zy5Elt3LhR1apVk3QnYVawYEHt2rVLwcHByS7e3t5J9uvv7682bdqoefPmOnjwoK5fv/54BwwAACBaqgEAADySzJkzq1+/furTp49++OEHvfnmmw79+969e2v//v0aMGCAtmzZohYtWih37ty6cuWK1q1bp8mTJ2vQoEGqXLlysv8+ICBAH374oT755BP99ddfat68uXx9fbVv3z5dvHhRgwYNUpEiRZQ/f3717dtXxhj5+fnpxx9/VGRkZEp8BXYlSpTQ/PnzNXHiRJUrV05p0qRJ1FLvlVdeUVBQkFavXq0333xT2bNnT3Y/58+fV+PGjdWxY0dduXJFAwYMkJeXl/r162ffZtKkSQoNDVXt2rXVpk0b5cyZU3/88Yf279+v7du3a+7cuZKkChUq6NVXX1XJkiWVOXNm7d+/X99++60qVqyo9OnTp+jxAwCA1ImWagAAAI+oS5cuypMnjwYPHqy4uDiH/q3NZtO0adO0aNEiSVL37t1VvXp1vfXWW9q6das+++wzderU6YH7GDx4sGbMmKGTJ0+qZcuWatSokaZNm2afVdTd3V0//vijChUqpHfeeUfNmzfX+fPntWLFikc74Pvo1q2b/vWvf+nDDz/Uiy++qPLlyyfZpmnTppKU7AQFCYYNG6a8efOqbdu2ateunZ5//nmtXr1a+fPnt28TEhKiLVu2KFOmTOrevbtq1qypTp06acWKFapZs6Z9u+rVq2vx4sVq27atatWqpREjRuitt97Sjz/+mIJHDgAAUjObubuNPQAAAGCB4OBg2Ww2RUVFJVm3Zs0ahYSEaO7cuUnGpwMAAHhS0f0TAAAAloiJidGePXv0008/adu2bVqwYIGrqwQAAJBiSKoBAADAEtu3b1dISIiyZMmiAQMGqFGjRq6uEgAAQIqh+ycAAAAAAADgICYqAAAAAAAAABxEUg0AAAAAAABwEEk1AAAAAAAAwEGpfqKC+Ph4/f777/L29pbNZnN1dQAAAAAAAOAixhhdvXpVOXLkUJo0D26LluqTar///rty587t6moAAAAAAADgCXHq1CnlypXrgduk+qSat7e3pDtflo+Pj4trAwAAAAAAAFeJiYlR7ty57fmiB0n1SbWELp8+Pj4k1QAAAAAAAPBQQ4Sl2okKwsPDFRQUpPLly7u6KgAAAAAAAHjK2IwxxtWVcKWYmBj5+vrqypUrtFQDAAAAAABIxRzJE6XalmoAAAAAAADAoyKpBgAAAAAAADgo1SbVGFMNAAAAAAAAj4ox1RhTDQAAAAAAAGJMNQAAAAAAAMBSJNUAAAAAAAAAB5FUAwAAAAAAAByUapNqTFQAAAAAAACAR8VEBc/gRAW2QTanxDEDUvWvDgAAAAAAeMYwUQEAAAAAAABgIZJqAAAAAAAAgINIqgEAAAAAAAAOIqkGAAAAAAAAOIikGgAAAAAAAOAgkmoAAAAAAACAg1JtUi08PFxBQUEqX768q6sCAAAAAACAp0yqTaqFhYVp3759ioqKcnVVAAAAAAAA8JRJtUk1AAAAAAAA4FGRVAMAAAAAAAAcRFINAAAAAAAAcBBJNQAAAAAAAMBBJNUAAAAAAAAABz0TSbXjx48rJCREQUFBKlGihGJjY11dJQAAAAAAADzD0rq6AimhTZs2GjJkiKpUqaI//vhDnp6erq4SAAAAAAAAnmFPfVJt7969cnd3V5UqVSRJfn5+Lq4RAAAAAAAAnnUu7/65bt061a9fXzly5JDNZtPChQuTbDNhwgTly5dPXl5eKleunH755Rf7usOHDytjxoxq0KCBypYtq2HDhjmx9gAAAAAAAEiNXJ5Ui42NValSpTR+/Phk18+ePVvdu3fXRx99pB07dqhKlSoKDQ1VdHS0JOnWrVv65ZdfFB4erk2bNikyMlKRkZHOPAQAAAAAAACkMi5PqoWGhmrIkCFq0qRJsutHjx6t9u3bq0OHDipatKjGjh2r3Llza+LEiZKkXLlyqXz58sqdO7c8PT1Vt25d7dy5877xbty4oZiYmEQLAAAAAAAA4AiXJ9Ue5ObNm9q2bZtq1aqVqLxWrVrauHGjJKl8+fI6d+6c/vzzT8XHx2vdunUqWrToffc5fPhw+fr62pfcuXNbegwAAAAAAAB49jzRSbWLFy8qLi5O/v7+icr9/f119uxZSVLatGk1bNgwVa1aVSVLllTBggX16quv3nef/fr105UrV+zLqVOnLD0GAAAAAAAAPHueitk/bTZbos/GmERloaGhCg0Nfah9eXp6ytPTU+Hh4QoPD1dcXFyK1hUAAAAAAADPvie6pVrWrFnl5uZmb5WW4Pz580larzkqLCxM+/btU1RU1GPtBwAAAAAAAKnPE51U8/DwULly5ZLM5hkZGalKlSo91r7Dw8MVFBSk8uXLP9Z+AAAAAAAAkPq4vPvntWvXdOTIEfvn48ePa+fOnfLz81OePHnUs2dPtWrVSsHBwapYsaImT56s6Ohovfvuu48VNywsTGFhYYqJiZGvr+/jHgYAAAAAAABSEZcn1bZu3aqQkBD75549e0qSWrdurYiICDVr1kyXLl3S4MGDdebMGRUvXlxLlixR3rx5XVVlAAAAAAAApHI2Y4xxdSVc4e6JCg4dOqQrV67Ix8fH1dVKEbZBtn/eKAWYAanyVwcAAAAAADyjEno0Pkye6IkeU81KTFQAAAAAAACAR5Vqk2pMVAAAAAAAAIBHlWqTarRUAwAAAAAAwKNKtUk1AAAAAAAA4FGRVAMAAAAAAAAclGqTaoypBgAAAAAAgEeVapNqjKkGAAAAAACAR5Vqk2oAAAAAAADAoyKpBgAAAAAAADgo1SbVGFMNAAAAAAAAjyrVJtUYUw0AAAAAAACPKtUm1QAAAAAAAIBHRVINAAAAAAAAcBBJNQAAAAAAAMBBqTapxkQFAAAAAAAAeFSpNqnGRAUAAAAAAAB4VKk2qQYAAAAAAAA8KpJqAAAAAAAAgINIqgEAAAAAAAAOIqkGAAAAAAAAOIikGgAAAAAAAOAgkmoAAAAAAACAg1JtUi08PFxBQUEqX768q6sCAAAAAACAp0yqTaqFhYVp3759ioqKcnVVAAAAAAAA8JRJtUk1AAAAAAAA4FGRVAMAAAAAAAAcRFINAAAAAAAAcBBJNQAAAAAAAMBBJNUAAAAAAAAABz0TSbW0adOqdOnSKl26tDp06ODq6gAAAAAAAOAZl9bVFUgJmTJl0s6dO11dDQAAAAAAAKQSz0RLNQAAAAAAAMCZXJ5UW7dunerXr68cOXLIZrNp4cKFSbaZMGGC8uXLJy8vL5UrV06//PJLovUxMTEqV66cXnrpJa1du9ZJNQcAAAAAAEBq5fKkWmxsrEqVKqXx48cnu3727Nnq3r27PvroI+3YsUNVqlRRaGiooqOj7ducOHFC27Zt01dffaW33npLMTExzqo+AAAAAAAAUiGXJ9VCQ0M1ZMgQNWnSJNn1o0ePVvv27dWhQwcVLVpUY8eOVe7cuTVx4kT7Njly5JAkFS9eXEFBQTp06NB94924cUMxMTGJFgAAAAAAAMARLk+qPcjNmze1bds21apVK1F5rVq1tHHjRknSn3/+qRs3bkiSTp8+rX379ikwMPC++xw+fLh8fX3tS+7cua07AAAAAAAAADyTnuik2sWLFxUXFyd/f/9E5f7+/jp79qwkaf/+/QoODlapUqX06quvaty4cfLz87vvPvv166crV67Yl1OnTll6DAAAAAAAAHj2pHV1BR6GzWZL9NkYYy+rVKmSfv3114fel6enpzw9PRUeHq7w8HDFxcWlaF0BAAAAAADw7HuslmoJ3S6tkjVrVrm5udlbpSU4f/58ktZrjgoLC9O+ffsUFRX1WPsBAAAAAABA6uNQUm3ZsmVq06aN8ufPL3d3d6VPn17e3t56+eWXNXToUP3+++8pWjkPDw+VK1dOkZGRicojIyNVqVKlx9p3eHi4goKCVL58+cfaDwAAAAAAAFKfh+r+uXDhQn3wwQe6cuWK6tatq969eytnzpxKly6d/vjjD+3Zs0crVqzQJ598ojZt2uiTTz5RtmzZHqoC165d05EjR+yfjx8/rp07d8rPz0958uRRz5491apVKwUHB6tixYqaPHmyoqOj9e677z7aEf9/YWFhCgsLU0xMjHx9fR9rX0jMNsj2zxs9JjPAWB4DAAAAAADgfh4qqTZs2DCNHDlS9erVU5o0SRu3NW3aVJL022+/ady4cZoxY4Z69er1UBXYunWrQkJC7J979uwpSWrdurUiIiLUrFkzXbp0SYMHD9aZM2dUvHhxLVmyRHnz5n2o/d8PY6o9m0joAQAAAAAAZ7AZY1J1hiChpdqVK1fk4+Pj6uqkCGcklqT7J5dcmdgiqQYAAAAAAB6VI3mix5qoAAAAAAAAAEiNHE6q/etf/9Knn36apPzzzz/X66+/niKVcgYmKgAAAAAAAMCjeqgx1e62du1aDRgwIEl5nTp1NHLkyBSplDMwUQFSmqu7nro6PgAAAAAAqYnDLdWuXbsmDw+PJOXu7u6KiYlJkUoBAAAAAAAATzKHk2rFixfX7Nmzk5TPmjVLQUFBKVIpAAAAAAAA4EnmcPfP/v3767XXXtPRo0dVvXp1SdLKlSs1c+ZMzZ07N8UraJXw8HCFh4crLi7O1VUBnnp0PQUAAAAApDYOJ9UaNGighQsXatiwYZo3b57SpUunkiVLasWKFXr55ZetqKMlGFMNeDaQ0AMAAAAAuILDSTVJqlevnurVq5fSdQEAAAAAAACeCg6PqQYAAAAAAACkdg/VUs3Pz0+HDh1S1qxZlTlzZtls9+9u9ccff6RY5azEmGoAHhddTwEAAAAg9XqopNqYMWPk7e0tSRo7dqyV9XEaxlQDAAAAAADAo3qopFrr1q2T/X8AAAAAAAAgNXqkiQok6fz58zp//rzi4+MTlZcsWfKxKwUAAAAAAAA8yRxOqm3btk2tW7fW/v37ZUzisX5sNhtjlAEAAAAAAOCZ53BSrW3btipUqJCmTp0qf3//B05a8CRjogIAAAAAAAA8KoeTasePH9f8+fNVoEABK+rjNExUAAAAAAAAgEeVxtF/UKNGDe3atcuKugAAAAAAAABPBYdbqk2ZMkWtW7fWnj17VLx4cbm7uyda36BBgxSrHAAAAAAAAPAkcjiptnHjRq1fv17//e9/k6xjogIAcB7bIOvHtDQDzD9vBAAAAACpkMPdP7t27apWrVrpzJkzio+PT7SQUAMAAAAAAEBq4HBS7dKlS+rRo4f8/f2tqA8AAAAAAADwxHM4qdakSROtXr3airoAAAAAAAAATwWHx1QrVKiQ+vXrp/Xr16tEiRJJJiro2rVrilXOSuHh4QoPD6fLKgA8AsZzAwAAAJDaPdLsnxkzZtTatWu1du3aROtsNttTk1QLCwtTWFiYYmJi5Ovr6+rqAAAAAAAA4CnicFLt+PHjVtQDAAAAAAAAeGo4PKYaAAAAAAAAkNo53FItLi5OERERWrlypc6fP6/4+PhE61etWpVilQMA4F6M5wYAAADgSeBwUq1bt26KiIhQvXr1VLx4cdls1j/cAAAAAAAAAE8Sh5Nqs2bN0pw5c1S3bl0r6gMAAAAAAAA88RweU83Dw0MFChSwoi6P5fr168qbN6/ef/99V1cFAAAAAAAAzziHk2q9evXSuHHjZMyTNd7M0KFDVaFCBVdXAwAAAAAAAKnAQ3X/bNKkSaLPq1at0n//+18VK1ZM7u7uidbNnz8/5Wr3kA4fPqwDBw6ofv362rNnj9PjAwAAAAAAIHV5qJZqvr6+iZbGjRvr5ZdfVtasWZOsc9S6detUv3595ciRQzabTQsXLkyyzYQJE5QvXz55eXmpXLly+uWXXxKtf//99zV8+HCHYwMAAAAAAACP4qFaqk2bNs2yCsTGxqpUqVJq27atXnvttSTrZ8+ere7du2vChAmqXLmyJk2apNDQUO3bt0958uTRokWLVKhQIRUqVEgbN260rJ4AAAAAAABAAodn/6xevbrmz5+vTJkyJSqPiYlRo0aNtGrVKof2FxoaqtDQ0PuuHz16tNq3b68OHTpIksaOHatly5Zp4sSJGj58uDZv3qxZs2Zp7ty5unbtmm7duiUfHx99/PHHye7vxo0bunHjRqJ6AwAAAAAAAI5weKKCNWvW6ObNm0nK//777yTdMh/XzZs3tW3bNtWqVStRea1ateyt0oYPH65Tp07pxIkTGjlypDp27HjfhFrC9nd3V82dO3eK1hkAAAAAAADPvoduqbZ79277/+/bt09nz561f46Li9PSpUuVM2fOFK3cxYsXFRcXJ39//0Tl/v7+ieI7ol+/furZs6e+/vprff3114qLi9ORI0dSoroAAAAAAABIJR46qVa6dGnZbDbZbDZVr149yfp06dLpyy+/TNHKJbDZbIk+G2OSlElSmzZt/nFfnp6e8vT0VK9evdSrVy/FxMQ80gQLAIDUxzYo6bUnpZkBxvIYAAAAAB7fQyfVjh8/LmOMAgMDtWXLFmXLls2+zsPDQ9mzZ5ebm1uKVi5r1qxyc3NL0irt/PnzSVqvAQAAAAAAAM7y0Em1vHnzSpLi4+Mtq8y9PDw8VK5cOUVGRqpx48b28sjISDVs2PCx9h0eHq7w8HDFxcU9bjUBAHAKWsoBAAAAT46HSqotXrxYoaGhcnd31+LFix+4bYMGDRyqwLVr1xKNaXb8+HHt3LlTfn5+ypMnj3r27KlWrVopODhYFStW1OTJkxUdHa13333XoTj3CgsLU1hYGN0/AQB4CCT0AAAAgMQeKqnWqFEjnT17VtmzZ1ejRo3uu53NZnO45dfWrVsVEhJi/9yzZ09JUuvWrRUREaFmzZrp0qVLGjx4sM6cOaPixYtryZIl9pZzj4qWagAAAAAAAHhUD5VUu7vLZ0p3/6xWrZqMefCb6c6dO6tz584pGpeWagAAAAAAAHhUaRzZ+NatWwoJCdGhQ4esqg8AAAAAAADwxHvoiQokyd3dXXv27JHNZv24Klaj+ycAAE8HxnMDAADAk8ihlmqS9NZbb2nq1KlW1MWpwsLCtG/fPkVFRbm6KgAAAAAAAHjKONRSTZJu3rypKVOmKDIyUsHBwcqQIUOi9aNHj06xygEAAAAAAABPIoeTanv27FHZsmUlKcnYak9Tt1C6fwIAAAAAAOBROZxUW716tRX1cDpm/wQAAAAAAMCjcnhMNQAAAAAAACC1c7ilmiRFRUVp7ty5io6O1s2bNxOtmz9/fopUDAAAAAAAAHhSOdxSbdasWapcubL27dunBQsW6NatW9q3b59WrVpFN0oAAAAAAACkCg4n1YYNG6YxY8bop59+koeHh8aNG6f9+/eradOmypMnjxV1tER4eLiCgoJUvnx5V1cFAAAAAAAATxmHk2pHjx5VvXr1JEmenp6KjY2VzWZTjx49NHny5BSvoFXCwsK0b98+RUVFuboqAAAAAAAAeMo4nFTz8/PT1atXJUk5c+bUnj17JEmXL1/W9evXU7Z2AAAAAAAAwBPI4YkKqlSposjISJUoUUJNmzZVt27dtGrVKkVGRqpGjRpW1BEAAAAAAAB4ojicVBs/frz+/vtvSVK/fv3k7u6u9evXq0mTJurfv3+KVxAAAAAAAAB40jicVPPz87P/f5o0adSnTx/16dMnRSvlDOHh4QoPD1dcXJyrqwIAAAAAAICnjMNJtZiYmGTLbTabPD095eHh8diVcoawsDCFhYUpJiZGvr6+rq4OAAAAAAAAniIOJ9UyZcokm8123/W5cuVSmzZtNGDAAKVJ4/A8CAAAAE8M26D73/OkJDPAuCz+/WIDAADgwRxOqkVEROijjz5SmzZt9MILL8gYo6ioKE2fPl3//ve/deHCBY0cOVKenp768MMPragzAAAAAAAA4FIOJ9WmT5+uUaNGqWnTpvayBg0aqESJEpo0aZJWrlypPHnyaOjQoSTVAAAAAAAA8ExyuH/mpk2bVKZMmSTlZcqU0aZNmyRJL730kqKjox+/dgAAAAAAAMATyOGkWq5cuTR16tQk5VOnTlXu3LklSZcuXVLmzJkfv3YAAAAAAADAE8jh7p8jR47U66+/rv/+978qX768bDaboqKidODAAc2bN0+SFBUVpWbNmqV4ZVNSeHi4wsPDFRcX5+qqAAAAAAAA4CnjcFKtQYMGOnjwoL766isdOnRIxhiFhoZq4cKFCggIkCR16tQppeuZ4sLCwhQWFqaYmBj5+vq6ujoAAAAAAAB4ijicVJOkgIAAffrppyldFwAAAAAAAOCp8EhJtcuXL2vq1Knav3+/bDabgoKC1K5dO1p8AQAAPCNsg2yWxzADjOUxAAAArOJwUm3r1q2qXbu20qVLpxdeeEHGGI0ePVpDhw7V8uXLVbZsWSvqCQAAgFSChB4AAHgaOJxU69Gjhxo0aKCvv/5aadPe+ee3b99Whw4d1L17d61bty7FKwkAAAAAAAA8SR6ppdrdCTVJSps2rfr06aPg4OAUrRwAAAAAAADwJErj6D/w8fFRdHR0kvJTp07J29s7RSrliKtXr6p8+fIqXbq0SpQooa+//trpdQAAAAAAAEDq4nBLtWbNmql9+/YaOXKkKlWqJJvNpvXr16t3795q3ry5FXV8oPTp02vt2rVKnz69rl+/ruLFi6tJkybKkiWL0+sCAAAAAACA1MHhpNrIkSNls9n01ltv6fbt25Ikd3d3derUSZ9++mmKV/CfuLm5KX369JKkv//+W3FxcTKGgWcBAADwaJgoAQAAPAyHu396eHho3Lhx+vPPP7Vz507t2LFDf/zxh8aMGSNPT0+HK7Bu3TrVr19fOXLkkM1m08KFC5NsM2HCBOXLl09eXl4qV66cfvnll0TrL1++rFKlSilXrlzq06ePsmbN6nA9AAAAAAAAgIflcFItQfr06VWiRAmVLFnS3lLsUcTGxqpUqVIaP358sutnz56t7t2766OPPtKOHTtUpUoVhYaGJhrXLVOmTNq1a5eOHz+uH374QefOnXvk+gAAAAAAAAD/5KG6fzZp0uShdzh//nyHKhAaGqrQ0ND7rh89erTat2+vDh06SJLGjh2rZcuWaeLEiRo+fHiibf39/VWyZEmtW7dOr7/+erL7u3Hjhm7cuGH/HBMT41B9AQAAAAAAgIdKqvn6+lpdj2TdvHlT27ZtU9++fROV16pVSxs3bpQknTt3TunSpZOPj49iYmK0bt06derU6b77HD58uAYNGmRpvQEAAIBH4crx3BhLDgAAxzxUUm3atGlW1yNZFy9eVFxcnPz9/ROV+/v76+zZs5Kk06dPq3379jLGyBij9957TyVLlrzvPvv166eePXvaP8fExCh37tzWHAAAAAAAAACeSQ7P/ukKNlvit2bGGHtZuXLltHPnzofel6enpzw9PRUeHq7w8HDFxcWlZFUBAAAAAACQCjzURAV16tSxd7d8kKtXr+qzzz5TeHj4Y1dMkrJmzSo3Nzd7q7QE58+fT9J6zVFhYWHat2+foqKiHms/AAAAAAAASH0eqqXa66+/rqZNm8rb21sNGjRQcHCwcuTIIS8vL/3555/at2+f1q9fryVLlujVV1/V559/niKV8/DwULly5RQZGanGjRvbyyMjI9WwYcPH2jct1QAAAIAnA+O5AQCeRg+VVGvfvr1atWqlefPmafbs2fr66691+fJlSXe6ZgYFBal27dratm2bChcu7FAFrl27piNHjtg/Hz9+XDt37pSfn5/y5Mmjnj17qlWrVgoODlbFihU1efJkRUdH691333Uozr3CwsIUFhammJgYl03EAAAAAAAAgKfTQ4+p5uHhoRYtWqhFixaSpCtXruivv/5SlixZ5O7u/sgV2Lp1q0JCQuyfEyYRaN26tSIiItSsWTNdunRJgwcP1pkzZ1S8eHEtWbJEefPmfeSYAAAAAJCAlnIAgEfxyBMV+Pr6pkgLr2rVqsmYB19gOnfurM6dOz92rLvR/RMAAAAAAACP6qEmKngWMVEBAAAAAAAAHlWqTaoBAAAAAAAAjyrVJtXCw8MVFBSk8uXLu7oqAAAAAAAAeMqk2qQa3T8BAAAAAADwqBxOqgUGBurSpUtJyi9fvqzAwMAUqRQAAAAAAADwJHM4qXbixIlkZ8y8ceOGfvvttxSplDPQ/RMAAAAAAACPKu3Dbrh48WL7/y9btky+vr72z3FxcVq5cqUCAgJStHJWCgsLU1hYmGJiYhIdCwAAAAAAAPBPHjqp1qhRI0mSzWZT69atE61zd3dXQECARo0alaKVAwAAAAAAAJ5ED51Ui4+PlyTly5dPUVFRypo1q2WVAgAAAAAAAJ5kD51US3D8+HEr6uF04eHhCg8PT3Z8OAAAAABwBtsgm+UxzABjeQwASI0cTqpJ0sqVK7Vy5UqdP3/e3oItwTfffJMiFbMaY6oBAAAASM1I6AHA43E4qTZo0CANHjxYwcHBev7552WzWX8iBgAAAAAAAJ4kDifVvvrqK0VERKhVq1ZW1AcAAAAAAAB44qVx9B/cvHlTlSpVsqIuAAAAAAAAwFPB4aRahw4d9MMPP1hRFwAAAAAAAOCp4HD3z7///luTJ0/WihUrVLJkSbm7uydaP3r06BSrnJWY/RMAAAAAAACPyuGk2u7du1W6dGlJ0p49exKte5omLWD2TwAAAAAAADwqh5Nqq1evtqIeAAAAAAAAwFPD4THVAAAAAAAAgNTO4ZZqISEhD+zmuWrVqseqEAAAAAAAAPCkczipljCeWoJbt25p586d2rNnj1q3bp1S9QIAAAAAAACeWA4n1caMGZNs+cCBA3Xt2rXHrhAAAAAAAADwpEuxMdXefPNNffPNNym1O8uFh4crKChI5cuXd3VVAAAAAAAA8JRJsaTapk2b5OXllVK7s1xYWJj27dunqKgoV1cFAAAAAAAATxmHu382adIk0WdjjM6cOaOtW7eqf//+KVYxAAAAAAAA4EnlcFLN19c30ec0adKocOHCGjx4sGrVqpViFQMAAAAAPJtsg2yWxzADjOUxAKRuDifVpk2bZkU9AAAAAAAAgKeGw0m1BNu2bdP+/ftls9kUFBSkMmXKpGS9AAAAAAAAgCeWw0m18+fP64033tCaNWuUKVMmGWN05coVhYSEaNasWcqWLZsV9QQAAAAAAACeGA7P/tmlSxfFxMRo7969+uOPP/Tnn39qz549iomJUdeuXa2o4wOdOnVK1apVU1BQkEqWLKm5c+c6vQ4AAAAAAABIXRxuqbZ06VKtWLFCRYsWtZcFBQUpPDzcJRMVpE2bVmPHjlXp0qV1/vx5lS1bVnXr1lWGDBmcXhcAAAAAAACkDg4n1eLj4+Xu7p6k3N3dXfHx8SlSKUc8//zzev755yVJ2bNnl5+fn/744w+SagAAAAAAALCMw90/q1evrm7duun333+3l/3222/q0aOHatSo4XAF1q1bp/r16ytHjhyy2WxauHBhkm0mTJigfPnyycvLS+XKldMvv/yS7L62bt2q+Ph45c6d2+F6AAAAAAAAAA/L4aTa+PHjdfXqVQUEBCh//vwqUKCA8uXLp6tXr+rLL790uAKxsbEqVaqUxo8fn+z62bNnq3v37vroo4+0Y8cOValSRaGhoYqOjk603aVLl/TWW29p8uTJDtcBAAAAAAAAcITD3T9z586t7du3KzIyUgcOHJAxRkFBQapZs+YjVSA0NFShoaH3XT969Gi1b99eHTp0kCSNHTtWy5Yt08SJEzV8+HBJ0o0bN9S4cWP169dPlSpVemC8Gzdu6MaNG/bPMTExj1RvAAAAAAAApF4OJ9USvPLKK3rllVdSsi5J3Lx5U9u2bVPfvn0TldeqVUsbN26UJBlj1KZNG1WvXl2tWrX6x30OHz5cgwYNsqS+AAAAAAAASB0euvvnqlWrFBQUlGzLritXrqhYsWL3HevsUV28eFFxcXHy9/dPVO7v76+zZ89KkjZs2KDZs2dr4cKFKl26tEqXLq1ff/31vvvs16+frly5Yl9OnTqVonUGAAAAAADAs++hW6qNHTtWHTt2lI+PT5J1vr6+eueddzR69GhVqVIlRSsoSTabLdFnY4y97KWXXnJo1lFPT095enoqPDxc4eHhiouLS9G6AgAAAAAA4Nn30C3Vdu3apTp16tx3fa1atbRt27YUqVSCrFmzys3Nzd4qLcH58+eTtF5zVFhYmPbt26eoqKjH2g8AAAAAAABSn4dOqp07d07u7u73XZ82bVpduHAhRSqVwMPDQ+XKlVNkZGSi8sjIyH+ckOCfhIeHKygoSOXLl3+s/QAAAAAAACD1eejunzlz5tSvv/6qAgUKJLt+9+7dev755x2uwLVr13TkyBH75+PHj2vnzp3y8/NTnjx51LNnT7Vq1UrBwcGqWLGiJk+erOjoaL377rsOx7pbWFiYwsLCFBMTI19f38faFwAAAAAAAFKXh06q1a1bVx9//LFCQ0Pl5eWVaN1ff/2lAQMG6NVXX3W4Alu3blVISIj9c8+ePSVJrVu3VkREhJo1a6ZLly5p8ODBOnPmjIoXL64lS5Yob968DscCAAAAAAAAUsJDJ9X+/e9/a/78+SpUqJDee+89FS5cWDabTfv377cP+P/RRx85XIFq1arJGPPAbTp37qzOnTs7vO8HYaICAAAAAEidbINs/7zRYzIDHvycC+Dp99BJNX9/f23cuFGdOnVSv3797Ikwm82m2rVra8KECY89eYAz0f0TAAAAAAAAj+qhk2qSlDdvXi1ZskR//vmnjhw5ImOMChYsqMyZM1tVPwAAAAAAAOCJ41BSLUHmzJmf+lkz6f4JAAAAAACAR5XG1RVwlbCwMO3bt09RUVGurgoAAAAAAACeMqk2qQYAAAAAAAA8qlSbVAsPD1dQUNBT340VAAAAAAAAzpdqk2p0/wQAAAAAAMCjSrVJNQAAAAAAAOBRkVQDAAAAAAAAHJRqk2qMqQYAAAAAAIBHlWqTaoypBgAAAAAAgEeVapNqAAAAAAAAwKMiqQYAAAAAAAA4iKQaAAAAAAAA4CCSagAAAAAAAICDUm1Sjdk/AQAAAAAA8KjSuroCrhIWFqawsDDFxMTI19fX1dUBAAAAAKQCtkE2y2OYAcbyGABScUs1AAAAAAAA4FGRVAMAAAAAAAAcRFINAAAAAAAAcBBJNQAAAAAAAMBBJNUAAAAAAAAAB6XapFp4eLiCgoJUvnx5V1cFAAAAAAAAT5lUm1QLCwvTvn37FBUV5eqqAAAAAAAA4CmTapNqAAAAAAAAwKNK6+oKAAAAAAAA69kG2SyPYQYYy2MATwpaqgEAAAAAAAAOIqkGAAAAAAAAOIikGgAAAAAAAOCgZ2JMtcaNG2vNmjWqUaOG5s2b5+rqAAAAAACAuzhjPDeJMd3gXM9ES7WuXbtqxowZrq4GAAAAAAAAUolnIqkWEhIib29vV1cDAAAAAAAAqYTLk2rr1q1T/fr1lSNHDtlsNi1cuDDJNhMmTFC+fPnk5eWlcuXK6ZdffnF+RQEAAAAAAID/z+VJtdjYWJUqVUrjx49Pdv3s2bPVvXt3ffTRR9qxY4eqVKmi0NBQRUdHO7mmAAAAAAAAwB0un6ggNDRUoaGh910/evRotW/fXh06dJAkjR07VsuWLdPEiRM1fPhwh+PduHFDN27csH+OiYlxvNIAAAAAAABI1VzeUu1Bbt68qW3btqlWrVqJymvVqqWNGzc+0j6HDx8uX19f+5I7d+6UqCoAAAAAAABSkSc6qXbx4kXFxcXJ398/Ubm/v7/Onj1r/1y7dm29/vrrWrJkiXLlyqWoqKj77rNfv366cuWKfTl16pRl9QcAAAAAAMCzyeXdPx+GzWZL9NkYk6hs2bJlD70vT09PeXp6Kjw8XOHh4YqLi0uxegIAAAAAACB1eKJbqmXNmlVubm6JWqVJ0vnz55O0XnNUWFiY9u3b98BWbQAAAAAAAEBynuikmoeHh8qVK6fIyMhE5ZGRkapUqdJj7Ts8PFxBQUEqX778Y+0HAAAAAAAAqY/Lu39eu3ZNR44csX8+fvy4du7cKT8/P+XJk0c9e/ZUq1atFBwcrIoVK2ry5MmKjo7Wu++++1hxw8LCFBYWppiYGPn6+j7uYQAAAAAAACAVcXlSbevWrQoJCbF/7tmzpySpdevWioiIULNmzXTp0iUNHjxYZ86cUfHixbVkyRLlzZvXVVUGAAAAAABAKufypFq1atVkjHngNp07d1bnzp1TNC4TFQAAAAAAAOBRPdFjqlmJiQoAAAAAAADwqFJtUo2JCgAAAAAAAPCoUm1SjZZqAAAAAAAAeFSpNqkGAAAAAAAAPCqSagAAAAAAAICDUm1SjTHVAAAAAAAA8KhSbVKNMdUAAAAAAADwqFJtUg0AAAAAAAB4VCTVAAAAAAAAAAeldXUFXCU8PFzh4eGKi4tzdVUAAAAAAICFbINslscwA4zlMfBkSbUt1RhTDQAAAAAAAI8q1SbVAAAAAAAAgEdFUg0AAAAAAABwEEk1AAAAAAAAwEGpNqkWHh6uoKAglS9f3tVVAQAAAAAAwFMm1SbVmKgAAAAAAAAAjyrVJtUAAAAAAACAR0VSDQAAAAAAAHAQSTUAAAAAAADAQSTVAAAAAAAAAAeRVAMAAAAAAAAcRFINAAAAAAAAcFBaV1fAVcLDwxUeHq64uDhXVwUAAAAAADyjbINslscwA8wTFzs1SLUt1cLCwrRv3z5FRUW5uioAAAAAAAB4yqTapBoAAAAAAADwqEiqAQAAAAAAAA4iqQYAAAAAAAA4iKQaAAAAAAAA4CCSagAAAAAAAICDnomk2k8//aTChQurYMGCmjJliqurAwAAAAAAgGdcWldX4HHdvn1bPXv21OrVq+Xj46OyZcuqSZMm8vPzc3XVAAAAAAAA8Ix66luqbdmyRcWKFVPOnDnl7e2tunXratmyZa6uFgAAAAAAAJ5hLk+qrVu3TvXr11eOHDlks9m0cOHCJNtMmDBB+fLlk5eXl8qVK6dffvnFvu73339Xzpw57Z9z5cql3377zRlVBwAAAAAAQCrl8qRabGysSpUqpfHjxye7fvbs2erevbs++ugj7dixQ1WqVFFoaKiio6MlScaYJP/GZrNZWmcAAAAAAACkbi4fUy00NFShoaH3XT969Gi1b99eHTp0kCSNHTtWy5Yt08SJEzV8+HDlzJkzUcu006dPq0KFCvfd340bN3Tjxg375ytXrkiSYmJiHvdQnhx/OyfMfb8zJ8Qn9hMWn9jOj+3q+MR2fmxXxyf2Mxuf2E9YfGI7P7ar4xPb+bFdHZ/Yz2x8Yj8bEo4nuUZcSZgniCSzYMEC++cbN24YNzc3M3/+/ETbde3a1VStWtUYY8ytW7dMgQIFzOnTp01MTIwpUKCAuXjx4n1jDBgwwEhiYWFhYWFhYWFhYWFhYWFhYWFJdjl16tQ/5rFc3lLtQS5evKi4uDj5+/snKvf399fZs2clSWnTptWoUaMUEhKi+Ph49enTR1myZLnvPvv166eePXvaP8fHx+uPP/5QlixZUm230ZiYGOXOnVunTp2Sj49Pqont6vjE5mdO7Gc/PrH5maeW2K6OT2x+5sR+9uMTm595aont6viuPvYngTFGV69eVY4cOf5x2yc6qZbg3mSXMSZRWYMGDdSgQYOH2penp6c8PT0TlWXKlOmx6/gs8PHxcdkfjStjuzo+sV0jtR57ao3t6vjEdo3Ueux878ROTfGJ7Rqp9dhTa2xXx0+tsV0d39XH7mq+vr4PtZ3LJyp4kKxZs8rNzc3eKi3B+fPnk7ReAwAAAAAAAJzliU6qeXh4qFy5coqMjExUHhkZqUqVKrmoVgAAAAAAAEjtXN7989q1azpy5Ij98/Hjx7Vz5075+fkpT5486tmzp1q1aqXg4GBVrFhRkydPVnR0tN59910X1vrZ4unpqQEDBiTpFvusx3Z1fGLzMyf2sx+f2PzMU0tsV8cnNj9zYj/78YnNzzy1xHZ1fFcf+9PG9v9n3XSZNWvWKCQkJEl569atFRERIUmaMGGCRowYoTNnzqh48eIaM2aMqlat6uSaAgAAAAAAAHe4PKkGAAAAAAAAPG2e6DHVAAAAAAAAgCcRSTUAAAAAAADAQSTVAAAAAAAAAAeRVAMAAAAAAAAcRFItFbp9+7bSpk2rPXv2uLoqTufm5qbz588nKb906ZLc3NxcUCM4w9GjR/Xvf/9bzZs3t//8ly5dqr1797q4Zta7fPmypkyZon79+umPP/6QJG3fvl2//fabpXFPnTql06dP2z9v2bJF3bt31+TJky2Ne/v2bQ0aNEinTp2yNM6DbN++Xb/++qv986JFi9SoUSN9+OGHunnzpqWxo6Ojldz8Q8YYRUdHWxo7MDBQly5dSlJ++fJlBQYGWhr7bjdv3tTBgwd1+/Ztp8Vct25dsvFu376tdevWOaUON2/e1OnTpxUdHZ1ocVZsZ3/nCVx1jkuwdetWffvtt/ruu++0detWp8QEXOn48eNO/VsfPHiwrl+/nqT8r7/+0uDBg51Wj9QoPj5ehw4d0vr167Vu3bpEy7PM1dcVPH2Y/TOVyp8/v+bPn69SpUq5JP7KlSu1cuVKnT9/XvHx8YnWffPNN5bFTZMmjc6ePavs2bMnKv/999+VP39+/fXXXyke84svvnjobbt27ZqisTNnziybzfZQ2yZcNJ41a9euVWhoqCpXrqx169Zp//79CgwM1IgRI7RlyxbNmzfP0vjnzp3T+++/b/99v/eUGxcXZ1ns3bt3q2bNmvL19dWJEyd08OBBBQYGqn///jp58qRmzJhhWewqVaro7bffVqtWrXT27FkVLlxYxYoV06FDh9S1a1d9/PHHlsXOmDGj9uzZo4CAAMtiPEj58uXVt29fvfbaazp27JiKFSumxo0bKyoqSvXq1dPYsWMti+3m5qYzZ84kOcddunRJ2bNnt/T37X7n13PnzilPnjy6ceOGZbEl6fr16+rSpYumT58uSTp06JACAwPVtWtX5ciRQ3379rUstiu/98OHD6tdu3bauHFjonJjjGw2m6WxXfmdS649x50+fVrNmzfXhg0blClTJkl3HsQqVaqkmTNnKnfu3JbFTnD58mXNmzdPR48eVe/eveXn56ft27fL399fOXPmtCSmK69pklS9enXNnz/f/p0niImJUaNGjbRq1SpL4x89elTTpk3T0aNHNW7cOGXPnl1Lly5V7ty5VaxYMUtjPwnxJcnDw0O7du1S0aJFnRLPlefX6dOnK2vWrKpXr54kqU+fPpo8ebKCgoI0c+ZM5c2b17LYktSuXTuNGzdO3t7eicpjY2PVpUsXS5+ZNm/erBYtWujkyZNJ/s6tvrbMmDFDzZo1k6enZ6LymzdvatasWXrrrbcsi+3K64p05zq6Zs2aZJ+Rrbx3lu68HI2KilKWLFkSlV++fFlly5bVsWPHLI3/NCOplkpNmzZNc+fO1XfffSc/Pz+nxh40aJAGDx6s4OBgPf/880mSPgsWLEjxmAmJrR49euiTTz5RxowZ7evi4uK0bt06nThxQjt27Ejx2Pny5Xuo7Ww2W4qfrBIedKQ7Nx9DhgxR7dq1VbFiRUnSpk2btGzZMvXv3189evRI0djJuXz5srZs2ZLshcKqC2TFihX1+uuvq2fPnvL29tauXbvsF41GjRpZ/tYpNDRU0dHReu+995L9fW/YsKFlsWvWrKmyZctqxIgRiY5948aNatGihU6cOGFZ7MyZM2vz5s0qXLiwvvjiC82ePVsbNmzQ8uXL9e6771p6YW7UqJEaNWqkNm3aWBbjQXx9fbV9+3blz59fn332mVatWqVly5Zpw4YNeuONNyxtRZcmTRqdO3dO2bJlS1R+8uRJBQUFKTY2NsVjLl68WNKd73369Ony9fW1r4uLi9PKlSsVGRmpgwcPpnjsu3Xr1k0bNmzQ2LFjVadOHe3evVuBgYFavHixBgwYYMn5PcH9vvdDhw4pODhYMTExlsWuXLmy0qZNq759+yZ7jrHy5Zkrv3PJtee4WrVqKSYmRtOnT1fhwoUlSQcPHlS7du2UIUMGLV++3LLYkuse/Fx5TZPun7w/f/68cubMqVu3blkW29Uv6Zwdv0mTJsmWL1q0SNWrV7cneubPn5+ice91v/PrqlWr1KxZM124cMGy2IULF9bEiRNVvXp1bdq0STVq1NDYsWP1008/KW3atJYf+/0SihcvXtRzzz1naYvB0qVLq1ChQho0aFCyf+t3X+tTmisTqa68rnz99dfq1KmTsmbNqueeey7Rd26z2bR9+3bLYkuufzn6NEvr6grANb744gsdOXJEOXLkUN68eZUhQ4ZE6638o/3qq68UERGhVq1aWRbjXmPGjJF05839V199lairp4eHhwICAvTVV19ZEvv48eOW7PdhtG7d2v7/r732mgYPHqz33nvPXta1a1eNHz9eK1assDyp9uOPP6ply5aKjY2Vt7d3kguFVUm1X3/9VT/88EOS8mzZsiXbVS2lrV+/Xr/88otKly5teax7RUVFadKkSUnKc+bMqbNnz1oa+9atW/Y3jCtWrFCDBg0kSUWKFNGZM2csjR0aGqp+/fppz549KleuXJLzW0JdrGKMsSeNV6xYoVdffVWSlDt3bl28eNGSmD179pR052+pf//+Sp8+vX1dXFyc/ve//1n2O9ioUSP7/999zpEkd3d3BQQEaNSoUZbEvtvChQs1e/Zsvfjii4nOL0FBQTp69KglMRMeOm02m9q0aZPorXpcXJx2796tSpUqWRI7wc6dO7Vt2zYVKVLE0jjJccV3fjdXnuN++eUXbdy40Z5Qk+48gH/55ZeqXLmypbGlO3/zbdq0sT/4JQgNDVWLFi0si+uqa9ru3bvt/79v375EP9+4uDgtXbrUstZ5Cfr27ashQ4bYX9IlCAkJ0bhx4yyN7Yr4CxcuVNWqVZN9OZwxY0ZLkyrS//W2sNlsKlSoUKJzTFxcnK5du6Z3333X0jqcOnVKBQoUkHTn+/jXv/6lt99+W5UrV1a1atUsixsTEyNjjIwxunr1qry8vOzr4uLitGTJkiSJj5R2+PBhzZs3z378zpTQ0vpep0+ftvz3zpXXlSFDhmjo0KH64IMPLI1zr4SXo5K0bNmyZF+Ouqr3x9OCpFoqdfdDkLPdvHnT8oeMeyUktkJCQjR//nxlzpzZqfGfBMuWLdNnn32WpLx27dqWd9GRpF69eqldu3YaNmxYogd+q2XKlElnzpxJclO4Y8cOy2/ApTuJFFc1CPby8kq2hczBgweTvPFNacWKFdNXX32levXqKTIyUp988omkO12t721WntI6deokSRo9enSSdVZ3WZCk4OBgDRkyRDVr1tTatWs1ceJESXfOQ/7+/pbETGgRZIzRr7/+Kg8PD/s6Dw8PlSpVSu+//74lsRMSiPny5dPWrVst//nez4ULF5J9yIiNjX3obvCOSrjxNMbI29tb6dKls6/z8PDQiy++qI4dO1oSO0FQUJBlydp/4orv/G6uPMflyZMn2VZRt2/fdsq1xVUPfq66ppUuXdqeYKlevXqS9enSpdOXX35paR1c/ZLO2fF/+OEH9e7dW61bt1bbtm3t5d99952GDh2qoKCgFI95t7Fjx8oYo3bt2mnQoEGJHvQTXogn9LywSsaMGXXp0iXlyZNHy5cvt7+A9vLysmTImASZMmVKlFC8l81m06BBgyyLL0kVKlTQkSNHnJpUK1OmjP24a9SoobRp/y9VERcXp+PHj6tOnTqW1sGV15U///xTr7/+uqUxkpOQF7DZbC59Ofo0I6mWSg0YMMBlsTt06KAffvhB/fv3d3rs1atX2/8/4abQ6hv/hBYkDyO5JEBKyZIlixYsWKDevXsnKl+4cKFTHoJ/++03de3a1akJNUlq0aKFPvjgA82dO1c2m03x8fHasGGD3n//fUvHZEgwduxY9e3bV5MmTXL6W56GDRtq8ODBmjNnjqQ7v+vR0dH28b6s9Nlnn6lx48b6/PPP1bp1a3sXtMWLF+uFF16wNPa9XYudbezYsWrZsqUWLlyojz76yH5DOm/ePMteKCSc29q2batx48bJx8fHkjj3c+vWLQUEBOjSpUsuS6qVL19eP//8s7p06SLp/87tX3/9tWUPXtOmTZMkBQQE6P3330/SKtIZPvvsM/Xp00fDhg1TiRIl5O7unmi9lb8LrvjO7+bKc9yIESPUpUsXhYeHq1y5crLZbNq6dau6deumkSNHWhpbct2Dn6uuacePH5cxRoGBgdqyZUuiY/Tw8FD27Nktn3DK1S/pnB3/jTfeUMWKFfXmm2/qp59+0pQpU5z6Ujrh4T5fvnz2bu53i4uL08KFCy1tKPDKK6+oQ4cOKlOmjA4dOmQfW23v3r2W/v6vXr1axhhVr15d//nPfxIN1ePh4aG8efMqR44clsWXpC5duqhXr146e/ZssteWkiVLpnjMhJ/lzp07Vbt27UTD9SQkUq0+t7vyuvL666/bh0lxprtfjkZFRSlr1qxOjf8sYEy1VMwVA9xKd8ZgmTFjhkqWLKmSJUsmOUlbmViSpKlTp2rMmDE6fPiwJKlgwYLq3r27OnToYEm8kJCQh9rOZrNZOsBuRESE2rdvrzp16tgfdjZv3qylS5dqypQplo8/1aRJE73xxhtq2rSppXHudevWLbVp00azZs2SMUZp06ZVXFycWrRooYiICEtuwu+dICI2Nla3b99W+vTpk/y+WzlBRExMjOrWrau9e/fq6tWrypEjh86ePauKFStqyZIllicA4uLiFBMTk+gm/MSJE8qQIYPlb/sS/P3334m6TbjS33//LTc3tyS/A1Y5ffq0bDabUx72pDutJTZu3KiCBQs6Jd69Nm7cqDp16qhly5aKiIjQO++8o71792rTpk1au3atypUr55J6WS1NmjsTud/7gsgZExW4+jt35Tkuc+bMun79un1Gden/Zle/N64V5/m3335bFy5c0Jw5c+Tn56fdu3fLzc1NjRo1UtWqVVN0QpQn5Zrman369NGmTZs0d+5cFSpUSNu3b9e5c+f01ltv6a233rL8hbWr4sfHx2vQoEGaNm2avv76a9WvX187d+60vKXa/Rw4cEDffPONpk+frj///NPSWbUvX76sf//73zp16pQ6depkbyU1YMAAeXh46KOPPrIstnRnPNQ8efIkOb9funRJ3377rbp3725Z7IRry91sNptTri3Tp09Xs2bNXHL/5srryvDhwzV69GjVq1cv2URmSk9oh5RDUi2VcuXMJg9KMlmdWOrfv7/GjBmjLl26JBqsf/z48erWrZuGDBliWewnwf/+9z998cUX2r9/v4wxCgoKUteuXVWhQgXLY0+dOlWDBw9W27Ztk71QWD3O1bFjx7R9+3bFx8erTJkylj743z1BxD+5t5m1FVatWmU/9rJly6pmzZqWx3TlDG1xcXEaNmyYvvrqK507d84+I2H//v0VEBCg9u3bWxbb1eLj4zVkyBCNGjVK165dkyR5e3urV69e+uijj5K9SU4pvXr1kru7uz799FPLYvyTX3/9VSNHjtS2bdvsv+8ffPCBSpQoYWlcV86IuHbt2geuf/nlly2LLbnuO7+bK85xrj7PO/PBz9XHei9XzY7nipd0T1L8DRs2qFWrVjp58qR+/fVXpybVYmNjNXv2bE2dOlWbN29WSEiI3njjDTVq1CjVtKoxxmj58uWaOnWqFi1aJB8fH0snaTh58uQD11s986mrGn8kcMV15UGT21kxoV1yVq5cab+Xuff8auVss087kmqplCtnNnGlrFmz6ssvv1Tz5s0Tlc+cOVNdunRx2bg0qcGDHuadMc4VnMuVM7QNHjxY06dP1+DBg9WxY0ft2bNHgYGBmjNnjsaMGaNNmzZZFlu6k0AZM2aM5syZo+jo6CRv0a1sydGvXz9NnTpVgwYNUuXKlWWM0YYNGzRw4EB17NhRQ4cOtSx2ly5dNGPGDBUoUEDBwcFJHuqtboXsSq6eERGplyse/FzJ1bPjSdLRo0e1Y8cOp7ykS44zXxLe69q1azp69KiKFi2aaOxOq2zatElTpkzRnDlzVLBgQbVs2VIffPCBdu/e7ZSk3t0TZNzNZrPJy8tLefLkSTRBjRVOnDihb775RhEREfrtt9/UokULtW7dWiEhIZYnUl3FlY0/UrNBgwZp8ODBCg4OTvZeZsGCBS6q2ZOPpFoq5evrq+3btyt//vyJkmonT55U4cKF9ffffzulHs7unpQ5c2Zt2bIlyQ3IoUOH9MILL+jy5cuW1yEqKkpz585N9mHbiqm5kxtzJTnOHoPJWf71r38pODg4yWQMn3/+ubZs2aK5c+daGn/79u1yd3e3t9pYtGiRpk2bpqCgIA0cODDFb0q/+OKLh97WimbkCTegpUuX1qpVqxKNA5IwQ9ukSZMsTdwXKFBAkyZNUo0aNRKd3w4cOKCKFSvqzz//tCy2dKelxJQpU9SzZ0/1799fH330kU6cOKGFCxfq448/trT5fo4cOfTVV18lafm5aNEide7cWb/99ptlsV3ZCjlBfHy8jhw5kuwb1qpVq1oW19vb22Wz/Ep33uhPnTpV+/fvl81mU1BQkNq1a2f5LGkJzp8/n+x3bsWYO3fr2rWrChQokORvavz48Tpy5EiKdoG8H1cdu6s4+5p2r7x586pz585Onx0vNRs0aJDefPNN5c+f36lxg4KCdP36dbVo0UJvvvmmPYnm7u6uXbt2OSWpliZNmgeOvezu7q5mzZpp0qRJKdpV8caNG5o/f76mTJmijRs32mf1bd68udOO/e4ZIe+WkFAsUKDAA1tWPY4aNWqoXLlyLmv88SS01nLW2N93e/755zVixAi1atXKaTGfGQapUvbs2c327duNMcZkzJjRHD161BhjzLJly0yuXLksjR0XF2cGDRpkfHx8TJo0aUyaNGmMr6+vGTx4sImLi7M09nvvvWd69OiRpLxXr16mc+fOlsY2xpiZM2cad3d3U69ePePh4WFeffVVU7hwYePr62vatGljSUybzWb/npNbEtY/q7JmzWp2796dpHz37t0me/bslscPDg428+bNM8YYc/ToUePp6WmaN29uChQoYLp165bi8QICAhItGTJkMDabzWTOnNlkzpzZ2Gw2kyFDBpMvX74Uj21M4t83m82WZEmfPr2ZOnWqJbETeHl5mRMnThhjEp/f9u7dazJkyGBpbGOMCQwMND/99JM9/pEjR4wxxowbN840b97c0tienp7m4MGDScoPHDhgvLy8LI3taps2bTL58uVL9nfP6nNc0aJF7ddUZ4uKijJ+fn4mZ86cpnHjxqZRo0YmV65cJkuWLGbbtm2Wxt66daspVqyYS75zY4zJkSOH2bp1a5Lybdu2mZw5c1oa29XHbowxK1asMP369TPt27c3bdu2TbRYxdnXtHt5e3vbz+nO0KNHj4derPbaa6+Z4cOHJykfMWKE+de//mVZ3BIlSpg0adKYChUqmC+//NKcP3/eslh3c3d3N61atTLLly838fHx9vK0adOavXv3OqUOCxcuNIULFzZTpkwxu3fvNrt27TJTpkwxRYsWNbNmzTLfffedyZUrl+nVq1eKxs2SJYupUqWKmTRpkvnjjz/s5c489oRzWXLnt4T/Vq1aNVH9UoqPj4/93unu+7gTJ04YT0/PFI93t4EDB5o0adKYF154wTRs2NA0atQo0WK16dOnm+LFixtPT0/j6elpSpQoYWbMmGF5XGOM8fPzs3/vcAxJtVSqY8eOplGjRubmzZsmY8aM5tixY+bkyZOmTJkylt8U9e3b12TLls1MmDDB7Nq1y+zcudOEh4ebbNmymQ8//NDS2O+9957x8fExxYoVM+3btzft27c3xYoVMz4+PvaEm5U3RyVKlDDjx483xvzfRSI+Pt507NjRfPzxx5bEXLNmzUMtzrBmzRrz6quvmvz585sCBQqY+vXrm3Xr1lka08vLyxw4cCBJ+f79+52SZLj7xuDTTz81tWrVMsYYs379essT2N9//72pXLlyouM/cOCAqVKlivnuu+8siXnixAlz/PhxY7PZTFRUlDlx4oR9+f33383t27ctiXu3cuXKmW+//dYYk/hmbODAgeall16yPH769OnNyZMnjTHGPPfcc/bExtGjR42Pj4+lsV944QXTpUuXJOXvvfeeqVChgqWxExw+fNgsXbrUXL9+3RhjEj0MWalUqVLm9ddfN/v27TN//vmnuXz5cqLFSsuWLTO1atUyx48ftzROcl566SXTpk0bc+vWLXvZrVu3TOvWrU2VKlUsjV2iRAnTuHFjs3nzZnP8+PFEf+8JiW0reXp6msOHDycpP3z4sOUPXq4+dlc9+LnymmaMMe3atTMTJ060PE6CatWqJVq8vb1N+vTpTZkyZUyZMmVMhgwZjI+PjwkJCbG8Lq58Sbhnzx7Tr18/ky9fPuPu7m5CQ0PN999/b2JjYy2Lefr0aTNkyBCTP39+kyNHDtOrVy+zfft24+7u7rTEUvny5c3SpUuTlC9dutSUL1/eGGPMggULTGBgYIrGzZQpk6lataqZPHmyuXLlir3cmUm1FStWmAoVKpgVK1aYmJgYExMTY1asWGFefPFF8/PPP5v169ebYsWKmXbt2qV4bFc2/njuueeclsS616hRo0z69OlNnz59zKJFi8zChQtN7969Tfr06c3o0aMtj9+nTx8zePBgy+M8i0iqpVJXrlwxlStXNpkyZTJubm4md+7cxt3d3VStWtVcu3bN0tjPP/+8WbRoUZLyhQsXmhw5clga+96bo/stVt0cpU+f3v7QlSVLFvvN0b59+8xzzz1nScwnxbfffmvSpk1rmjZtasaNG2fGjh1rmjZtatzd3c33339vWdzg4GAzaNCgJOUDBgwwZcuWtSxuAm9vb3Po0CFjjDE1a9Y0Y8eONcYYc/LkScuTeoGBgcm2ntm6dasJCAiwNLYrLV682Pj6+ppPP/3UpE+f3nz++eemQ4cOxsPDwyxfvtzy+IUKFTKbN282xtxJeCS0LJg1a5bJli2bpbHXrFljMmTIYIoWLWratWtn2rdvb4oWLWoyZsxoeQL74sWLpnr16vY32Ak3we3atTM9e/a0NLYxd86vySVYnCFTpkzGw8PDpEmTxmTMmNHeMjRhsZKXl5fZv39/kvK9e/eadOnSWRo7Y8aMLvvOjTGmWLFi5ssvv0xS/sUXX5iiRYtaGtvVx+6qBz9XXtOMMWbYsGEma9aspnXr1mbkyJFm3LhxiRYrjRo1ytSvXz9Ry5w//vjDNGzY0IwcOdLS2Ma4/iVhgvXr15vOnTubbNmyGW9vb6fEXLlypWnZsqVJly6dsdlspnfv3sm2yk5p9zu/3v2dHz9+PMXPtX/99Zf57rvvTEhIiEmXLp1p0qSJmT9/vlMTisWKFTMbNmxIUr5+/XoTFBRkjDEmMjLS5M6dO8Vju7LxhytbawUEBJjp06cnKY+IiHDKfXvXrl3tCd17G5s4ozXu0yytq7ufwjV8fHy0fv16lwxw+8cff6hIkSJJyosUKWL5VOyrV6+2dP//xM/PT1evXpUk5cyZU3v27FGJEiV0+fJlXb9+3fL4rhpvSJKGDh2qESNGqEePHvaybt26afTo0frkk0/UokULS+L2799fr732mo4eParq1atLujNWwsyZMy0fT02SgoODNWTIENWsWVNr167VxIkTJUnHjx+Xv7+/pbHPnDmT7IQAcXFxOnfunKWxJdfN0Fa/fn3Nnj1bw4YNk81m08cff6yyZcvqxx9/1CuvvGJZ3ASNGzfWypUrVaFCBXXr1k3NmzfX1KlTFR0dnej33wovv/yyDh06pPDwcB04cEDGGDVp0kSdO3dWjhw5LI3do0cPubu7Kzo6WkWLFrWXN2vWTD169NCoUaMsjV+hQgUdOXJEBQoUsDROcpwxdtf9+Pj4KDo6Osl19dSpU/L29rY0do0aNbRr1y6XfOeS1LNnT7333nu6cOFCovP7qFGjLP+ZuPrYb968qUqVKjk9riuvaZI0efJkZcyYUWvXrk0y863NZrN0zMpRo0Zp+fLlypw5s70sc+bMGjJkiGrVqqVevXpZFluSihcvrtmzZye5fs6aNcupM3FmyJBB6dKlk4eHh/2e1mrVq1dX9erVdeXKFX3//ff65ptvNHLkSBUvXvy+kwmkhCJFiujTTz/V5MmT7eMF3rp1S59++qn9nPvbb7+l+O++l5eXWrZsqZYtW+ro0aOaNm2aunbtqtu3b2vo0KFq06aNqlevbulEBUePHk12vGUfHx/7LJQFCxa0ZJK3kSNHqm7dusqePbv++usvvfzyy/bZja2ccEmSOnTooB9++EH9+/e3NE5yzpw5k+x5vVKlSjpz5ozl8Xfv3m0fG3bPnj2J1jlzbLenkquzekh9noTuSa7SvHlzM2rUKGOMMUOGDDHZsmUzHTp0MHnz5jWNGze2NLYrxxsyxhgPDw+XddP56aefTKVKlUz69OlNlixZTEhIiNO6vO7atcsUL17c+Pj4mIEDB9rL33vvPcvH13r11VdNyZIlTVRUlL0LXlRUlCldurSpX7++pbEnT55s3NzcjL+/vylVqpQpXbq0fSlTpoylsZ80mzZtMqNGjUq2he6zxN/f3+zcudMYk7i7xrFjx5wylt38+fNNUFCQmTZtmtm6davZtWtXouVZ1aVLF5MrVy4za9YsEx0dbU6dOmVmzpxpcuXKZfkb/QsXLpi6deuagQMHmnnz5plFixYlWpxhwoQJJmfOnPbrWb58+ZJ905/SXH3sruqm48prmqtlzJjRrFy5Mkn5ypUrTcaMGS2Pv2jRIpM2bVrz1ltvmYiICBMREWFatWpl0qZNaxYsWGBp7GPHjpkhQ4aYokWLGjc3NxMSEmK+/vpry7vWP8iOHTuSfZ5ISRs2bDBZsmQx2bJlMzVq1DA1a9Y02bNnN1myZDGbNm0yxhgzY8YMM2LECEvrYcydMal//vln89prrxkPDw/j5+dnabzKlSubOnXqJBpD7/z586ZOnTr2oQUiIyNNwYIFLavDypUrzeeff24+++wzExkZaVmcu7mytVaxYsXM0KFDk5R/8sknpnjx4pbGxuNh9s9UbOXKlRozZox9trAiRYqoe/fulrdWW7t2rerVq6c8efKoYsWKstls2rhxo06dOqUlS5aoSpUqKRqvSZMmioiIkI+Pj5o0afLAba2YffNuf/zxh/7++2/lyJFD8fHxGjlypNavX68CBQqof//+id5+prTSpUurUKFCGjRoULLTJFs9S1yBAgXUu3dvvfPOO4nKJ02apJEjR+rw4cOWxn/S/P3333Jzc5O7u7tlMS5cuKDWrVtr6dKl9ji3b99W7dq1FRERoezZs1sW+0mYoW3r1q3281vRokVVrlw5l9XFmS5fvqwtW7Yk20Lwrbfesiyut7e3tm/froIFCyaarSsqKkp16tTRpUuXLIst3Zml7V42m03GGNlsNsXFxVkWOzo6+oHr8+TJY1nsmzdvqnfv3vrqq690+/ZtSXdmpOvUqZM+/fRTeXp6WhZ78eLFatWqVbKtVaz+zu914cIFpUuXThkzZnRKPFcfe7du3TRjxgyVLFlSJUuWTHItGT16tKXx7+WMa5qrvfXWW1q7dq1GjRqlF198UZK0efNm9e7dW1WrVtX06dMtr8PPP/+sYcOGaefOnUqXLp1KliypAQMG6OWXX7YsZsWKFbVlyxaVKFFCLVu2VIsWLZQzZ07L4iXn9u3bWrNmjY4ePaoWLVrI29tbv//+u3x8fCz/m7927Zq+++47HTp0SMYYFSlSxF4HV7lw4YK+/fZb9ezZ07IYBw8eVMOGDXX8+HHlzp1bNptN0dHRCgwM1KJFi1SoUCEtXLhQV69edcpskZcvX1amTJksj+PKmcz/85//qFmzZqpZs6YqV64sm82m9evXa+XKlZozZ44aN25sWWw8HpJqqdT48ePVo0cP/etf/1LFihUl3bkxmDdvnkaPHq333nvP0vi///57ou5JQUFBlnVPatu2rb744gt5e3urbdu2D9x22rRpKR7/SZEhQwaXdlWZOHGiunfvrnbt2qlSpUr2C0VERITGjRuXJNmGlHPo0CHt379fklS0aFEVKlTI8pg+Pj7auXOnAgMDLY91r9OnT6t58+basGGD/Qbs8uXLqlSpkmbOnKncuXNbEjc+Pl579+5ViRIlJElfffWVbt68aV/v5uamTp06JZv8SSk//vijWrZsqdjYWHl7eydKnttsNku72NerV09ly5bVJ598Im9vb+3evVt58+bVG2+8ofj4eM2bN8+y2JJ08uTJB67PmzevZbHTpEnzwK4RzkguXb9+XUePHpUxRgUKFFD69OktjxkQEKBXX31V/fv3d0rXvyeJq4/dlQ9+rtSuXbsHrv/mm28si339+nW9//77+uabb+xDK6RNm1bt27fX559/rgwZMlgW25U+/PBDtWzZUsWKFXNJ/JMnT6pOnTqKjo7WjRs3dOjQIQUGBqp79+66ceOGvQvys+ry5cuaN2+ejh49qt69e8vPz0/bt2+Xv7+/5clNY4yWLVuWKKH4yiuvWHofI0mfffaZAgIC1KxZM0lS06ZN9Z///EfPPfeclixZolKlSlka35W2bdtmb/SS8Izcq1cvlSlTxvLYISEhD7yXeVavKymBpFoqlTNnTvXr1y9J8iw8PFxDhw7V77//7qKaPduWLFkiNzc31a5dO1H58uXLFRcXp9DQUMtiV69eXX369FGdOnUsi/FPFixYoFGjRiVK8PTu3VsNGzZM0Th+fn46dOiQsmbNqsyZMz/wAmH1OH5xcXEaM2aM5syZo+jo6ERJFmfET5BwqnfWmAjt27dX+fLl9e677zol3t1q1aqlmJgYTZ8+XYULF5Z0541ru3btlCFDBi1fvtySuD/88IMmTZpkH+fH29tbmTJlUtq0d4YvvXjxosaOHav27dtbEl+SChUqpLp162rYsGFOSarcbd++fapWrZrKlSunVatWqUGDBtq7d6/++OMPbdiwQfnz53dqfZxp165diT7funVLO3bs0OjRozV06NB/bCX9tPL29tbOnTtd9rM9d+6c3n//fa1cuVLnz5/Xvbe0ViYzXX3sruLqa9q9LTVu3bqlPXv26PLly6pevbrlPQ4kKTY2NlEC29nJtJs3bybbEtnKFrEPw6qXaY0aNZK3t7emTp2qLFmy2FtBr127Vh06dLC8p8PRo0c1duxYe8v3oKAgde3a1Sl/+7t371bNmjXl6+urEydO6ODBgwoMDFT//v118uRJzZgxw/I6uEJgYKC+++47VapUSZGRkWratKlmz55tP+9YdR+X2t077u+tW7e0c+dO7dmzR61bt9a4ceNcVLMnHxMVpFIxMTHJJldq1aplSXet3bt3q3jx4kqTJs0/DihasmTJFI9/N1c2Ie/bt68+/fTTJOXx8fHq27evpUm1Ll26qFevXjp79qxKlCiRpIuG1d+7dOdm2BlNl8eMGWNvlu/KAcQladCgQZoyZYp69uyp/v3766OPPtKJEye0cOFCSwfrTzBjxgx9/vnn9pvOQoUKqXfv3pY31U/o0rx58+Zkf9+sHEz6l19+0caNG+0JNUkqXLiwvvzyS1WuXNmyuNOmTUuSRFy7dq39AeOrr77Sd999Z2lS7bffflPXrl2dnlCTpKCgIO3evVsTJ06Um5ubYmNj1aRJE4WFhen555+3JObixYsVGhoqd3d3LV68+IHbNmjQwJI6SEr2rXlwcLBy5Mihzz//PMWTak/KsAZNmjTR6tWrXZZYatOmjaKjo9W/f/9khzWwkquP3VVcfU1bsGBBkrL4+Hh17tzZaS2jM2TIID8/P9lsNqcm1A4fPqx27dpp48aNicqd0cX9YVjVTmP9+vXasGGDfaKABHnz5tVvv/1mScwEy5YtU4MGDVS6dGlVrlxZxhht3LhRkyZNcsrkRz179lSbNm00YsSIRN1NQ0NDLZng64svvtDbb78tLy8vffHFFw/c1sr7uDNnzth7Ffz0009q2rSpatWqpYCAAFWoUCHF47nymhoTE2OfECImJuaB2yY3cURKGjNmTLLlAwcO1LVr1yyN/bQjqZZKNWjQQAsWLFDv3r0TlS9atEj169dP8XilS5fW2bNnlT17dpUuXdo+zs29rL4puLcJ+SuvvCJvb2+NGDFCf//9t7766ivLYkt3boiSm6GpSJEiOnLkiKWxX3vtNUmJu044a7whZ2vdurUk2ccXql27tp577jmX1OX777/X119/rXr16mnQoEFq3ry58ufPr5IlS2rz5s2W3pSMHj1a/fv313vvvWe/GdywYYPeffddXbx40dKZKF05Q1uePHmSnfX09u3blnaV2L9//wNnYHv55Zf14YcfWhZfuvO7vnXrVpd0u5Wk5557ToMGDXJavEaNGtmvLY0aNbrvdq46xxUqVEhRUVEpvl9fX197AsnHx8dls3IVKlRI/fr10/r1652ePJfuPGz/8ssv9tnKnMkVx/4kJFNdeU27nzRp0qhHjx6qVq2a+vTpY1mc+Ph4DRkyRKNGjbI/YHp7e6tXr1766KOPLO8S16ZNG6VNm1Y//fST05PIrhQfH5/s+fv06dOWj2vWt29f9ejRI8kL8b59++qDDz6wPKkWFRWlSZMmJSnPmTOnzp49m+LxxowZo5YtW8rLy+u+CRbJ+vu4zJkz69SpU8qdO7eWLl2qIUOGSLqTuLXiWn73NdXqMabvlTlzZp05c0bZs2dXpkyZkv27dvWz2ptvvqkXXnhBI0eOdEn8pwFJtVTk7jcORYsW1dChQ7VmzZpEY6pt2LDBkinBjx8/rmzZstn/31W6deum4OBg7dq1S1myZLGXN27cWB06dLA8vq+vr44dO6aAgIBE5UeOHLH8bacrvndXd8NMmzatOnXqZO9u6goJLQMlKWPGjLpy5Yok2cfisdKXX36piRMnJhqcvmHDhipWrJgGDhxoaVLNlX/nI0aMUJcuXRQeHq5y5crJZrNp69at6tatm6U3BBcvXkzU2vXYsWOJzjPu7u6KjY1N8bh3t9CqV6+eevfurX379iX7oG9la618+fLpzTff1JtvvpmolaCV7u7+dG9XKGe69+2yMUZnzpzRwIEDVbBgwRSPd/f4nxERESm+/4c1ZcoUlyXPJSl37tyWtY75J644dlc++CVw5TXtQY4ePWp/kWaVjz76SFOnTtWnn36a6EXVwIED9ffff2vo0KGWxt+5c6e2bdumIkWKWBrnSfPKK69o7Nixmjx5sqQ7f1/Xrl3TgAEDVLduXUtj79+/X3PmzElS3q5dO6f0hPDy8kq29dLBgwftz1Up6e57N1fexzVp0kQtWrRQwYIFdenSJXtPnp07d1oyNvTd11Rnj6+9atUq+fn5SZJWr17t1NgPa9OmTfLy8nJ1NZ5oJNVSkXvfOGTOnFn79u3Tvn377GWZMmXSN998o3//+98pGvvuAaJPnjypSpUq2ccZSnD79m1t3LjR0sGkXdmEXLrzQNu9e3ctWLDA3mXkyJEj6tWrl6UPu5K1g3Tfz93dMMeMGeOSt6oVKlTQjh07XHL8kpQrVy6dOXNGefLkUYECBbR8+XKVLVtWUVFRls7KJ91pPl+pUqUk5ZUqVdKZM2csje1s9yZtY2NjVaFCBft55vbt20qbNq3atWv3wBZNj8Pf318HDx60/23fe8O7f/9+S1pMJnc8gwcPTlJm9VvOLl26aObMmRo6dKjKlCmjVq1aqVmzZpZ1/XySJPd22Rij3Llza9asWZbGThhH6t5Z0WJiYtSoUSNLBxZ25UOXdKd7f9++fTVp0qQkL6us5opjd+WDXwJXXtMkJZntMCGB/fPPP9tbqVtl+vTpmjJlSqL7tVKlSilnzpzq3Lmz5Um1oKAgXbx40dIYT6IxY8YoJCREQUFB+vvvv9WiRQsdPnxYWbNm1cyZMy2NnS1bNu3cuTPJy5GdO3daOoN6goYNG2rw4MH2xF7CDJx9+/a190Bxlri4OP3666/KmzevMmfObGmsMWPGKCAgQKdOndKIESPsLyzPnDmjzp07Wxrb2e6eudfKWXwfxr0toBPOr1u3bnXpS5OnARMVwOnc3NzszVzvdunSJWXPnt3Shz4/Pz+tX79eQUFB8vb2tg92un79er322ms6d+6cZbEl6cqVK6pTp462bt2qXLlySbrTfL1KlSrJPhQ9ridlvCFXmjt3rr35frly5ZK0CLR6LLm+ffvKx8dHH374oebNm6fmzZsrICBA0dHRyXYpSEnFixdXixYtknQ5HDJkiGbPnq1ff/3VstjOnqFt+vTpD72tVQ9e7dq108GDB7Vhw4Yk64wxqly5sooUKWLp7HRPgkOHDun777/XrFmzdOzYMYWEhOjNN99M1GLSKlu2bNGaNWuSHcR79OjRlsW9t6VSmjRplC1bNhUoUCDJC6SUliZNGnsX2LudP39eOXPmTLYr9LMic+bMun79um7fvq306dMnaZnprIlgUhNXXtOkpLOeJvytVa9eXe3atbP0783Ly0u7d+9OMoP2wYMHVbp0af3111+WxZbutGj597//rWHDhiXbEtnq8Zb+iZWzfv/111+aOXOmtm/frvj4eJUtW1YtW7ZUunTpUjzW3QYPHqwxY8aob9++iWau/+yzz9SrV68Ub4Rwr5iYGNWtW1d79+7V1atXlSNHDp09e1YVK1bUkiVLLO3l0r17d5UoUULt27dXXFycqlatqk2bNil9+vT66aefVK1aNctiu9KlS5f08ccfa/Xq1cneS1h5XVm6dKkyZsyol156SdKdCQS//vprBQUFKTw83PJkZtu2bRN9vvv8WqtWLUtjP+1IqsHp0qRJo3PnziVpxXHo0CEFBwf/4yCNj6NZs2by9fXV5MmT5e3trd27dytbtmxq2LCh8uTJ45Q3v8YYRUZGateuXUqXLp1KliypqlWrWhLr7oetB4314Yx++tu3b5e7u7u928iiRYs0bdo0BQUFaeDAgUlaD6aU5I7blWPJbd68WRs3blSBAgUsT2T+5z//UbNmzVSzZk1VrlzZfjO4cuVKzZkzx9JJI56EGdqc7ejRoypbtqyKFCmi999/X4UKFZLNZtOBAwc0cuRIHTx4UNu2bbOk68KDXL58OcUT9g9r8+bN6tSpk3bv3m3539qwYcP073//W4ULF5a/v3+ilmM2m+2Zmwo+YdKf0qVLJ+o+It1pUbB06VJNmjRJJ06cSNG4PXv21CeffKIMGTIkaTV0LysTmdI/J9Otbrl0+vRpLV68ONlZMK0+dlc++N3Nmdc0V6tQoYIqVKiQZAD3Ll26KCoqSps3b7Y0fsL9THKtYp+EsXHvfln9rDDGaOzYsRo1apR+//13SVKOHDnUu3dvdevWzWn1WLVqVaKEYs2aNS2PmStXLi1cuFDBwcFauHChwsLCtHr1as2YMUOrV69O9gViSvr22281adIkHTt2TJs2bVLevHk1duxY5cuXTw0bNrQsbmhoqI4ePar27dsnuZeQrL2ulChRQp999pnq1q2rX3/9VcHBwerVq5dWrVqlokWLuqyFMv4ZSbVUyhijefPm3fdmzIoH3oQmpYsWLVKdOnUSdROIi4vT7t27VbhwYS1dujTFYyf4/fffFRISIjc3Nx0+fFjBwcH2JuTr1q1zSlPuh1GiRAktWbLEPvPNs6B8+fL25urHjh1TUFCQmjRpoqioKNWrV8+ysSlOnjz5wPWu6hbqLNu2bdOYMWO0f/9+GWMUFBSkXr16qUyZMk6vy90ztFk5mHSC8+fPJ3t+s7J14pYtW9SmTRsdOHDAfiNmjFGRIkU0bdo0S2atuttnn32mgIAANWvWTJL0+uuv6z//+Y+ef/55LVmyJNlZKq2wZcsW/fDDD5o9e7auXLmi+vXra/bs2ZbG9Pf312effaY2bdpYGud+jh49qrFjx2r//v2y2WwqWrSounXrZtnskGnSpEn0O3avdOnS6csvv/zHVqOOCgkJ0YIFC5QpU6YkrYbu9iwmMu+2cuVKNWjQQPny5dPBgwdVvHhxnThxQsYYlS1b1vJjd+WD35PgwoULOnjwoGw2mwoVKmTJ+FL3Wrt2rerVq6c8efKoYsWKstls2rhxo06dOqUlS5aoSpUqlsd/EFd3HVu/fr3Kly+f4t2A79fTwmazycvLSwUKFFC+fPlSNGZyrl69KulO8jA2Nlbbtm2z7KX4k8DLy0tHjhxRrly59Pbbbyt9+vQaO3asjh8/rlKlSlnaCGLixIn6+OOP1b17dw0dOlR79uxRYGCgIiIiNH36dEvHHvP29tb69euddr90t4wZM2rPnj0KCAjQwIEDtWfPHs2bN0/bt29X3bp1LZmcIjnbtm2z38sEBQW55JnhaUNSLZXq2rWrJk+erJCQkGRvxqzIhCc0KZ0+fbqaNm2aqMm2h4eHAgIC1LFjR2XNmjXFY9/tr7/+0qxZs7Rt2zanNiF3xLP4ts/X11fbt29X/vz59dlnn2nVqlVatmyZNmzYoDfeeEOnTp1K8ZhXr17V5s2bdevWLb3wwguW/27d7Z+62yZ41t/s3+vgwYOqVq2apWO6bdu2Ta1bt7YnEu/mrLf5O3bs0OHDhyVJBQsWdNoNSWBgoL777jtVqlRJkZGRatq0qWbPnq05c+YoOjpay5cvtyx2QrfPH374QSdOnFBISIhatmypJk2aWD5DmyQ9//zzWrdunSUTA/yTZcuWqUGDBipdurR9APONGzdq165d+vHHHy2ZIe7kyZMyxigwMFBbtmxJlFTw8PBQ9uzZ5ebmluJxJWnGjBlq1qyZU8bQelh//fVXkq6uVnaHe+GFF1SnTh0NHjzYfs3Onj27WrZsqTp16qhTp06WxZac/+D3pFzTYmNj1aVLF82YMcP+wsTNzU1vvfWWvvzyS6VPn97S+L///rvCw8N14MAB+4uqzp07K0eOHJbGdTVXtspMeIGQ3PU8oZXeSy+9pIULF1rePS7Brl27VLZsWcvvJ+5tFZng7oRi1apVLTnX582bV19//bVq1KihfPnyacKECXr11Ve1d+9evfTSS/rzzz9TPGaCoKAgDRs2TI0aNUr0TLRnzx5Vq1bN0rEFy5cvry+//FIvvviiZTHu5+5hil566SW99dZbevvtt3XixAkFBQXp+vXrlsY/f/683njjDa1Zs0aZMmWSMUZXrlxRSEiIZs2a5ZSXF08tg1Qpc+bM5ueff3ZJ7IEDB5rY2FiXxH5aZMyY0Rw9ejTF93vt2jXz888/m4kTJ5px48YlWqzm7e1tDh06ZIwxpmbNmmbs2LHGGGNOnjxpvLy8Ujzerl27TI4cOUyaNGmMzWYzvr6+JjIyMsXj3I/NZku0JNTj3jIr/Pbbb6ZXr17mypUrSdZdvnzZvP/+++bs2bOWxP4nP//8s8maNaulMUqUKGEaN25sNm/ebI4fP25OnDiRaHGWGzdumAMHDphbt245LaaXl5eJjo42xhjTtWtX8/bbbxtjjDl48KDJlCmTpbFtNpspX768GTNmjDlz5oylsZLz2WefmW7dujk9rjHGlC5d2nzwwQdJyj/44ANTpkwZF9TIWmnSpDHnzp1zdTXMtWvXTFhYmMmWLZtJkyZNksVKGTNmNEeOHDHGGJMpUyazZ88eY4wxO3fuNHnz5rU0tjHGBAcHm02bNlkeJ4Err2l3e/vtt01gYKBZsmSJuXLlirly5Yr5+eefTf78+c27775refwnQWxsrNm/f7/ZtWtXosUqK1asMOnTpzfFihUzadOmNaVLlzaZMmUyvr6+JiQkxLK4d8evUKGCWbFihYmJiTExMTFmxYoV5sUXXzQ///yzWb9+vSlWrJhp166d5XVJsHPnTqf8vgcEBJgMGTIYm81m/Pz8TObMmY3NZjMZMmQw/v7+xmazmfz589uv+ylpwIABxtfX1xQpUsTkyZPH/P3338YYY6ZOnWpefPHFFI93Ny8vL/v92t3PRIcOHbLkmeFuW7ZsMdWrVzdr1qwxFy9etJ9nEhYrvfrqq6Z27dpm8ODBxt3d3Zw+fdoYY8yyZctMwYIFLY1tjDFNmzY15cqVM/v27bOX7d271wQHB5s33njD8vhPM5JqqVRAQIDZv3+/S2IfO3bMnly526FDh8zx48ctjT1s2DAzderUJOVTp041n376qaWxHWFFUm379u3mueeeMz4+PsbNzc1ky5bNfmHOly9fisZKTkhIiHnrrbfMjBkzjLu7uzl8+LAxxpg1a9ZY8gASGhpqXnzxRbNhwwazbds206BBA1O4cOEUj/OwrEqUJqdXr16mY8eO913/zjvvmD59+lhahx49eiRaunfvbpo1a2YyZsxowsLCLI2dMWNG+++XK8TGxpp27doZNzc34+bmZv+5d+nSxQwfPtzS2M8//7zZsGGDMcaYQoUKmTlz5hhjjDlw4IDx9va2NPbBgwct3f8/iYuLM3Xq1DGBgYHm1VdfNY0bN060WMnT0zPZ69rBgweNp6enpbFdcV2z2WxPRFKtc+fOpmjRombu3LkmXbp05ptvvjGffPKJyZUrl/nuu+8sje3v72/27t1rjDEmKCjILFq0yBhz52E7Q4YMlsY2xrUPfsY495p2tyxZspjVq1cnKV+1apVlL2wOHTpk3njjjfu+qGrevLlTvovz58+bevXqJZtAtjLBU758edO/f39jzP/93K9evWoaNGhgJkyYYFncBMWKFbNf1+62fv16ExQUZIwxJjIy0uTOndvyuiRwVlLthx9+MNWqVbMn8I0x5vDhw6Z69epm1qxZ5tSpU6Zy5crmtddesyT+3LlzzejRo82pU6fsZREREWbhwoWWxEtQtGhRe4y7zzXjxo0zZcuWtTT2oUOHTLly5ZL8fTnjxcHJkyfNq6++akqWLGmmTJliL+/evbvp0qWLpbGNMcbHx8ds2bIlSfn//vc/4+vra3n8pxlJtVQqIiLCvPHGG+b69etOj121alUTERGRpPzbb781L7/8sqWx8+bNm+yFefPmzSYgIMDS2I6w4mb15ZdfNh07djS3b9+27z86OtpUrVrV/Oc//0nRWMnZtWuXKV68uPHx8TEDBw60l7/33numefPmKR4vW7ZsJioqyv754sWLJk2aNObq1aspHuthOPMBpFixYuaXX3657/oNGzbYb0StUq1atURL9erVTbNmzcykSZMsb7nVsGFDM2/ePEtjPEjXrl1NuXLlzC+//GIyZMhg/7kvWrTIlC5d2tLYYWFhJm/evKZmzZomS5Ys9t/3WbNmOaXF1J9//mm+/vpr07dvX3Pp0iVjjDHbtm2zv221UufOnY2np6epU6eOad26tWnTpk2ixUq5cuWyJzDvNnv2bMsf9FxxXbPZbOb8+fOW7NsRuXPntidYvL297cn0GTNmmNDQUEtjN2zY0EyePNkYY0zv3r1NgQIFzJAhQ0zZsmVNjRo1LI1tjGsf/IxxXVItXbp0iVpRJNizZ49Jnz69JTE7duxoevfufd/1ffr0cUoruRYtWphKlSqZLVu2mAwZMpjly5ebb7/91hQuXNj89NNPlsV1datMLy8v8+uvvyYp3717t73V0okTJ0y6dOksr0sCZyXVAgMDzY4dO5KUb9++3f5CfMOGDea5556zvC73U7x48RRvKffNN9+YnDlzmlmzZpkMGTKYmTNnmiFDhtj/30rly5c3FStWNLNmzTKrV682a9asSbRY5datWyYiIsL8/vvvlsX4JxkzZrzv75vVL2afdtbO844n1uuvv66ZM2cqe/bsCggISDIt9/bt2y2LvWPHDlWuXDlJ+Ysvvqj33nvPsriSdPbsWT3//PNJyrNly2bpGE9Pgp07d2rSpElyc3OTm5ubbty4ocDAQI0YMUKtW7e2TyRhhbi4OP35559au3ZtohnqJOnzzz+3ZCyIixcvKk+ePPbPWbJkUfr06XXhwgVlzJgxxeM9SY4fP57o2O+VK1euFJ8R8F5WDiL7T6ZMmaLWrVtrz549Kl68eJLzm9Vj/ixcuFCzZ8/Wiy++mGi8yqCgIB09etTS2GPGjFFAQIBOnTqlESNG2H/Xz5w5o86dO1sae/fu3apRo4YyZcqkEydOqGPHjvLz89OCBQt08uRJzZgxw9L4M2bM0H/+8x/Vq1fP0jjJ6dixo95++20dO3ZMlSpVss+0+9lnn6lXr16WxnbVda1Nmzb/OKaa1bP8/vHHH/YByn18fOwzXr700kuWj2k2evRoXbt2TZI0cOBAXbt2TbNnz1aBAgU0ZswYS2NLUsuWLeXh4aEffvgh2bFxn1UVK1bUgAEDNGPGDHl5eUm6M57eoEGDVLFiRUtirlu3Tt9+++191zdt2lQtWrSwJPbdVq1apUWLFql8+fJKkyaN8ubNq1deeUU+Pj4aPny4Zee+DBky6MaNG5LuzHx59OhRFStWTJIsHdsqQbly5dS7d2/NmDHDPqbThQsX1KdPH5UvX16SdPjwYeXKlSvFYv7TGILHjx9PsVgPcubMGd2+fTtJ+e3bt+2D1ufIkcM+iYIrnDhxIsl4lo+rbdu2un37tvr06aPr16+rRYsWypkzp8aNG6c33ngjRWPda8+ePdqxY4cKFy5saZx7pU2bVp06ddL+/fudGvdu1atXV7du3TRz5kz7OJG//fabevTooRo1arisXk8DkmqpVJs2bbRt2za9+eabTr8Zs9lsyZ78r1y5YvmAn7lz59aGDRuSzBK0YcOGZ36QWXd3d/vP2d/fX9HR0SpatKh8fX0VHR1taWw3NzfVrl1b+/fvT5JUS7gpTmkJv2cJ+zf/fzDbq1evJpqxyMqBrF0lXbp0OnHixH0TaydOnHDaxByumKFt48aNWr9+vf773/8mWeeMiQouXLiQ7EzCsbGxlp9r3d3d9f777ycp7969u6VxJalHjx5q27atRowYkWhigtDQUKc8cPr5+Vk20+Y/6d+/v7y9vTVq1Cj169dP0p0HnYEDB6pr166WxnbVdc3b29vlE/wEBgbqxIkTyps3r4KCgjRnzhy98MIL+vHHH5UpUybLYydInz69JkyYYGm8e7nqwc/Vxo0bpzp16ihXrlwqVaqUbDabdu7cKS8vLy1btsySmCdPnnzg7PBZs2a1ZLKle8XGxtrr4efnpwsXLqhQoUIqUaKEpS/DX3zxRW3YsEFBQUGqV6+eevXqpV9//VXz5893ymDuU6dOVcOGDZUrVy7lzp1bNptN0dHRCgwM1KJFiyRJ165dU//+/VMsZqNGjVJsX48jJCRE77zzjqZMmWKf8GjHjh3q1KmTqlevLkn69ddfnTL7qbPcvn1b33//verXr6+OHTvq4sWLio+Pf+DfYEoKDg7WqVOnXHJurVChgnbs2KG8efM6PbYkjR8/Xg0bNlRAQECiv7USJUrou+++c0mdnhqubioH10ifPv0Du4dZqV69eub11183t2/ftpfdvn3bvPbaa6ZOnTqWxv70009NlixZzDfffGMftHzq1KkmS5YsZtiwYZbGdsT3339vrl27lqL7fOWVV8z3339vjLkzptYLL7xgvvvuO1O7dm3zwgsvpGis5AQHB5sVK1ZYHidBQheY5LrFOLOLTAJvb29z7Ngxp8SqW7eu6dChw33Xt2/f3vKuUdeuXTNt27Y1bm5u9kGs06ZNa9q1a2f5RCV58+Y1YWFhLpuMoWrVquaLL74wxtxpSp/wcw8LCzO1a9e2PP6BAwdMWFiYqV69uqlRo4YJCwszBw4csDyuj4+PvYvQ3V3DTpw4Yfm4Ysbc6S7StGlTl0+EkzCQtrO44rr2pIypNnr0aPtEO6tWrTLp0qUzHh4eJk2aNPbJcKySL18+c/HixSTlf/75p1PGKa1SpYpTJ9+5lzOvafe6fv26mTx5sunZs6fp0aOH+frrry0dzsTf39+sXLnyvutXrFhh/P39LYufIDg42CxdutQYc6f7catWrczp06dNnz59TGBgoGVxjx49ap8IITY21nTq1Mk+IZCzJv+Jj483//3vf824cePM2LFjzdKlS01cXJxTYrvSmTNnTM2aNY3NZjMeHh7289srr7xiv8dZtWqVWbZsmcvqaEVX8HTp0jl1Yqm7zZkzxwQFBZlp06aZrVu3Om1CkITYgYGB5ssvvzQbN250auy7LV++3HzxxRdm3LhxLr3OPE1sxtwzPzFShSJFimjOnDkqWbKk02Pv27dPVatWVaZMmVSlShVJ0i+//KKYmBitWrVKxYsXtyy2MUZ9+/bVF198YZ8S3MvLSx988IE+/vhjy+LebeXKlVq5cqXOnz9vnw4+wTfffGNZ3K1bt+rq1asKCQnRhQsX1Lp1a61fv14FChTQtGnTVKpUKctiS9Ly5cv1wQcf6JNPPlG5cuWUIUOGROtTusXY2rVrH2q7l19+OUXjJsicOXOiVkmXL1+Wj4+P0qRJk2i7hO5KKWn16tV65ZVX1L17d/Xu3Vv+/v6SpHPnzmnEiBEaN26cli9fbn/LaYV33nlHK1as0Pjx4+3dvdevX6+uXbvqlVde0cSJEy2L7e3trZ07d7qs1dLGjRtVp04dtWzZUhEREXrnnXe0d+9ebdq0SWvXrlW5cuUsiz1v3jw1b95cwcHB9q5QmzdvVlRUlH744Qe9/vrrlsX29/fX0qVLVaZMGXl7e2vXrl0KDAzU8uXL1b59e8tbcpQpU0ZHjx6VMcZpwxr89ddfioyMVEhISKLWeZIUExOjNWvWqHbt2v/YTfJxuOK65ubmpjNnzjit5cDDio6O1tatW5U/f37Lr2lp0qTR2bNnk3wH586dU548eezd5awyd+5cDRw4UL1791aJEiWS/L6n9P2dK69prta0aVPdunVLCxYsSHZ9w4YN5eHhoblz51paj++//163bt1SmzZttGPHDtWuXVuXLl2Sh4eHIiIi1KxZM0vjp0br1q1TpUqVlDZt4s5dcXFx2rBhg6pWreqUehw4cECHDh2SMUZFihR5olqo3n29TykhISHq1q2bS1oM3ntOk+70cjD/v8eLlb0dXBkbj4ekWir1888/68svv9RXX32lgIAAp8f//fffNX78eO3atUvp0qVTyZIl9d577yXpGmiVa9euaf/+/UqXLp0KFixo6QPP3QYNGqTBgwcrODhYzz//fJKuYPe7YXsW3H2huPu4n9ULxfTp0x9qu9atW1sSf9KkSerWrZtu3bolHx8f2Ww2XblyRe7u7hozZozl4w1lzZpV8+bNU7Vq1RKVr169Wk2bNtWFCxcsi926dWtVqVJFHTp0sCzGP/n11181cuRIbdu2TfHx8Spbtqw++OADlShRwtK4gYGBevPNNzV48OBE5QMGDNC3336rY8eOWRb77bff1oULFzRnzhz5+flp9+7dcnNzU6NGjVS1alWNHTvWstjSnfPrgwwYMCDFY44bN06LFy/WypUrk11fs2ZNNW7cWGFhYSke+17OvK7dL6GUGiSMtdSoUSNNnz5dvr6+9nVxcXFauXKlIiMjdfDgQUvr4eyHL1df0xIMHz5c/v7+ateuXaLyb775RhcuXNAHH3yQ4jF37NihihUr6tVXX1WfPn3sCY0DBw5oxIgR+vnnn7Vx40aVLVs2xWM/yPXr13XgwAHlyZNHWbNmtSxOYGCgoqKilCVLlkTlly9fVtmyZS29riSIjY3V2rVrFR0dbX95kMDKLvb3e4Fw6dIlZc+e/Zm7d30UViTV5s6dq759+6pHjx7Jvoi3slHIyZMnH7jeyq6Zrowt3flbKlCgQJK/qfHjx+vIkSOW38c9zUiqpVKZM2fW9evXdfv2baVPnz7JG85n8U3j3Y4cOaKjR4+qatWqSpcunf0m1GrPP/+8RowYoVatWlke60nzTy3HrGoxtn37drm7u9uTGYsWLdK0adMUFBSkgQMHysPDw5K4T4LffvtNc+bM0ZEjR2SMUaFChfSvf/0rRQfzvZ/06dNr27ZtKlq0aKLyvXv36oUXXlBsbKxlsYcOHaqxY8eqXr16ybbgsHqMK1dKnz69du/erQIFCiQqP3z4sEqVKqXr169bFjsmJkZ169bV3r17dfXqVeXIkUNnz55VxYoVtWTJkiQ3xa4yc+ZMNWjQIEXq88ILL6h///6qX79+sut/+uknDR48WFu2bHnsWE+StWvXqnLlyolab/z999+WjZF5ty+++OKht7Xibz0hmZWQwLqbu7u7AgICNGrUKL366qspHvturn74cpWAgAD98MMPqlSpUqLy//3vf3rjjTcsG0D+p59+Urt27XTp0qVE5VmyZNGUKVMsnwDHlVzdKnPHjh2qW7eurl+/rtjYWPn5+enixYtKnz69smfPbmlSL02aNDp37lyS8WAPHTqk4ODgRGP0WuX06dNavHhxsgnF0aNHWx7/n1iRVKPFlmvkzJlTixcvTtKjYvv27WrQoIFOnz7topo9+UiqpVL/9MbR6jeN0p03bMldIKx8+3Dp0iU1bdpUq1evls1m0+HDhxUYGKj27dsrU6ZMGjVqlGWxpTs3X1u2bHFJt7Rz587p/ffft3c9vfdP/1m9QJUvX159+/bVa6+9pmPHjqlYsWJq3LixoqKiVK9ePcvfurRp00bt2rVzWheBu92v28Lt27e1ceNGS+tUo0YNZcmSJckMba1bt9Yff/yhFStWWBb7QQP22mw2y9+qu/LNdt26dfX666+rbdu2icqnTZumWbNmWTaQ991WrVql7du321vo1axZ0/KYjvDx8dHOnTtT5AEgc+bM2rVr130nBYmOjlapUqX0559/PnasB4mKitLcuXOTvaZaOQNnfHy8hg4dqq+++krnzp3ToUOHFBgYqP79+ysgIEDt27dP8ZgPOyC31X/r+fLlU1RUlKUthFJCvXr1NGXKlGRniH0UrrymSXe6Nu/fvz/J78GxY8cUFBSkv//+f+ydeVhNa/vHv6vSRCkpYxqJVIYTEiJCOMJxDJWxZCZJgznEMYvXUOZCkkwHmWUoHENK1Kk0OqaTyFCm6v790bXXr92O47zvfvaK9ue69kXP7trfZ+32Xms993Pf3/sDM+3379/jzJkzSE9P5zeqevXqBXV1dWaaM2fO/ObflXaApapkZXbr1g3NmjXDli1boKWlhcTERNSoUQMjRoyAp6cnk+71otc8duwYHB0dxTJ/S0pKcO/ePZiZmeH06dNS1y7PhQsX4OTkBCMjI6SmpsLCwgLZ2dkgIrRt2xYXL15kqv8thIeHY8CAAVLdOBN60yAjIwNBQUFISUkBx3Fo0aIFPD09ZbJ+27NnD4KDg5GVlYXr16/DwMAAQUFBMDIywoABA5hqq6qq4v79+xIbsw8fPoSFhQXT8+v3jrz7ZzVFFkGzL5GXl4exY8dW2pkPYBvc8fLyQo0aNfjOlyKGDRsGLy8v5kG1cePGITw8XKodir6VMWPGIDc3F/Pnz6+09FQWXL16FSEhIcjMzMTBgwfRqFEj7NmzB0ZGRujcuTMTzbS0NLRu3RpAWTq5nZ0dwsPDERcXh+HDhzMPqr19+xa9evWCvr4+xo4di9GjR6NRo0ZMNUXY29tXGtx5/fo17O3tmX7XhOjQJkJWre6/xJf2qj5+/Mg8M9LJyQl+fn64c+cO35Xtxo0bOHjwIBYtWsQvkkS/Ky2Ki4uhqqqKhIQEdO/enalf3/+KNPcSi4uLkZeX98WgWl5eHoqLi6WmVxkREREYNWoUevXqhXPnzqFXr15IT0/Hs2fPMGjQIKbagYGBCA0NxcqVK+Hh4cGPW1paYt26dUyCakJ/v0VUNo+CggLmXUf/LVeuXMH79++l9npCXtMAYbu4Hzx4EMOGDZPwefr06RP/PZQ2d+/e/abfY3FPJzpOjuMk1g3lszJZk5CQgJCQECgqKkJRUREfP36EsbExVq5cidGjRzMJqokCiEQk0elYWVkZNjY2Yuc8VsyePRve3t5YvHgxNDQ0cOjQIejp6cHV1RWOjo7M9b/FB5pFd+9vDZpJe9MAAM6cOQMnJye0bt0anTp1AhHh2rVraNmyJY4fP46ePXtKTasiW7ZswYIFCzBjxgwsXbqUv0/X0tJCUFAQ86CaqakpTp8+jalTp4qNnzp1SqqZiD8kMmqIIKeKkZOT89UHS1xcXMjW1pZu3rxJNWvWpLNnz9KePXvIzMyMTpw4wVS7Xr16lJCQQETi3WoyMzOpZs2aTDS9vLz4h6enJ2lpaZGdnR1NnTpV7DkvLy8m+iJq1apFd+/eZarxNaKiokhNTY3GjRtHKioq/Hu/adMmpp0oNTQ0KC0tjYiIHBwc+I5wOTk5pKqqyky3PC9evKCgoCBq3bo1KSkpkaOjIx08eJA+ffrEVJfjOPr7778lxlNTU0lDQ4OpNpHsO7QJzfr162n9+vWkoKBAS5cu5X9ev349rV27lgYOHEitW7dmOgdRp9V/erDofGtsbMyfX6sy0uxU1qFDB1q+fPkXn//tt9+oQ4cOUtH6EpaWlrRx40Yi+v9jKy0tJQ8PD1qwYAFTbRMTE76rc/n3NSUlhbS0tJhqC83y5cspIiKC//nXX38ljuOoYcOGVep7wKIzn1DXNCJhu7grKChU2vX2xYsXMu0mLmsMDQ0pLy9PMP26detSamoqERE1a9aM74CakpJCampqTLUDAgLo3bt3TDW+Rq1atfiu2lpaWnT//n0iIkpISCADAwOm2gEBAaSgoEDt27enAQMG0MCBA8UeVQEW57fWrVuTn5+fxLifnx+1adNGqloVadGiBR05coSIxI8tKSmJdHR0mGoTEe3YsYPU1NRowYIFdOnSJbp06RLNnz+f1NXVaevWrcz1v2fkmWrVFENDw6/uarHMYLl48SKOHTuGdu3aQUFBAQYGBujZsyc0NTXx22+/oV+/fsy0CwsLK03Tf/HiBTNT54q7jKKsqfv37zPR+xL6+vpSzdD4twQGBiI4OBijRo1CREQEP25raythqi5NrK2tERgYCAcHB1y+fJnvOpmVlcV3xWSNjo4OPD094enpibt372Lnzp0YOXIkatWqhREjRmDy5Mlo2rSp1PREu7Ycx2HMmDGVli1U9KNhgZqamkx2citS0cC6Iqy67K5btw5A2c52cHAwFBUV+eeUlZVhaGiI4OBgJtoiKu4ky5J58+Zh9uzZ2Lt3r8yazgiNm5sbZs6ciZYtW0p4aB0/fhyBgYHMPW8yMjL466aKigoKCwvBcRy8vLzQvXv3f2zg8L/w+PFjiTIRoOxz+PnzZ2a65RHKbygkJAR79+4FAJw7dw7nz5/H6dOnERkZCR8fH5w9e5aZttDI+ppWHl9fX7x8+RKTJ0+W6Hbr7+/PRFMEfcF/96+//hIrjfzREDo7tE2bNrh9+zaaNWsGe3t7LFiwAC9evMCePXuYN/9ZuHAhiouLcf78eWRkZMDFxQUaGhp48uQJNDU1UatWLab6NWvW5D3rGjZsiIyMDLRs2RJA2dqFJcHBwdi9e3e184FOSUlBZGSkxLibmxvz6pasrCy0adNGYlx0bWeNm5sbPn78iKVLl2LJkiUAymIGW7ZsYZKJ+yMhD6pVUyoGej5//oy7d+9i7dq1WLp0KVPtwsJCvhytTp06yMvLQ7NmzWBpaYn4+Him2nZ2dggLC+NPFBzHobS0FKtWrYK9vT0TzZiYGCav+28JCgqCv78/QkJCBOn4mpqaWqkHi6amJgoKCpjpBgUFwdXVFUePHsXcuXP5BWBUVJRMAkvlefr0Kc6ePYuzZ89CUVGRN3U3NzfHypUr4eXlJRWdqlC2IESHNhEV/as+f/6M+/fvo6CggGlZomjhYW9vj8OHD0NbW5uZVlVkw4YNePjwIRo2bAgDAwMJfxXW53chGD9+PK5cuQInJyc0b94cZmZm4DgOKSkpSEtLw9ChQzF+/Himc6hTpw7evn0LoMxk+P79+7C0tERBQQHTxhQA0LJlS1y9elWiVOfgwYOVLgykzT/5DbHk6dOn0NfXB1BmYj906FD06tULhoaG6NChA1PtqoKsrmnl4TgOK1aswPz582XW7bZNmzbgOA4cx6FHjx5iPqUlJSXIysqSSSkeIJx/olDdNwFg2bJl/DluyZIlGD16NCZNmgRTU1Ps2rWLqXZOTg4cHR2Rm5uLjx8/omfPntDQ0MDKlSvx4cMH5htlNjY2iIuLg7m5Ofr16wdvb28kJSXh8OHDvMUDKz59+iTz++SqgK6uLhISEiQ2BhISEph3vDYyMkJCQoLENfXUqVMwNzdnqi1i0qRJmDRpEvLy8qCmpsY8cPyjIA+qVVNatWolMWZtbY2GDRti1apVTPwJRJiZmSE1NRWGhoZo3bo1H+QJDg6Wak18ZaxatQrdunXD7du38enTJ/j6+uLBgwd4+fIl4uLimGoDZTsA69evh4aGhth4YWEhpk2bJvUMGm1tbbFd1cLCQpiYmAjS8bVBgwZ4+PChREAvNjaWaZ2+lZUVkpKSJMZXrVollknEis+fP+P333/Hrl27cPbsWVhZWcHLywuurq785yAiIgKTJk2S2gJEdJNpaGiIWbNmCdJ1MSQkBOHh4RLjLVu2xPDhw5kG1Y4cOSIxVlpaismTJ8vEE0LoQLpQi5+KPkPVhb1798LJyQnh4eFIS0sDEcHMzAyLFi3C0KFDmet36dIF586dg6WlJYYOHQpPT09cvHgR586dQ48ePZhqL1y4ECNHjsTjx49RWlqKw4cPIzU1FWFhYThx4gRTbUBYvyFtbW08evQI+vr6OH36NAIDAwGUbWb8qI1/AGGuaeV5/fo1SkpKUKdOHbRr144ff/nyJZSUlKCpqSl1TdG5LSEhAb179xZbZIqykAcPHix13YoI5Z/4T903WV5XiAi6urp8dpauri6io6OZ6VXE09MT1tbWSExMhI6ODj8+aNAgjBs3jrn+2rVr8e7dOwBAQEAA3r17hwMHDsDU1JTPjmeFkD7QQuLh4YHx48cjMzMTtra24DgOsbGxWLFiBby9vZlq+/j4YMqUKfjw4QOICDdv3sT+/fvx22+/Yfv27Uy1gbLN4eLiYjRt2lSs4216ejrvoyincuTdP+WIkZ6ejtatWzNNMd23bx8+f/6MMWPG4O7du+jduzfy8/OhrKyM3bt3Y9iwYcy0AeDZs2fYsmUL7ty5w3enmzJlCvOAHvDlroAvXrxA/fr1pW5o/U9dXsvDunnFypUrERoaip07d6Jnz56Ijo5GTk4OvLy8sGDBAglTzB+FunXrorS0FM7OzvDw8ODLf8vz6tUrtG3blkmJRXFxMS5duiTzsgUhO7R9idTUVHTr1g1Pnz5lriVUSdo/LX5Ydz79Fvbv3w8nJydBgr0AYGFhgVOnTvFZRt87L1++xIcPH9CwYUOUlpZi9erViI2NhampKebPn888Y/LMmTNYtmyZ2DV1wYIF6NWrF1NdANDQ0EBCQgJMTEygra2N2NhYtGzZEomJiRgwYACys7OZaU+dOhUnTpxA06ZNcffuXWRnZ6NWrVo4cOAAVqxYUWUyMzU0NJCYmCi1DQWhr2l9+vRB//79MXnyZLHx4OBg/P7770wDLqGhoRg2bBjf0VrWWFlZYcKECZgyZQr/dzUyMsKECRPQoEEDZqXeQnTfFFFaWgpVVVU8ePCAWUnx16hbty7i4uJgZmYm9l3Kzs6Gubk502zgkpISxMbGwsrKSmaZ7+W7zZaWliI0NBRWVlawsrKS2IxnbW3wLUj7/AaUBXKDgoKwZs0aPHnyBEBZ6a2Pjw+mT5/OpClIcXExnwG7bds2BAYG4tGjRwDKMtADAgKYNP6pSNeuXeHm5iaxJty7dy+2b9+OS5cuMZ/Dd4swVm5yhOb169dij4KCAkpJSaFhw4ZRq1atZDqXwsJCunPnjqAmqO/fv6dVq1Yxe33Re8xxHD18+FDsvX/58iWFhoZSgwYNmOlXFebMmUNqamq8WbqqqirNmzePqWZxcTGtWrWK2rVrR/Xq1SNtbW2xB2vCwsLo/fv3zHUqIzs7m5o3b07q6uqkqKjIG556enrShAkTmGqbmprSnj17JMbDwsLIyMiIqfaXOHnyJNWtW5e5zvnz50ldXZ1atmxJSkpK1Lp1a9LS0qLatWuTvb09U+2uXbuSh4cHFRcX8ya3ubm5ZGdnR4cOHWKq/a1oaGhI3Vi4Im/fvpW4zrGmpKSEUlNT6erVq3T58mWxhxw21KtXjx48eEBERObm5nTs2DEiKjPxZtV8SMSnT59o1apVNH36dIqPj+fH161bR9u2bWOqTUR0+fJl+vz5s8T458+fxT5zy5Yto1evXklNV8hrGhGRtrY2JScnS4ynpKRQnTp1mOu/evWKtm3bRv7+/pSfn09ERHfu3KG//vqLuba6ujplZWUREZGOjg7du3ePiIiSk5Opfv36zHRr165Nf/75J/9/0ft/48YNMjMzY6YrwtzcnK5fv85cpzK0tbX5c0x54/irV6+Snp4ec30VFRXKzMxkriOiW7du3/yoCrBoVFCeN2/e0Js3b5i9voi6deuSt7e32LktLy+v0sYoLNHQ0KD09HSJ8fT0dKpdu7ZM5/K9IQ+qVVNE3d/KPziOoyZNmtC1a9dkOpfi4mK6e/cuvXz5kqlOXl4enThxgs6cOUPFxcVEVHZTHBQURPXq1WPaVaWy97v8Q1FRkQIDA5npE5UFFEQdk8pz5swZio6OZqpdnsLCQrp16xb98ccf9PbtW+Z68+fPpwYNGtCqVatIVVWVlixZQu7u7qSjo0Pr169nri8kAwYMoBEjRtDHjx/FbjwuXbpEpqamTLWF7NBWsavujBkzaNiwYVSrVi2aMmUKU20ionbt2tH8+fOJ6P9v+N6+fUtOTk60efNmptpCL36+BVY3wZmZmdS3b19SV1eXuLax7sx3/fp1MjIy4vVYd1otz507d/jFNRHR0aNHacCAATR79mz6+PEjU+3c3Fx69OgR//Mff/xBnp6eFBISwlRXxIABA/iOZD4+PmRqakqBgYHUtm1b6tGjh0zmIBTVtROlurq62OddxL1795h3gkxMTCRdXV0yNTUlJSUl/jw2b948GjlyJFNtIqLGjRvzx25lZUXh4eFERHTt2jXS1NRkpitk900iohMnTlDnzp0pKSmJuVZFhg4dSh4eHkRUdu3KzMykt2/fUvfu3WnMmDHM9a2trfkOy9UJoTYNiIjs7e0rfc3Xr18z2xhdtmwZNWvWjBQUFMjGxoa2b98ukzVSRTQ1NcU2iUTcvn2batWqJfP5fE/Ig2rVFFGbXNHjypUrlJKSUukJTNp4enrS9u3biagsoGZra0scx1HNmjUpJiaGiWZcXBxpaWnxC5z27dvTgwcPqGnTpmRiYkL/+c9/qLCwkIk2Udn7HRMTQxzH0eHDh8Xe+2vXrtHjx4+ZaYuwtLSkkydPSoyfOnWKrKysmOvv3r1bkLbkxsbGdOLECSISb02+fv16cnZ2Zqp98eJFWr16NcXGxhIRUXBwMOnr61PdunVp3LhxVFRUxFRfR0eHD7CUD2RkZWUxvxEuLS0lX19fUlVV5YMb6urqtGjRIiotLWWqXXE3tXv37jRs2DAKCQmRyTmu/OdMS0uL7t+/T0Rl2TMGBgZMtYVe/HwLrIJqHTt2pI4dO1JERATFxMRIXOdY0qpVKxoyZAglJyfTq1evqKCgQOzBEmtra4qKiiIiooyMDFJRUSFnZ2cyNTUlT09PptqdO3emsLAwIiJ6+vQpaWhoUMeOHUlHR4cWLVrEVJuo7HgTExOJqGzDZtKkSWRpaUmDBg2i7Oxs5vphYWHUqVMnatCgAa+3bt06Onr0KHNtjuPo77//lhhPTU0lDQ0NJppCX9OIyrJxp06dKjE+efJk6ty5M1Pt7t27k4+PDxGJn8fi4uKYn9uJiJydnWnNmjVERBQYGEi6uro0btw4MjAwoEGDBjHT7dmzJ+3bt4+IiCZMmEDt27envXv3Uu/eval9+/bMdEVoaWmRsrIyKSgokKqqqkwrDh4/fkzNmjWjFi1akJKSEtnY2JCOjg6ZmZnJJIvozJkz1Lp1azp+/Dg9efJEphnYY8eOrTRL6927dzR27Fim2kJuGnAcV6n28+fPSUlJian2lStXaMyYMVSrVi2qVasWjRkzhj/fyoJ+/frRkCFD+OQTorK1+uDBg8nR0VFm8/gekQfV5MicRo0a0a1bt4iI6MiRI9SwYUNKTU2luXPnkq2tLRNN0aI6KSmJvLy8iOM4MjIyotDQUOYL/PJkZ2fTlStXyNXVlWxsbPhygbCwMLp69SpTbVVVVb5soDxZWVmkrq7OVJuobLGvrq5Ow4YNo+PHj8skuEFUtqudk5NDRET169enO3fuEFHZYozlzu7WrVtJUVGRTExMSEVFhZYtW0Y1a9akiRMn0uTJk0lTU5P8/PyY6RMJX7ZAVFaGd/PmTUpKSqIPHz7IRFNohCxJE3rx8y2wCqrVrFmTDyLLGnV19UpLJmSBpqYmH8Rdvnw59erVi4iIYmNjqXHjxky1tbS0+Pd8/fr1/DX8zJkzgpV5y4rNmzdT3bp1KTAwkNTU1PjP9K5du5iWRg0aNIgGDRpECgoK1LdvX/7nQYMGkZOTExkaGlLv3r2lrlsVrmlEZZ9rVVVV6tKlCwUEBFBAQAB16dKFVFVV6cqVK0y1y3/Xyp/HsrOzSUVFhak2EVF+fj6/CVtSUkIrVqyg/v37k5eXF9Nqj1u3btHFixeJiOjvv/+mPn36kIaGBrVp04YSEhKY6YrYvXv3Vx+sKSoqoh07dtCUKVNo0qRJtG3bNpkEkIlIIutZlhnYXwps5eXlkaKiIlNtITYNEhMTKTExkTiOo5iYGP7nxMREio+Pp2XLlskkeE5UFrjcvn07de7cmTiOo2bNmtGKFSuY6z548IB0dHTIxMSExowZQ2PGjCETExPS1dUVJFP0e0IeVKtmVPR5+dKDJSoqKny5iIeHB7+TnpmZyexEqaOjw2eLFBYWkoKCAkVGRjLR+hpRUVGkpqZG48aNIxUVFf6GbNOmTdSnTx+m2vXq1aMLFy5IjJ87d450dXWZahOVpWwfP36cXFxcqGbNmlS3bl2aNGkSxcXFMdVt1qwZ3bhxg4jKsip+++03IiKKiIhgetwtW7akDRs2EFFZNqCSkpLYzV9kZCSZmJgw0ycStmyhoKCA95spT35+vkz8rYREyJI0oRc/3wKroFq3bt3o3LlzUn/db8He3p5OnToliLaGhgalpaUREZGDgwMFBQUREVFOTg6pqqoy1a5Zsya/WdO/f39avny5zLQrIyMjg+7fv08lJSXMtVq0aEFHjhwhIvHPdFJSElM7CdFCh+M4GjZsGP/zmDFjaPz48bRs2TImHrVV4Zom4u7du+Ti4kLm5ub0008/0dixY/nvAEv09PT40qjyf/MzZ84wD2DLqZ5UzLiWRQa2kD7QQm0aEIlb9VS0ceA4jtTV1WnHjh1MtL/GiRMnqE6dOjIr63/8+DHNnj2b+vbtS4MHD6ZFixZVej8vRxwloRslyJEt3bp1++Jzom4mHMdJvQtleerVq4fk5GQ0aNAAp0+fxubNmwEARUVFUFRUZKL58uVLvjWwuro61NXV0aZNGyZaXyMwMBDBwcEYNWoUIiIi+HFbW1ssXryYqbaTkxNmzJiBI0eOwMTEBADw8OFDeHt7w8nJiak2ACgpKeHnn3/Gzz//jKKiIhw5cgTh4eGwt7dH48aNkZGRwUR30KBBuHDhAjp06ABPT084Oztjx44dyM3NhZeXFxNNoKzLpeh9dXR0BMdxaN++Pf98hw4d+M4+rFi3bh3s7e35bpsuLi5IT09H3bp1sX//fqbaw4cPr7RDW2RkJLMObfb29v/YlYnjOFy4cEHq2uVZu3Yt3r17BwAICAjAu3fvcODAAZiammLdunVMta2trfn/6+rqMu2EV9XYvn07Jk6ciMePH8PCwkKiU5mVlRUz7WnTpsHb2xvPnj2DpaWlTLWtra0RGBgIBwcHXL58GVu2bAEAZGVloV69esx0AaBly5YIDg5Gv379cO7cOSxZsgQA8OTJE+jo6DDT/fz5MwIDAxEfHw8bGxv4+/tjxIgRiIyMBACYmZkhOjoahoaGzOaQlZVV6X2EiooK0w7qu3btAgAYGhpi1qxZMuuiWxWuaSJat26Nffv2iY2VlJTg6NGjGDhwIDPdAQMGYPHixfznjOM45Obmwt/fH4MHD2amWxlEhJiYGLx//x62trbMu0O+ePEC2dnZ4DgOhoaGTL/flSH6+6akpIDjOJibm8PJyYnZukHE77//Xuk4x3FQVVWFqampRJdzadK1a1dmr/0ltLS0wHEcOI5Ds2bNJJ7nOI5Zp9natWsDKPt8a2hoQE1NjX9OWVkZNjY28PDwYKKdlZUFIoKxsTFu3rzJrxtF2np6esw/byKKiopw4MAB7Nq1C3FxcTAxMYGPj49MtBs2bIhly5aJjeXn5yMoKAgzZsyQyRy+SwQO6smRMRV9XkSPJ0+ekJ+fH6mpqVHLli2ZzmHhwoVUu3Ztat68OTVp0oQvCduxYwfZ2Ngw0VRQUOB3WwoKCkhDQ4MSExNl3h1OTU2N39Uvv8sp8sFhSUFBAdnY2JCSkhIZGhqSoaEhKSkpfdGQkzV5eXn0n//8h1q2bClTU+Xr16/TmjVr+JI8VlT0ZKiYnfPs2TOZHLdQZQtCdGibMWPGFx9ubm6kpqb2Qxt4fy+0bNmScnNzpf66omYBFctlZFEmU9mutqy0ExMTycLCgjQ1NSkgIIAfnzp1KnPfyJiYGNLS0iIFBQUxj53Zs2cz9XiaOXMm6erqkru7OxkbG5OTkxOZmZlRREQERUZGkqWlJbm4uDDTJyrLVBN5p5U/v69fv57atm3LVFsIqso1rSIpKSnk4+NDenp6VKNGDaZar1+/pk6dOpGWlhYpKiqSvr4+1ahRg+zs7Jh6xr569YpGjRpFFhYWNG7cOH4eonONnp4e7y0obe7fv09dunSRaLBlb29PKSkpTDQrkp6eTk2bNiV1dXVq06YNtW7dmtTV1cnMzIwvx2VF+XP5l87vdnZ2TMtvX716RatXryZ3d3caN24crV27lqlXZ1XwgQ4ICBDEh1lorly5QmPHjiUNDQ1SV1enUaNGCdZBvLS0lE6fPk1DhgwhZWVlqlu3riDz+F7giIiEDuzJEY7S0lLs3LkTixYtgoKCAgICAjB69GgoKCgw1Y2KisKjR48wZMgQNG7cGAAQGhoKLS0tDBgwQOp6CgoKYhksRFTpzyUlJVLXLo+JiQlCQkLg4OAADQ0NJCYmwtjYGGFhYVi+fDmSk5OZ6hMRzp07h8TERKipqcHKygp2dnZMNcsjylDbt28fzp8/D319fTg7O8PV1RUtWrSQ2TxkgaKiItLS0qCrqwsigr6+PmJjY/nMiefPn6N58+bMP3NCUbNmTdy4cQOWlpZi40lJSejQoQOKiopkMo/i4mJs2rQJS5cuRe3atbFkyRIMHz5cJtoA8O7dO5SWloqNaWpqMtN7/vw5Zs2ahQsXLuDvv/9GxUu8rD5vsj5uADA3N0eLFi3g6+uLevXqSWQtGhgYMNPOycn56vMstb/Ehw8foKioKJE1J21KSkrw5s0bsUyZ7OxsqKurQ09Pj4mmgYEBtmzZgr59+yItLQ3NmzfHyZMn0adPHwDA5cuX4erqir/++ouJPlCWMTZ//nysWbMG7u7u2L59OzIyMvDbb79h+/btMjnPREVFITIyErm5ufj06ZPYc/Hx8VLVqkrXtMLCQhw4cAA7duzAjRs3YG9vj+HDh2PgwIGoW7cuc/2LFy8iPj4epaWlaNu2LRwcHJjqjRs3DleuXMGoUaNw4sQJKCgogIgQFBQEBQUF+Pr6olatWjh+/LhUdZ89ewYLCwvo6upi4sSJaN68OYgIycnJ2LZtG/Lz83H//n1m33MRffv2BRFh3759qFOnDoCyzJkRI0ZAQUEBJ0+eZKZ94cIFzJ07F0uXLuUzM2/evIl58+Zh/vz5qF27NiZMmIAOHTpgx44dUte/ffs2evfuDTU1NbRv3x5EhNu3b+P9+/c4e/Ys2rZtK3VNETk5OcjNzUVISAgyMjIQFRWFRo0aYc+ePTAyMkLnzp2ZaQtJWFjYV58fNWqU1DWXLVuG3bt34+HDh2jXrh3c3Nzg7OzM/L6pMrKzs7Fz507s3r0bjx8/houLC0aPHg17e3uZZep9j8iDatWYw4cPY86cOcjLy8Ps2bMxbdo0qKioCD0tJly+fPmbfo91mvXKlSsRGhqKnTt3omfPnoiOjkZOTg68vLywYMECTJ06lan+t2BpaYno6Gjo6+tL9XWdnZ1x/PhxqKurY8iQIXB1dYWtra1UNSpDqNT9qhDIFbJsoVu3brC0tMR//vMfsfEpU6bg3r17uHr1KhPd8uzbtw8LFizA+/fvMW/ePIwfPx5KSuxdD7KysjB16lRcunQJHz584Mdl8Tfv06cPcnNzMXXqVDRo0EAisMRi00KEkMcNlAVyExMTYWpqylSnqvLp0yf8/fffEsHMJk2aCDQjdtSoUQPZ2dlo1KgRAEBNTQ337t1D06ZNAQBPnz6Fvr4+UysLANi2bRsCAwP5ssdGjRohICAA7u7uTHUBYMOGDZg7dy5Gjx6Nbdu2YezYscjIyMCtW7cwZcoULF26VKp6VeGadv36dWzfvh2RkZFo2rQpXF1d4efnh3v37sHc3JyZ7tcoKCiAlpYWU41GjRohPDwcXbt2xePHj6Gvr4+LFy/yli43b96Ek5MTnj17JlVdPz8/nD9/HnFxcVBVVRV77v379+jcuTN69eqF3377Taq6FfnSJl1iYiI6derE2y2wwMLCAlu3bpW4X42Li8P48ePx4MEDnD9/Hm5ubsjNzZW6fpcuXWBqaopt27bx9y/FxcUYN24cMjMzceXKFalrijh06BBGjhwJV1dX7NmzB8nJyTA2NsbmzZtx4sQJ5vYSstw0KE/FUurPnz+jqKgIysrKUFdXx8uXL6WuqaurixEjRsDd3R0WFhZSf/1/4uPHjzh8+DC2b9+Oa9euoU+fPnBxcYGzszMSExMFO79+T8g91aohly9fhp+fH5KSkuDp6Qk/Pz++hl1WXLhwgc+kqLgA2Llzp9T1hPAkqAxfX1+8fv0a9vb2+PDhA+zs7KCiooJZs2ZViYAaULZD8fnzZ6m/LsdxOHDgAHr37i2TwIaIgQMHguM4iYwd0RjHcejcuTOOHj0qVU+SmJgYqb3Wf4tQxw4AS5cuhYODAxITE9GjRw8AZd/7W7du4ezZs1LVqsjp06fh7++PrKwszJo1CzNnzpSZ7xAAuLq6Aig7l1WWMcWS2NhYXL16Fa1bt5aZpgghjxsAunfvLmhQLSMjA0FBQbznT4sWLeDp6cl7WLIiLS0N7u7uuHbtmti4rIKZQix8SkpKxDLwlJSUxHbQRZk8rPHw8ICHhwdevHiB0tJS5hk75dm8eTO2bt0KZ2dnhIaGwtfXF8bGxliwYAGTRZ/Q1zRzc3MUFRXBxcUFf/zxB7/I8/f3l9kcVqxYAUNDQwwbNgwAMHToUBw6dAj169dHdHQ0WrVqxUT3+fPnvLdVo0aNoKqqKrbx2aRJE+Tl5Uld99y5c/D395cIqAFlgWwfHx+sXLmSeVBNRUUFb9++lRh/9+4dlJWVmWpnZGRUmi2kqamJzMxMAEDTpk3x4sULJvq3b98WC6gBZec7X19fMQ9VFgjpA11+0+DYsWMSmwYsefXqlcRYeno6Jk2axMzX7MmTJ6hRowbCwsLQtGlTiSSXT58+ISIigkmWHFB2XjE3N8eIESMQFRXFrwmcnZ2Z6P2QyKrOVE7VoE+fPqSsrEwTJkygp0+fCjKHgIAAUlBQoPbt29OAAQNo4MCBYg/WlJSUUGpqKl29elWmXU/LU1hYSLdu3aI//viD3r59KzPdb4FVZ75vxcLCQqp+S+fPn6cOHTrQ+fPn6c2bN/TmzRs6f/482djY0MmTJyk2NpZatmxJbm5uUtOsKgh97LLu0PbHH39Qt27dSFVVlWbMmMGkA963ULNmTfrzzz8F0W7RogXfnU7WCHncREQhISGkr69PCxcupKioKDp27JjYgyWnT58mZWVlat++PXl5edGMGTOoffv2pKKiQmfPnmWqbWtrS3Z2dhQdHU13796lhIQEsQdL1q9fT7Vq1aIpU6bw9xYODg5Uu3ZtmjNnDjNdjuMoLCyM/9uqq6vT1q1b+Z9DQ0N/eP9ENTU1ys7OJiIiXV1d/m+dlpbGzLfyn2Dp11mjRg0aOXIknT17lkpLS/lxJSUlevDgATPd8hgZGfEdy8+ePUtaWlp05swZcnd3p549ezLTFcrPrnbt2pSenv7F59PT06l27dpS163IyJEjqWXLlnTjxg0qLS2l0tJSun79OllYWNDo0aOZanfq1IkcHR3p77//5sf+/vtvcnR0pC5duhAR0blz56hp06ZM9PX09OjMmTMS46dPnyY9PT0mmiKE9IE2MzOj8PBwCe358+fTlClTmGp/iVu3bpGZmRlTDQUFBbHvuogXL14wvaZpaWmRnZ0dbd26VcxjXJbn1+8deVCtmsFxHNWoUYO0tLRIW1v7iw+W1K9fn8LCwphqfAmRkfWXTEflCB9Uk7Z+y5Yt+Zvg8sTGxpK5uTkRld0Q6evrS02zIkIFcqvCscsSUctzLy8vWr9+/RcfrOnWrRudO3eOuU5lnDlzhnr16sXfCMsSIY+bqPJmAbI6v7du3Zr8/Pwkxv38/KhNmzZMtdXV1WVmGF4RoRY+X/tbl3+w5MWLFzR58mRq0aIF6ejoyPQ+iqgswHPnzh0iIrK2tqbg4GAiKjsHsNSfPHlypePv3r2jrl27MtP966+/KDAwkExMTKhhw4bk7e1N8fHxVKNGDZkt+lRVVflNv+nTp9P48eOJiCg1NZW0tLSY6XIcR0uXLuWvYaqqqjR//nz+58DAQCbnuC8t8EU8e/aMFBUVpa5bkVevXpGTkxNxHEfKysqkrKxMCgoKNHDgQOaNtv78808yMzMjZWVlMjExIVNTU1JWVqbmzZtTamoqEREdOXKE2bpm2rRp1LhxY4qIiKDc3Fx69OgR7d+/nxo3bkyenp5MNEUYGxvz1/Ty5/fQ0FBq0aIFU+2quGkQHx9PGhoaTDU4jhML4IpISEhgel5///497d27l+zt7UlNTY1++eUXOnz4sEzPr9878vLPaoaoFbuQfPr0SSZeWpUxceJEWFtb4+TJk5X6Dcn58RA6df/GjRtwcXFBTk5OpWWYLEuzhD52Ee/fv5coKWZhvtqkSRNwHIcjR4588Xc4jsP06dOlrl2e7du3Y+LEiXj8+DEsLCwkjOKtrKyYaQ8bNgxFRUUwMTGBurq6hDaLsjARQh43AAkrAVmSkpKCyMhIiXE3NzcEBQUx1TY3N2f+Hf4Subm5/PVcTU2NL9EaOXIkbGxssHHjRia6Qv6tRYwYMQIZGRlwd3cXrNz5+PHjaNu2Ldzd3eHl5YWoqCjcvn0bv/zyCzPds2fPYt68eQgMDOTHCgsL4ejoyEwTKCtPmjt3LubOnYuLFy9i586d6NSpE4qLi7F7926MGzeOL5Fkhba2Nh49egR9fX2cPn2afw+IiOm1vEmTJti2bRv/c/369bFnzx6J32HB27dvKy3/BIA3b97IpMxaS0sLx44dw8OHD5GSkgIigrm5uUxK/c3MzJCSkoIzZ84gLS0NRITmzZujZ8+efFO3gQMHMtNfvXo1OI7DqFGjeI/IGjVqYNKkSVi+fDkzXQCYMGECPD09sXPnTnAchydPnuD69euYNWsWFixYwFS7fv36yM/Ph4GBAQwMDHDjxg20atUKWVlZzD9zFf2IiQhPnz7Fxo0b0alTJyaabdq0Acdx4DgOPXr0ECv3LSkpQVZWFtNzrKqqKlxdXeHq6oqMjAzs2rUL06dPR3FxMZYuXYoxY8age/fu8kYFX0PAgJ6caoqvry8tXrxYEG11dfWvprLL+fEy1YRO3W/VqhUNGTKEkpOT6dWrV1RQUCD2YImQx15YWEhTpkwhXV1dUlBQkHj8yIgyYitmSskiY2r37t1ffbBEyOMmIkGy80Q0btyYIiMjJcYPHDjAPBP0woUL1LFjR4qJiaEXL17Q69evxR4sESpbSsTly5fp8+fPEuPFxcXMM4Fr1arFvLz2a5SUlIgd+4EDB2jatGm0fv16+vjxIzPdzMxMatiwIa1du5aIiN68eUMdO3akLl260Lt375jpVkZBQQFt2rSJfvrpJ+I4jiwtLZnqTZkyhQwMDMjBwYF0dHR4+46IiAjmGalCIDp3f+khq3P7okWLqLCwUGK8qKiIFi1axFz/W5C2dUlFCgsL6d69e5SYmFjpe8GKOXPmkJqaGn9NV1VVpXnz5jHXdXd3p4CAACIi2rJlC6mpqZGDgwNpaWkxt2upLNO9Xr165OzsTE+ePGGiGRAQQAEBAcRxHM2aNYv/OSAggJYtW0bh4eFMz+uVUVJSQtHR0TR48GBSVlYmHR0dmep/b8i7f1ZTxowZAzc3N9jZ2clc29PTE2FhYbCysoKVlZVENsPatWuZaXfv3h2+vr7Md1S/ZzQ0NJCYmAhjY+MfQj81NRUDBgxAVlYW9PX1wXEccnNzYWxsjGPHjqFZs2Y4evQo3r59i5EjR0pFszxCdiQU8tinTJmCmJgYLF68GKNGjcKmTZvw+PFjhISEYPny5bypPQtEmQSVcePGDdjY2DDTBsoyh1q0aAFfX99KM1gMDAyY6guF0MetoKAAW1tbjBw5EkOGDEGdOnWY6pVn8eLFWLduHfz9/WFrawuO4xAbG4sVK1bA29sb8+bNY6Ytypao+H6TDBoVjBs3Dvr6+li4cCGCg4Mxc+ZMdOrUic+W2rFjBzNtAFBUVMTTp08lGgTk5+dDT0+P6bG3a9cO//nPf5ifT6oi9+/fR7du3TB//nxERERARUUFJ0+elGlDmIokJCRg586d2LBhAzONz58/Y/369Xj06BHGjBmDNm3aAACCgoJQq1YtjBs3jpk2AISFhWHYsGEyMzG/fPnyN/0e62ZgQn7PvxVW985ubm5Yv349NDQ0xMYLCwsxbdo0Js3dKlJUVITk5GSUlpbC3NwctWrVYq5ZWlqK0tJSPmMrMjISsbGxMDU1xcSJE5k3qBCK0NBQDBs27IvZoUKRl5eHPXv2YObMmUJPpcoiD6pVUwYPHoyTJ09CX18fY8eOxejRo/nW9Kyxt7f/4nMcx+HixYvMtI8cOYJ58+bBx8cHlpaWMi9P+h4IDw/HgAEDBLs5ZnFjQkRfTd1nidCBXKGOvUmTJggLC0O3bt2gqamJ+Ph4mJqaYs+ePdi/fz/TVuzNmzdHXFwcdHR0xMbj4uLQr18/FBQUMNMGhA2kxsfHo0aNGrC0tAQAHDt2DLt27YK5uTkCAgKY3ogKedxA2bHv378fERERyMvLQ+/evTFixAg4OTlJLEKlDREhKCgIa9aswZMnTwAADRs2hI+PD6ZPn860NPCfFr4sF7xCL3wUFBTw/Plz6Orqio2npaXB2toab968YaZ969Yt+Pv7Y8GCBZWWO7Moca9IQUEBbt68WWkndVZd4kTcuHEDDg4O6NChA06cOAE1NTWmeuUpLi7GpUuXkJGRARcXF2hoaODJkyfQ1NSUyYL/n+jXrx+2b9+OBg0aSPV1v4fgEgu+9D2/ePEihg0bxqTz6b+FVVDtS3/zFy9eoH79+nxJqBz2JCUlYceOHcwtHYCyQHll53VWZd5y/nfkQbVqTH5+Pvbu3Yvdu3fj/v37cHBwgLu7OwYMGCBxc/ijUFkggeM4mezoVwUuXLiACxcuVHqilsVu17cgVKacpaUloqOjv5jh9N/yPQRyWRx7rVq18ODBAxgYGKBx48Y4fPgw2rdvj6ysLFhaWuLdu3dS06qIh4cH4uPjcenSJX5398qVK+jfvz8CAgLg5eXFTBsA+vfvjzFjxmDw4MFMdSqjXbt28Pf3x+DBg5GZmQlzc3P88ssvuHXrFvr168f0ZlDI4y4PEeHSpUsIDw/HoUOHUFJSgsGDB8vsHCfyFauYWSBHeog8w44dOwZHR0exoGlJSQnu3bsHMzMznD59mtkc0tPT4ezsjLt374qNy+p+4vjx43B1dUVhYSE0NDTEArccx0nVP1Hk91ORnJwc6OnpiQXU4uPjpaZbGTk5OXB0dERubi4+fvyItLQ0GBsbY8aMGfj48SO2bNnCVP9bYHUf86XgUmJiIuzt7aX6N/83AWlWAWRtbW1wHIfXr19DU1NT7DNYUlKCd+/eYeLEidi0aRMT/X+DtP/mIr86bW1tpKeni/3NS0pKcPz4cfj7+/ObOD8iQm4aiHjz5g3279+PHTt24Pbt27CyskJCQgIzvfT0dLi5ueHatWti47K6roi+cxXhOA6qqqowNTXFmDFjMHbsWKbz+B6RNyqoxujo6MDT0xOenp64e/cudu7ciZEjR6JWrVoYMWIEJk+ejKZNmwo9TamSlZUl9BQEY9GiRVi8eDGsra0FadLwrWULISEhqFevnkznBgDZ2dkSZvrSQBRgcHNz48eqWiCXxbEbGxsjOzsbBgYGMDc3R2RkJNq3b4/jx49DS0tLqloV2bp1K4YMGYJ+/frh7NmzuH79OpycnBAYGAhPT0+m2kBZcMnLywtJSUmVBlKdnJyYaaelpaF169YAgIMHD6Jr164IDw9HXFwchg8fzjyoJtRxl4fjONjb28Pe3h6TJk2Cu7s7QkNDZRZUEyqYVlRUhNzcXHz69ElsnHXg/urVqwgJCUFGRgaioqLQqFEj7NmzB0ZGRujcuTMTzdq1awMoW2hoaGiIBXWUlZVhY2MDDw8PJtoiXF1doaysjPDwcEEaFXh7e8PNzQ3Lli2Duro6Uy2WRuz/Fk9PT1hbWyMxMVEsG3nQoEHMyy+FQggTcy0trW/+TLO6jwkKCgIRwc3NDYsWLeK/90DZ99zQ0BAdO3Zkoi00ovef47hKG3BwHIdFixYJMDPZ8E+bBqyDapcvX8aOHTtw6NAhfPjwAT4+PggPD2eeiT9mzBgoKSnhxIkTgqzVFixYgKVLl6JPnz5o3749iAi3bt3C6dOnMWXKFGRlZWHSpEkoLi5mfo393pBnqsnB06dPERYWhp07d+Lx48cYPHgwnj59ipiYGKxcuZJJVsetW7dw8ODBShcAhw8flrqeHKBBgwZYuXIlE9+wb6Gqly2w2lnOycn56vNVwV+LxbGvW7cOioqKmD59OmJiYtCvXz+UlJSguLgYa9euZR7c+vz5M/r164fCwkLcu3cPv/32G6ZOncpUU8TXSmtZB1I1NTVx584dNG3aFD179sTPP/8MT09P5ObmwszMDO/fv2emLeRxl+fRo0fYv38/wsPDkZSUhI4dO8LV1RWTJk2Sqk7btm1x4cIFaGtrfzGTRwTL7J28vDyMHTsWp06dqvR5lu/7oUOHMHLkSLi6umLPnj1ITk6GsbExNm/ejBMnTjAt8wbKNotmzZoliF2Buro67t69CzMzM5lrA2Xl1klJSYL5nwpF3bp1ERcXBzMzM7FrV3Z2NszNzVFUVCT0FKV+TRUFTxYtWgRvb2+xEldRcGnw4MFSLbcuX1aenZ0Nf39/jBkzhg9iXb9+HaGhofjtt98wevRoqel+aS6dOnUSCyZWNaT9N798+TKICN27d8ehQ4fEPEKVlZVhYGCAhg0bSkWrKtKsWTP07dtXJpsGIp4+fYpdu3Zh586dKCwshLOzM1xcXNCxY0ckJibC3Nyc+Rxq1qyJO3fuoHnz5sy1KmPw4MHo2bMnJk6cKDYeEhKCs2fP4tChQ/jPf/6DrVu3IikpSZA5VlWq7tlJDlM+f/6M33//Hbt27cLZs2dhZWUFLy8vuLq68rvsERERmDRpktSDaqKspF69euHcuXPo1asX0tPT8ezZMwwaNEiqWpWRkZGBoKAgpKSkgOM4tGjRAp6enjAxMWGuLSSfPn2Cra2tYPqizKyK/PXXX2K7jz8aVSFoJgTlzxv29vb4888/cfv2bZiYmKBVq1ZS17t3757E2MKFC+Hs7IwRI0bAzs6O/x3WmTsVyxRkibW1NQIDA+Hg4IDLly/zpVBZWVnMM0CFPG6gLENx3759iI2NRfPmzeHq6oqjR4/C0NCQid6AAQP4zNsBAwbIfEdZxIwZM/Dq1SvcuHED9vb2OHLkCJ4/f47AwECsWbOGqXZgYCCCg4MxatQoRERE8OO2trZYvHgxU22g7DteXFyM8+fPy9xfy9raGo8ePRIsqNa7d2/cvn1b5kG1W7duobS0FB06dBAb/+OPP6CoqAhra2um+qWlpZUGiv/6668ftuR64cKFAABDQ0OZmZiX92JcvHgx1q5dC2dnZ37MyckJlpaW2Lp1K7Ogmsizsfxcnj9/juDgYBQWFsLJyYlZNqzQiI45KysLTZo0Eez6IhSPHz/G9OnTZRZQAwAjIyMMGTIEmzZtkpnvckXMzc3x4sULmeuKOHPmDFasWCEx3qNHD3h7ewMA+vbtC39/f1lPreojsz6jcqoUOjo6pK2tTZMnT6a7d+9W+jsvX74kQ0NDqWtbWlrSxo0biaisJX1GRgaVlpaSh4cHLViwQOp65Tl9+jQpKytT+/btycvLi2bMmEHt27cnFRUVOnv2LFNtofH19aXFixfLXLd169bUpk0bUlBQIEtLS2rTpg3/sLKyIg0NDRoyZIjM51UR0WeRBQ8fPqSpU6dSjx49yMHBgaZNm0YPHz5kovXfwPLY/wlptaEXtT2v2Aa94v8VFBSkMOuqS2JiIllYWJCmpibfjp6IaOrUqeTs7MxUOysri+nr/xONGzemWbNmffGa9qNSv359+uOPP4iISENDg1JTU4mI6NixY9SpUyem2mpqavzfvfx5JCMjg1RUVJhqExFlZ2dT8+bNSV1dnRQVFXl9T09PmjBhAlPtyMhIMjc3p127dtHt27cpMTFR7MGCY8eO8Y/t27dTkyZNaOHChRQVFSX23LFjx5joExG1a9eODh48KDF+6NAhat++PTNdEUOHDiUPDw8iKvvMZWZm0tu3b6l79+40ZswY5vrfAstr6qtXr2jbtm3k7+9P+fn5RER0584d+uuvv5joEZV9z9PS0iTGU1NTSU1NjZnumDFj+L81EdGbN29IX1+fdHV1ycrKipSUlOjkyZPM9P8N+/bto3fv3knt9fLz8+nRo0diY/fv36cxY8bQkCFDaN++fVLTqooMGjSIDhw4IFPNZs2akaGhIc2ZM4dSUlL4cSUlJXrw4IFM5nDhwgXq2LEjxcTE0IsXL+j169diD9bo6+vT2rVrJcbXrl1L+vr6RFR2n1mvXj3mc/nekGeqVVPWrVuHIUOGfHW3S1tbm4kHWUZGBvr16wcAUFFRQWFhITiOg5eXF7p3787UI8Df3x9eXl5Yvny5xLifnx969uzJTFsIyrc+Li0txdatW3H+/HlYWVlJ+B2tXbuWyRxEXiwJCQno3bv3F8sWflTOnDkDJycntG7dGp06dQIR4dq1a2jZsiWOHz/+w33m/i3S8nMT2i9xw4YNGD9+PFRVVbFhw4av/u706dOZzcPKyqrSlPxVq1ZBUVGR/3n//v1wcnKSatmcsbExbG1tMXLkSAwZMkSsXEUW5ObmIjY2FqtXr0ZmZiYOHjwoE38voOzYb926JdFxtqCgAG3btkVmZiYz7cLCQr6svk6dOsjLy0OzZs1gaWnJ3DS+QYMGePjwoUQ2YGxsrEwyqIT01xo2bBgA2fplVuZtVllGIMty6+TkZLRt21ZivE2bNkhOTmaiWZ5169bB3t4e5ubm+PDhA1xcXJCeno66deti//79zPWF5N69e3BwcEDt2rWRnZ0NDw8P1KlTB0eOHEFOTg7CwsKY6Orr6yM4OFgi8zUkJETqzZ3KExcXh40bN/I/h4WFobi4GOnp6ahduzb8/PywatUq9O3bl9kcgG9r8uXi4iJVzSlTpqBBgwb8vfnff/+NLl26oGHDhjAxMcGYMWNQUlIimKULC37//Xf+//369YOPjw+Sk5Nl5tGampqKuLg47NixA+3atUOzZs0wYsQIAJBZpqCDgwOAssyw8rC8rpRn/vz5mDRpEmJiYtC+fXtwHIebN28iOjoawcHBAIBz584x7Sr+vSIPqlVThDwJ16lTh++O1qhRI9y/fx+WlpYoKChg7oWRkpKCyMhIiXE3NzeZtEiWNRW7kokMzO/fvy+zOQhRtlCVqG6BXKEQusx23bp1cHV1haqqKtatW/fF3+M4jmlQ7UtU/N5NmDABHTp0kGrg4/bt29i/fz/fEKJ3794YMWIEnJycJBqUsODw4cO8v1d8fDw+fvwIoKwb57Jly5j6e2VnZ1d6s/vx40f89ddfzHQBwMzMDKmpqTA0NETr1q0REhICQ0NDBAcHo0GDBky1J0yYAE9PT+zcuRMcx+HJkye4fv06Zs2ahQULFjDVBsqCd3FxcRJeUgYGBnj8+DFTbSEC+UKXWANlm6HPnz+XOHc8ffpUJp5XDRs2REJCAiIiInDnzh2UlpbC3d0drq6uYg0rWHDlyhXY2tpKHGdxcTGuXbsGOzs7AMCcOXOYbCp4eXlhzJgxWLlypVipa58+faQe1CnPunXrMHjwYJw5cwY2NjYAgBs3biAjIwOHDh1ipvv48WOxhmkXLlzA4MGDecuQ0aNHY9euXcz0AeGafN24cUPs2MLCwlCnTh0kJCRASUkJq1evxqZNm36ooFpV2DTo1KkTOnXqhA0bNmD//v3YuXMnSkpKMHnyZLi4uGDgwIES3XelSUxMDLPX/hY8PDxgbm6OjRs34vDhwyAiNG/eHJcvX+YthERloHIqIGyinBwhuHjxIq1evZpiY2OJiCg4OJj09fWpbt26NG7cOCoqKmKq7+zsTGvWrCEiosDAQNLV1aVx48aRgYEBDRo0iKl248aNKTIyUmL8wIEDfFqrHHYIUbbwrUg7dV+EiorKF8smZFEe9S2wOvZvgUWZzLJly2jHjh0S4zt27KDly5dLVet7hWV5UmlpKV28eJHGjRtH2trapKmpSWPHjmWiVZ7WrVtTaGgoEYkf3927d5mVKohK7TiOo7CwMLHyu8OHD9OUKVOoWbNmTLRF7N27l3bt2kVERPHx8aSrq0sKCgqkqqpKERERTLWJiObMmUNqamp8qbWqqirNmzePuS4Rkba2Nl+WU/5vfvXqVdLT05PJHKobw4YNo65du1JBQQE/9urVK+ratatMrBwuX75Mnz9/lhj//PkzXb58mam2goICPX/+XGL8xYsXMrEW0NTU5K0jyn/es7Ozmd9P5Obm0uzZs2nQoEE0cOBAmjNnjlSsG75GnTp1xMruGjRoQHv37uV/zsjIYFp+SlRWXh8WFsZUozJUVVUpOzub/7lPnz40a9Ys/ufU1FSqU6eOzOdVHUlOTiZvb2/S09MjJSUloacjp4oiz1SrZmzbtg2TJk2CoaEh5s6di4ULF2Lp0qUYOXIkFBQUsHfvXujo6Ehk1UiTjRs34sOHDwCA2bNno0aNGoiNjcUvv/yC+fPnM9MFyiLw48ePR2ZmJmxtbcFxHGJjY7FixYofPvLu5uaG9evXSxj5FhYWYtq0aXwKOyuEKlsAhEndF6Grq4uEhASx3VagrBy2YidUFgh57EIREhKC8PBwifGWLVti+PDh8PPzY6q/ePFizJo1S8Jg9/3791i1apVMMniEhOM42Nvbw97eHpMmTYK7uztCQ0OZn2NSU1P5TJHyaGpqoqCggImmaGed4zgJs+4aNWrA0NCQebMAV1dX/v9t2rRBdnY2/vzzTzRp0gR169ZlpltSUoLY2Fh4e3tj7ty5SE5ORmlpKczNzZk2CChPz549ERQUhK1btwIo+zu8e/cOCxcuZFIS9vvvv6NPnz6oUaOGWKlSZbAoT/qn0vLysMqIXbNmDezs7GBgYIA2bdoAKLue1atXD3v27GGiWR57e/tKO4m/fv0a9vb2TMuj6AsNl/Lz82XSgVZVVRVv3ryRGE9NTWWaPQOUlYAuW7aMqUZFWrVqhT179uC3337D1atX8fz5c3Tv3p1/PiMjg3kHTKGafImuW6Is/Js3b8Ld3Z1/nuM4PhtbDltatGiB1atXY/ny5f943pcGV69eRUhIiMxtLESUlpbi4cOHla4bKrvHklMGR0Qk9CTkyA4LCwtMmDAB06ZNw+nTp9G/f39s376dXwwcPHgQs2fPxsOHD5noFxcXY9++fejduzfq16/PRONrEBGCgoKwZs0aPHnyBEBZKYGPjw+mT5/+Q3fXUVRUrPRG9MWLF6hfvz6Ki4uZ6vfo0QM//fQTX7Ygaj1+7do1uLi4IDs7m4nuP6XuHzlyhImuiMWLF2PdunXw9/evNJA7b948ZtpCH/u3IO029EDZwiMlJQVGRkZi45mZmbwPD0u+9F3Lz8+Hnp4ec0+Mb4HF+y7i0aNH2L9/P8LDw5GUlISOHTvC1dUVkyZNkrpWeUxMTBASEgIHBwex4wsLC8Py5cuZ+j0ZGRnh1q1bTINYlfH582eYmZnhxIkTMDc3l6k28OXvmqx48uQJ7O3toaioiPT0dFhbW/P+WleuXJH6xoWCggKePXsGPT29r3aGY1WeVPF9zsvLQ1FREbS0tACUefipq6tDT0+PuY/fvn37kJiYCDU1NVhZWcHZ2VnC94gFCgoKeP78uUQQKS0tDdbW1pUGnf5XfvnlFwDAsWPH4OjoKFbOXlJSgnv37sHMzAynT5+WunZ5xo8fj7y8PERGRqJOnTq4d+8eFBUVMXDgQNjZ2TG1MRFioR8TE4O+ffuiYcOGePr0KZydnbFjxw7++cmTJ6OwsBChoaFM9AHAz88PtWrVYr7pX5H+/ftDT08P27Ztw+HDh+Hq6opnz55BW1sbAHDy5EnMmjULKSkpMp0XS6rCpgEg7D3coUOHeBuLPXv2IDk5GcbGxti8eTNOnDjB1MYCKCs7dnFxQU5ODiqGiGTh6fY9I89Uq2ZkZmbyu6eOjo7gOA7t27fnn+/QoQMePXrETF9JSQmTJk0S7CIgaojg5eXF+7r9qC3YRbx58wZEBCLC27dvxbyVSkpKEB0dLZOMqdu3b/PZBOVp1KgRnj17xkw3ODgYu3fvFsx3Yv78+dDQ0MCaNWswe/ZsAGWB3ICAAObeWkIfu1Do6+sjLi5OYgEaFxfHfFcb+HI2Q2JioszN+2XJ1q1bsW/fPsTGxqJ58+ZwdXXF0aNHJUzsWSGkv5dQjTJq1KiBjx8/CrYhZGlpiczMTMGCaiJ/rf379yM+Pp65v1ZpaSlyc3NBRIL4m5X/nIWHh2Pz5s3YsWMHzMzMAJRlLHl4eGDChAlM51GzZk2MHz+eqUZFRIEtjuMwZsyYSgNbrDKKRB5eRAQNDQ2xz5aysjJsbGzg4eHBRLs8q1evRt++faGnp4f379+ja9euePbsGTp27IilS5cy0y2/0JelX6W9vT3u3LmDc+fOoX79+hgyZIjY861btxZbw0iLqtDka8mSJXBwcMDevXtRXFyMOXPm8AE1AIiIiPjhzOIr+tF+bdOA5f3zl/KNPn78KOHfKW0CAwMRHByMUaNGISIigh+3tbWt1F9O2kycOBHW1tY4efKkTD0EfwTkQbVqxocPH8RuBlRUVMRuTFRUVJhnLHXo0AF3794V3Fj8Rw+midDS0gLHceA4Ds2aNZN4nuM4ph1XRQhVtiBU6r4IIQO5Qh/7txASEoJ69epJ9TXHjRuHGTNm4PPnz3ypyIULF+Dr68u0zFtbW1vsu1b+ZqSkpATv3r3DxIkTmekLzZIlSzB8+HCsX7+eb4oiS3x9ffkSsA8fPsDOzg4qKiqYNWsWpk6dylR7+vTpMDU1lbjR37hxIx4+fMg0g2TatGlYsWIFtm/fLhOj+PIsXboUs2bNwpIlS/DTTz9JlMBpamoyn4Oamhrc3NzEunCyxMjIqNIsBlkzf/58REVF8QE1oKxpxbp16/Drr7+KlQVLm4yMDAQFBSElJQUcx6FFixbw9PSEiYkJM00hA1siw3hDQ0PMmjVLJqWelaGpqYnY2FhcvHiRDyK3bduW7xjICiEX+ubm5njx4gVsbW0lskPd3Nxw7do1qWtWhSZfrVu3RkpKCq5du4b69eujQ4cOYs8PHz4cLVu2lNl8ZIHQmwaiTDmO47B9+3YxG4OSkhJcuXIFzZs3Z6ItQggbi/Kkp6cjKioKpqamzLV+NOTln9UMRUVFpKWlQVdXF0QEfX19xMbG8pkEz58/R/PmzZmmdx48eJDviFjZTbiVlZVU9dq2bYsLFy5AW1sbbdq0+WrUPT4+XqraVYHLly+DiNC9e3ccOnRILFNGWVkZBgYGMsneEapsQajU/aqA0Mf+LX5uLCAi+Pv7Y8OGDfj06ROAsqCun58f04yl0NBQEBHfTVi0CATKvmuGhobo2LEjM/1/g4WFBU6dOgV9fX2pvSYRITY2VlAvEAAoKiqSub9Xo0aN8Pvvv+Onn34SG4+Pj4eTkxOTDqC5ublo3LgxBg8ejAsXLqBWrVqwtLSUuKYePnxY6toiyi9yy19bRdmarEtFvuRvw3EcVFVVYWpqKvUsuvIloEKirq6OS5cuSWTq3Lx5E926dWPWTf3MmTNwcnJC69at0alTJxARrl27hsTERBw/fpx5R+tFixYJGtiqahQUFPCZPKxQV1dHcnIyDA0NxUrr5ZYK7AkLC8OwYcMkOmh/+vQJERERGDVqlEAzY4uJiQmioqJ430YRd+7cwa+//sokO1x0rcjJyUHjxo2hqKjIPye6h1u8eLFEgFOaCGljAQDdu3eHr68vHB0dmer8iMgz1aoZRCSWrUREYiesL5UtSQPRQnPYsGEAxOvhOY5jdhM+YMAA/mI0YMCAapfKKkoPz8rKQm5uLkJCQpCRkYGoqCiZLni/VLZgY2Mj9bIFoVP3hQzkCn3sIoRqQw+UnU9WrFiB+fPnIyUlBWpqamjatKnETam0EXlTGhkZoVOnTjLPGqrIu3fvJIKZoswhFjvuhw8fFqREqCLq6uqwtraWiZaI/Px8sSCqCE1NTbx48YKJpihjSktLC4MHD2ai8U/ExMQIoiti4MCB/P1DecrfU3Tu3BlHjx4VK536EejRowc8PDywY8cO/PTTT+A4Drdv38aECROYZi6JNkUrNrTy9/eHn58f86DawoULmb7+PxEVFYXIyEjk5ubymzYiWG/MrlixAoaGhvx99NChQ3Ho0CHUr18f0dHRaNWqFRPdBg0a4OHDhxKl/LGxsUx8OSsiZIMIoZt8jR07Fo6OjhIBxbdv32Ls2LE/bFDt6dOn+Pz5s8R4SUkJnj9/zkRTFKizt7fH4cOHBblmCGljAZRlvnt7e+PZs2ewtLSUWDdIO/HlR0KeqVbNuHz58jf9Hos6fdFO0/v377/6e0KXhf6oCG1+KSImJgZ37txhWrZgb2//r+YjbRYtWgQfHx+oq6sjICDgqwElaS8QhD52EQ0aNMDKlSsF93P766+/wHEcGjVqJDPN+Ph41KhRA5aWlgDKzK137doFc3NzBAQEMPXkyMrKwtSpU3Hp0iWx7AFZZA61adMGXl5eGDVqlNgOa0JCAhwdHZl6JwqNhYUFJk6cKFFm+p///AdbtmxhsrtcVTKmhOTChQuYO3culi5dymds3bx5E/PmzcP8+fNRu3ZtTJgwAR06dBAzOP9fUFBQQGBg4D9mQLL2zMzLy8Po0aNx+vRpfuFTXFyM3r17Y/fu3cw+F6qqqkhKSpLoaJ2WlgYrKyvmWUuAcIGtDRs2YO7cuRg9ejS2bduGsWPHIiMjA7du3cKUKVOY+poBgLGxMfbu3QtbW1ucO3cOQ4cOxYEDB/j34uzZs0x0V65cyXdw7tmzJ6Kjo5GTkwMvLy8sWLCAWXl9VWgQIXSTry815khMTIS9vT1evnzJVF8o+vfvj9zcXIlNAw8PD+jr68ukC+enT5+QlZUFExMTmW6Szp07F+vWrePPpSIbiyVLljDXrqwBD8vElx8JeaZaNeNbgmX/FPT6bxHFb4UMmhkbG+PWrVvQ0dERGy8oKEDbtm2ZdssSGqHNLwHJcsA///wT4eHhAKRbDih09kT5QFlAQIBMtYU+dhFC+rmVlpYiMDAQa9aswbt37wCU+dh5e3tj7ty5X+3aJw0mTJgAf39/3sR92LBh+OWXX3Dw4EEUFRUx9dcS+Sjt3LkT9erVk2mGoNBeIEIyc+ZMTJ06FXl5eWI+fmvWrGH69xaaXbt2oVatWhIG4qLPuih7kxWenp7YunWr2LmmR48eUFVVxfjx4/HgwQMEBQVJ3W8tODhYrDSoIhzHMTfSLioqQlRUFB4/foyUlBQQEVq0aFGpd6o00dXVRUJCgkRQLSEhQSYB3vKBrWPHjkkEtliyefNmbN26Fc7OzggNDYWvry+MjY2xYMECmQQ3nj59ypfsnzhxAkOHDkWvXr1gaGjItCRNKL9KIX30hG7yJapy4DgOPXr0EAvqlJSUICsr64cu0du5cydGjx6N9u3bS2wabN++nan2+/fvMXXqVL6rbFpaGoyNjTF9+nQ0bNgQ/v7+TPWXLl2KuXPnytzGAhCu6dKPgDyoVk2ZMmUKNm3aJDFeWFiIfv364dKlS0x0hS69zM7OrjTK/vHjRyaeN1UJoRe8QpUDCp26L2QgV8hjHzduHMLDwwXxc5s7dy527NiB5cuX854/cXFxCAgIwIcPH5hnE6SlpfHGxgcPHkTXrl0RHh6OuLg4DB8+nGmQ5d69e7hz546YebmsELpESEjc3Nzw8eNHLF26lN9NNjQ0xJYtW5iW51Q0U64MlsGd5cuXIzg4WGJcT08P48ePZx5Uy8jIqLQZgqamJn9ubdq0qdRLcG/fvi1ohiARoWnTpnjw4AGaNm0qEeBiiYeHB8aPH4/MzEzY2tqC4zjExsZixYoVTBvBiBAysJWbm8sHcNXU1PjmQyNHjoSNjQ02btzIVF9bWxuPHj2Cvr4+Tp8+jcDAQABlnwfWGSRCLPSFbBAhdJOvgQMHAigLVvfu3VvsvRb5ewlV9s8aITcNgLJS9sTERFy6dEkscOng4ICFCxcyD6oBwthYAPJqsf8FeVCtmnL27FnMmzePvyADZQtt1rseFTviVQaLm6LyacJnzpwR874pKSnBhQsXpG5mXNUQesEbHByM3bt3y7wcMDQ0FMuXL5cILL1//x5hYWHMg2pCBnJlfexVxc8tNDQU27dvh5OTEz/WqlUrNGrUCJMnT2YeVCMi3svs/Pnz+PnnnwEA+vr6zPy1RLRr1w6PHj0SJKgmtBeI0EyaNAmTJk1CXl4e1NTUZLKzLHTGVE5OTqXXTgMDA+Tm5jLTFfHTTz/Bx8cHYWFhfHlUXl4efH190a5dOwBl3cwaN24sNU2hNweBshKdpk2bIj8/X6YBNaCs66iGhgbWrFmD2bNnAwAaNmyIgIAA5iWvgLCBrfr16yM/Px8GBgYwMDDAjRs30KpVK2RlZUn4+rHgl19+gYuLC/+379OnD4CywIssuvWpq6vzGdCyypwByrL/i4uLcf78eWRkZMDFxQUaGhp48uQJNDU1mcwlJiZG0CZfoooHkYde+Uy5Hx0hNw0A4OjRozhw4ABsbGzEzvfm5ubIyMiQut4vv/yC3bt3Q1NTky95/hIsGg/9/vvv6NOnD2rUqPGPZbXl76vliCMPqlVTzp49i86dO0NHRwdeXl54+/YtevfuDSUlJZw6dYqZ7qJFiyo1c2aNaMeH4ziJnfMaNWrA0NAQa9askfm8ZInQC15ZlwMKnbovZCBXqGOvCm3ogbLAfGVtz5s3by6TEh1ra2sEBgbCwcEBly9fxpYtWwCUpdXXq1ePqfb27dsxceJEPH78GBYWFjI1mRWqRKiqUdH7hiVCZ0zp6enh3r17Eps1iYmJEtm5LNixYwcGDBiAxo0bQ19fHxzHITc3F8bGxjh27BiAsoYd0syYrSpWxCtXroSPjw+2bNkCCwsLmelyHAcvLy/+3hGAxMYNS4QMbHXv3h3Hjx9H27Zt4e7uDi8vL0RFReH27dv/uBiWBuvWrYOhoSEePXqElStX8sGkp0+fYvLkycx0i4uLsWjRImzYsIG3VKhVqxamTZuGhQsXSlxnpE1OTg4cHR2Rm5uLjx8/omfPntDQ0MDKlSvx4cOHSrNl/1eqSpOv0aNHo6CgAHv37kVGRgZ8fHxQp04dxMfHo169ejL1i5UVQm4aAGUbM5VdVwsLC5lsqtSuXZt/XaHWyCJ/VtF6uTLknmr/AMmptiQlJZGOjg4FBQWRjY0Nde3ald69e8dMj+M4ev78ObPX/xYMDQ0pLy9P0DkIyZw5c0hNTY04jiOO40hVVZXmzZsnE21fX19avHixTLSIyj5vCgoKX3woKipSYGAgU33RHET/Fz2UlZWpWbNmdPz4cWbaQh670LRv356mTZsmMT516lTq0KEDc/3ExESysLAgTU1NCggIENN3dnZmqn39+nUyMjIS+7yJPoMKCgpMtUUUFhbSrVu36I8//qC3b9/KRLMqcPDgQRoyZAh16NCB2rRpI/ZggYKCguDXVB8fHzIwMKCLFy9ScXExFRcX04ULF8jAwIC8vb1lMofS0lI6deoUrV+/noKCguj06dNUUlLCTC8gIIAKCwvp48ePX/wdWdxnaGlpkbKyMikoKJCqqippa2uLPX5U3N3d+fPqli1bSE1NjRwcHEhLS4vc3NyYapeUlNDnz5/5nw8cOEDTpk2j9evXf/XzIGv69u1LT548kdrrTZgwgfT09Cg4OJgSExMpMTGRgoODqX79+jRhwgSp6XyJAQMG0IgRI+jjx49Uq1YtysjIICKiS5cukampKVPtqKgoUlNTo3HjxpGKigqvvWnTJurTpw9TbaKy+wldXV0yNTUlJSUlXn/evHk0cuRI5vpCceLECercuTMlJSXJXNvOzo42bNhARES1atWizMxMIiKaMmUK9e7dW+bzkfN9IO/+Wc25ceMGHBwc0KFDB5w4cULMBFTafKmDjhzZUlRUJIj5paenJ8LCwmBlZSWTcsDLly8LmrovwsjICLdu3ULdunWZa4moCscupJ/b5cuX0a9fPzRp0gQdO3YEx3G4du0aHj16hOjoaHTp0oWZ9tf48OEDFBUVme7qm5ubo0WLFvD19a20UYHcL4MNQnQFrArdPz99+oSRI0fi4MGDvJF2aWkpRo0aheDgYKadbv8NlpaWiI6O5k3epcHAgQNx+PBhicYnz58/R48ePZhn6IpMtL+ENP3sRKbp3wLL7ptA2eertLSU/7xFRkYiNjYWpqammDhxYpX5zAlJ+e7L0qB27dqIiIjgy01FnDp1CsOHD8fr16+lovMl6tati7i4OJiZmYkdW3Z2NszNzVFUVMRMW+iu1j169MBPP/2ElStXiulfu3YNLi4uyM7OZqovFNra2igqKkJxcTGUlZUl1qcsqw6uXbsGR0dHuLq6Yvfu3ZgwYQIePHiA69ev4/Lly/jpp5+YaQtNWFgYhg0bJtZpFyi71kdERDD1iP3ekQfVqhFfuinKycmBnp6e2AmLxU1RVVgATJ8+HaamphK+Hxs3bsTDhw9/6C5tQmNvb//F5ziOw8WLF5no5uTkCJq6LyRCHrvQbeifPHmCTZs24c8//wQRwdzcHJMnT5ZJIBUoa0QRFRUl83KNmjVrIjExUSb+OnL+n+bNm2PhwoVwdnYWW/iIzNNZ+DwtWrQIPj4+UFdXl/pr/1vS0tKQmJgINTU1WFpaVrngrbSDDADQoUMHmJub82bqAPDs2TPY29ujZcuWiIqKkpqW0PwbQ/by3a9/RAoKCnDz5k2+i3l5qsqCU9qf93r16uHSpUto0aKF2HhKSgrs7OyQl5cnFZ0vUadOHcTGxsLc3Fzs2GJjYzF48GA8f/6cmba6ujqSk5NhaGgopp2ZmQlzc3N8+PCBmTZQFtCMj4+HiYmJmH5OTg7MzMyY6wuFLDcNKiMpKQmrV6/GnTt3UFpairZt28LPzw+WlpZS16pKmxZfunfPz8+Hnp6evPzzK8g91aoRX6uTlgUVbz6E4NChQ5WaMNra2mL58uXyoBpDYmJiBNG9ffs2Ro4cCVdXV9y9excfP34EALx9+xbLli1DdHQ0U30hA7lCHLvQXnYiGjZsyLwhwZe4d+8eevToAS0tLWRnZ8PDwwN16tTBkSNHkJOTg7CwMGba3bt3lwfVBEAI83RR8KJTp07o2rUrunXrhk6dOsm0Q56IZs2ayaQrW1UiOjoadnZ28PLywrp16/D48WN0794drVq1QkREhEzn8v79e3z+/FlsrLKuqP8tVS1QJlRg6/jx43B1dUVhYSE0NDTEFsIcx1WZoJq0mTJlCpYsWYJdu3bxGSyibsey8Mvs2bMngoKCsHXrVgBl7/W7d++wcOFC9O3bl6m20E2+VFVV8ebNG4nx1NRUmfp3yhrWQbN/wtLS8h8De9JC6PV5eYio0gDfX3/9JYjf2/eEPKhWjRDypujfGLiy6GwiIj8/v9KTgqamJvOufHKEITAwEMHBwRg1apTYQsfW1haLFy9mri9kIFeIYxeqDf29e/e++XdZmvUDZV1Qx44dy5driOjTpw9cXFyYavfv3x9eXl5ISkqCpaWlRKmpvHMTG4Q0T//5559x+fJlbNy4ER8+fMBPP/3EB9k6d+7MtMS/pKQEu3fvxoULFyoNcLDKQK4K6Ojo4MyZM3zG78mTJ9G2bVvs27dPoiSUBYWFhfDz80NkZCTy8/MlnpdVRkFmZibev3+PFi1ayOS4hQxseXt7w83NDcuWLasSGaKy4u7du7hw4QIaN26MVq1aAShrRvLp0yf06NFD7B6fxT38unXrYG9vz2eGubi4ID09HXXr1sX+/fulrlceoZt8DRgwAIsXL0ZkZCQA8M1Y/P39MXjwYOb6VQHWmwYViY+PR40aNfistGPHjmHXrl0wNzdHQECA1EvMq8KmhShbjuM49OjRgy+vB8quJVlZWXB0dBRwhlUfeVCtmnLr1i2UlpaiQ4cOYuN//PEHFBUVYW1tLVW98oEsIsKRI0dQu3ZtXufOnTsoKChg3j3J1NQUp0+flthZO3XqlEx2nOTIntTUVNjZ2UmMa2pqoqCggLm+kIFcIY5dqDb0rVu3Bsdx/xjAkEX3olu3biEkJERivFGjRsz9VyZOnAgAlQZN5Z2b2CFkV8DZs2dj9uzZKCkpwa1bt3Dp0iVcunQJa9euBcdxfIYqCzw9PbF7927069cPFhYWTDqjVWUaN26Mc+fOoXPnzujZsyf27Nkjs/fA19cXMTEx2Lx5M0aNGoVNmzbh8ePHCAkJwfLly6Wu9+nTJyxduhTx8fGwsbGBv78/RowYwS/2zczMEB0dLZHRI22EDGw9fvwY06dPr1YBNaBss6xiAEea/oT/RMOGDZGQkID9+/cjPj4epaWlcHd3h6urK1MvaED4rtarV69G3759oaenh/fv36Nr16549uwZOnbsKFg2viwQctNgwoQJ8Pf3h6WlJTIzMzFs2DD88ssvOHjwIIqKiphuhst6fS5ClC2XkJCA3r17i23GKSsrw9DQsNoEcf9rhOiOIEd42rVrRwcPHpQYP3ToELVv356ptq+vL40bN46Ki4v5seLiYho/fjzNmjWLqfaOHTtITU2NFixYQJcuXaJLly7R/PnzSV1dnbZu3cpUW44wGBsb07lz54iIxLpGhYaGUosWLZjrt2zZkv7zn/9IjG/YsIG5vpDHnp2dTVeuXCFXV1eysbGhv/76i4iIwsLC6OrVq0z0vvXBGj09PYqPjyci8ff9zJkz1LhxY+b6cmRPVegKmJKSQsHBwTR8+HBq0KAB6ejo0MCBA5lq6ujo0MmTJ5lqSIPy38P/BS0tLYkum9ra2qSiokKampoy7b6pr69PMTExRESkoaFB6enpRFR2jmXRlXDmzJmkq6tL7u7uZGxsTE5OTmRmZkYREREUGRlJlpaW5OLiInXdiqirq0vlb/nfMGjQIDpw4IAg2v8GaX3e5fw/Qne1vnDhAq1atYpWrFjB39f9yEyePJlatGhBBw8eJDU1Ndq5cyctWbKEGjduTHv37mWqrampSQ8fPiQiouXLl1OvXr2IiCg2Npb5PZyQ63Miot27d9P79++Z6/yIyDPVqinJyclo27atxHibNm2QnJzMVHvnzp2IjY2FoqIiP6aoqIiZM2fC1tYWq1atYqbt5ubG+0AsWbIEAGBoaIgtW7b8sF4Y1R2hU/dnzpyJqVOnIi8vD927dwcAXLhwAWvWrGHu4Sfkscvaz60qGaMLWa6RnZ3NPFNEjiQKCgpipW9Dhw7F0KFDZaI9bNgwXLlyBaWlpbCzs4OdnR1mz57NvMwZKNvBrk7+fVXJd/Xly5cwMjICUJZ9LOqG17lzZ0yaNEnqelFRUdi9ezf69u2LtLQ0NG/eHCdPnuQ7Qurp6cHV1VXquhXp3bs3bt++LbPqgvL2Df369YOPjw+Sk5MFKa+/cuUKbG1txUqzAKC4uBjXrl3jM9PnzJkjliX+vxIQEICxY8cKdp2tzEIDKLu2qqqqwtTUlP8usEJdXZ1ZltC30L17d/4eUhZVFkJz/PhxhIWFoVu3bnBzc0OXLl1gamoKAwMD7Nu3j+m5hoh4K4Pz58/j559/BlCWncm6wkTI9TkgvJfdd43QUT05wlCnTh26du2axHhcXBxpaWkx1dbS0qIjR45IjB85coS5dnn+/vtvQXab5MieOXPmkJqaGnEcRxzHkaqqKs2bN09m+ps3b6ZGjRrx+kZGRhQaGioTbaGOvXXr1vwxlt81v3v3LtWrV4+5/p9//klTpkyh7t27U48ePWjKlCn0559/MtclInr9+jV16tSJtLS0SFFRkfT19alGjRpkZ2dH7969Y6rNcRx16tSJgoODKT8/n6mWnP/n1KlTYhmYGzdupFatWpGzszO9fPmSqTbHcaSrq0s+Pj4UHR0t0+va6tWrafLkyVRaWiozzf+Gffv2Mf/uyRpLS0u6dOkSERH17NmTvL29iYho/fr11KhRI6nrKSkp8RnHRESqqqqUlpbG//zkyRNSVFSUum5Ftm/fTk2aNKGFCxdSVFQUHTt2TOwhbUTXzn96KCgoSF27IgoKCvT8+XOJ8RcvXjDVb9u2LSkqKlL37t1p3759Ms9kEb2/lb3non/t7OyYn2uFYPny5RQREcH/PGTIEFJQUKCGDRtSQkKCgDNjS82aNfnKgkaNGtEff/xBRESZmZlUs2ZNptr29vY0atQoCgsLoxo1avBZwJcuXSIDAwOm2kKuz4nKKsdWrVpF7dq1o3r16klkZcv5MvKgWjVl2LBh1LVrVyooKODHXr16RV27dqUhQ4Yw1fby8iJtbW1atWoVXb16la5evUqrVq0iHR0d8vLyYqotp/oidOo+kXCBXCGOXU1NjbKysohIPKiWkZFBKioqTLUPHjxISkpKZGNjQ15eXuTl5UUdO3YkJSUlioyMZKpdHiHKNe7cuUOzZs2ixo0bk4qKCjk5OVFkZCR9+PBBJvrVFQsLC74M8t69e6SsrEyzZ8+mDh060JgxY5hqv3r1io4dO0ZeXl7Utm1bUlFRofbt25Ovry9FR0cz1R44cCDVrl2bjIyM6Oeff6ZBgwaJPWTB+fPnafbs2eTu7k5jx44Ve7Dk5MmTdPr0aYnxM2fOMH/fiYjWrl1L69evJyKiixcvkpqaGikrK5OCggIFBQVJXY/jOLGATsUSw2fPnskksCR0YEtIOI6jv//+W2I8NTWVNDQ0mGonJibSjBkzSE9Pj7S0tGjixIl08+ZNppoizp8/Tx06dKDz58/Tmzdv6M2bN3T+/HmysbGhkydPUmxsLLVs2ZLc3NxkMh9ZYmRkRHFxcUREdPbsWdLS0qIzZ86Qu7s79ezZU+DZsUPWmwblSUxMJAsLC9LU1KSAgAB+fOrUqeTs7MxUW8j1ORHR/PnzqUGDBrRq1SpSVVWlJUuWkLu7O+no6PDXGzmVwxExbkslp0ry+PFj2NnZIT8/H23atAFQZk5Yr149nDt3jqkBaWlpKVavXo3169fj6dOnAMpaVnt6esLb21usLJQFUVFRiIyMRG5uLj59+iT2XHx8PFNtOXKqCyYmJggJCYGDgwM0NDSQmJgIY2NjhIWFYfny5UzT2I2NjTFixAgJs/6FCxdiz549yMzMZKb9b7C0tER0dDST8y0R4dKlSwgPD8ehQ4dQUlKCwYMHY+fOnVLXkgPUqlUL9+/fh6GhIQICAnD//n1ERUUhPj4effv2Zd6gojwZGRkIDAzE3r17UVpaytTQeezYsV99fteuXcy0AWDRokVYvHgxrK2t0aBBA4kmAUeOHGGmbWVlheXLl6Nv375i46dPn4afnx8SExOZaVdGbm4ubt++DRMTE75DozRRUFBAaGgo33jH2dkZQUFBqFevHoCykrSxY8fKm6EwQNTs5NixY3B0dISKigr/XElJCe7duwczMzOcPn2a+VyKi4tx/Phx7Nq1C6dPn4aZmRnGjRuHMWPGVNqUSRpYWFhg69atsLW1FRuPi4vD+PHj8eDBA5w/fx5ubm7Izc1lMgehUFNTQ1paGvT19eHp6YkPHz4gJCQEaWlp6NChA169eiX0FJmwbt06KCoqYvr06YiJiUG/fv1QUlKC4uJirF27Fp6enjKf04cPH6CoqMiXfe/fvx9OTk6oWbOm1DSEXJ8DZffuGzZsQL9+/aChoYGEhAR+7MaNGwgPD2eq/z0jD6pVYwoLC7Fv3z4kJiZCTU0NVlZWcHZ2lvCIYMmbN28AsG2NXJ4NGzZg7ty5GD16NLZt24axY8ciIyMDt27dwpQpU37oTjpyhKM6BnJXrlyJ0NBQ7Ny5Ez179kR0dDRycnLg5eWFBQsWMO2apa6ujnv37kl4PaWnp6NVq1YoKipipv1vKB9sZEl8fDzc3d1x7949+YKXEXXq1EFsbCzMzc3RuXNnjBo1CuPHj0d2djbMzc2ZfuZevnyJy5cv810/Hzx4gDp16sDOzg729vaYMmUKM22hadCgAVauXImRI0fKXFtNTQ0pKSkSHobZ2dlo2bIlCgsLmc/hwoULuHDhAv7++2/eA0iEtAPo5T0Dv0bFeXzvbNiw4Zt/d/r06UzmIApeh4aGYujQoWIdL0Wd+Tw8PFC3bl0m+uX59OkTjhw5gp07d+LixYuwtbXF8+fP8eTJE2zbtg3Dhg2Tuqaamhpu3boFCwsLsfGkpCS0b98e79+/R05ODlq0aFFlru/SomHDhoiKioKtrS3MzMwQGBiIIUOGIDU1Fe3atePXUT86rDcN/hs0NTWRkJAg9Xs4IdfnNWvWREpKCpo0aYIGDRrg5MmTaNu2LTIzM9GmTRu8fv2a+Ry+V+SNCqoxNWvWxPjx4wWdg6yCaSI2b96MrVu3wtnZGaGhofD19YWxsTEWLFjAm/zKkSNNygdyjx07JhHI/VERsg19t27dcPXqVYmgWmxsLLp06cJUu6rw6NEj7N+/H+Hh4UhKSkLHjh2xceNGoaf1w9K5c2fMnDkTnTp1ws2bN3HgwAEAQFpaGho3bsxUW1dXF3Xr1kWXLl3g4eGBbt26SSw+f1Q+ffokkb0iK2rXro3MzEyJoNrDhw+lmrnwJf4pS0/aVKVg2eXLl7F69WqkpKSA4zi0aNECPj4+TM7v69atE/s5Ly8PRUVF0NLSAlCWoaeurg49PT1mQTVRxqehoSFmzZolk89XRe7cuYNdu3Zh//79UFFRwahRo7Bp0yb+OrtmzRpMnz6dSVDtp59+go+PD8LCwqCrqwug7O/g6+uLdu3aASjbNGN9rhWCX375BS4uLmjatCny8/P5xiAJCQk/fJMYWW4a/Dewykv6lvV5v379sH37djRo0ECq2o0bN8bTp0/RpEkTmJqa4uzZs2jbti1u3bolliErpxKErD2VIywPHz6kqVOnUo8ePcjBwYGmTZvGtxBmybNnz2jEiBHUoEEDUlRUJAUFBbEHS9TU1HjjS11dXd7kMy0tjerUqcNUW071xMzMjMLDw4lI3INm/vz5NGXKFCGnJhNk5edW3qh6y5YtpKurS1OmTKE9e/bQnj17aMqUKaSnp0dbtmxhNod/S0VPImkQEhJCdnZ2pKCgQObm5rR06VLe204OO3Jycqhfv35kZWVF27dv58dnzJhB06ZNY6qdlJTE9PUr0qZNG94QvHXr1tSmTZsvPljj6+tLixcvZq5TGR4eHmRpaSl235Senk5WVlbk7u7OXL9+/foUFhbGXKcily9fps+fP0uMFxcX0+XLl5nr79mzh5SUlGjo0KG0fv16CgoKoqFDh1KNGjVo3759TLX37dtHnTp1Emt68+eff1KXLl1o7969TLWFQNQYwdLSkpSUlKhv37505MgRKi4ulvjdv//+mziOYzKPP//8k8zMzEhZWZlMTEzI1NSUlJWVqXnz5pSamkpEZc3OhPg+sObTp0+0atUqmj59OsXHx/Pj69ato23btgk4M7YEBASQgoICtW/fngYMGEADBw4Ue1QFWNzDCa3t5+dHS5cuJaL/9ycWfd/8/PykrvcjIS//rKacOXMGTk5OaN26NTp16gQiwrVr15CYmIjjx4+jZ8+ezLT79OmD3NxcTJ06tdLd1QEDBjDTNjY2RlRUFNq2bYt27dph3LhxmDBhAs6ePYvhw4fLs9XkSB11dXWkpKTAwMAAenp6OHfuHFq1aoX09HTY2NggPz9f6Cn+EHxraRLHcVWmBJJF+ae+vj6GDx8OV1dXtG7dWmqvK0eOiEWLFsHHxwfq6upYtGjRV3934cKFUtefOXMm///S0lKEhobCysoKVlZWEuUxa9eulbq+iNevX8PR0RG3b9/mM2T++usvdOnSBYcPH+YzmViho6ODmzdvwsTEhKlORRQVFfH06VPo6emJjefn50NPT4/5+bVFixYYP348vLy8xMbXrl2Lbdu2ISUlhZm2iYkJoqKieK8jEXfu3MGvv/6KrKwsZtoiZGknoaCggGfPniEkJARubm5o1KiRVF//30BEOHPmDNLS0kBEaN68OXr27PnN1/4fHVaZS0IhZGn/tyIrCw8htW/cuIFr167B1NQUTk5OTLW+d+Tln9UUf39/eHl5Yfny5RLjfn5+TINqsbGxuHr1qiALvu7du+P48eNo27Yt3N3d4eXlhaioKNy+fZs3gpUjR5rUr18f+fn5MDAwgIGBAW7cuIFWrVohKyuLWep4daQqlSYJSW5uLmJjY7F69WpkZmbi4MGDaNSoEfbs2QMjIyN07txZ6Cn+sJSWluLhw4eVlqrY2dkx1ZblQrt8oOxbg2bSNHS+e/eu2M+ie4n79+//z6/9b6hduzauXbuGc+fOiXnfsP5bixg3bhzCw8Mxf/58meiJIKJKS03z8/NlUpaYmZmJ/v37S4w7OTlhzpw5TLWfPn2Kz58/S4yXlJTg+fPnTLUB4ewkZP0ZqwyO4+Do6AhHR8cv/g7L5j9VnStXruD9+/dCT0NqCFnaL+f/sbGxgY2NjdDT+C6QB9WqKSkpKYiMjJQYd3NzQ1BQEFNtfX19wYIJW7du5Rc7EydO5M2l+/fvj4kTJwoyJzk/NvJAbtXlR7wBP3z4MEaOHAlXV1fEx8fj48ePAIC3b99i2bJliI6OFniGPyY3btyAi4sLcnJyJK5vrLMjvwffxgkTJqBDhw5S2VWPiYmRwoykA8dx6NWrF3r16iUTvYpZelu3bsX58+dlkqUnul5xHIcxY8ZU2oFSFotgfX19XLhwQcJP6sKFC8zP5T169ICHhwd27NiBn376CRzH4fbt25gwYQIcHByYagPC+AKfOXPmH7t6VpUMluzs7EqDnnK+P4TaNJBT5gV76dKlSjcIFyxYINCsqj7yoFo1RVdXFwkJCWjatKnYeEJCgkRKv7QJCgqCv78/QkJCJAx+WaOgoCCWKj506FAMHTpUpnOQU72QB3KrLkLfgIeEhKBevXpSfc3AwEAEBwdj1KhRiIiI4MdtbW2xePFiqWrJ+X8mTpwIa2trnDx5Uiam8eX5HhrwsNpIc3Nzw/r166GhoSE2XlhYiGnTpjE3s5alYT7w7Vl6LD5/osAKEUFDQ0OiA6WNjQ08PDykrlsRb29vTJ8+HQkJCbC1tQXHcYiNjcXu3buxfv16pto7d+7E6NGj0b59ez6IWVxcjN69e2P79u1MtYGyTGRR4FJNTQ1v374FAIwcORI2NjZMmtGMHj36q89XJUsFOd83Qm4a/DcYGBjIpCOnLNm2bRsmTZqEunXron79+mLXEo7j5EG1ryAPqlVTPDw8MH78eGRmZordlKxYsQLe3t5MtYcNG4aioiKYmJhAXV1d4oTEchFw+vRp1KpViy+B2rRpE7Zt2wZzc3Ns2rQJ2trazLTlVE/kgdzqybd0rXJxcZG6bmpqaqXlZ5qamigoKJC6npwy0tPTERUVJUg3NiEW2lWF0NBQLF++XCKo9v79e4SFhTENqu3duxdjx47FL7/8gunTp/PetD169MDu3buZfL+FzNKrCh0oAWDSpEmoX78+1qxZw1dctGjRAgcOHGDqyUtEKCoqQlRUFB4/foyUlBQQEVq0aIFmzZox0y2PEHYSz549Y77ZLkcOIOymwZd49+6dxD2cpqZmpfP6EQgMDMTSpUvh5+cn9FS+O+RBtWrK/PnzoaGhgTVr1mD27NkAgIYNGyIgIIBZS3ARrMtLv4aPjw9WrFgBAEhKSsLMmTPh7e2NixcvYubMmfxNoxw50kIeyK1+LFq0CIsXL4a1tbXMs5YaNGiAhw8fSmQBx8bGCmKmW13o0KEDHj58KEhQrTr6Nr558wZEBCLC27dvoaqqyj9XUlKC6Oho5oGApUuXYuXKlWKG+Z6enli7di2WLFnCJKhWFVi4cCGKi4tx/vx5ZGRkwMXFBRoaGnjy5Ak0NTVRq1Yt5nMYNGgQBg0axFynPESEpk2b4sGDB2jatKlEpYcskLWdhCyvXXLkVJXS/qysLEydOhWXLl3Chw8f+HGRn2RVyMycM2cO6tSpI/XXffXqFYYMGSL1160OyINq1RSO4+Dl5QUvLy9+V7viTi8r/imVnCVZWVkwNzcHABw6dAj9+/fHsmXLEB8fj759+wo2Lzk/LvJAbvUjODgYu3fvFqRr1YQJE+Dp6YmdO3eC4zg8efIE169fx6xZs+Rp+wyZNm0avL298ezZM1haWkpkYFtZWTHTro6+jVpaWuA4DhzHVZolxHHcP3Ym/V8R0jBfSHJycuDo6Ijc3Fx8/PgRPXv2hIaGBlauXIkPHz4gODiYqf6jR4/AcRzfcfXmzZsIDw+Hubk5xo8fz0xXQUEBTZs2RX5+viABNUD2dhI/alBejpyv4erqCqCsqqBevXoyCy4TEbKzs6Gvrw8lJSV8+vQJR44cwcePH9G3b1/UrVuX/11RQoy0GTJkCM6ePSu3p/kvkAfV5MgsmFaejIwM7Nq1CxkZGVi/fj309PRw+vRp6Ovro2XLlsx0lZWVUVRUBAA4f/48Ro0aBQCoU6cO3rx5w0xXTvVFHsitfgjZtcrX1xevX7+Gvb09Pnz4ADs7O6ioqGDWrFmYOnWqIHOqDgwePBhAmceXCI7jZLKzXR19G2NiYkBE6N69Ow4dOiS2Y6+srAwDAwM0bNiQ6RyENMwXEk9PT1hbWyMxMRE6Ojr8+KBBgzBu3Djm+i4uLhg/fjxGjhyJZ8+ewcHBARYWFti7dy+ePXvGdPNg5cqV8PHxwZYtW2BhYcFM50vI2k5i9OjRYt55cmTPlStXYGtrCyUl8SV7cXExrl27xts9sMpcqo7cu3cPd+7cgZmZmcw0U1NT0bt3bzx69AjGxsY4e/YshgwZgj///BNEBHV1dVy7do15QN/U1BTz58/HjRs3Kt0gZF3N9j3DkXwbotrQpk2bb462x8fHM5vH5cuX0adPH3Tq1AlXrlxBSkoKjI2NsXLlSty8eRNRUVHMtJ2cnPDp0yd06tQJS5YsQVZWFho1aoSzZ89i6tSpSEtLY6Ytp3oiWuCam5ujc+fOGDVqFMaPH4/s7GyYm5vzQV45skdDQwOJiYlSL4v08/NDrVq1BO1aVVRUhOTkZJSWlsLc3FwmJVnVmZycnK8+b2BgIKOZiPP48WM0atRIEO3yWFhY4NSpU1IPNuXk5CA3NxchISHIyMhAVFQUGjVqhD179sDIyIgvu2fBli1bMGPGDLi5uVVqmD9hwgRm2kJSt25dxMXFwczMTOwcKqtrmra2Nm7cuAEzMzNs2LABBw4cQFxcHJ9dkZmZyVS7qKgIxcXFUFZWlgg4yaIxSEFBAW7evFmpX6doo5gFpaWlePjwYaW6lfl4CkF4eDgGDBggmN8fCxQVFfH06VOJcvb8/Hzo6elViVLEHw17e3vMnTtXJh19RQwcOBBEhMDAQOzcuRNnz55F06ZNcfDgQRARhg4dCg0NDezZs4fpPIyMjL74HMdxTM+v3zvyTLVqxMCBA4WeAgDA398fgYGBmDlzpliWnL29PfPOTRs3bsTkyZMRFRWFLVu28IuNU6dOwdHRkam2nOpJ586dMXPmTHTq1Ak3b97EgQMHAJS1rBaVr8gRBml236xqXavU1dVhbW3NXEdOGUIFzb7Es2fPsHTpUmzfvh3v37+XiaYQhs63b9/GyJEj4erqirt37+Ljx48AgLdv32LZsmWIjo5mogsIZ5gvNKWlpZUu5P/66y+ZVD58/vwZKioqAMoqDpycnAAAzZs3x9OnT5lqC+kJDADHjx+Hq6srCgsLoaGhIdGZj1VQ7caNCAWbGwAAUmxJREFUG3BxcUFOTo5ESaisPKaEav4jNKJs54rk5+f/UMHDqsT27dsxceJEPH78GBYWFjKxc7h27RrOnj0LS0tLBAYGYv369QgJCeG1/fz8MHz4cKnrViQrK4u5xo+KPFNNjsypVasWkpKSYGRkJLHL2bx5czFTSDlyvndyc3MxefJkPHr0CNOnT4e7uzsAwMvLCyUlJdiwYYPAM/wx+ZYbcGlib2//zb9bVcx45Uif5ORk5Obm4tOnT2LjooW/NCkoKMCUKVNw9uxZ1KhRA/7+/pg6dSoCAgKwevVqtGzZEjNnzoSzs7PUtUUIbejcpk0beHl5YdSoUWL3EwkJCXB0dMSzZ8+Y6ldHhg0bhtq1a2Pr1q3Q0NDAvXv3oKuriwEDBqBJkybMfUI7dOgAe3t79OvXD7169eIbc9y4cQO//vor/vrrL6b6QtKsWTP07dsXy5Ytg7q6usx0W7dujWbNmmHRokWVNt+pXbs2U/1/av5z5MgRpvpCIPLDPHbsGBwdHflAMlDWjOXevXswMzPD6dOnhZriD4soiJydnc2PsbZzUFdXx59//okmTZoAKKukSEhIgImJCYAyL8mmTZvKdI0sChHJG5Z8G/JMNTkAygx3379/jxYtWoj5NbBAS0sLT58+lUgxvXv3rkzKVL6HFHY5Pw5NmjTBiRMnJMbXrVsnwGyqB0J035QHyqo3mZmZGDRoEJKSkvibb+D/b0ZZ3ITPmTMHV65cwejRo3H69Gl4eXnh9OnT+PDhA06dOoWuXbtKXbMiQhk6i0hNTa30uq2pqYmCggKZzqW6sG7dOtjb28Pc3BwfPnyAi4sL0tPTUbduXezfv5+5/ooVKzBo0CCsWrUKo0ePRqtWrQAAv//+O9q3b89cX8T79+/x+fNnsTFRZiYrHj9+jOnTp8s0oAYA6enpiIqKEqS7MSBs8x+hEAUqiQgaGhpipcbKysqwsbGBh4eHUNP7oXFzc0ObNm2wf/9+mV3XGjZsiNzcXD6otnLlSrGS37y8PGhrazOfBwCEhYVh1apVSE9PB1AWzPfx8alW37//BnlQrZrx6dMnLF26FPHx8bCxsYG/vz9GjBjBly6YmZkhOjoahoaGzObg4uICPz8/HDx4EBzHobS0FHFxcZg1axZTPwigaqSwy6l+yAO5skXoG3A3NzesX79eohSqsLAQ06ZNY5IpJ0dYPD09YWRkhPPnz8PY2Bg3b95Efn4+vL29sXr1aiaaJ0+exK5du+Dg4IDJkyfD1NQUzZo1k2mJmhCGzuVp0KABHj58KHHPEhsbK3WvRKDMU+tbF1iy8NcSgoYNGyIhIQH79+9HfHw8SktL4e7uDldXV+am9kQEIyMj5OTkoKSkRGyROX78eObBpsLCQvj5+SEyMhL5+fkSz7O+h+zduzdu377N5LP9NTp06ICHDx8KFlQTsvmPUIgyPg0NDTFr1ix5qacMycnJwe+//y7Tz7uDgwP+/PNP3gd00qRJYs+fPXsWbdu2ZT6PtWvXYv78+Zg6dSo6deoEIkJcXBwmTpyIFy9ewMvLi/kcvlfk5Z/VDG9vb+zZswdOTk6IiYmBhYUFUlNTsWjRIigoKGDJkiWwtLTEvn37mM3h8+fPGDNmDCIiIkBEUFJSQklJCVxcXLB7924oKioy0xY6hV1O9UMeyJU9Ojo6uHnzJp82L2u+ZCz84sUL1K9fH8XFxYLMSw476tati4sXL8LKygq1a9fGzZs3YWZmhosXL8Lb2xt3796VumaNGjWQk5PDd7lUV1fHzZs3ZdqVUAhD5/KsXLkSoaGh2LlzJ3r27Ino6Gjk5OTAy8sLCxYskHrH29DQ0G/+3dGjR0tVW07ZBpWqqioePHjAvAteZUyZMgUxMTFYvHgxRo0ahU2bNuHx48cICQnB8uXL+cxNafL777/z/8/Ly8PixYsxduzYSjvzsSgzB8rKK+fNmwcfH59KdVl4TJWnKjT/kVN96N+/P8aMGcN39a4KZGVlQVVVFQ0aNGCqY2RkhEWLFkkkuYSGhiIgIEDuufYV5EG1aoaBgQG2bNmCvn37Ii0tDc2bN8fJkyfRp08fAGWdOV1dXWXiSZGZmcnvcrZp00YmN0g1a9ZEYmKiYLttcqof8kCu7BHqBvzNmzcgImhrayM9PR26urr8cyUlJTh+/Dj8/f3x5MkTmc5LDnu0tbVx584dGBsbw8TEBNu3b4e9vT0yMjJgaWnJpCOioqIinj17xn/ORP5WX+veJW0yMjIwceJEjBgxQmaGzhWZO3cu1q1bx3vNqKioYNasWViyZAlz7epI+SBPeTiOg6qqKkxNTZl+Blu2bIkdO3bAxsaGmcaXaNKkCcLCwtCtWzdoamoiPj4epqam2LNnD/bv38+kMca3WrKw3KSrbA6sPaYqNv8JDQ2FlZWVYM1/hCQqKgqRkZGV+nXGx8cLNKsfl61btyIwMBBubm4yDV5XBVRVVXH//n2JdXJ6ejosLS3lvudfQV7+Wc148uQJ7z/RrFkzqKioiH1xmjVrJjNjX2NjYxgbG6OkpARJSUl49eoV83pxoVPY5VQ/hPYiqS5Uhe6bWlpa4DgOHMehWbNmEs9zHIdFixYx0ZYjLBYWFrh37x6MjY3RoUMHrFy5EsrKyti6dSuzUi0iwpgxY3gD6w8fPmDixIkSZUKHDx9mog+UZc5kZGRg7Nix/BjrxXZFli5dirlz5yI5ORmlpaUwNzdHrVq1mOuWh4gQExOD9+/fw9bWVmbeN0IwcOBAMd9AEeX/7p07d8bRo0eZvA8rV66Ej48PtmzZItOsTKCspFcUMNTU1ORLfDt37ixRriUtKlpGCIEQ2SkVs3tbt24NgF0n4arKhg0bMHfuXIwePRrHjh3D2LFjkZGRgVu3bmHKlClCT++HZOLEiQCAxYsXSzwni+vahQsXsG7dOqSkpIDjODRv3hwzZsyQSUa4qakpIiMjMWfOHLHxAwcOCJId/D0hD6pVM0pKSsQWmEpKSmLllgoKChI3StJmxowZsLS0hLu7O0pKStC1a1dcu3YN6urqOHHiBLp168ZMe9q0afD29sazZ88ESWGXU/2QB3JlQ1W4AY+JiQERoXv37jh06BDq1KnDP6esrAwDAwO+VE/Oj8W8efNQWFgIAAgMDMTPP/+MLl26QEdHBwcOHGCiWbG8cMSIEUx0voYQhs6Voa6uDmtra5loFRQUwNPTk/emXbNmDfr27Ytr164BAHR1dXHu3Lkf9n7i3LlzmDt3LpYuXco3Brh58ybmzZuH+fPno3bt2pgwYQJmzZqFHTt2SF1/xIgRKCoqQqtWraCsrCzh48bSy07Uqd7AwADm5uaIjIxE+/btcfz4cWhpaTHTFRoDAwOZa8qb/5SxefNmbN26Fc7OzggNDYWvry+MjY2xYMGCH9a3UWiEDGRv3LgRXl5e+PXXX+Hp6QmgzEamb9++WLt2rdQtDSqyaNEiDBs2DFeuXEGnTp3AcRxiY2Nx4cIF3n9dTuXIyz+rGQoKCggNDeVLzpydnREUFIR69eoBKLtZHDt2LNMofOPGjXH06FFYW1vj6NGjmDx5Mi5duoSwsDDExMQgLi6OmbYQKexyqjdCe5HIkT05OTnIzc1FSEgIMjIyEBUVhUaNGmHPnj0wMjLijWjl/Ni8fPnyXxnbf49UR0uFcePG4cqVKxg1ahROnDjBb0YGBQVBQUEBvr6+qFWrFo4fPy70VJlgYWGBrVu3ShjHx8XFYfz48Xjw4AHOnz8PNzc35ObmSl3/n3ztWHrZrVu3DoqKipg+fTpiYmLQr18/lJSUoLi4GGvXruUXwdJkw4YN3/y706dPl7o+IHzJb3Vu/qOuro6UlBQYGBhAT08P586dQ6tWrZCeng4bG5tKG2bI+d/Izs5m2rDvazRq1AizZ8+WCJ5t2rQJS5culYl9yJ07d/hMOSKCubk5vL290aZNG+ba3zPyoFo141u9GVhG6VVVVfHw4UM0btyY79YUFBSErKwstGrVCm/evGGmnZOT89XnhdiNk/NjIw/kyh6hb8APHTqEkSNHwtXVFXv27EFycjKMjY2xefNmnDhxgonvjhzhKC4uhqqqKhISEmRejiY0VdHQmTWNGjVCeHg4unbtisePH0NfXx8XL17ks+xv3rwJJycnmVlpyBo1NTXcunVL4rOelJSE9u3b4/3798jJyUGLFi2YeAlWJXJzc3H79m2YmJjw1irSpmKwKi8vD0VFRXxmXEFBAdTV1aGnp4fMzEwmc1BQUBC05Lc6N/8xNjZGVFQU2rZti3bt2mHcuHGYMGECzp49i+HDh8uz1RigoKAAW1tbjBw5EkOGDBGrOmCNhoYG7t69W6mnWZs2bfDu3TuZzUXOv0Ne/lnNqAreDPXq1UNycjIaNGiA06dPY/PmzQCAoqIipp0/AXnQTI7skXfKkT2hoaFYvny5RFDt/fv3CAsLYx5UCwwMRHBwMEaNGoWIiAh+3NbWtlKPDjnfN0pKSjAwMJBpgPyXX3755t9l6anWv39/eHl5ISkpqdoYOj9//pz3TGzUqBFUVVWhr6/PP9+kSRPk5eUJNT3m/PTTT/Dx8UFYWBjfJCMvLw++vr5o164dgLIFYOPGjZnNISMjA7t27UJGRgbWr18PPT09nD59Gvr6+mjZsiUzXaDM7+jChQv4+++/Je6pWVxbyt9DhIeHY/PmzdixYwfMzMwAAKmpqfDw8MCECROkri1CqJJfUfMfIsLbt2+hqqrKP1dSUoLo6GiJQNuPRvfu3XH8+HG0bdsW7u7u8PLyQlRUFG7fvv2vrgNyvp3bt29j//79CAwMhKenJ3r37o0RI0bAycmJ9zBlhZOTE44cOQIfHx+x8WPHjqF///5MtYGyxhc1atSApaUlr7tr1y6Ym5sjICAAysrKzOfwvSLPVKumXLlyBba2tlBSEo+rlpSUIC4uDnZ2dsy0AwICEBQUhAYNGqCoqAhpaWlQUVHBzp07sW3bNly/fp2Ztojk5ORKu+j8iAsAOXKqC1Wl+6a6ujqSk5NhaGgIDQ0NJCYmwtjYGJmZmTA3N5d3T/oB2bVrFw4ePIi9e/fKZFe7fGMAIsKRI0dQu3Zt3lfszp07KCgowC+//IJdu3Yxm8fXst9/1ExcBQUFPHv2jF/Ml/+OA2VBt4YNG/6Qxw6UBXEGDBiArKws6Ovrg+M45ObmwtjYGMeOHUOzZs1w9OhRvH37FiNHjpS6/uXLl9GnTx906tQJV65cQUpKCoyNjbFy5UrcvHkTUVFRUtcUsWjRIixevBjW1taVdvM+cuQIM20AMDExQVRUlEQZ1p07d/Drr78y28QTquRXlCH3JUTNf+bOnSs1zapGaWkpSktL+fVaZGQkYmNjYWpqiokTJ8qDHAwhIly6dAnh4eE4dOgQSkpKMHjwYKkHz8uXeL958warV69Gp06d0LFjRwBlnmpxcXHw9vbGvHnzpKpdkXbt2sHf3x+DBw/m71l/+eUX3Lp1C/369UNQUBBT/e8ZeVCtmvKlVOr8/Hzo6ekxvxmMiorCo0ePMGTIEH43MzQ0FFpaWhgwYAAz3czMTAwaNAhJSUliqeyii/aPehMsR3jkgVz2VJUbcBMTE4SEhMDBwUFswR0WFobly5cjOTmZqb4c2XHlyhV07NgR7du3x8OHD/H582cYGBhIdOCMj49nNgc/Pz+8fPkSwcHBfLZ3SUkJJk+eDE1NTaxatYqZdnVEQUEBgYGBfIdRPz8/+Pj4oG7dugCAt2/fYsGCBT/0/QQR4cyZM0hLSwMRoXnz5ujZs+c3W4z8L3Ts2BFDhgzBzJkzxc6vt27dwsCBA/H48WNm2g0aNMDKlSuZBAu/BXV1dVy6dInPFhNx8+ZNdOvWjVm5rVAlv5cvX5Y3/5FTJYiPj4e7uzvu3bsn9XP7t/oRchzHrMRbRO3atREfHw8TExOsWLECFy9exJkzZxAXF4fhw4fj0aNHTPW/Z+Tln9UUkQdCRfLz8yUWAyz49ddfJcYqmstaWloiOjparKzif8XT0xNGRkY4f/48jI2NcfPmTeTn58Pb2xurV6+Wmo4cOSLkgVzZUVW6b06YMAGenp7YuXMnOI7DkydPcP36dcyaNQsLFixgri9Hdtjb2+Pp06cYOHCgYHPYuXMnYmNjxewTFBUVMXPmTNja2jINqglp6CwUTZo0wbZt2/if69evjz179kj8zo8Mx3FwdHSEo6PjF3+HxT0cUBbICQ8PlxjX1dVlbtr+6dMniWwtWdKjRw94eHhgx44d+Omnn8BxHG7fvo0JEybAwcGBma5QJb9du3YFUFYCW52b/xQUFODmzZuVlhyPGjVKoFn9+Dx69Aj79+9HeHg4kpKS0LFjR2zcuFHqOlXJJoaI+M/Y+fPn8fPPPwMA9PX18eLFCyGnVuWRB9WqGaL6e47jMGbMGLHa8JKSEty7d0/QG4byZGdn4/Pnz1J9zevXr+PixYvQ1dWFgoICFBQU0LlzZ/z222+YPn067t69K1U9OXLkgVzZUVVuwH19ffH69WvY29vjw4cPsLOzg4qKCmbNmsW8Hboc2SIKki9cuFCwORQXFyMlJYX3WBKRkpLC3EfV2NhYMENnocjOzhZ6Ct8FLO7hAEBLSwtPnz6VyO64e/cuGjVqJHW98owbNw7h4eGYP38+U50vsXPnTowePRrt27fn/QuLi4vRu3dvbN++nZnujh07MGDAADRu3LjSkl8AePfuHbP35fbt23zzn7t37+Ljx48AyrJCly1b9kM3/zl+/DhcXV1RWFgIDQ0NsYQIjuPkQTUGbN26Ffv27UNsbCyaN28OV1dXHD16VKYbSJ8+fUJWVhZMTEwkrJpYYm1tjcDAQDg4OODy5cvYsmULgLL76nr16slsHt8j8qBaNaN27doAyhYCGhoaUFNT459TVlaGjY0NPDw8hJoec0pKSviSjbp16+LJkycwMzODgYEBUlNTBZ6dnB8ReSBX9lSFG/ClS5di7ty5SE5ORmlpKczNzflzj5wfi6+VHMuCsWPHws3NDQ8fPoSNjQ2AMg+W5cuXi3mvsUBIQ2ehCQsLw7BhwySO89OnT4iIiJAvdhnh4uICPz8/HDx4EBzHobS0FHFxcZg1axaT93zmzJn8/0tLS7F161acP38eVlZWEo051q5dK3V9EUSEoqIiREVF4fHjx0hJSQERoUWLFnzjDFaYmZkhJSXlqyW/LLN1q3PzH29vb7i5uWHZsmVQV1cXejrVgiVLlmD48OFYv349WrduLVPtoqIiTJs2DaGhoQCAtLQ0GBsbY/r06WjYsCH8/f2Z6gcFBfFBxLlz5/JdSKOioqpM0k1VRe6pVk1ZtGgRZs2aJZNSz/+Wiua/0qBLly7w9vbGwIED4eLiglevXmHevHnYunUr7ty5g/v370tNS44cANDW1sadO3dgbGwMExMTbN++Hfb29sjIyIClpSUzD5TqTJs2beDl5YVRo0aJnUcSEhLg6OiIZ8+eCT1FOT8ICgoKGD9+/D8udlgutktLS7F69WqsX78eT58+BVDm/eTp6Qlvb2/mXbUB2Rk6VyWE9qat6rC4hwOAz58/Y8yYMYiIiAARQUlJCSUlJXBxccHu3bul/nm3t7f/pt/jOA4XL16UqnZ5SktLoaqqigcPHqBp06bMdKoi1bn5T82aNZGUlCT175GcL0NEiI2NRUhICDIzM3Hw4EGZVTt4enoiLi4OQUFBcHR0xL1792BsbIzff/8dCxcuZLoRX1JSgtjYWFhaWkpknX/48AGKiooSGwly/h95plo1ZeHChSguLsb58+eRkZEBFxcXaGho4MmTJ9DU1PxhMyrmzZuHwsJCAGU7Xz///DO6dOkCHR0dHDhwQODZyfkRsbCw4C+KHTp0wMqVK6GsrIytW7fKb5IYkZqaWmkHY01NTRQUFMh+QnJ+aJKSkr7agY11JpuCggJ8fX3h6+uLN2/eACj7rMsSjuNgb28Pe3t7TJo0Ce7u7ggNDf2hg2pf8qb96//au/eoKsv0feDXhuSknFRAPAQCKjKCqUjKMCoqI43z1bLSRkZUPNBBJV2AzpAanipqRK0xMcXERCPMAw0/SxEhjFJCRYVR5OgIGoIHhoPK3vv3h4s9blGT3O9+YL/XZy3Wgvfdy+eaSeHl3s9z3//5j+ZUAOlehw4dsHPnTqxYsQInT56ESqXCoEGDJCs0paenS/LntpaRkRH69OmD6upqvRTVNmzYgLlz58LMzExrOuHDLFiwQNIsjo6OuHjxYovjd1lZWQb/HDVu3Djk5OQY/P/OtuTrr7/WnHbIzc3V62mHffv24csvv8SwYcO0fr54eHigqKhIsnWBe28UjRs3DgUFBS2KamZmZpKubQhYVJOpsrIyBAYGory8HLdv30ZAQAAsLS0RExODxsZGbNq0SXRESYwbN07zuYuLC/Lz81FTUwNbW1vhR3jIMLGQq39yfgAn/du7d2+L3Uqi6LuY1kxfDZ3bgkGDBkGhUEChUGDMmDFa/W6USiVKSkoe28CfdMPV1VXz/Vwuz28xMTGIiIjAp59+2mISp67FxsYiKCgIZmZmiI2NfeTrFAqF5EU1uQ3/OXDggObz8ePHIyIiAvn5+fD09GyxU4gT5HVP5HHjqqqqhz5P1NXV6eX7nKenJ4qLi594Iin9D4tqMhUWFgZvb2+cPn0aXbp00Vx/6aWXMHv2bIHJpNPU1AQzMzOcOnVK62FEDo2VSRwWcvVPbg/gJE5b+Dd89epVhIeHIy0tDb/88gse7Ooh5THEttDQWd+ae0edOnUK48aN09rZb2JiAmdnZ7z88suC0snD1q1bERsbi8LCQgBAnz598Pbbbxvs82uzv/71r6ivr8fAgQNhYmKi1RcZAGpqanS21v0TCUVPJ5Tb8J+H9ad7WDFHoVDI/pi5FESedhg6dCj+9a9/Yf78+QD+94zx2WefYfjw4ZKuDdzrBxweHo6VK1diyJAhLdpEiXrjrj1gUU2msrKycOzYsRZHVpycnHD58mVBqbTFxcXpdNLIM888AycnJ/4AIr1hIVcMuT2AkzhtoS3tjBkzUF5ejqVLl8LR0VGvhT6RDZ1FaZ706uzsjClTpvBYzCPo+hmu2dKlSxEbG4v58+drfsnMzs7GwoULUVpailWrVul8zbZi3bp1oiMAuFeoP3PmDJycnGBra6uXNeU0/Efqqc30eCJPO7z33nsIDAxEfn4+mpqasH79epw7dw7Z2dnIyMiQdG0Aml3WEyZM0HqWaG53wN+hH42DCmSqc+fOyMrKgoeHh1bTz6ysLLz88su4evWqpOunpaVp3lV/8IeHlD1Ytm3bhq+++gpffPEFCxukF66urvj6668xcOBA0VFkp76+XhYP4CTO9u3b8dprr+Gnn36Cr6+v1lFA4F5h/Ycffnjou966Ymlpie+//15IUUtkQ2fRDh8+jLFjxz70XlxcHEJDQ/WcSH9EPcMB9ya3f/zxx/jLX/6idX3Xrl2YP38+rl27Jun6cvT222/D09MTs2bNglKpxIgRI5CdnQ0LCwt88803GDVqlOiIRDoTExOj6QkaEBCA1NRUlJWVYeHChVi2bJnkb86ePXsWH374IX7++WeoVCoMHjwYixcvhqenp6TrAvjVwt3IkSMlz9BesagmU1OmTIG1tTU2b94MS0tL5OXlwc7ODhMnTsSzzz6Lbdu2SbZ2dHQ0VqxYAW9v74e+q753716dr5mZmYnhw4fDx8cHFy9exN27d+Hk5NRiW2tubq7O1yZ5YyGXyPCJnATp4eGBnTt3YtCgQZKt8Sh79uzRNHTesWMH8vPz4eLigo0bN+Kbb76RtKGzaKamppg3bx7ee+89za7/qqoqhISE4NixYzo9iteWiHiGu5+trS2OHz/eoln/hQsX4OPjI5thNA0NDbh7967WNamOZvXs2RP79u2Dt7c39u3bh7feegvp6elISEhAeno6jh07Jsm6cvVrgyHuJ3U/O7mKiopCbGysZrJs82mHlStXSrpuUFAQRo0ahZEjR6Jv376SrkW6xaKaTFVUVMDf3x/GxsYoLCyEt7c3CgsL0bVrV2RmZkradNnR0RExMTGYNm2aZGs8qPkXnk8//fSxr2s+1kH0tFjIJZIPIyMjXL16FXZ2dlrXL1y4AG9vb81UTil89913+Mc//oG4uDi99zIbNGgQFi5ciODgYK1d76dOnUJgYCCuXLmi1zz69NNPP2HatGkwNzdHYmIiSktLERISAg8PDyQkJKBXr16iI0pCxDPc/ebPn48OHTpg7dq1WtfDw8PR0NCAf/7zn0Jy6UNdXR0WL16MpKQkVFdXt7gvVfHezMwMFy9eRM+ePTF37lxYWFhg3bp1KCkpwcCBAyX9/iZHDzaJr6qqQn19PWxsbAAAN27cgIWFBezt7VFcXCwgoTyIOO0QGhqKjIwMFBYWwsHBASNHjsTIkSMxatQouLu7S74+AHz//fey3H3+tNhTTaa6d++OU6dOYdeuXcjNzYVKpcKsWbMQFBTUovGprt25cwe+vr6SrvGg5toxi2akL/7+/qisrHxow1kiMgyTJk0CcK+Z8IwZM2Bqaqq5p1QqkZeXJ/nPuylTpqC+vh6urq6wsLBoMR1Oyh1TIhs6i/b888/j5MmTeP311zFkyBCoVCqsWrUKERERbWKAhVREPMM9aOvWrfjuu+8wbNgwAMCPP/6IS5cuITg4GIsWLdK87sHCW3sXGRmJ9PR0bNy4EcHBwfjnP/+Jy5cvIy4uDu+//75k6zo4OCA/Px+Ojo44ePAgNm7cCOBe0cHY2FiydeXq/sEQiYmJ2LhxI7Zu3Yp+/foBuPd9d86cOQZ9xLwtsLCwgLe3t17XjIuLAwBcuXIFR48exdGjR7F+/Xq89dZbsLe3R2VlpaTr37/7PDc3F7dv3wYA1NbWYs2aNQa9+/xpsagmY+bm5ggJCUFISIhe1509ezYSExOxdOlSva5ryA+51PawkEtk+KytrQHc+/duaWmp9aaUiYkJhg0bhjlz5kiaQWTzcpENnduC8+fP48SJE+jZsycqKirw73//G/X19S12JBsSUc9wzc6ePYvBgwcDAIqKigAAdnZ2sLOzw9mzZzWvM8RnvpSUFCQkJGDUqFEICQnBH/7wB7i5ucHJyQk7d+5EUFCQJOvOnDkTkydP1hz3DQgIAHBvt6a+ds/I1dKlS5GcnKwpqAFAv379EBsbi1deeUWy/+YklqWlJWxtbWFrawsbGxs888wz6Natm+Trrlq1Cps2bUJwcDB2796tue7r6/vQCbT0PyyqydSBAwceel2hUMDMzAxubm4tth8/jfvfOVSpVNi8eTMOHz4MLy+vFu+qS/XO4tKlS2FhYfHY1xjau5okliE+1BPR/zT3H3V2dkZ4eLiQYsr06dP1vmaz0NBQhIWFIT4+HgqFAhUVFcjOzkZ4eDiWLVsmLJc+vP/++1i+fDnmzp2LDz/8EEVFRfjrX/8KLy8vfPHFF5rJlIagLTzDNUtPT5f0z2/LampqNM/mVlZWml2ofn5+eOONNyRb991338WAAQNw6dIlvPrqq5oducbGxliyZIlk6xJQWVnZoncecG8ntNRD5Uj/Fi9ejIyMDJw+fRoDBgzAiBEj8Le//Q0jRozQHP+Vkpx3nz8tFtVk6sUXX4RCocCDLfWarykUCvj5+WHfvn06GZd98uRJra+bp5Td/66i1M6cOaNpJvwwLICQrrGQSyQPy5cvR1NTEw4fPoyioiJMnToVlpaWqKiogJWVleS9WIqKirBt2zYUFRVh/fr1sLe3x8GDB9GrVy/87ne/k2zdyMhI3Lx5E/7+/mhsbMSIESM0DZ2lnpAm2vr167Fv3z688MILAIDf/e53OH78OP7+979j1KhRmmMzhqAtPMMR4OLigtLSUjg5OcHDwwNJSUnw8fFBSkqK5L9wv/LKKy2uPVjQ9/T0RGpqqsH2ExRhzJgxmDNnDrZu3YohQ4ZAoVAgJycHoaGhj5w+TO3Xhx9+CDs7OyxfvhwTJ05E//799bq+3HefPw0OKpCptLQ0REVFYfXq1fDx8QEAHD9+HO+88w6WLl0Ka2trhIaG4vnnn8fWrVsFp316RkZGuHLliqQDGIjuZ2RkhOHDh/9qIffIkSN6TEVEUigrK0NgYCDKy8tx+/ZtXLhwAS4uLnj77bfR2NiITZs2SbZ2RkYGXnjhBfz+979HZmYmCgoK4OLigpiYGBw/fhzJycmSrd1MRENn0a5du4auXbs+9F5GRgZGjhyp50Ty0NjYiI8//hjp6en45ZdfoFKptO4b8vCf2NhYGBsbY8GCBUhPT8f48eOhVCrR1NSEtWvXIiwsTGi++4eVkG5UVVVh+vTpOHjwoGZXaFNTE8aNG4fPP/+cv9cYmNOnTyMjIwNHjx7F999/D2NjY82gglGjRkleZIuJicH27dsRHx+PgIAApKamoqysDAsXLsSyZcsM/s2yp8GimkwNGDAAmzdvbtFs9tixY5g7dy7OnTuHw4cPIyQkBOXl5TpdOyQkBOvXr4elpaXW9bq6OsyfPx/x8fE6XQ/43/RP/vAhfWEhl0g+XnzxRVhaWmLr1q3o0qWL5hfLjIwMzJ49G4WFhZKtPXz4cLz66qtYtGiR1i+1J06cwIsvvojLly9Ltrbc3bhxA8nJySgqKkJERAQ6d+6M3NxcODg4oEePHqLjSULEM9z9pk6dikOHDuGVV16Bg4NDi1MGcupjWl5ejpycHLi6umLgwIGi47CopmNqtRrl5eWws7PD5cuXUVBQALVajf79+6Nv376i45EenD59GuvWrcMXX3wBlUol2YTf+0VFRSE2NhaNjY0AoNl9vnLlSsnXbs9YVJMpc3NznDhxAgMGDNC6fubMGfj4+KChoQFlZWXo378/6uvrdbr2owpc165dQ7du3dDU1KTT9QAWOEj/WMglko+uXbvi2LFj6Nevn9YvlqWlpfDw8ND5z9H7derUCWfOnEHv3r1brO3u7q55MCbdysvLw9ixY2FtbY3S0lKcP38eLi4uWLp0KcrKypCQkCA6oiREPMPdz9raGqmpqfj9738v6TptVVpaGtLS0h66S0/qguavYVFNt1QqFczMzHDu3Dn06dNHdBzSk5MnT2omf37//fe4desWnnvuOfj7++PDDz/USwY57j5/WkaiA5AYQ4YMQUREBKqqqjTXqqqqEBkZiaFDhwIACgsL0bNnT52teevWLdy8eRNqtRq1tbW4deuW5uP69etITU2VrACxbds2WFtbIzMz86EPfE1NTcjMzJRkbZInvl9BJB+Pegf5P//5T4sdPbpmY2ODysrKFtdPnjxpsLul2oJFixZhxowZKCwshJmZmeb6Cy+8YJDPEyKf4e7Xo0cPyf9NtVXR0dH44x//iLS0NFy7dg3Xr1/X+iDDYmRkhD59+qC6ulp0FNITW1tb+Pj4YOfOnejTpw8SEhJQU1ODnJwcvRXUAMDCwgIODg7o3r07C2pPSk2y9O9//1vdr18/tYmJidrV1VXt5uamNjExUbu7u6vPnz+vVqvV6r1796oTEhJ0tqZCoVAbGRk98sPY2Fi9atUqna33MEZGRuqrV6+2uH7t2jW1kZGRpGuTvHz++efqxsZGdUZGhvru3bst7t+9e1edkZEhIBkR6drkyZPVc+bMUavVanWnTp3UxcXF6traWvXo0aPVM2bMkHTtiIgItZ+fn7qyslJtaWmpLiwsVGdlZaldXFzU7777rqRry5mVlZX64sWLarX63n/zoqIitVqtVpeWlqpNTU1FRpNEW3iGU6vV6tTUVHVgYKC6tLRU8rXamm7duun0uVzX7v93QLrxzTffqP38/NRnzpwRHYX0ICUlRX3z5k1h69+9e1f9zjvvqK2srDTf262srNRRUVHqO3fuCMvVHvD4p4yp1Wp8++23uHDhAtRqNdzd3REQEAAjI2k2MGZkZECtVmP06NHYs2cPOnfurLlnYmICJycndO/eXZK1mxkZGeHq1auws7PTun7hwgV4e3vj1q1bkq5P8vOoozLV1dWwt7fXS38EIpJWRUUF/P39YWxsjMLCQnh7e6OwsBBdu3ZFZmampDt47t69ixkzZmD37t1Qq9V45plnoFQqMXXqVHz++ecwNjaWbG05c3BwwMGDBzFo0CCtY2/fffcdZs2ahUuXLomOqFNt4RkOuHeqYvLkycjMzISFhYWmeXuzmpoayTOI0qVLFxw/fhyurq6iozwUj3/qnq2tLerr69HU1AQTExOYm5tr3Tfkv++kf6+//jr27t2LFStWYPjw4QCA7OxsvPvuu5g4caKkQ5faOxbV6LGkGI9dVlaG8vJyxMXFoaioCMnJyejRowd27NiB3r17w8/PT2drNZs0aRIAYP/+/QgMDISpqanmnlKpRF5eHvr164eDBw/qfG2SNxZyieShoaEBu3btQm5uLlQqFQYPHoygoKAWvwRJpbi4WLP2oEGD2INHYnPnzkVVVRWSkpLQuXNn5OXlwdjYGC+++CJGjBiBdevWiY4oCRHPcPcbO3YsysvLMWvWrIcOKpg+fbqk64u0ePFidOrUCUuXLhUd5aESExMxceJEdOzYUXQUg7F9+/bH3jfkv++kf9bW1ti9ezdeeOEFrev/7//9P7z22mu4efOmoGRt3zOiA1DbVlpairt37+r0z8zJycG0adMQFBSEkydP4vbt2wCA2tparFmzBqmpqTpdD7j3TQK4tzvP0tJS65ccExMTDBs2DHPmzNH5uiRfzYVchUKBGTNmPLSQ++D0XSJqv8zNzRESEoKQkBAh67u4uMDFxQVKpRJnzpzB9evXYWtrKySLHHz00Uf405/+BHt7ezQ0NGDkyJG4cuUKhg8fjtWrV4uOJxkRz3D3++GHH5Cdnd0mpl3qw6JFizSfq1QqbN68GYcPH4aXl1eLXXpr166VLMeTDEiYOnWqZOvLFYtmpE9mZmZwdnZucd3Z2RkmJib6D9SOsKhGerdq1Sps2rQJwcHB2L17t+a6r68vVqxYIcma27ZtA3Dvm0J4eDjfRSPJsZBLJB8HDhx46HWFQgEzMzO4ubmhd+/ekqz99ttvw9PTE7NmzYJSqcTIkSPxww8/wMLCAt988w1GjRolybpyZ2VlhaysLBw5ckRrd+LYsWNFR5OUiGe4+7m7u6OhoUHyddqKkydPan393HPPAQDOnj2rdf3BHXu6FB0djRUrVsDb2xuOjo6SrkWP1tDQ0GKjg5WVlaA0ZIjeeustrFy5Etu2bdNsBrh9+zZWr16NefPmCU7XtvH4Jz2WFP0RLCwskJ+fD2dnZ60/v7i4GB4eHmhsbNTZWg/T1NSEo0ePoqioCFOnToWlpSUqKipgZWXFCSekc9HR0SzkEhk4IyMjKBSKFlN/m68pFAr4+flh3759Ot891rNnT+zbtw/e3t7Yt28f3nzzTRw9ehQJCQlIT0/HsWPHdLoeyZvoZ7jvvvsO0dHRWL16NTw9PVvs1mKRQfccHR0RExODadOmiY4iO3V1dVi8eDGSkpIeOgWUfXlJl1566SWkpaXB1NRUsxv49OnTuHPnDsaMGaP12q+//lpExDaLO9VI7xwdHXHx4sUW20uzsrIkb25aVlaGwMBAlJeX4/bt2wgICIClpSViYmLQ2NjIBoykc8uXL0dTUxMOHz7MQi6RgTp06BCioqKwevVq+Pj4AACOHz+Od955B0uXLoW1tTVCQ0MRHh6OrVu36nTta9euoVu3bgCA1NRUTJ48GX379sWsWbOwYcMGna5FQEJCwhO9Ljg4WOIkYoh8hgOAwMBAAGjxC15z8ZpFBt27c+cO21UIEhkZifT0dGzcuBHBwcH45z//icuXLyMuLg7vv/++6HhkYGxsbPDyyy9rXdNlX3VDxqIa6V1oaCjCwsIQHx8PhUKBiooKZGdnIzw8HMuWLZN07bCwMHh7e+P06dPo0qWL5vpLL72E2bNnS7o2yRMLuUSGLywsDJs3b9b6xXPMmDEwMzPD3Llzce7cOaxbt06SfmsODg7Iz8+Ho6MjDh48iI0bNwIA6uvrOflTAmFhYY+8p1AoUFdXh6amJoMtqol8hgOA9PR0ydcgbbNnz0ZiYmKbHZBgyFJSUpCQkIBRo0YhJCQEf/jDH+Dm5gYnJyfs3LkTQUFBoiOSAWlul0Stx6Ia6V1kZCRu3rwJf39/NDY2YsSIETA1NUV4eLjk57WzsrJw7NixFs0WnZyccPnyZUnXJnliIZfI8BUVFT302JmVlRWKi4sBAH369MG1a9d0vvbMmTMxefJkTa+jgIAAAMBPP/0Ed3d3na8nd9evX3/o9crKSkRHRyM+Pl7z38AQiXyGA4CRI0dKvga1nQEJcldTU6Ppx2llZYWamhoAgJ+fH9544w2R0YjoPiyq0WPFxcXBwcFB53/u6tWrERUVhfz8fKhUKnh4eOjlGJxKpXro0YD//Oc/sLS0lHx9kh8WcokM35AhQxAREYGEhATY2dkBAKqqqhAZGYmhQ4cCAAoLC9GzZ0+dr/3uu+9iwIABuHTpEl599VVNc2FjY2MsWbJE5+uRttraWnzwwQdYv349fve73+Hbb7+Fv7+/6FiS0vczXF5eHgYMGAAjIyPk5eU99rVeXl6S5ZCTJx2QQNJycXFBaWkpnJyc4OHhgaSkJPj4+CAlJQU2Njai45GBqa6uxrJly5Cenv7QSb/NRV1qiYMKZOxJxmMbmilTpsDa2hqbN2+GpaUl8vLyYGdnh4kTJ+LZZ5/ltlfSuc6dOyMrKwseHh5aTZ2zsrLw8ssv4+rVq6IjEtFTOn/+PCZOnIiSkhL06tULCoUC5eXlcHFxwf79+9G3b1/s27cPtbW1wpp9e3p6IjU1lf1RdOTOnTv45JNPsGbNGnTt2hWrVq3CK6+8IjqWQTIyMsKVK1dgb2//yKEgANhTjQxObGwsjI2NsWDBAqSnp2P8+PFQKpVoamrC2rVrH3scnai1XnjhBRQVFWHWrFlwcHBoMel3+vTpgpK1fSyqydSvjcfeu3evoGTSqqiogL+/P4yNjVFYWAhvb28UFhaia9euyMzMhL29veiIZGBYyCWSB7VajW+//RYXLlyAWq2Gu7s7AgICYGRkJDoaAGmmecuRWq1GQkICli1bhqamJixfvhyzZs1i/zoJlZWV4dlnn4VCoUBZWdljX+vk5KSnVPIREhKC9evXtzjRUVdXh/nz5xvsG/FtUXl5OXJycuDq6qqZzkikK5aWlsjKyuLfrd+ARTWZkvN47IaGBuzatQu5ublQqVQYPHgwgoKCYG5uLjoaGSAWcomomcjdYiyq6YaXlxeKioowf/58vP3227CwsHjo6x7WY4/0Z/z48diyZQscHR1FR2n3jI2NUVlZ2eJ5pXnycFNTk6Bk8iDHk0UkxtChQ/Hxxx9j2LBhoqO0OyyqyVSXLl1w/PhxuLq6io5CZPBYyCUiQGxhi0U13bh/5+GDu/yBezvZeAxRPP59f3q3bt2CWq2Gra0tCgsLNf0iAUCpVCIlJQVLlixBRUWFwJSGTa4ni0iMEydOYMmSJVi2bBkGDBjQYigJ3yx6NA4qkCm5jsc+cODAQ68rFAqYmZnBzc1NM2WHSFfMzc0REhKCkJAQ0VGIiOgppKeni45ApBc2NjZQKBRQKBTo27dvi/sKhQLR0dECksnHpk2b8Pnnn8vyZBHpn42NDW7evInRo0drXeebRb+ORTUZ4Xhs4MUXX3xog9vmawqFAn5+fti3bx9sbW0FpSRDwkIuEZHhGDlypOgIRHqRnp4OtVqN0aNHY8+ePejcubPmnomJCZycnNC9e3eBCQ3fnTt34OvrKzoGyURQUBBMTEyQmJj40EEF9Gg8/ikjrRnxbqjvxKalpSEqKgqrV6+Gj48PAOD48eN45513sHTpUlhbWyM0NBTPP/88tm7dKjgtGYJHTSpjIZdIfnj803A8qs9UdXU17O3t+Y6+YPz7rjtlZWUoLy9HXFwcioqKkJycjB49emDHjh3o3bs3/Pz8REc0WIsXL0anTp1kd7KIxLCwsMDJkyfRr18/0VHaHe5UkxFDLZS1RlhYGDZv3qz1rs+YMWNgZmaGuXPn4ty5c1i3bh2P6ZHOHDp06IkKueHh4SzkEpFk4uLi4ODgIDqGwXjUe9K3b9+GiYmJntMQSScnJwfTpk1DUFAQTp48idu3bwMAamtrsWbNGqSmpgpOaFh4sohE8fb2xqVLl1hU+w1YVJMpuY7HLioqemiTRSsrKxQXFwMA+vTpg2vXruk7GhkoFnKJSGpPMh1u6tSpIqIZnA0bNgC4t9t4y5Yt6NSpk+aeUqlEZmYm3N3dRcUj0rlVq1Zh06ZNCA4Oxu7duzXXfX19sWLFCoHJDNPJkye1vn7uuecAAGfPntW6zqN5pGvz589HWFgYIiIi4Onp2aKI6+XlJShZ28fjnzIl1/HYfn5+sLS0REJCgmaKUVVVFYKDg1FXV4fMzEwcPnwYb775Ji5cuCA4LRkCc3NznDhxAgMGDNC6fubMGfj4+KChoQFlZWXo378/6uvrBaUkIn1ITEzExIkT0bFjR539mZwOp1/NPTDLysrQs2dPGBsba+6ZmJjA2dkZK1aswPPPPy8qokHLzMyEr68vnnlGe19AU1MTfvjhB4wYMQIA8N577+GNN96AjY2NgJSGxcLCAvn5+XB2dtY6VltcXAwPDw80NjaKjkhEOnD/dOtm97erYVuDR+NONZlpHo+tVqtRW1sLMzMzzT2lUonU1NQWhTZDsnXrVkycOBE9e/ZEr169oFAoUF5eDhcXF+zfvx8A8N///pe9C0hnhgwZgoiIiBaF3MjISAwdOhQAUFhYiJ49e4qMSURPSdRuMU6H06+SkhIA9/rUfv311+yFqWf+/v4PfVP45s2b8Pf31/zS97e//U1EPIPk6OiIixcvwtnZWet6VlYWe9YRGZDmn2/UeiyqyYzcx2P369cPBQUF+Pbbb3HhwgWo1Wq4u7sjICBAU51/8cUXxYYkg8JCLpHh+7XdYlLidDgxmvvU3rlzByUlJXB1dW2xe4p0r3nHxIOqq6t1ugOU/ic0NBRhYWGIj4+HQqFARUUFsrOzER4ejmXLlomOR0Q64uTkJDpCu8XjnzKTkZHB8dhPwNPTE6mpqejVq5foKGQA1Gr1Ywu5RNS+OTo6IiYmRshuMU6HE6OhoQHz5s3D9u3bAQAXLlyAi4sLFixYgO7du2PJkiWCExqWSZMmAQD279+PwMBAmJqaau4plUrk5eWhX79+OHjwoKiIBi0qKgqxsbGao56mpqYIDw/HypUrBScjoqd14MCBJ3rdhAkTJE7SfrGoJlMcj/14HMVO+sZCLlH71aVLFxw/fhyurq56We/B6XDbt2+Hl5cXp8PpUVhYGI4dO4Z169YhMDAQeXl5cHFxwYEDB7B8+fIWzcbp6cycORMAsH37dkyePBnm5uaae8297ObMmYOuXbuKimjw6uvrkZ+fD5VKBQ8PD60hHUTUfj3Jm/zsqfZ43KcuUxyPTdS2lJaW4u7du6JjENFvMHv2bCQmJuptt9iTTocj6ezbtw9ffvklhg0bpnUc0cPDA0VFRQKTGaZt27YBAJydnREeHs6jngJYWFjA29tbdAwi0rEH+8BS67GoJlMcj01ERPTbPbhbbPPmzTh8+LBedos19/Micaqqqh462Kmurk6vPfXkZvny5aIjEBERaWFRTabOnz+vGTt+PysrK9y4cUP/gYiIiNqRtrJbLCQkBOvXr4elpaXW9bq6OsyfP18zeZR0a+jQofjXv/6F+fPnA4CmkPbZZ59h+PDhIqMZvOTkZCQlJaG8vBx37tzRupebmysoFRFR+3f+/Hl8/PHHKCgogEKhgLu7O+bNmwd3d3fR0do0FtVkiuOxiYiIfru2slts+/bteP/991sU1RoaGpCQkMCimkTee+89BAYGIj8/H01NTVi/fj3OnTuH7OxsZGRkiI5nsDZs2ICoqChMnz4d+/fvx8yZM1FUVIQTJ07grbfeEh2PiKjdSk5Oxl/+8hd4e3tr3hz68ccf4enpicTERLz66quCE7ZdHD0nU83jsX/66SfNeOydO3ciPDwcb775puh4RERE7UZISAhqa2tbXK+rq0NISIgka966dQs3b96EWq1GbW0tbt26pfm4fv06UlNTH3o8kXTD19cXx44dQ319PVxdXfHdd9/BwcEB2dnZGDJkiOh4Bmvjxo3YvHkzPvnkE5iYmCAyMhKHDh3CggULcPPmTdHxiIjarcjISPztb39DdnY21q5di7Vr1+KHH37A3//+dyxevFh0vDaN0z9ljOOxHy0xMRETJ05kI1zSG06cJWq/jI2NUVlZ2aKIde3aNXTr1g1NTU06X9PIyOixvbsUCgWio6MRFRWl87WJRLGwsEBBQQGcnJxgb2+PQ4cOYeDAgSgsLMSwYcNQXV0tOiIRUbtkYWGBvLw8uLm5aV0vLCzEwIEDUV9fLyhZ28fjnzK2evVqREVFyW48dlpaGtLS0vDLL7+0mHbSfExm6tSpIqKRjMXFxcHBwUF0DCJqhVu3bkGtVmt2i5mZmWnuKZVKSXeLpaenQ61WY/To0dizZw86d+6suWdiYgInJyd0795dkrXpXu+uDh06wNPTEwCwf/9+bNu2DR4eHnj33XdhYmIiOKFh6tatG6qrq+Hk5AQnJyf8+OOPGDhwIEpKSsB9AkREv92oUaPw/ffftyiqZWVl4Q9/+IOgVO0Di2oyJ7fx2NHR0VixYgW8vb3h6OjICV2kFyzkEhkmGxsbKBQKKBQK9O3bt8X95t1iUhg5ciQAoKSkBOXl5YiLi0NRURGSk5PRo0cP7NixA71794afn58k68tdaGgolixZAk9PTxQXF2PKlCmYNGkSvvrqK9TX12PdunWiIxqk0aNHIyUlBYMHD8asWbOwcOFCJCcnIycnB5MmTRIdj4io3ZowYQIWL16Mn3/+GcOGDQNwr6faV199hejoaBw4cEDrtfQ/PP5JsuLo6IiYmBhMmzZNdBSSiV8r5O7du1dQMiJ6WhkZGcJ3i+3ZswfTpk1DUFAQduzYgfz8fLi4uGDjxo345ptvkJqaKun6cmVtbY3c3Fy4urrigw8+wJEjR/Dtt9/i2LFjeO2113Dp0iXREQ2SSqWCSqXCM8/c2xeQlJSErKwsuLm54fXXX+cOQSKi38jI6Mna7SsUCiiVSonTtC8sqpGsdOnSBcePH4erq6voKCQTLOQSGb6ysjJhu8UGDRqEhQsXIjg4WKs346lTpxAYGIgrV65ItracWVlZ4eeff0afPn0QEBCAP//5zwgLC0N5eTn69euHhoYG0RGJiIhID3j8k2Rl9uzZSExMxNKlS0VHIZm4c+cOfH19RccgIgnl5ORodoudPHkSt2/fBgDU1tZizZo1ku4WO3/+PEaMGNHiupWVFW7cuCHZunLn7e2NVatWYezYscjIyMCnn34K4N5xXPbHlNaNGzdw/Pjxh7ZUCA4OFpSKiIjkikU1MniLFi3SfK5SqbB582YcPnwYXl5e6NChg9Zr165dq+94ZOBYyCUyfKtWrcKmTZsQHByM3bt3a677+vpixYoVkq7t6OiIixcvwtnZWet6VlYWpwlLaN26dQgKCsK+ffsQFRWlaeycnJzMN1IklJKSgqCgINTV1cHS0lKrpYJCoWBRjYjoKWRkZOCjjz5CQUEBFAoF+vfvj4iICA4q+BU8/kkGz9/f/4lfm56eLmESkosHC7nbt2+Hl5cXC7lEBsrCwgL5+flwdnbWOoJZXFwMDw8PNDY2SrZ2TEwMtm/fjvj4eAQEBCA1NRVlZWVYuHAhli1bhnnz5km2NrXU2NgIY2Njzff6Xbt2YcKECejYsaPgZIahb9+++NOf/oQ1a9bAwsJCdBwiIoPxxRdfYObMmZg0aRJ+//vfQ61W44cffsDevXvx+eefc6jaY7CoRkSkYyzkEsmLq6sr4uLiMHbsWK2iWkJCAt5//33k5+dLun5UVBRiY2M1xTtTU1OEh4dj5cqVkq5Lv87KygqnTp3irkEd6dixI86cOcP/P4mIdKx///6YO3cuFi5cqHV97dq1+Oyzz1BQUCAoWdvHohrJSkhICNavXw9LS0ut63V1dZg/fz7i4+MFJSMiovaqLewWq6+vR35+PlQqFTw8PNCpUyfJ16Rfd3+RlZ7epEmT8Nprr2Hy5MmioxARGRRTU1OcO3dO086g2cWLFzFgwABJd923dyyqkawYGxujsrIS9vb2WtevXbuGbt26oampSVAyMlQs5BLJA3eL0cOwqPb0Dhw4oPm8qqoKK1aswMyZM+Hp6dmipcKECRP0HY+IyCC4ubkhIiICoaGhWtfj4uLw0UcfobCwUFCyto9FNZKFW7duQa1Ww9bWFoWFhbCzs9PcUyqVSElJwZIlS1BRUSEwJRkiFnKJ5IO7xehBLKo9PSMjoyd6nUKhgFKplDgNEZFh+vTTT/H2228jJCQEvr6+UCgUyMrKwueff47169e3KLbR/3D6J8mCjY0NFAoFFAoF+vbt2+K+QqFAdHS0gGRkqJoLuWq1GrW1tTAzM9PcUyqVSE1NbVFoI6L2zcLCAt7e3qJjEBkUlUolOgIRkcF744030K1bN/zjH/9AUlISgHt91r788ktMnDhRcLq2jUU1koX09HSo1WqMHj0ae/bsQefOnTX3TExM4OTkhO7duwtMSIaGhVwiIiIiImovXnrpJbz00kuiY7Q7LKqRLIwcORIAUFJSgvLycsTFxaGoqAjJycno0aMHduzYgd69e8PPz09wUjIULOQSEZGTk1OLvl/UOhs2bHji1y5YsEDCJEREhsvFxQUnTpxAly5dtK7fuHEDgwcPRnFxsaBkbR97qpGs7NmzB9OmTUNQUBB27NiB/Px8uLi4YOPGjfjmm2+QmpoqOiIZmLKyMhZyiYgM2H//+98WRxStrKwEpTE8vXv31vq6qqoK9fX1sLGxAXDvFz4LCwvY29vzlz4iot/IyMgIV65cadGe5urVq3j22Wdx+/ZtQcnaPu5UI1lZtWoVNm3ahODgYOzevVtz3dfXFytWrBCYjAxVTk6OppB78uRJzQ+k2tparFmzhoVcIqJ2qKSkBPPmzcPRo0c1E18BQK1Ws2G+jpWUlGg+T0xMxMaNG7F161b069cPAHD+/HnMmTOHTbSJiH6D+ycsf/vtt7C2ttZ8rVQqkZaWBmdnZwHJ2g/uVCNZsbCwQH5+PpydnbUmchUXF8PDw0PrwZhIFwYNGoSFCxciODhY6+/cqVOnEBgYiCtXroiOSEREreTr6wsACAsLg4ODAxQKhdb95rYTpFuurq5ITk7GoEGDtK7//PPPeOWVV7QKcERE9OuaJywrFAo8WBrq0KEDnJ2d8Y9//AN//vOfRcRrF7hTjWTF0dERFy9ebFFtz8rK4rh7ksT58+cxYsSIFtetrKxw48YN/QciIqKnlpeXh59//lmzW4r0o7KyEnfv3m1xXalU4urVqwISERG1b83tC3r37o0TJ06ga9eughO1P0aiAxDpU2hoKMLCwvDTTz9BoVCgoqICO3fuRHh4ON58803R8cgANRdyH8RCLhFR+zV06FBcunRJdAzZGTNmDObMmYOcnBzNjoqcnByEhoZi7NixgtMREbVfJSUlLQpq3ADwZLhTjWQlMjISN2/ehL+/PxobGzFixAiYmpoiPDwc8+bNEx2PDFBzITc+Pl5TyM3OzkZ4eDiWLVsmOh4REf0GW7Zsweuvv47Lly9jwIABLSZ8enl5CUpm2OLj4zF9+nT4+Pho/j9vamrCuHHjsGXLFsHpiIjarw8++ADOzs6YMmUKAODVV1/Fnj174OjoiNTUVAwcOFBwwraLPdVIlurr65Gfnw+VSgUPDw906tRJdCQyYFFRUYiNjdX07Gsu5K5cuVJwMiIi+i1+/PFHTJ06FaWlpZprzf1oOKhAGmq1GuXl5bCzs8Ply5dRUFAAtVqN/v37o2/fvqLjERG1ay4uLvjiiy/g6+uLQ4cOYfLkyfjyyy+RlJSE8vJyfPfdd6IjtlksqhER6QELuUREhsPDwwP9+/dHZGTkQwcVODk5CUpmuFQqFczMzHDu3Dn06dNHdBwiIoNibm6OCxcuoFevXggLC0NjYyPi4uJw4cIFPP/887h+/broiG0Wj38SEemBhYUFvL29RccgIiIdKCsrw4EDB+Dm5iY6imwYGRmhT58+qK6uZlGNiEjHbG1tcenSJfTq1QsHDx7EqlWrANzbJczd14/HQQVERERERK0wevRonD59WnQM2YmJiUFERATOnj0rOgoRkUGZNGkSpk6dioCAAFRXV+OFF14AAJw6dYpvIP0K7lQjIiIiImqF//u//8PChQtx5swZeHp6thhUMGHCBEHJDNtf//pX1NfXY+DAgTAxMYG5ubnW/ZqaGkHJiIjat9jYWDg7O+PSpUuIiYnRtKqprKzEm2++KThd28aeakRERERErWBk9OjDHhxUIJ3t27c/9v706dP1lISISJ7Gjx+PLVu2wNHRUXSUNoNFNSIiIiIiIiIieixLS0ucPn0aLi4uoqO0GTz+SURERETUCqWlpXB2dhYdQ9YaGhpw9+5drWtWVlaC0hARkVxxUAERERERUSu4uLjAz88PcXFx7OOlR3V1dZg3bx7s7e3RqVMn2Nraan0QERHpG4tqREREREStkJOTg+HDh2PVqlXo3r07Jk6ciK+++gq3b98WHc2gRUZG4siRI9i4cSNMTU2xZcsWREdHo3v37khISBAdj4iIZIg91YiIiIiIfgO1Wo2jR48iMTERe/bsgVKpxMsvv4z4+HjR0QzSs88+i4SEBIwaNQpWVlbIzc2Fm5sbduzYgV27diE1NVV0RCIig8aeai1xpxoRERER0W+gUCjg7++Pzz77DIcPH4aLi8uvTqik366mpga9e/cGcK9/WvPRWz8/P2RmZoqMRkREMsWiGhERERHRb3Dp0iXExMTgueeew9ChQ9GxY0d88sknomMZLBcXF5SWlgIAPDw8kJSUBABISUmBjY2NuGBERO1cZmYmmpqaWlxvamrSetPi73//Ozp37qzPaG0ej38SEREREbXC5s2bsXPnTmRlZcHd3R1BQUGYOnUqJ4JKLDY2FsbGxliwYAHS09Mxfvx4KJVKNDU1Ye3atQgLCxMdkYioXTI2NkZlZSXs7e21rldXV8Pe3h5KpVJQsraPRTUiIiIiolbo1asXXnvtNQQFBeG5554THUe2ysvLkZOTA1dXVwwcOFB0HCKidsvIyAhXr16FnZ2d1vULFy7A29sbt27dEpSs7XtGdAAiIiIiovakvLwcWVlZ+Oijj1BcXIyvvvoKPXr0wI4dO9C7d2/4+fmJjmiw0tLSkJaWhl9++QUqlUrrHgdEEBG1zqRJkwDc6xE6Y8YMmJqaau4plUrk5eXB19dXVLx2gT3ViIiIiIha4euvv8a4ceNgbm6O3Nxc3L59GwBQW1uLNWvWCE5nuKKjo/HHP/4RaWlpuHbtGq5fv671QURErWNtbQ1ra2uo1WpYWlpqvra2tka3bt0wd+5cfPHFF6Jjtmk8/klERERE1AqDBg3CwoULERwcDEtLS5w+fRouLi44deoUAgMDceXKFdERDZKjoyNiYmIwbdo00VGIiAxKdHQ0wsPD0bFjR9FR2h0e/yQiIiIiaoXz589jxIgRLa5bWVnhxo0b+g8kE3fu3OExJCIiCSxfvlx0hHaLRTUiIiIiolZwdHTExYsXW0z7zMrKgouLi5hQMjB79mwkJiZi6dKloqMQERmc5ORkJCUloby8HHfu3NG6l5ubKyhV28eiGhERERFRK4SGhiIsLAzx8fFQKBSoqKhAdnY2wsPDsWzZMtHxDMqiRYs0n6tUKmzevBmHDx+Gl5cXOnTooPXatWvX6jseEZFB2LBhA6KiojB9+nTs378fM2fORFFREU6cOIG33npLdLw2jT3ViIiIiIhaKSoqCrGxsWhsbAQAmJqaIjw8HCtXrhSczLD4+/s/0esUCgWOHDkicRoiIsPk7u6O5cuX4y9/+YtWr9Bly5ahpqYGn3zyieiIbRaLakREREREv0F9fT3y8/OhUqng4eGBTp06iY5ERETUahYWFigoKICTkxPs7e1x6NAhDBw4EIWFhRg2bBiqq6tFR2yzjEQHICIiIiJqjywsLODt7Q0fHx8W1IiIqN3q1q2bpnDm5OSEH3/8EQBQUlIC7sN6PBbViIiIiIiIiIhkavTo0UhJSQEAzJo1CwsXLkRAQACmTJmCl156SXC6to3HP4mIiIiIiIiIZEqlUkGlUuGZZ+7NskxKSkJWVhbc3Nzw+uuvw8TERHDCtotFNSIiIiIiIiIiolZ6RnQAIiIiIiIiIiIS58aNGzh+/Dh++eUXqFQqrXvBwcGCUrV93KlGRERERERERCRTKSkpCAoKQl1dHSwtLaFQKDT3FAoFampqBKZr21hUIyIiIiIiIiKSqb59++JPf/oT1qxZAwsLC9Fx2hUW1YiIiIiIiIiIZKpjx444c+YMXFxcREdpd4xEByAiIiIiIiIiIjHGjRuHnJwc0THaJQ4qICIiIiIiIiKSkQMHDmg+Hz9+PCIiIpCfnw9PT0906NBB67UTJkzQd7x2g8c/iYiIiIiIiIhkxMjoyQ4uKhQKKJVKidO0XyyqERERERERERERtRJ7qhEREREREREREbUSe6oREREREREREcnIhg0bnvi1CxYskDBJ+8bjn0REREREREREMtK7d2+tr6uqqlBfXw8bGxsAwI0bN2BhYQF7e3sUFxcLSNg+8PgnEREREREREZGMlJSUaD5Wr16N5557DgUFBaipqUFNTQ0KCgowePBgrFy5UnTUNo071YiIiIiIiIiIZMrV1RXJyckYNGiQ1vWff/4Zr7zyCkpKSgQla/u4U42IiIiIiIiISKYqKytx9+7dFteVSiWuXr0qIFH7waIaEREREREREZFMjRkzBnPmzEFOTg6aDzPm5OQgNDQUY8eOFZyubWNRjYiIiIiIiIhIpuLj49GjRw/4+PjAzMwMpqameP755+Ho6IgtW7aIjtemsacaEREREREREZEMqdVqlJeXw87ODpcvX0ZBQQHUajX69++Pvn37io7X5rGoRkREREREREQkQyqVCmZmZjh37hz69OkjOk67w+OfREREREREREQyZGRkhD59+qC6ulp0lHaJRTUiIiIiIiIiIpmKiYlBREQEzp49KzpKu8Pjn0REREREREREMmVra4v6+no0NTXBxMQE5ubmWvdramoEJWv7nhEdgIiIiIiIiIiIxFi3bp3oCO0Wd6oRERERERERERG1EneqERERERERERERGhoacPfuXa1rVlZWgtK0fRxUQEREREREREQkU3V1dZg3bx7s7e3RqVMn2Nraan3Qo7GoRkREREREREQkU5GRkThy5Ag2btwIU1NTbNmyBdHR0ejevTsSEhJEx2vT2FONiIiIiIiIiEimnn32WSQkJGDUqFGwsrJCbm4u3NzcsGPHDuzatQupqamiI7ZZ3KlGRERERERERCRTNTU16N27N4B7/dNqamoAAH5+fsjMzBQZrc1jUY2IiIiIiIiISKZcXFxQWloKAPDw8EBSUhIAICUlBTY2NuKCtQM8/klEREREREREJFOxsbEwNjbGggULkJ6ejvHjx0OpVKKpqQlr165FWFiY6IhtFotqREREREREREQEACgvL0dOTg5cXV0xcOBA0XHatGdEByAiIiIiIiIiInHS0tKQlpaGX375BSqVSutefHy8oFRtH4tqREREREREREQyFR0djRUrVsDb2xuOjo5QKBSiI7UbPP5JRERERERERCRTjo6OiImJwbRp00RHaXc4/ZOIiIiIiIiISKbu3LkDX19f0THaJRbViIiIiIiIiIhkavbs2UhMTBQdo13i8U8iIiIiIiIiIhlZtGiR5nOVSoXt27fDy8sLXl5e6NChg9Zr165dq+947QaLakREREREREREMuLv7/9Er1MoFDhy5IjEadovFtWIiIiIiIiIiIhaiT3ViIiIiIiIiIiIWolFNSIiIiIiIiIiolZiUY2IiIiIiIiIiKiVWFQjIiIiIiIiIiJqJRbViIiIiIiIiIiIWolFNSIiIiIiIiIiolZiUY2IiIiIiIiIiKiVWFQjIiIiIiIiIiJqpf8POXWeajm2W9sAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABMEAAAQhCAYAAAAkkJiPAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdeXiU1f3//9dkmySQBAMkELJiqyAhYRVZk4hgwyqIRVEISywY+CrGBZAqi9QUaCkom7gFpSgugAURjbIEBS1bcAEXLBCQhFUYiBAgOb8//GU+jllIMDAw83xc11xX73Of+7zf9z0jxbfnnNtijDECAAAAAAAAXJiHsxMAAAAAAAAALjeKYAAAAAAAAHB5FMEAAAAAAADg8iiCAQAAAAAAwOVRBAMAAAAAAIDLowgGAAAAAAAAl0cRDAAAAAAAAC6PIhgAAAAAAABcHkUwAAAAAAAAuDyKYAAAXCMyMzNlsVjsHy8vL9WvX1933323vv/++1L9ExMTHfr7+fkpPj5eM2fOVHFxcan+K1asUM+ePRUaGiofHx8FBwerc+fO+ve//63z589fiVuU9H/3uXfvXnvb4MGDFR0dfcVyuFw2btyoiRMn6sSJE9U2ZnR0tHr06FFt47mjdevWyWKxaN26dc5OBQAAXEYUwQAAuMa88sor2rRpkz766CONGjVK//nPf9ShQwf99NNPpfo2bNhQmzZt0qZNm7RkyRI1aNBADz/8sMaNG2fvY4zRkCFD1KtXLxUXF2vGjBn66KOPtHDhQsXHxystLU1z5869krfosjZu3KhJkyZVaxEMv1+LFi20adMmtWjRwtmpAACAy8jL2QkAAICqiY2NVatWrST9MturqKhIEyZM0PLlyzVkyBCHvn5+frrlllvsx8nJyWrUqJFmz56tKVOmyNvbW9OnT1dmZqYmTZqkp556yuH6nj176vHHH9fu3bsv/40BV9j58+dlsVgUGBjo8M8JAABwTcwEAwDgGldSEDt06NBF+3p7e6tly5b6+eefdeTIEZ0/f15Tp05Vo0aN9OSTT5Z5Tb169dShQ4eLjr148WK1bdtWNWvWVM2aNdWsWTO99NJL9vNZWVnq3bu3wsPD5evrqz/84Q8aPny4jh49Wsk7rZzVq1erc+fOCgoKkr+/vxo3bqyMjAyHPv/5z3/Utm1b+fv7KyAgQF26dNGmTZsc+pS3BHPixImyWCwObRaLRaNGjdJrr72mxo0by9/fX/Hx8Vq5cqXDdY899pgkKSYmxr5MtWQJ3po1a5SYmKjatWvLz89PkZGRuvPOO/Xzzz9X6r6XLVumuLg4+fr6qmHDhnr22Wft506fPq1atWpp+PDhpa7bu3evPD09NX369ArHnzdvnuLj41WzZk0FBASoUaNGeuKJJxz6/Pjjj/rLX/6iiIgI+fj4KCwsTP369XP4bdpsNj366KOKiYmRj4+PGjRooNGjR6ugoKDKz1SSdu/erSFDhuiPf/yj/P391aBBA/Xs2VNffvmlQ7+SJY+vvfaaHnnkETVo0EBWq1W7d+8udzlkZX4nAADg2kERDACAa9yePXskSTfccEOl+v/www/y8vLSddddpy1btuj48ePq3bt3qcJOVTz11FO69957FRYWpszMTC1btkwpKSnat2+fQ9y2bdtq3rx5+vDDD/XUU0/p888/V4cOHaptz7GXXnpJ3bp1U3FxsebPn68VK1bowQcf1IEDB+x9Fi9erN69eyswMFCvv/66XnrpJf30009KTEzUJ598csmx33vvPc2ePVuTJ0/WO++8o+DgYPXp00f/+9//JEmpqan6f//v/0mSli5dal+m2qJFC+3du1fdu3eXj4+PXn75Za1evVp///vfVaNGDZ07d+6isXNycjR69Gg9/PDDWrZsmdq1a6eHHnpI//jHPyRJNWvW1NChQ/Xvf/9bJ0+edLh27ty58vHx0dChQ8sd/4033lBaWpoSEhK0bNkyLV++XA8//LBD4erHH39U69attWzZMqWnp+v999/XzJkzFRQUZF+q+/PPPyshIUELFy7Ugw8+qPfff19jxoxRZmamevXqJWNMlZ6pJB08eFC1a9fW3//+d61evVpz5syRl5eX2rRpo2+//bbUvYwbN065ubn230dISEiZ93y5ficAAMCJDAAAuCa88sorRpL57LPPzPnz582pU6fM6tWrTb169UynTp3M+fPnHfonJCSYJk2amPPnz5vz58+bgwcPmrFjxxpJ5q677jLGGPPGG28YSWb+/PmXnNf//vc/4+npae69995KX1NcXGzOnz9v9u3bZySZd999t9R97tmzx96WkpJioqKiKhzz1KlTJjAw0HTo0MEUFxeX2aeoqMiEhYWZpk2bmqKiIodrQ0JCTLt27S4ac8KECea3f4WSZEJDQ43NZrO35efnGw8PD5ORkWFvmz59eql7M8aYt99+20gyOTk5Fd5jWaKioozFYil1bZcuXUxgYKApKCgwxhjzww8/GA8PD/Ovf/3L3ufMmTOmdu3aZsiQIRXGGDVqlKlVq1aFfYYOHWq8vb3Nzp07y+2TkZFhPDw8zObNmx3aS+5/1apV9rbKPtPfunDhgjl37pz54x//aB5++GF7+9q1a40k06lTp1LXlJxbu3atMaZqvxMAAHDtYCYYAADXmFtuuUXe3t4KCAjQn/70J1133XV699135eVVeqvPr7/+Wt7e3vL29lZYWJj++c9/6t5779ULL7xQbflkZWWpqKhII0eOrLDf4cOHNWLECEVERMjLy0ve3t6KioqSJO3atet357Fx40bZbDalpaWVO6vt22+/1cGDBzVw4EB5ePzfX4Nq1qypO++8U5999lmllx/+VlJSkgICAuzHoaGhCgkJcZgNV55mzZrJx8dHf/nLX7Rw4UKHmU6V0aRJE8XHxzu0DRgwQDabTdu2bZP0y0sSevTooblz59pnXC1evFjHjh3TqFGjKhz/5ptv1okTJ3TPPffo3XffLXMJ6/vvv6+kpCQ1bty43HFWrlyp2NhYNWvWTBcuXLB/br/99jKXI1bmmV64cEHPPPOMbrrpJvn4+MjLy0s+Pj76/vvvy/xd3XnnnRXeq3R5fycAAMB5KIIBAHCNefXVV7V582atWbNGw4cP165du3TPPfeU2ff666/X5s2btWXLFn311Vc6ceKEFi1apKCgIElSZGSkpP9bUnkpjhw5IkkKDw8vt09xcbG6du2qpUuX6vHHH9fHH3+s//73v/rss88kSWfOnLnk+FXJ49ixY5Kk+vXrlzoXFham4uLiMt+yWRm1a9cu1Wa1Wit1b9dff70++ugjhYSEaOTIkbr++ut1/fXXa9asWZWKXa9evXLbSu5Zkh566CF9//33ysrKkiTNmTNHbdu2vehbEQcOHKiXX35Z+/bt05133qmQkBC1adPGPo70y/Ov6NlLv+xb98UXX9gLsyWfgIAAGWNKFdcq80zT09P15JNP6o477tCKFSv0+eefa/PmzYqPjy/z2Zf13f/W5fydAAAA5+HtkAAAXGMaN25s3ww/KSlJRUVFevHFF/X222+rX79+Dn19fX3tfcvSqlUrBQcH691331VGRsYl7QtWt25dSdKBAwcUERFRZp+vvvpKO3bsUGZmplJSUuzt1fnWyV/nUZ6SokpeXl6pcwcPHpSHh4euu+46Sb88u8LCwlL9qnsj/xIdO3ZUx44dVVRUpC1btui5557T6NGjFRoaqrvvvrvCa/Pz88tt+3Uh6dZbb1VsbKxmz56tmjVratu2bVq0aFGl8hsyZIiGDBmigoICZWdna8KECerRo4e+++47RUVFqW7duhU+e0mqU6eO/Pz89PLLL5d7vqoWLVqkQYMG6ZlnnnFoP3r0qGrVqlWqf2V+41X5nQAAgGsHM8EAALjGTZs2Tdddd52eeuopFRcXV+lab29vjRkzRt98842efvrpMvscPnxYn376abljdO3aVZ6enpo3b165fUoKD1ar1aH9+eefr1K+FWnXrp2CgoI0f/78Uhusl7jxxhvVoEEDLV682KFPQUGB3nnnHfubACUpOjpahw8fdniz4blz5/TBBx9cco4l91/R7DBPT0+1adNGc+bMkST7csaKfP3119qxY4dD2+LFixUQEFBqlteDDz6o9957T+PGjVNoaKjuuuuuKt1DjRo1lJycrPHjx+vcuXP6+uuvJUnJyclau3ZtmZvRl+jRo4d++OEH1a5dW61atSr1KettnBdjsVhK/a7ee+89/fjjj1Ueq0RVficAAODawUwwAACucdddd53GjRunxx9/XIsXL9Z9991Xpesfe+wx7dq1SxMmTNB///tfDRgwQBERETp58qSys7O1YMECTZo0Se3bty/z+ujoaD3xxBN6+umndebMGd1zzz0KCgrSzp07dfToUU2aNEmNGjXS9ddfr7Fjx8oYo+DgYK1YscJhOd3vVbNmTf3zn/9UamqqbrvtNt1///0KDQ3V7t27tWPHDs2ePVseHh6aNm2a7r33XvXo0UPDhw9XYWGhpk+frhMnTujvf/+7fbz+/fvrqaee0t13363HHntMZ8+e1bPPPquioqJLzrFp06aSpFmzZiklJUXe3t668cYb9e9//1tr1qxR9+7dFRkZqbNnz9pnS912220XHTcsLEy9evXSxIkTVb9+fS1atEhZWVmaOnVqqWLNfffdp3Hjxik7O1t//etf5ePjc9Hx77//fvn5+al9+/aqX7++8vPzlZGRoaCgILVu3VqSNHnyZL3//vvq1KmTnnjiCTVt2lQnTpzQ6tWrlZ6erkaNGmn06NF655131KlTJz388MOKi4tTcXGxcnNz9eGHH+qRRx5RmzZtqvRMe/TooczMTDVq1EhxcXHaunWrpk+fftGlmRWpyu8EAABcQ5y5Kz8AAKi8krcm/vbNesb88pa/yMhI88c//tFcuHDBGPN/b4esrHfffdd0797d1K1b13h5eZnrrrvOJCUlmfnz55vCwsKLXv/qq6+a1q1bG19fX1OzZk3TvHlz88orr9jP79y503Tp0sUEBASY6667ztx1110mNzfXSDITJkwodZ9VfTtkiVWrVpmEhARTo0YN4+/vb2666SYzdepUhz7Lly83bdq0Mb6+vqZGjRqmc+fO5tNPPy1zrGbNmhk/Pz/TsGFDM3v27HLfDjly5MhS10dFRZmUlBSHtnHjxpmwsDDj4eFhfyPhpk2bTJ8+fUxUVJSxWq2mdu3aJiEhwfznP/+56P1GRUWZ7t27m7fffts0adLE+Pj4mOjoaDNjxoxyrxk8eLDx8vIyBw4cuOj4xhizcOFCk5SUZEJDQ42Pj48JCwszf/7zn80XX3zh0G///v1m6NChpl69esbb29ve79ChQ/Y+p0+fNn/961/NjTfeaHx8fExQUJBp2rSpefjhh01+fr69X2Wf6U8//WSGDRtmQkJCjL+/v+nQoYPZsGGDSUhIMAkJCfZ+JW+AfOutt0qN+du3Q5ao7O8EAABcGyzGlLNeAAAAAC7n3Llzio6OVocOHfTmm286Ox0AAIArhuWQAAAAbuDIkSP69ttv9corr+jQoUMaO3ass1MCAAC4oiiCAQAAuIH33ntPQ4YMUf369TV37txSG+YDAAC4OpZDAgAAAAAAwOV5ODsBAAAAAAAA4HKjCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAADgMvj55581ceJErVu3ztmpXHV27typiRMnau/evVckXnR0tAYPHnzRfnv37pXFYtE//vGPi/bNzMyUxWK5YvfgTKtWrdLEiROdnYbdxIkTZbFYqnwdRTAAAAAAAC6Dn3/+WZMmTaIIVoadO3dq0qRJblFAcgWrVq3SpEmTnJ3G70YRDAAAAAAAwI2cP39eFy5ccHYaVxxFMAAAAACASytZOvX111/rnnvuUVBQkEJDQzV06FCdPHnS3s8Yo7lz56pZs2by8/PTddddp379+ul///ufw3iJiYmKjY3Vhg0bdMstt8jPz08NGjTQk08+qaKiIkm/LKurW7euJGnSpEmyWCyyWCz2JXmDBw9WdHR0ubn+msVi0ahRo/Taa6+pcePG8vf3V3x8vFauXFnq+u+//14DBgxQSEiIrFarGjdurDlz5lTqOZUsBZw+fbqmTp2q6Oho+fn5KTExUd99953Onz+vsWPHKiwsTEFBQerTp48OHz5cKteyls39ejliZmam7rrrLklSUlKS/dlkZmaW6vtriYmJSkxMtB+fPXtWjzzyiJo1a6agoCAFBwerbdu2evfddyt1vxUpLi7W3/72N0VGRsrX11etWrXSxx9/fNHrKpu7JNlsNj366KOKiYmRj4+PGjRooNGjR6ugoKBSOUZHR6tHjx5atmyZ4uLi5Ovrq4YNG+rZZ5916Ldu3TpZLBa99tpreuSRR9SgQQNZrVbt3r1bkvTyyy8rPj5evr6+Cg4OVp8+fbRr1y779YMHD7b/hkq+q18vAz179qzGjRvncB8jR47UiRMnSuW8ePFitW3bVjVr1lTNmjXVrFkzvfTSSw59LpbP70ERDAAAAADgFu68807dcMMNeueddzR27FgtXrxYDz/8sP388OHDNXr0aN12221avny55s6dq6+//lrt2rXToUOHHMbKz8/X3XffrXvvvVfvvvuu+vXrpylTpuihhx6SJNWvX1+rV6+WJA0bNkybNm3Spk2b9OSTT15S7u+9955mz56tyZMn65133rEXB35doNu5c6dat26tr776Sv/85z+1cuVKde/eXQ8++GCVlrLNmTNHn376qebMmaMXX3xR33zzjXr27Klhw4bpyJEjevnllzVt2jR99NFHSk1NrfK9dO/eXc8884w9Vsmz6d69e5XGKSws1PHjx/Xoo49q+fLlev3119WhQwf17dtXr776apXz+rXZs2dr9erVmjlzphYtWiQPDw8lJydr06ZNv2vcEj///LMSEhK0cOFCPfjgg3r//fc1ZswYZWZmqlevXjLGVGqcnJwcjR49Wg8//LCWLVumdu3a6aGHHipzT7Nx48YpNzdX8+fP14oVKxQSEqKMjAwNGzZMTZo00dKlSzVr1ix98cUXatu2rb7//ntJ0pNPPql+/fpJkv272rRpk+rXry9jjO644w794x//0MCBA/Xee+8pPT1dCxcu1K233qrCwkJ7/Keeekr33nuvwsLClJmZqWXLliklJUX79u2z96lMPr+LAQAAAADAhU2YMMFIMtOmTXNoT0tLM76+vqa4uNhs2rTJSDL//Oc/Hfrs37/f+Pn5mccff9zelpCQYCSZd99916Hv/fffbzw8PMy+ffuMMcYcOXLESDITJkwolVNKSoqJiooqN9dfk2RCQ0ONzWazt+Xn5xsPDw+TkZFhb7v99ttNeHi4OXnypMP1o0aNMr6+vub48eNlPJ3/s2fPHiPJxMfHm6KiInv7zJkzjSTTq1cvh/6jR482khzilXe/UVFRJiUlxX781ltvGUlm7dq1F+1bIiEhwSQkJJSb/4ULF8z58+fNsGHDTPPmzSs15m+VPIOwsDBz5swZe7vNZjPBwcHmtttus7e98sorRpLZs2dPlXPPyMgwHh4eZvPmzQ793n77bSPJrFq16qK5RkVFGYvFYnJychzau3TpYgIDA01BQYExxpi1a9caSaZTp04O/X766Sfj5+dnunXr5tCem5trrFarGTBggL1t5MiRpX6XxhizevXqMv/ZWrJkiZFkFixYYIwx5n//+5/x9PQ09957b7n3U5V8yvrnpDKYCQYAAAAAcAu9evVyOI6Li9PZs2d1+PBhrVy5UhaLRffdd58uXLhg/9SrV0/x8fGlNrcPCAgoNd6AAQNUXFys7Ozsas89KSlJAQEB9uPQ0FCFhITYZ9GcPXtWH3/8sfr06SN/f3+He+jWrZvOnj2rzz77TJJUVFTkcL64uNghVrdu3eTh8X/lgsaNG0tSqZlaJe25ubnVfr+V9dZbb6l9+/aqWbOmvLy85O3trZdeeumiy+cu9gz69u0rX19f+3FAQIB69uyp7Oxs+5LX32PlypWKjY1Vs2bNHPK4/fbbZbFY7L+34uJih/O/jd2kSRPFx8c7tA0YMEA2m03btm1zaL/zzjsdjjdt2qQzZ86UWr4ZERGhW2+9tVLLP9esWSNJpca46667VKNGDfsYWVlZKioq0siRI8sdqzryuRiKYAAAAAAAt1C7dm2HY6vVKkk6c+aMDh06JGOMQkND5e3t7fD57LPPdPToUYdrQ0NDS41fr149SdKxY8cue+4l+Z85c8Ye88KFC3ruuedK5d+tWzdJst/D9ddf73B+8uTJDuMGBwc7HPv4+FTYfvbs2Wq4w6pbunSp/vznP6tBgwZatGiRNm3apM2bN2vo0KEXzeliz6Dku/xt27lz53T69OnfnfuhQ4f0xRdflPquAgICZIyxf1dDhw51ON+5c+dK5SmV/h3Wr1/f4bjk/G/bJSksLKxSv+Njx47Jy8vLvv9dCYvFonr16tnHOHLkiCQpPDy8wrF+bz4X4/W7RwAAAAAA4BpXp04dWSwWbdiwwV4c+7Xftv12jzDpl33CpLILVr/l6+vrsF9Sid8W2yrruuuuk6enpwYOHFjubJuYmBhJ0ooVKxxih4WFXVLMslit1jLvqyoFjIqeTZ06dezHixYtUkxMjJYsWeLwMoGyrv2tiz2Dku/yt20+Pj6qWbPm7869Tp068vPz08svv1zmOCV9J06cqFGjRtnbfz0bsKI8pdK/w9++cKHkfF5eXqkxDh486JBveWrXrq0LFy7oyJEjDoUwY4zy8/PVunVrSbKfO3DggCIiIsod6/fmczEUwQAAAAAAbq9Hjx76+9//rh9//FF//vOfL9r/1KlT+s9//uOwJHLx4sXy8PBQp06dJDnONPut6OhoHT58WIcOHbLPKjt37pw++OCDS8rf399fSUlJ2r59u+Li4uyztMrStGnTS4pRGdHR0friiy8c2tasWVNq9tTFns1vx/juu+/07bffOhRCLBaLfHx8HIo7+fn5lXo75MWewdKlSzV9+nT7kshTp05pxYoV6tixozw9Pcu9rrK59+jRQ88884xq165tL06WN15ZbxEt8fXXX2vHjh0OSyIXL16sgIAAtWjRosJ7bNu2rfz8/LRo0SL72zqlXwpVa9assW+GLzl+X35+fvb2zp07a9q0aVq0aJHDSybeeecdFRQU2Geude3aVZ6enpo3b57atm37u/O5VBTBAAAAAABur3379vrLX/6iIUOGaMuWLerUqZNq1KihvLw8ffLJJ2ratKkeeOABe//atWvrgQceUG5urm644QatWrVKL7zwgh544AFFRkZK+mXWTlRUlN5991117txZwcHBqlOnjqKjo9W/f3899dRTuvvuu/XYY4/p7NmzevbZZ3/XflOzZs1Shw4d1LFjRz3wwAOKjo7WqVOntHv3bq1YscK+f9PlNHDgQD355JN66qmnlJCQoJ07d2r27NkKCgpy6BcbGytJWrBggQICAuTr66uYmBjVrl1bAwcO1H333ae0tDTdeeed2rdvn6ZNm1ZqyV2PHj20dOlSpaWlqV+/ftq/f7+efvpp1a9f/3e/SdDT01NdunRRenq6iouLNXXqVNlstou+ZbOyuY8ePVrvvPOOOnXqpIcfflhxcXEqLi5Wbm6uPvzwQz3yyCNq06bNRfMMCwtTr169NHHiRNWvX1+LFi1SVlaWpk6dKn9//wqvrVWrlp588kk98cQTGjRokO655x4dO3ZMkyZNkq+vryZMmGDvW1I0nDp1qpKTk+Xp6am4uDh16dJFt99+u8aMGSObzab27dvriy++0IQJE9S8eXMNHDhQ0i/FvCeeeEJPP/20zpw5o3vuuUdBQUHauXOnjh49qkmTJlUpn0tW5a30AQAAAAC4hpS8Se7IkSMO7WW93e/ll182bdq0MTVq1DB+fn7m+uuvN4MGDTJbtmyx90lISDBNmjQx69atM61atTJWq9XUr1/fPPHEE+b8+fMOMT766CPTvHlzY7VajSSHNweuWrXKNGvWzPj5+ZmGDRua2bNnl/t2yJEjR5a6r7LeRLhnzx4zdOhQ06BBA+Pt7W3q1q1r2rVrZ6ZMmXLR51TyZsTp06c7tJe8XfCtt94q8/n9+g2HhYWF5vHHHzcRERHGz8/PJCQkmJycnDJznTlzpomJiTGenp5GknnllVeMMcYUFxebadOmmYYNGxpfX1/TqlUrs2bNmjLfDvn3v//dREdHG6vVaho3bmxeeOGFMp9hVd8OOXXqVDNp0iQTHh5ufHx8TPPmzc0HH3xQ5v3/+vdTldxPnz5t/vrXv5obb7zR+Pj4mKCgINO0aVPz8MMPm/z8/IvmGhUVZbp3727efvtt06RJE+Pj42Oio6PNjBkzHPqV9/2VePHFF01cXJw9h969e5uvv/7aoU9hYaFJTU01devWNRaLxeG+z5w5Y8aMGWOioqKMt7e3qV+/vnnggQfMTz/9VCrWq6++alq3bm18fX1NzZo1TfPmze3fe1XyudS3Q1qMMeb3l9IAAAAAAHAPiYmJOnr0qL766itnpwI3Fh0drdjYWK1cudLZqVwzeDskAAAAAAAAXB5FMAAAAAAAALg8lkMCAAAAAADA5TETDAAAAAAAAC6PIhgAAAAAAABcnpezE6iq4uJiHTx4UAEBAbJYLM5OBwAAAAAAAE5ijNGpU6cUFhYmD4+K53pdc0WwgwcPKiIiwtlpAAAAAAAA4Cqxf/9+hYeHV9jnmiuCBQQESPrl5gIDA52cDQAAAAAAAJzFZrMpIiLCXi+qyDVXBCtZAhkYGEgRDAAAAAAAAJXaMouN8QEAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAcHkUwQAAAAAAAODynFIE8/LyUrNmzdSsWTOlpqY6IwUAAAAAAAC4ES9nBK1Vq5ZycnKcERoAAAAAAABuiOWQAAAAAAAAcHlVLoJlZ2erZ8+eCgsLk8Vi0fLly0v1mTt3rmJiYuTr66uWLVtqw4YNDudtNptatmypDh06aP369ZecPAAAAAAAAFAZVS6CFRQUKD4+XrNnzy7z/JIlSzR69GiNHz9e27dvV8eOHZWcnKzc3Fx7n71792rr1q2aP3++Bg0aJJvNVm68wsJC2Ww2hw8AAAAAAABQFRZjjLnkiy0WLVu2THfccYe9rU2bNmrRooXmzZtnb2vcuLHuuOMOZWRklBojOTlZTz/9tFq1alVmjIkTJ2rSpEml2k+ePKnAwMBLTR0AAAAAAADXOJvNpqCgoErViap1T7Bz585p69at6tq1q0N7165dtXHjRknSTz/9pMLCQknSgQMHtHPnTjVs2LDcMceNG6eTJ0/aP/v376/OlAEAAAAAAOAGqvXtkEePHlVRUZFCQ0Md2kNDQ5Wfny9J2rVrl4YPHy4PDw9ZLBbNmjVLwcHB5Y5ptVpltVqrM00AAAAAAAC4mWotgpWwWCwOx8YYe1u7du305ZdfXo6wAAAAAAAAQJmqdTlknTp15OnpaZ/1VeLw4cOlZocBAAAAAAAAV0q1zgTz8fFRy5YtlZWVpT59+tjbs7Ky1Lt37+oMBVz7Flsu3uf3GnDJ770AAAAAAMClVLkIdvr0ae3evdt+vGfPHuXk5Cg4OFiRkZFKT0/XwIED1apVK7Vt21YLFixQbm6uRowYUa2Jw0VQCMKVxm8OAAAAANxSlYtgW7ZsUVJSkv04PT1dkpSSkqLMzEz1799fx44d0+TJk5WXl6fY2FitWrVKUVFR1Zc1AKBqKP4BAAAAcHNVLoIlJibKmIr/RSctLU1paWmXnBSuMP7lGAAAAAAAuLhq3RgfAAAAAAAAuBpV68b4AIAKMOsSAAAAAJyGIhgAwLVRfAQAAAAglkMCAAAAAADADVAEAwAAAAAAgMu74kWwU6dOqXXr1mrWrJmaNm2qF1544UqnAAAAAAAAADdzxfcE8/f31/r16+Xv76+ff/5ZsbGx6tu3r2rXrn2lUwEAAAAAAICbuOIzwTw9PeXv7y9JOnv2rIqKimQMGwoDAAAAAADg8qlyESw7O1s9e/ZUWFiYLBaLli9fXqrP3LlzFRMTI19fX7Vs2VIbNmxwOH/ixAnFx8crPDxcjz/+uOrUqXPJNwAAAAAAAABcTJWLYAUFBYqPj9fs2bPLPL9kyRKNHj1a48eP1/bt29WxY0clJycrNzfX3qdWrVrasWOH9uzZo8WLF+vQoUPlxissLJTNZnP4AAAAAAAAAFVR5SJYcnKypkyZor59+5Z5fsaMGRo2bJhSU1PVuHFjzZw5UxEREZo3b16pvqGhoYqLi1N2dna58TIyMhQUFGT/REREVDVlAAAAAAAAuLlq3RPs3Llz2rp1q7p27erQ3rVrV23cuFGSdOjQIftsLpvNpuzsbN14443ljjlu3DidPHnS/tm/f391pgwAAAAAAAA3UK1vhzx69KiKiooUGhrq0B4aGqr8/HxJ0oEDBzRs2DAZY2SM0ahRoxQXF1fumFarVVartTrTBP7PYsvljzGAFz8AcDP82QoAAICrULUWwUpYLI5/+TXG2NtatmypnJycyxEWAAAAAAAAKFO1FsHq1KkjT09P+6yvEocPHy41OwwAAADViBl4AAAAFarWPcF8fHzUsmVLZWVlObRnZWWpXbt21RkKAAAAAAAAqLQqzwQ7ffq0du/ebT/es2ePcnJyFBwcrMjISKWnp2vgwIFq1aqV2rZtqwULFig3N1cjRoyo1sQBAAAAAACAyqpyEWzLli1KSkqyH6enp0uSUlJSlJmZqf79++vYsWOaPHmy8vLyFBsbq1WrVikqKqr6sgYAAAAAAACqoMpFsMTERBlT8X4QaWlpSktLu+SkAAAuhH2KAAAAAFwFqnVPMAAAAAAAAOBqRBEMAAAAAAAALq/KyyEBAAAAALii2F4BQDVgJhgAAAAAAABcHkUwAAAAAAAAuDynFMH69Omj6667Tv369XNGeAAAAAAAALgZpxTBHnzwQb366qvOCA0AAAAAAAA35JQiWFJSkgICApwRGgAAAAAAAG6oym+HzM7O1vTp07V161bl5eVp2bJluuOOOxz6zJ07V9OnT1deXp6aNGmimTNnqmPHjtWVs2vibScAAOBaxt9lAADAVa7KM8EKCgoUHx+v2bNnl3l+yZIlGj16tMaPH6/t27erY8eOSk5OVm5u7iUlWFhYKJvN5vABAAAAAAAAqqLKRbDk5GRNmTJFffv2LfP8jBkzNGzYMKWmpqpx48aaOXOmIiIiNG/evEtKMCMjQ0FBQfZPRETEJY0DAAAAAAAA91Wte4KdO3dOW7duVdeuXR3au3btqo0bN17SmOPGjdPJkyftn/3791dHqgAAAAAAAHAjVd4TrCJHjx5VUVGRQkNDHdpDQ0OVn59vP7799tu1bds2FRQUKDw8XMuWLVPr1q3LHNNqtcpqtVZnmgAAAAAAAHAz1VoEK2GxOG6MaoxxaPvggw8uR1gAAAAAAACgTNW6HLJOnTry9PR0mPUlSYcPHy41OwwAAAAAAAC4Uqq1CObj46OWLVsqKyvLoT0rK0vt2rWrzlAAAAAAAABApVV5OeTp06e1e/du+/GePXuUk5Oj4OBgRUZGKj09XQMHDlSrVq3Utm1bLViwQLm5uRoxYkS1Jg4AAAAAAABUVpWLYFu2bFFSUpL9OD09XZKUkpKizMxM9e/fX8eOHdPkyZOVl5en2NhYrVq1SlFRUdWXNQAAAAAAAFAFVS6CJSYmyhhTYZ+0tDSlpaVdclIAAAAAAABAdarWPcEAAAAAAACAqxFFMAAAAAAAALg8imAAAAAAAABweVXeE8zZSvYjs9lsTs6kmv18BWKU98zcNbaz4zv73t2Vu37n7hr7aojvjnjmzuHs5+7s+ABcG3/GAChHSX3oYvvXS5LFVKbXVeTAgQOKiIhwdhoAAAAAAAC4Suzfv1/h4eEV9rnmimDFxcU6ePCgAgICZLFYnJ2OU9hsNkVERGj//v0KDAx0q/jE5jsntuvHJzbfubvEdnZ8YvOdE9v14xOb79xdYjs7vrvGvloYY3Tq1CmFhYXJw6PiXb+uueWQHh4eF63suYvAwECn/sidGZ/YzuGu9+6usZ0dn9jO4a73znMntjvFJ7ZzuOu9u2tsZ8d319jOju+usa8GQUFBlerHxvgAAAAAAABweRTBAAAAAAAA4PIogl2DrFarJkyYIKvV6nbxic13TmzXj09svnN3ie3s+MTmOye268cnNt+5u8R2dnx3jX0tuuY2xgcAAAAAAACqiplgAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PIpgAAAAAAAAl2DJkiVq0qSJ/Pz8ZLFYlJOT4+yULtnGjRs1ceJEnThxwmk5rFq1ShMnTrxs41MEAwAAAAAAqKIjR45o4MCBuv7667V69Wpt2rRJN9xwg7PTumQbN27UpEmTnF4EmzRp0mUb3+uyjQwAAAAAAOCivvvuO50/f1733XefEhISnJ3OFXfmzBn5+fk5O40qYSYYAAAAAABwG0eOHNFf/vIXRUREyGq1qm7dumrfvr0++ugjSVJWVpZ69+6t8PBw+fr66g9/+IOGDx+uo0eP2scYPHiwOnToIEnq37+/LBaLEhMT7ee3bNmiXr16KTg4WL6+vmrevLnefPPNSud44sQJPfLII2rYsKGsVqtCQkLUrVs3ffPNN/Y+x48fV1pamho0aCAfHx81bNhQ48ePV2FhocNYFotFo0aN0muvvabGjRvL399f8fHxWrlypb3PxIkT9dhjj0mSYmJiZLFYZLFYtG7dOklSdHS0evTooaVLl6p58+by9fW1z9iaM2eOOnXqpJCQENWoUUNNmzbVtGnTdP78+VL3tXr1anXu3FlBQUHy9/dX48aNlZGRYX+mc+bMsedc8tm7d68k6a233lKbNm3s1zZs2FBDhw6t9DOVmAkGAAAAAADcyMCBA7Vt2zb97W9/0w033KATJ05o27ZtOnbsmCTphx9+UNu2bZWamqqgoCDt3btXM2bMUIcOHfTll1/K29tbTz75pG6++WaNHDlSzzzzjJKSkhQYGChJWrt2rf70pz+pTZs2mj9/voKCgvTGG2+of//++vnnnzV48OAK8zt16pQ6dOigvXv3asyYMWrTpo1Onz6t7Oxs5eXlqVGjRjp79qySkpL0ww8/aNKkSYqLi9OGDRuUkZGhnJwcvffeew5jvvfee9q8ebMmT56smjVratq0aerTp4++/fZbNWzYUKmpqTp+/Liee+45LV26VPXr15ck3XTTTfYxtm3bpl27dumvf/2rYmJiVKNGDfvzGjBggGJiYuTj46MdO3bob3/7m7755hu9/PLL9utfeukl3X///UpISND8+fMVEhKi7777Tl999ZUk6cknn1RBQYHefvttbdq0yX5d/fr1tWnTJvXv31/9+/fXxIkT5evrq3379mnNmjVV+/INAAAAAACAm6hZs6YZPXp0pfoWFxeb8+fPm3379hlJ5t1337WfW7t2rZFk3nrrLYdrGjVqZJo3b27Onz/v0N6jRw9Tv359U1RUVGHMyZMnG0kmKyur3D7z5883ksybb77p0D516lQjyXz44Yf2NkkmNDTU2Gw2e1t+fr7x8PAwGRkZ9rbp06cbSWbPnj2l4kVFRRlPT0/z7bffVph7UVGROX/+vHn11VeNp6enOX78uDHGmFOnTpnAwEDToUMHU1xcXO71I0eONGWVqv7xj38YSebEiRMVxr8YlkMCAAAAAAC3cfPNNyszM1NTpkzRZ599VmrZ3uHDhzVixAhFRETIy8tL3t7eioqKkiTt2rWrwrF3796tb775Rvfee68k6cKFC/ZPt27dlJeXp2+//bbUuQsXLsgYI0l6//33dcMNN+i2224rN86aNWtUo0YN9evXz6G9ZJbZxx9/7NCelJSkgIAA+3FoaKhCQkK0b9++Cu/n1+Li4src+H/79u3q1auXateuLU9PT3l7e2vQoEEqKirSd999J+mXTfdtNpvS0tJksVgqHbNE69atJUl//vOf9eabb+rHH3+s8hgSe4IBAAAAAAA3smTJEqWkpOjFF19U27ZtFRwcrEGDBik/P1/FxcXq2rWrli5dqscff1wff/yx/vvf/+qzzz6T9Mtm8BU5dOiQJOnRRx+Vt7e3wyctLU2S7HuL/fb8woULJf2yZ1l4eHiFcY4dO6Z69eqVKiiFhITIy8vLvrSzRO3atUuNYbVaL3o/v1ayRPLXcnNz1bFjR/3444+aNWuWNmzYoM2bN9v39ioZ/8iRI5J00fsqT6dOnbR8+XJduHBBgwYNUnh4uGJjY/X6669XaRz2BAMAAAAAAG6jTp06mjlzpmbOnKnc3Fz95z//0dixY3X48GFNmzZNO3bsUGZmplJSUuzX7N69u9JjS9K4cePUt2/fMvvceOONkqTNmzc7tMfExEiS6tatqwMHDlQYp3bt2vr8889ljHEohB0+fFgXLlyw51GdyprBtXz5chUUFGjp0qX22XKSlJOT49Cvbt26knTR+6pI79691bt3bxUWFuqzzz5TRkaGBgwYoOjoaLVt27ZSYzATDAAAAAAAuKXIyEiNGjVKXbp00bZt2+yFHqvV6tDv+eefr9R4N954o/74xz9qx44datWqVZmfkmWJv20vma2VnJys7777rsJN3zt37qzTp09r+fLlDu2vvvqq/XxVldxzVWaHlfW8jDF64YUXHPq1a9dOQUFBmj9/vn3Z56XmYLValZCQoKlTp0r6ZTlmZTETDAAAAAAAuIWTJ08qKSlJAwYMUKNGjRQQEKDNmzdr9erV6tu3rxo1aqTrr79eY8eOlTFGwcHBWrFihbKysiod4/nnn1dycrJuv/12DR48WA0aNNDx48e1a9cubdu2TW+99VaF148ePVpLlixR7969NXbsWN188806c+aM1q9frx49eigpKUmDBg3SnDlzlJKSor1796pp06b65JNP9Mwzz6hbt24V7idWnqZNm0qSZs2apZSUFHl7e+vGG2902Evst7p06SIfHx/dc889evzxx3X27FnNmzdPP/30k0O/mjVr6p///KdSU1N122236f7771doaKh2796tHTt2aPbs2Q45TJ06VcnJyfL09FRcXJymTJmiAwcOqHPnzgoPD9eJEyc0a9YseXt7KyEhodL3yEwwAAAAAADgFnx9fdWmTRu99tpruvfee5WcnKwXX3xRY8aM0QsvvCBvb2+tWLFCN9xwg4YPH6577rlHhw8f1kcffVTpGElJSfrvf/+rWrVqafTo0brtttv0wAMP6KOPPqpUcSogIECffPKJhg0bpgULFqh79+66//779e233yosLMx+H2vXrtW9996r6dOnKzk5WZmZmXr00Ue1dOnSS3o2iYmJGjdunFasWKEOHTqodevW2rp1a4XXNGrUSO+8845++ukn9e3bV//v//0/NWvWTM8++2ypvsOGDdOqVatUVFSk1NRU9ejRQzNnzlRkZKS9z4ABA5Samqq5c+eqbdu2at26tQ4ePKg2bdooPz9fY8aMUdeuXfWXv/xFfn5+WrNmjZo0aVLpe7SYiuahAQAAAAAAAC6AmWAAAAAAAABweRTBAAAAAAAA4PIoggEAAAAAAMDlUQQDAAAAAACAy6MIBgAAAAAAAJfn5ewEqqq4uFgHDx5UQECALBaLs9MBAAAAAACAkxhjdOrUKYWFhcnDo+K5XtdcEezgwYOKiIhwdhoAAAAAAAC4Suzfv1/h4eEV9rnmimABAQGSfrm5wMBAJ2cDAAAAAAAAZ7HZbIqIiLDXiypyzRXBSpZABgYGUgQDAAAAAABApbbMYmN8AAAAAAAAuDyKYAAAAAAAAHB5FMEAAAAAAADg8iiCAQAAAAAAwOVRBAMAAAAAAIDLowgGAAAAAAAAl0cRDAAAAAAAAC6PIhgAAAAAAABcHkUwAAAAAAAAuDynFMG8vLzUrFkzNWvWTKmpqc5IAQAAAAAAAG7EyxlBa9WqpZycHGeEBgAAAAAAgBtiOSQAAAAAAABcXpWLYNnZ2erZs6fCwsJksVi0fPnyUn3mzp2rmJgY+fr6qmXLltqwYYPDeZvNppYtW6pDhw5av379JScPAAAAAAAAVEaVi2AFBQWKj4/X7Nmzyzy/ZMkSjR49WuPHj9f27dvVsWNHJScnKzc3195n79692rp1q+bPn69BgwbJZrOVG6+wsFA2m83hAwAAAAAAAFSFxRhjLvlii0XLli3THXfcYW9r06aNWrRooXnz5tnbGjdurDvuuEMZGRmlxkhOTtbTTz+tVq1alRlj4sSJmjRpUqn2kydPKjAw8FJTBwAAAAAAwDXOZrMpKCioUnWiat0T7Ny5c9q6dau6du3q0N61a1dt3LhRkvTTTz+psLBQknTgwAHt3LlTDRs2LHfMcePG6eTJk/bP/v37qzNlAAAAAAAAuIFqfTvk0aNHVVRUpNDQUIf20NBQ5efnS5J27dql4cOHy8PDQxaLRbNmzVJwcHC5Y1qtVlmt1upMEwAAAAAAAG6mWotgJSwWi8OxMcbe1q5dO3355ZeXIywAAAAAAABQpmpdDlmnTh15enraZ32VOHz4cKnZYQAAAAAAAMCVUq1FMB8fH7Vs2VJZWVkO7VlZWWrXrl11hgIAAAAAAAAqrcrLIU+fPq3du3fbj/fs2aOcnBwFBwcrMjJS6enpGjhwoFq1aqW2bdtqwYIFys3N1YgRI6o1cQAAAAAAAKCyqlwE27Jli5KSkuzH6enpkqSUlBRlZmaqf//+OnbsmCZPnqy8vDzFxsZq1apVioqKqr6sAQAAAAAAgCqwGGOMs5OoCpvNpqCgIJ08eVKBgYHOTgcAAAAAAABOUpU6UbXuCQYAAAAAAABcjSiCAQAAAAAAwOVRBAMAAAAAAIDLowgGAAAAAAAAl0cRDAAAAAAAAC7vihfBTp06pdatW6tZs2Zq2rSpXnjhhSudAgAAAAAAANyM15UO6O/vr/Xr18vf318///yzYmNj1bdvX9WuXftKpwIAAAAAAAA3ccVngnl6esrf31+SdPbsWRUVFckYc6XTAAAAAAAAgBupchEsOztbPXv2VFhYmCwWi5YvX16qz9y5cxUTEyNfX1+1bNlSGzZscDh/4sQJxcfHKzw8XI8//rjq1KlzyTcAAAAAAAAAXEyVi2AFBQWKj4/X7Nmzyzy/ZMkSjR49WuPHj9f27dvVsWNHJScnKzc3196nVq1a2rFjh/bs2aPFixfr0KFD5cYrLCyUzWZz+AAAAAAAAABVUeUiWHJysqZMmaK+ffuWeX7GjBkaNmyYUlNT1bhxY82cOVMRERGaN29eqb6hoaGKi4tTdnZ2ufEyMjIUFBRk/0RERFQ1ZQAAAAAAALi5at0Y/9y5c9q6davGjh3r0N61a1dt3LhRknTo0CH5+fkpMDBQNptN2dnZeuCBB8odc9y4cUpPT7cf22w2CmEAcC1ZbLn8MQawtyQAAACAilVrEezo0aMqKipSaGioQ3toaKjy8/MlSQcOHNCwYcNkjJExRqNGjVJcXFy5Y1qtVlmt1upME7/lzv+C6s73DgAAAACAG6nWIlgJi8WxsGCMsbe1bNlSOTk5lyMsAFwchU8AAAAAcEvVWgSrU6eOPD097bO+Shw+fLjU7DDA7VGMAVyfM/85588YwPXxzzkAAFVSrUUwHx8ftWzZUllZWerTp4+9PSsrS717967OUHAV/OUNuDL4Zw0AAACAm6tyEez06dPavXu3/XjPnj3KyclRcHCwIiMjlZ6eroEDB6pVq1Zq27atFixYoNzcXI0YMaJaEwcAAAAAt8J/1AKA36XKRbAtW7YoKSnJflzy5saUlBRlZmaqf//+OnbsmCZPnqy8vDzFxsZq1apVioqKqr6sAQAAAAAAgCqochEsMTFRxlT8XwfS0tKUlpZ2yUkBAAAAAK4yzEQDcI3zcHYCAAAAAAAAwOVGEQwAAAAAAAAur1rfDgkAAAA3xTIpAABwlWMmGAAAAAAAAFweRTAAAAAAAAC4PKcsh+zTp4/WrVunzp076+2333ZGCgBw5bFUCAAAAACcxilFsAcffFBDhw7VwoULnRH+6sS/HAMAAAAAAFw2TlkOmZSUpICAAGeEBgAAAAAAgBuqchEsOztbPXv2VFhYmCwWi5YvX16qz9y5cxUTEyNfX1+1bNlSGzZsqI5cAQAAAAAAgEtS5eWQBQUFio+P15AhQ3TnnXeWOr9kyRKNHj1ac+fOVfv27fX8888rOTlZO3fuVGRkZJUTLCwsVGFhof3YZrNVeQwAAOBG2GIAAOAqrsT/p0n8/xrcRpWLYMnJyUpOTi73/IwZMzRs2DClpqZKkmbOnKkPPvhA8+bNU0ZGRpUTzMjI0KRJk6p8HQAAkiiIAIAr4s92AMAlqNY9wc6dO6etW7eqa9euDu1du3bVxo0bL2nMcePG6eTJk/bP/v37qyNVAAAAAAAAuJFqfTvk0aNHVVRUpNDQUIf20NBQ5efn249vv/12bdu2TQUFBQoPD9eyZcvUunXrMse0Wq2yWq3VmSYAAAAAAADcTLUWwUpYLI7Tk40xDm0ffPDB5QgLAAAAAAAAlKlal0PWqVNHnp6eDrO+JOnw4cOlZocBAAAAAAAAV0q1FsF8fHzUsmVLZWVlObRnZWWpXbt21RkKAAAAAAAAqLQqL4c8ffq0du/ebT/es2ePcnJyFBwcrMjISKWnp2vgwIFq1aqV2rZtqwULFig3N1cjRoyo1sQBAAAAAACAyqpyEWzLli1KSkqyH6enp0uSUlJSlJmZqf79++vYsWOaPHmy8vLyFBsbq1WrVikqKqr6sgYAAAAAAACqoMpFsMTERBljKuyTlpamtLS0S04KAAAAAAAAqE7VuicYAAAAAAAAcDWq8kwwAAAAlGOx5fLHGFDxjHwAAACUjZlgAAAAAAAAcHnX3Eywkv3IbDabkzOpZj9fgRjlPTN3je3s+M6+d3flrt+5u8Z2dnx3je1sPHfncOd7dxZ3fubueu/Ovm9nx3dHV+KZSzx3XNNK6kMX279ekiymMr2uIgcOHFBERISz0wAAAAAAAMBVYv/+/QoPD6+wzzVXBCsuLtbBgwcVEBAgi+UK7LtxFbLZbIqIiND+/fsVGBjoVvGJzXdObNePT2y+c3eJ7ez4xOY7J7brxyc237m7xHZ2fHeNfbUwxujUqVMKCwuTh0fFu35dc8shPTw8LlrZcxeBgYFO/ZE7Mz6xncNd791dYzs7PrGdw13vnedObHeKT2zncNd7d9fYzo7vrrGdHd9dY18NgoKCKtWPjfEBAAAAAADg8iiCAQAAAAAAwOVRBLsGWa1WTZgwQVar1e3iE5vvnNiuH5/YfOfuEtvZ8YnNd05s149PbL5zd4nt7PjuGvtadM1tjA8AAAAAAABUFTPBAAAAAAAA4PIoggEAAAAAAMDlUQQDAAAAAACAy6MIBgAAAAAAAJdHEQwAAAAAAAAujyIYAAAAAAAAXB5FMAAAAAAAALg8imAAAAAAAABweRTBAAAAAAAA3NzOnTs1ceJE7d27t9S5xMRExcbGVmu8Z555RsuXLy/Vvm7dOlksFq1bt65a40kUwQAAAAAAANzezp07NWnSpDKLYJdDeUWwFi1aaNOmTWrRokW1x/Sq9hEBAAAAAACASxAYGKhbbrnlsozNTDAAAAAAAICrzJEjR/SXv/xFERERslqtqlu3rtq3b6+PPvpITz/9tLy8vLR///5S1w0dOlS1a9fW2bNnJUnR0dHq0aOHVq9erRYtWsjPz0+NGjXSyy+/bL8mMzNTd911lyQpKSlJFotFFotFmZmZDmNv3rxZHTt2lL+/vxo2bKi///3vKi4uduhjs9n06KOPKiYmRj4+PmrQoIFGjx6tgoICex+LxaKCggItXLjQHisxMVFS6eWQR48eVUREhNq1a6fz58/bx9i5c6dq1KihgQMHVvqZUgQDAAAAAAC4ygwcOFDLly/XU089pQ8//FAvvviibrvtNh07dkzDhw+Xl5eXnn/+eYdrjh8/rjfeeEPDhg2Tr6+vvX3Hjh165JFH9PDDD+vdd99VXFychg0bpuzsbElS9+7d9cwzz0iS5syZo02bNmnTpk3q3r27fYz8/Hzde++9uu+++/Sf//xHycnJGjdunBYtWmTv8/PPPyshIUELFy7Ugw8+qPfff19jxoxRZmamevXqJWOMJGnTpk3y8/NTt27d7LHmzp1b5nOoU6eO3njjDW3evFljxoyxx7nrrrsUGRmp+fPnV/qZshwSAAAAAADgKvPpp58qNTVV999/v72td+/e9v99991364UXXtBTTz0lHx8fSdKLL76owsJCpaWlOYx19OhRffrpp4qMjJQkderUSR9//LEWL16sTp06qW7duvrjH/8oSbrpppvKXI547NgxrVq1SjfffLMk6bbbbtO6deu0ePFiDRo0SJL07LPP6osvvtDnn3+uVq1aSZI6d+6sBg0aqF+/flq9erWSk5N1yy23yMPDQ3Xr1q3U0sf27dvrb3/7m8aMGaNOnTpp+fLl2rNnjz7//HPVqFGj0s+UmWAAAAAAAABXmZtvvlmZmZmaMmWKPvvsM4elgJL00EMP6fDhw3rrrbckScXFxZo3b566d++u6Ohoh77NmjWzF8AkydfXVzfccIP27dtX6Xzq1atnL4CViIuLcxhj5cqVio2NVbNmzXThwgX75/bbb//db3x87LHH1L17d91zzz1auHChnnvuOTVt2rRKY1AEAwAAAAAAuMosWbJEKSkpevHFF9W2bVsFBwdr0KBBys/PlyQ1b95cHTt21Jw5cyT9UoDau3evRo0aVWqs2rVrl2qzWq06c+ZMpfOpzBiHDh3SF198IW9vb4dPQECAjDE6evRopeP9lsVi0eDBg3X27FnVq1evSnuBlWA5JAAAAAAAwFWmTp06mjlzpmbOnKnc3Fz95z//0dixY3X48GGtXr1akvTggw/qrrvu0rZt2zR79mzdcMMN6tKli1Nz9vPzc9h0/7fnL1VeXp5GjhypZs2a6euvv9ajjz6qZ599tkpjUAQDAAAAAAC4ikVGRmrUqFH6+OOP9emnn9rb+/Tpo8jISD3yyCNav369/vWvf8lisVxSDKvVKklVmh32Wz169NAzzzyj2rVrKyYm5qLxKhurqKhI99xzjywWi95//339+9//1qOPPqrExET17du30vlRBAMAAAAAALiKnDx5UklJSRowYIAaNWqkgIAAbd68WatXr3Yo+nh6emrkyJEaM2aMatSoocGDB19yzNjYWEnSggULFBAQIF9fX8XExJS5DLI8o0eP1jvvvKNOnTrp4YcfVlxcnIqLi5Wbm6sPP/xQjzzyiNq0aSNJatq0qdatW6cVK1aofv36CggI0I033ljmuBMmTNCGDRv04Ycfql69evai37Bhw9S8efOLFtxKsCcYAAAAAADAVcTX11dt2rTRa6+9pnvvvVfJycl68cUXNWbMGL3wwgsOffv37y9JGjhwoIKCgi45ZkxMjGbOnKkdO3YoMTFRrVu31ooVK6o0Ro0aNbRhwwYNHjxYCxYsUPfu3fXnP/9Zzz77rMLDwx027J81a5b++Mc/6u6771br1q01fPjwMsfMyspSRkaGnnzySXXu3NnenpmZqcDAQPXv31/nzp2rVH4WY4yp0h0BAAAAAADgqvDcc8/pwQcf1FdffaUmTZo4O52rGkUwAAAAAACAa8z27du1Z88eDR8+XO3bt9fy5cudndJVjyIYAAAAAADANSY6Olr5+fnq2LGjXnvtNdWrV8/ZKV31KIIBAAAAAADA5bExPgAAAAAAAFweRTAAAAAAAAC4PC9nJ1BVxcXFOnjwoAICAmSxWJydDgAAAAAAAJzEGKNTp04pLCxMHh4Vz/W65opgBw8eVEREhLPTAAAAAAAAwFVi//79Cg8Pr7DPNVcECwgIkPTLzQUGBjo5GwAAAAAAADiLzWZTRESEvV5UkWuuCFayBDIwMJAiGAAAAAAAACq1ZdY1VwRzWYuvwP5mA8zljwEAAAAAAHAV4u2QAAAAAAAAcHkUwQAAAAAAAODyKIIBAAAAAADA5VEEAwAAAAAAgMujCAYAAAAAAACXRxEMAAAAAAAALo8iGAAAAAAAAFweRTAAAAAAAAC4PKcUwby8vNSsWTM1a9ZMqampzkgBAAAAAAAAbsTLGUFr1aqlnJwcZ4QGAAAAAACAG2I5JAAAAAAAAFxelYtg2dnZ6tmzp8LCwmSxWLR8+fJSfebOnauYmBj5+vqqZcuW2rBhg8N5m82mli1bqkOHDlq/fv0lJw8AAAAAAABURpWLYAUFBYqPj9fs2bPLPL9kyRKNHj1a48eP1/bt29WxY0clJycrNzfX3mfv3r3aunWr5s+fr0GDBslms5Ubr7CwUDabzeEDAAAAAAAAVEWVi2DJycmaMmWK+vbtW+b5GTNmaNiwYUpNTVXjxo01c+ZMRUREaN68efY+YWFhkqTY2FjddNNN+u6778qNl5GRoaCgIPsnIiKiqikDAAAAAADAzVXrnmDnzp3T1q1b1bVrV4f2rl27auPGjZKkn376SYWFhZKkAwcOaOfOnWrYsGG5Y44bN04nT560f/bv31+dKQMAAAAAAMANVOvbIY8ePaqioiKFhoY6tIeGhio/P1+StGvXLg0fPlweHh6yWCyaNWuWgoODyx3TarXKarVWZ5oAAAAAAABwM9VaBCthsVgcjo0x9rZ27drpyy+/vBxhcakWWy7e5/caYC5/DFwb+L0BAAAAAJygWotgderUkaenp33WV4nDhw+Xmh0GSKIg4iw8dwAAAACAm6nWIpiPj49atmyprKws9enTx96elZWl3r17V2cooHpQDAIAAAAAwC1UuQh2+vRp7d692368Z88e5eTkKDg4WJGRkUpPT9fAgQPVqlUrtW3bVgsWLFBubq5GjBhRrYkDAAAAAAAAlVXlItiWLVuUlJRkP05PT5ckpaSkKDMzU/3799exY8c0efJk5eXlKTY2VqtWrVJUVFT1ZQ0AAAAAAABUQZWLYImJiTKm4uVdaWlpSktLu+SkAAAAAAAAgOrk4ewEAAAAAAAAgMuNIhgAAAAAAABcXrW+HRIAUAHeRgoAAAAATsNMMAAAAAAAALg8ZoIBAIDqxaxHAAAAXIWu+EywU6dOqXXr1mrWrJmaNm2qF1544UqnAAAAAAAAADdzxWeC+fv7a/369fL399fPP/+s2NhY9e3bV7Vr177SqQAAAAAAAMBNXPEimKenp/z9/SVJZ8+eVVFRkYxhSQPcEMuFAAAAAAC4YqpcBMvOztb06dO1detW5eXladmyZbrjjjsc+sydO1fTp09XXl6emjRpopkzZ6pjx4728ydOnFBCQoK+//57TZ8+XXXq1PndNwIAwFXHmcVuCu0AAACAgyoXwQoKChQfH68hQ4bozjvvLHV+yZIlGj16tObOnav27dvr+eefV3Jysnbu3KnIyEhJUq1atbRjxw4dOnRIffv2Vb9+/RQaGlpmvMLCQhUWFtqPbTZbVVMGAABwfRQ+AQAAKlTljfGTk5M1ZcoU9e3bt8zzM2bM0LBhw5SamqrGjRtr5syZioiI0Lx580r1DQ0NVVxcnLKzs8uNl5GRoaCgIPsnIiKiqikDAAAAAADAzVXrnmDnzp3T1q1bNXbsWIf2rl27auPGjZKkQ4cOyc/PT4GBgbLZbMrOztYDDzxQ7pjjxo1Tenq6/dhms1EIA4CqYoYIAKC6seQbAHCNqdYi2NGjR1VUVFRqaWNoaKjy8/MlSQcOHNCwYcNkjJExRqNGjVJcXFy5Y1qtVlmt1upMEwAAAAAAAG7msrwd0mJx/C8zxhh7W8uWLZWTk3M5wgIAAAAAAABlqvKeYBWpU6eOPD097bO+Shw+fLjcje8BAAAAAACAy61ai2A+Pj5q2bKlsrKyHNqzsrLUrl276gwFAAAAAAAAVFqVl0OePn1au3fvth/v2bNHOTk5Cg4OVmRkpNLT0zVw4EC1atVKbdu21YIFC5Sbm6sRI0ZUa+IAAAAAAABAZVW5CLZlyxYlJSXZj0ve3JiSkqLMzEz1799fx44d0+TJk5WXl6fY2FitWrVKUVFR1Zc1AAAAAAAAUAVVLoIlJibKmIpfF5yWlqa0tLRLTgoALhteqQ4AAAAAbqla9wQDAAAAAAAArkZVngkGAMA1hdl/AAAAAMRMMAAAAAAAALgBimAAAAAAAABweRTBAAAAAAAA4PKcsidYnz59tG7dOnXu3Flvv/22M1IAAABAdWL/PQAAcJVzykywBx98UK+++qozQgMAAAAAAMANOaUIlpSUpICAAGeEBgAAAAAAgBuqchEsOztbPXv2VFhYmCwWi5YvX16qz9y5cxUTEyNfX1+1bNlSGzZsqI5cAQAAAAAAgEtS5SJYQUGB4uPjNXv27DLPL1myRKNHj9b48eO1fft2dezYUcnJycrNzb2kBAsLC2Wz2Rw+AAAAAAAAQFVUuQiWnJysKVOmqG/fvmWenzFjhoYNG6bU1FQ1btxYM2fOVEREhObNm3dJCWZkZCgoKMj+iYiIuKRxAAAAAAAA4L6qdU+wc+fOaevWreratatDe9euXbVx48ZLGnPcuHE6efKk/bN///7qSBUAAAAAAABuxKs6Bzt69KiKiooUGhrq0B4aGqr8/Hz78e23365t27apoKBA4eHhWrZsmVq3bl3mmFarVVartTrTBAAAAAAAgJup1iJYCYvF4nBsjHFo++CDDy5HWAAAAAAAAKBM1bocsk6dOvL09HSY9SVJhw8fLjU7DAAAAAAAALhSqrUI5uPjo5YtWyorK8uhPSsrS+3atavOUAAAAAAAAEClVXk55OnTp7V792778Z49e5STk6Pg4GBFRkYqPT1dAwcOVKtWrdS2bVstWLBAubm5GjFiRLUmDgAAAAAAAFRWlYtgW7ZsUVJSkv04PT1dkpSSkqLMzEz1799fx44d0+TJk5WXl6fY2FitWrVKUVFR1Zc1AODasdhy8T6/1wBz+WMAAAAAuKZVuQiWmJgoYyr+l420tDSlpaVdclIAAAAAAABAdarWPcEAAAAAAACAqxFFMAAAAAAAALg8imAAAAAAAABweVXeE8zZSvYjs9lsTs6kmv18BWKU98zcNbaz4xP7ysd2dnxiX/nYzo5P7Csf2505+7k7Oz6uPP6cAQBcBUrqQxfbv16SLKYyva4iBw4cUEREhLPTAAAAAAAAwFVi//79Cg8Pr7DPNVcEKy4u1sGDBxUQECCLxeLsdJzCZrMpIiJC+/fvV2BgoFvFJzbfObFdPz6x+c7dJbaz4xOb75zYrh+f2Hzn7hLb2fHdNfbVwhijU6dOKSwsTB4eFe/6dc0th/Tw8LhoZc9dBAYGOvVH7sz4xHYOd713d43t7PjEdg53vXeeO7HdKT6xncNd791dYzs7vrvGdnZ8d419NQgKCqpUPzbGBwAAAAAAgMujCAYAAAAAAACXRxHsGmS1WjVhwgRZrVa3i09svnNiu358YvOdu0tsZ8cnNt85sV0/PrH5zt0ltrPju2vsa9E1tzE+AAAAAAAAUFXMBAMAAAAAAIDLowgGAAAAAAAAl0cRDAAAAAAAAC6PIhgAAAAAAABcHkUwAAAAAAAAuDyKYAAAAAAAAHB5FMEAAAAAAADg8iiCAQAAAAAAwOVRBAMAAAAAALiIdevWyWKxaN26dfa2iRMnymKxOC+parRx40ZNnDhRJ06ccFoOq1at0sSJEy/b+BTBAAAAAAAALkFqaqo2bdrk7DSqxcaNGzVp0iSnF8EmTZp02cb3umwjAwAAAAAAuLDw8HCFh4c7Ow2nOHPmjPz8/JydRpUwEwwAAAAAgGvYJ598os6dOysgIED+/v5q166d3nvvPfv5zMxMWSwWZWVlaciQIQoODlaNGjXUs2dP/e9//ys13kcffaTOnTsrMDBQ/v7+at++vT7++GOHPiXLAL/++mvdc889CgoKUmhoqIYOHaqTJ0+W6lfWZ/DgwfZ+586d05QpU9SoUSNZrVbVrVtXQ4YM0ZEjRxziRkdHq0ePHlq2bJni4uLk6+urhg0b6tlnn3XoV7J0cdGiRUpPT1e9evXk5+enhIQEbd++vdQ9b9myRb169VJwcLB8fX3VvHlzvfnmmxd99mUthyzJcfXq1WrRooX8/PzUqFEjvfzyyxcdr8SJEyf0yCOPqGHDhrJarQoJCVG3bt30zTff2PscP35caWlpatCggXx8fNSwYUONHz9ehYWFDmNZLBaNGjVKr732mho3bix/f3/Fx8dr5cqVDvfx2GOPSZJiYmLs31HJ0s+Se1q6dKmaN28uX19f+4ytOXPmqFOnTgoJCVGNGjXUtGlTTZs2TefPny91X6tXr1bnzp0VFBQkf39/NW7cWBkZGZKkwYMHa86cOfacSz579+6VJL311ltq06aN/dqGDRtq6NChlX6mEjPBAAAAAAC4Zq1fv15dunRRXFycXnrpJVmtVs2dO1c9e/bU66+/rv79+9v7Dhs2TF26dNHixYu1f/9+/fWvf1ViYqK++OIL1apVS5K0aNEiDRo0SL1799bChQvl7e2t559/Xrfffrs++OADde7c2SH+nXfeqf79+2vYsGH68ssvNW7cOEmyF3xSU1P1pz/9yeGapUuXavr06WrSpIkkqbi4WL1799aGDRv0+OOPq127dtq3b58mTJigxMREbdmyxWHGUU5OjkaPHq2JEyeqXr16+ve//62HHnpI586d06OPPuoQ64knnlCLFi304osv6uTJk5o4caISExO1fft2NWzYUJK0du1a/elPf1KbNm00f/58BQUF6Y033lD//v31888/OxTrKmvHjh165JFHNHbsWIWGhurFF1/UsGHD9Ic//EGdOnWq8NpTp06pQ4cO2rt3r8aMGaM2bdro9OnTys7OVl5enho1aqSzZ88qKSlJP/zwgyZNmqS4uDht2LBBGRkZysnJcSiCStJ7772nzZs3a/LkyapZs6amTZumPn366Ntvv1XDhg2Vmpqq48eP67nnntPSpUtVv359SdJNN91kH2Pbtm3atWuX/vrXvyomJkY1atSQJP3www8aMGCAYmJi5OPjox07duhvf/ubvvnmG4fC30svvaT7779fCQkJmj9/vkJCQvTdd9/pq6++kiQ9+eSTKigo0Ntvv+2wxLR+/fratGmT+vfvr/79+2vixIny9fXVvn37tGbNmqp9MQYAAAAAAFyTbrnlFhMSEmJOnTplb7tw4YKJjY014eHhpri42LzyyitGkunTp4/DtZ9++qmRZKZMmWKMMaagoMAEBwebnj17OvQrKioy8fHx5uabb7a3TZgwwUgy06ZNc+iblpZmfH19TXFxcZn5btiwwfj6+pp7773X3uf11183ksw777zj0Hfz5s1Gkpk7d669LSoqylgsFpOTk+PQt0uXLiYwMNAUFBQYY4xZu3atkWRatGjhkMvevXuNt7e3SU1Ntbc1atTING/e3Jw/f95hzB49epj69euboqIihzHXrl1b6jn8WlRUlPH19TX79u2zt505c8YEBweb4cOHl/lcfm3y5MlGksnKyiq3z/z5840k8+abbzq0T5061UgyH374ob1NkgkNDTU2m83elp+fbzw8PExGRoa9bfr06UaS2bNnT6l4UVFRxtPT03z77bcV5l5UVGTOnz9vXn31VePp6WmOHz9ujDHm1KlTJjAw0HTo0KHc34YxxowcObLU8zTGmH/84x9Gkjlx4kSF8S+G5ZAAAAAAAFyDCgoK9Pnnn6tfv36qWbOmvd3T01MDBw7UgQMH9O2339rb7733Xofr27Vrp6ioKK1du1bSLxujHz9+XCkpKbpw4YL9U1xcrD/96U/avHmzCgoKHMbo1auXw3FcXJzOnj2rw4cPl8p3165d6tWrl9q1a6eXX37Zvoxw5cqVqlWrlnr27OkQt1mzZqpXr57D2xglqUmTJoqPj3doGzBggGw2m7Zt21aq/dfLFaOiotSuXTv7Pe/evVvffPON/dn8On63bt2Ul5fn8Awrq1mzZoqMjLQf+/r66oYbbtC+ffvsbb+OdeHCBRljJEnvv/++brjhBt12223ljr9mzRrVqFFD/fr1c2gvmbX22+WrSUlJCggIsB+HhoYqJCTEIZ+LiYuL0w033FCqffv27erVq5dq164tT09PeXt7a9CgQSoqKtJ3330n6Zffls1mU1pa2iW9TbN169aSpD//+c9688039eOPP1Z5DIk9wQAAAAAAuCb99NNPMsbYl679WlhYmCTp2LFj9rZ69eqV6levXj17n0OHDkmS+vXrJ29vb4fP1KlTZYzR8ePHHa6vXbu2w7HVapX0y6bpv3bw4EH96U9/Unh4uJYuXSofHx/7uUOHDunEiRPy8fEpFTc/P19Hjx4tlXNZ9/Hb+63KPT/66KOlYqelpUlSqfiV8dvnIv3ybH79XH4bb+HChZKkI0eOXHSz/WPHjqlevXqlCkohISHy8vIq9Rwqk8/FlPU7y83NVceOHfXjjz9q1qxZ2rBhgzZv3mzf26tk/JK93S71JQKdOnXS8uXLdeHCBQ0aNEjh4eGKjY3V66+/XqVx2BMMAAAAAIBr0HXXXScPDw/l5eWVOnfw4EFJUp06dfT9999LkvLz80v1y8/P1x/+8Ad7X0l67rnndMstt5QZMzQ0tMp52mw2devWTcXFxVq1apWCgoIcztepU0e1a9fW6tWry7z+1zOYKroPqXSxp7y+Jf1K7nncuHHq27dvmfFvvPHGMtt/r82bNzscx8TESJLq1q2rAwcOVHht7dq19fnnn8sY41AIO3z4sC5cuGC/r+pU1gyu5cuXq6CgQEuXLlVUVJS9PScnx6Ff3bp1Jemi91WR3r17q3fv3iosLNRnn32mjIwMDRgwQNHR0Wrbtm2lxmAmGAAAAAAA16AaNWqoTZs2Wrp0qcOMnuLiYi1atEjh4eEOy9f+/e9/O1y/ceNG7du3T4mJiZKk9u3bq1atWtq5c6datWpV5ufXM7gq49y5c+rTp4/27t2r999/v8yZQD169NCxY8dUVFRUZszfFqG+/vpr7dixw6Ft8eLFCggIUIsWLRzaX3/9dfsyQ0nat2+fNm7caL/nG2+8UX/84x+1Y8eOcu/5t0W46vLbOCWFueTkZH333XcVbvreuXNnnT59WsuXL3dof/XVV+3nq6q8WXwVKSmMlVwrScYYvfDCCw792rVrp6CgIM2fP9/h+7iUHKxWqxISEjR16lRJKvNtn+VhJhgAAAAAANeojIwMdenSRUlJSXr00Ufl4+OjuXPn6quvvtLrr7/uMHtny5YtSk1N1V133aX9+/dr/PjxatCggX3ZX82aNfXcc88pJSVFx48fV79+/RQSEqIjR45ox44dOnLkiObNm1el/B5++GGtWbNGzzzzjE6fPq3PPvvMfq5u3bq6/vrrdffdd+vf//63unXrpoceekg333yzvL29deDAAa1du1a9e/dWnz597NeFhYWpV69emjhxourXr69FixYpKytLU6dOlb+/v0P8w4cPq0+fPrr//vt18uRJTZgwQb6+vva3WErS888/r+TkZN1+++0aPHiwGjRooOPHj2vXrl3atm2b3nrrrSrd8+81evRoLVmyRL1799bYsWN1880368yZM1q/fr169OihpKQkDRo0SHPmzFFKSor27t2rpk2b6pNPPtEzzzyjbt26VbifWHmaNm0qSZo1a5ZSUlLk7e2tG2+8scIiYJcuXeTj46N77rlHjz/+uM6ePat58+bpp59+cuhXs2ZN/fOf/1Rqaqpuu+023X///QoNDdXu3bu1Y8cOzZ492yGHqVOnKjk5WZ6enoqLi9OUKVN04MABde7cWeHh4Tpx4oRmzZolb29vJSQkVP4mf9e2+gAAAAAAwKk2bNhgbr31VlOjRg3j5+dnbrnlFrNixQr7+ZK3Q3744Ydm4MCBplatWsbPz89069bNfP/996XGW79+venevbsJDg423t7epkGDBqZ79+7mrbfesvcpeSvikSNHHK4tiVXyhsGEhAQjqcxPSkqK/brz58+bf/zjHyY+Pt74+vqamjVrmkaNGpnhw4c75BgVFWW6d+9u3n77bdOkSRPj4+NjoqOjzYwZMxzyKHmT42uvvWYefPBBU7duXWO1Wk3Hjh3Nli1bSt3zjh07zJ///GcTEhJivL29Tb169cytt95q5s+fX2rMyrwdsnv37qViJCQkmISEhFLtZfnpp5/MQw89ZCIjI423t7cJCQkx3bt3N9988429z7Fjx8yIESNM/fr1jZeXl4mKijLjxo0zZ8+edRhLkhk5cmSpGFFRUQ7fgTHGjBs3zoSFhRkPDw+Hey3vnowxZsWKFfbvrUGDBuaxxx4z77//fqlnZYwxq1atMgkJCaZGjRrG39/f3HTTTWbq1Kn284WFhSY1NdXUrVvXWCwW+29p5cqVJjk52TRo0MD4+PiYkJAQ061bN7Nhw4ZKPc8Slv//gQAAAAAAABeUmZmpIUOGaPPmzWrVqpWz0/ldoqOjFRsbq5UrV1bYb926dUpKStJbb71V6g2KcF/sCQYAAAAAAACXRxEMAAAAAAAALo/lkAAAAAAAAHB5zAQDAAAAAACAy6MIBgAAAAAAAJfn5ewEqqq4uFgHDx5UQECALBaLs9MBAAAAAACAkxhjdOrUKYWFhcnDo+K5XtdcEezgwYOKiIhwdhoAAAAAAAC4Suzfv1/h4eEV9rnmimABAQGSfrm5wMBAJ2cDAAAAAAAAZ7HZbIqIiLDXiypyzRXBSpZABgYGUgQDAAAAAABApbbMYmN8AAAAAAAAuDyKYAAAAAAAAHB5FMEAAAAAAADg8iiCAQAAAAAAwOVRBAMAAAAAAIDLowgGAAAAAAAAl0cRDAAAAAAAAC6PIhgAAAAAAABcHkUwAAAAAAAAuDynFMG8vLzUrFkzNWvWTKmpqc5IAQAAAAAAAG7EyxlBa9WqpZycHGeEBgAAAAAAgBtiOSQAAAAAAABcXpWLYNnZ2erZs6fCwsJksVi0fPnyUn3mzp2rmJgY+fr6qmXLltqwYYPDeZvNppYtW6pDhw5av379JScPAAAAAAAAVEaVi2AFBQWKj4/X7Nmzyzy/ZMkSjR49WuPHj9f27dvVsWNHJScnKzc3195n79692rp1q+bPn69BgwbJZrOVG6+wsFA2m83hAwAAAAAAAFSFxRhjLvlii0XLli3THXfcYW9r06aNWrRooXnz5tnbGjdurDvuuEMZGRmlxkhOTtbTTz+tVq1alRlj4sSJmjRpUqn2kydPKjAw8FJTBwAAAAAAwDXOZrMpKCioUnWiat0T7Ny5c9q6dau6du3q0N61a1dt3LhRkvTTTz+psLBQknTgwAHt3LlTDRs2LHfMcePG6eTJk/bP/v37qzNlAAAAAAAAuIFqfTvk0aNHVVRUpNDQUIf20NBQ5efnS5J27dql4cOHy8PDQxaLRbNmzVJwcHC5Y1qtVlmt1upMEwAAAAAAAG6mWotgJSwWi8OxMcbe1q5dO3355ZeXIywAAAAAAABQpmpdDlmnTh15enraZ32VOHz4cKnZYQAAAAAAAMCVUq1FMB8fH7Vs2VJZWVkO7VlZWWrXrl11hgIAAAAAAAAqrcrLIU+fPq3du3fbj/fs2aOcnBwFBwcrMjJS6enpGjhwoFq1aqW2bdtqwYIFys3N1YgRI6o1cQAAAAAAAKCyqlwE27Jli5KSkuzH6enpkqSUlBRlZmaqf//+OnbsmCZPnqy8vDzFxsZq1apVioqKqr6sAQAAAAAAgCqwGGOMs5OoCpvNpqCgIJ08eVKBgYHOTsc1LLZcvM/vNeCa+pkBqE78GQMAAADgMqlKneiyvB0SAK5aFGQAAAAAwC1V68b4AAAAAAAAwNWImWBwb8wKAgAAAADALTATDAAAAAAAAC6PmWAAAFwuzpxtykxXAAAAwMEVnwl26tQptW7dWs2aNVPTpk31wgsvXOkUAAAAAAAA4Gau+Ewwf39/rV+/Xv7+/vr5558VGxurvn37qnbt2lc6FQAAAAAAALiJK14E8/T0lL+/vyTp7NmzKioqkjEsp3BbLNcBAAAAAABXQJWLYNnZ2Zo+fbq2bt2qvLw8LVu2THfccYdDn7lz52r69OnKy8tTkyZNNHPmTHXs2NF+/sSJE0pISND333+v6dOnq06dOr/7RgAAFaDgDAAAAMDNVbkIVlBQoPj4eA0ZMkR33nlnqfNLlizR6NGjNXfuXLVv317PP/+8kpOTtXPnTkVGRkqSatWqpR07dujQoUPq27ev+vXrp9DQ0DLjFRYWqrCw0H5ss9mqmjIAAABcGYV+AABQCVUugiUnJys5Obnc8zNmzNCwYcOUmpoqSZo5c6Y++OADzZs3TxkZGQ59Q0NDFRcXp+zsbN11111ljpeRkaFJkyZVNU0AAADg8qMABwDANaNa9wQ7d+6ctm7dqrFjxzq0d+3aVRs3bpQkHTp0SH5+fgoMDJTNZlN2drYeeOCBcsccN26c0tPT7cc2m00RERHVmfbVgb9AAQAAAAAAXDbVWgQ7evSoioqKSi1tDA0NVX5+viTpwIEDGjZsmIwxMsZo1KhRiouLK3dMq9Uqq9VanWkCAAAAAADAzVyWt0NaLI6zmowx9raWLVsqJyfncoQFAAAAAAAAylStRbA6derI09PTPuurxOHDh8vd+B4AAAAugK0drjyeOQAAVeJRnYP5+PioZcuWysrKcmjPyspSu3btqjMUAAAAAAAAUGlVngl2+vRp7d692368Z88e5eTkKDg4WJGRkUpPT9fAgQPVqlUrtW3bVgsWLFBubq5GjBhRrYkDAAAAAAAAlVXlItiWLVuUlJRkPy55c2NKSooyMzPVv39/HTt2TJMnT1ZeXp5iY2O1atUqRUVFVV/WAAAAAAAAQBVUuQiWmJgoYyreGyAtLU1paWmXnBQAAAAA4DfYBw4Afpdq3RMMAAAAAAAAuBpV69shAQAAALgJd52V5K73DQAugCIYAMC18S8rAAAAAMRySAAAAAAAALgBimAAAAAAAABweU5ZDtmnTx+tW7dOnTt31ttvv+2MFAAAAAAAVcEWAwCucU4pgj344IMaOnSoFi5c6IzwAAAAAABUDsU/wGU4ZTlkUlKSAgICnBEaAAAAAAAAbqjKRbDs7Gz17NlTYWFhslgsWr58eak+c+fOVUxMjHx9fdWyZUtt2LChOnIFAAAAAAAALkmVi2AFBQWKj4/X7Nmzyzy/ZMkSjR49WuPHj9f27dvVsWNHJScnKzc395ISLCwslM1mc/gAAAAAAAAAVVHlIlhycrKmTJmivn37lnl+xowZGjZsmFJTU9W4cWPNnDlTERERmjdv3iUlmJGRoaCgIPsnIiLiksYBAAAAAACA+6rWPcHOnTunrVu3qmvXrg7tXbt21caNGy9pzHHjxunkyZP2z/79+6sjVQAAAAAAALiRan075NGjR1VUVKTQ0FCH9tDQUOXn59uPb7/9dm3btk0FBQUKDw/XsmXL1Lp16zLHtFqtslqt1ZkmAAAAAAAA3Ey1FsFKWCyOr5A1xji0ffDBB5cjLAAAAAAAAFCmai2C1alTR56eng6zviTp8OHDpWaHAQAAAACACiy2XLxPdRhgrkycqrgS93413jcuq2rdE8zHx0ctW7ZUVlaWQ3tWVpbatWtXnaEAAAAAAACASqvyTLDTp09r9+7d9uM9e/YoJydHwcHBioyMVHp6ugYOHKhWrVqpbdu2WrBggXJzczVixIhqTRwAAAAAAACorCoXwbZs2aKkpCT7cXp6uiQpJSVFmZmZ6t+/v44dO6bJkycrLy9PsbGxWrVqlaKioqova8AVML0XAC4P/nwFAABAGapcBEtMTJQxFf/FLy0tTWlpaZecFAAAAAAAAFCdqnVPMAAAAAAAAOBqVK1vhwQAVIAlWgAAAMDVj7+3uyxmggEAAAAAAMDlXXMzwUr2I7PZbE7OpJr9fAVilPfM3DW2s+M7+97dlbt+5+4a29nx3TW2s7nzvTuTu/7e3TX21RDfWfjOnRffWVz9O68ovjO5+nO/Gp/5NaqkPnSx/eslyWIq0+sqcuDAAUVERDg7DQAAAAAAAFwl9u/fr/Dw8Ar7XHNFsOLiYh08eFABAQGyWK7AOt2rkM1mU0REhPbv36/AwEC3ik9svnNiu358YvOdu0tsZ8cnNt85sV0/PrH5zt0ltrPju2vsq4UxRqdOnVJYWJg8PCre9euaWw7p4eFx0cqeuwgMDHTqj9yZ8YntHO567+4a29nxie0c7nrvPHdiu1N8YjuHu967u8Z2dnx3je3s+O4a+2oQFBRUqX5sjA8AAAAAAACXRxEMAAAAAAAALo8i2DXIarVqwoQJslqtbhef2HznxHb9+MTmO3eX2M6OT2y+c2K7fnxi8527S2xnx3fX2Neia25jfAAAAAAAAKCqmAkGAAAAAAAAl0cRDAAAAAAAAC6PIhgAAAAAAABcHkUwAAAAAAAAuDyKYAAAAAAAAHB5FMEAAAAAAADg8iiCAQAAAAAAwOVRBAMAAAAAAIDLowgGAAAAAADcTmZmpiwWi/bu3evsVJxi/Pjxat68uYKDg+Xr66uGDRvqL3/5i/bt2+fs1C4bizHGODsJAAAAAACAK+nIkSP64Ycf1Lx5c1mtVmenc8WNHDlSUVFRaty4sQICArRz505NmTJFxcXF+vrrr1W7dm1np1jtKIIBAAAAAABA77//vrp166aXXnpJQ4cOdWouxhidPXtWfn5+1TYmyyEBAAAAAMBVb/DgwYqOji7VPnHiRFksFvuxxWLRqFGj9Nprr6lx48by9/dXfHy8Vq5c6XBdWcsht2/frh49eigkJERWq1VhYWHq3r27Dhw4IEm666671KRJE4dxevbsKYvForfeesvetm3bNlksFq1YsULSL7PO0tLSdNNNN6lmzZoKCQnRrbfeqg0bNjiMtXfvXlksFk2bNk1/+9vfFBkZKV9fX7Vq1Uoff/zxRZ/RHXfcoaioKBUXF5c616ZNG7Vo0aLC6+vWrStJ8vLyumgsSTpx4oQeeeQRNWzYUFarVSEhIerWrZu++eYbe5/jx48rLS1NDRo0kI+Pjxo2bKjx48ersLDQYayS723+/Plq3LixrFarFi5cKEn6/vvvNWDAAPv30rhxY82ZM6dSOf5a5e4KAAAAAADgGvHee+9p8+bNmjx5smrWrKlp06apT58++vbbb9WwYcMyrykoKFCXLl0UExOjOXPmKDQ0VPn5+Vq7dq1OnTolSbrtttv09ttvKy8vT/Xr19eFCxe0fv16+fn5KSsrS3fddZck6aOPPpKXl5cSExMl/VIIkqQJEyaoXr16On36tJYtW6bExER9/PHH9n4lZs+eraioKM2cOVPFxcWaNm2akpOTtX79erVt27bc+x46dKh69+6tNWvW6LbbbrO3f/PNN/rvf/+rZ599ttQ1Fy5c0Pnz5/XNN99o9OjRuuGGG9S3b9+LPuNTp06pQ4cO2rt3r8aMGaM2bdro9OnTys7OVl5enho1aqSzZ88qKSlJP/zwgyZNmqS4uDht2LBBGRkZysnJ0Xvvvecw5vLly7VhwwY99dRTqlevnkJCQrRz5061a9dOkZGR+uc//6l69erpgw8+0IMPPqijR49qwoQJF83VzgAAAAAAAFzlUlJSTFRUVKn2CRMmmF+XNySZ0NBQY7PZ7G35+fnGw8PDZGRk2NteeeUVI8ns2bPHGGPMli1bjCSzfPnycnPYvXu3kWReffVVY4wxn3zyiZFkHn/8cRMTE2Pv16VLF9OuXbtyx7lw4YI5f/686dy5s+nTp4+9fc+ePUaSCQsLM2fOnLG322w2ExwcbG677bZyxzTGmPPnz5vQ0FAzYMAAh/bHH3/c+Pj4mKNHjzq05+XlGUn2T5s2bcyPP/5YYYwSkydPNpJMVlZWuX3mz59vJJk333zToX3q1KlGkvnwww/tbZJMUFCQOX78uEPf22+/3YSHh5uTJ086tI8aNcr4+vqW6l8RlkMCAAAAAACXkpSUpICAAPtxaGioQkJCKnzz4R/+8Addd911GjNmjObPn6+dO3eW6nP99dcrOjpaH330kSQpKytLTZs21X333ac9e/bohx9+UGFhoT755BOHmViSNH/+fLVo0UK+vr7y8vKSt7e3Pv74Y+3atatUnL59+8rX19d+HBAQoJ49eyo7O1tFRUWSfpnB9euPMUZeXl667777tHTpUp08eVKSVFRUpNdee029e/cutdl9nTp1tHnzZn3yySd64YUXdPz4cSUlJSkvL8/ep6w40i/7h91www2l7vPX1qxZoxo1aqhfv34O7YMHD5akUks8b731Vl133XX247Nnz+rjjz9Wnz595O/v75BHt27ddPbsWX322Wflxv8timAAAAAAAMCllPVmQ6vVqjNnzpR7TVBQkNavX69mzZrpiSeeUJMmTRQWFqYJEybo/Pnz9n6dO3e2F28++ugjdenSRU2bNlVoaKg++ugjffrppzpz5oxDcWjGjBl64IEH1KZNG73zzjv67LPPtHnzZv3pT38qM6d69eqV2Xbu3DmdPn1ae/fulbe3t8Nn/fr1kn5ZEnn27Fm98cYbkqQPPvhAeXl5GjJkSKkxvby81KpVK7Vv316pqalas2aN/ve//+nvf/+7vc9v45Ts03XkyBGFh4eX+zwl6dixY6pXr57Dnm2SFBISIi8vLx07dsyhvX79+qWuv3Dhgp577rlSeXTr1k2SdPTo0QpzcLjfSvcEAAAAAABwEl9f31KbqUtVK4JcTNOmTfXGG2/IGKMvvvhCmZmZmjx5svz8/DR27FhJvxTBXnrpJf33v//V559/rr/+9a+SfpnFlJWVpX379qlmzZq65ZZb7OMuWrRIiYmJmjdvnkO8kr3Gfis/P7/MNh8fH9WsWVN+fn7avHmzw/kbb7xRknTTTTfp5ptv1iuvvKLhw4frlVdeUVhYmLp27XrR+w8PD1dYWJi+++47e9tv48TExEj6ZRP9khcGlKd27dr6/PPPZYxxKIQdPnxYFy5cUJ06dRz6/7ZYdt1118nT01MDBw7UyJEjy4xRkk9lMBMMAAAAAABc9aKjo3X48GEdOnTI3nbu3Dl98MEH1R7LYrEoPj5e//rXv1SrVi1t27bNfq5z586yWCx68skn5eHhoU6dOkn6ZdP8tWvXKisrS506dZK3t7fDeFar1SHGF198oU2bNpUZf+nSpTp79qz9+NSpU1qxYoU6duwoT09P+fj4qFWrVg6fXy//HDJkiD7//HN98sknWrFihVJSUuTp6XnR+969e7cOHDigP/zhD/a238YpmWWXnJys7777TmvWrCl3vM6dO+v06dNavny5Q/urr75qP18Rf39/JSUlafv27YqLiyuVy6/zqQxmggEAAAAAgKte//799dRTT+nuu+/WY489prNnz+rZZ5+175H1e61cuVJz587VHXfcoYYNG8oYo6VLl+rEiRPq0qWLvV9ISIhiY2P14YcfKikpSf7+/pJ+KYIdP35cx48f14wZMxzG7tGjh55++mlNmDBBCQkJ+vbbbzV58mTFxMTowoULpXLx9PRUly5dlJ6eruLiYk2dOlU2m02TJk2q1L3cc889Sk9P1z333KPCwkL7HlwlvvjiCz388MPq16+fGjZsKA8PD3355Zf617/+pdq1a+vRRx+9aIzRo0dryZIl6t27t8aOHaubb75ZZ86c0fr169WjRw8lJSVp0KBBmjNnjlJSUrR37141bdpUn3zyiZ555hl169atwv3ESsyaNUsdOnRQx44d9cADDyg6OlqnTp3S7t27tWLFigqLcL9FEQwAAAAAAPx/7N13WFPn/z7wO2yQJQ4UZbpxoeCkWrGK4l5Vq1WcrVIn7lrrqNuq2FpXHWitdbVqW/2ouAdaFcRRN4JgBRWqojiB5/eHv+RLTBzYPDmM+3VduVpOYu4nCeSc8z7PyPU8PT2xbds2fPnll+jUqRNKliyJ0NBQ3L17952LQ29Srlw5ODo6Yvbs2bh16xYsLCxQoUIFhIeHIzg4WOuxTZo0wblz57SKOG5ubihXrhyuXr2qU9wZP348Hj9+jBUrVmD27Nnw9vbGkiVLsGXLFhw4cECnLYMGDcLTp08xZMgQ3LlzB5UrV8b27dvh7+//Tq/FwcEB7du3x7p16+Dv74/y5ctr3e/s7AwXFxfMnTsXSUlJyMjIQOnSpdGqVSt8+eWXcHV1fWuGnZ0djhw5gkmTJmHZsmWYPHkyChcujFq1auGzzz4D8HII6/79+zF+/HjMmTMHd+/eRalSpTBy5EhMnDjxnV6Lt7c3oqOj8c033+Crr77CnTt34OjoiHLlymnmBXtXKqGe1p+IiIiIiIiIiBQTHx8PT09PzJkz5516Y1HOcE4wIiIiIiIiIiLK91gEIyIiIiIiIiKifI/DIYmIiIiIiIiIKN9jTzAiIiIiIiIiIsr3WAQjIiIiIiIiIqJ8z0zpBuRUVlYWbt26BTs7O6hUKqWbQ0REREREREREChFC4OHDh3BxcYGJyZv7euW5ItitW7fg6uqqdDOIiIiIiIiIiCiXSExMROnSpd/4mDxXBLOzswPw8sXZ29sr3BoiIiIiIiIiIlJKWloaXF1dNfWiN8lzRTD1EEh7e3sWwYiIiIiIiIiI6J2mzOLE+ERERERERERElO+xCEZERERERERERPkei2BERERERERERJTvsQhGRERERERERET5HotgRERERERERESU77EIRkRERERERERE+R6LYERERERERERElO+xCEZERERERERERPkei2BERERERERERJTvKVIEMzMzg4+PD3x8fNCvXz8lmkBERERERERERAWImRKhjo6OiImJUSKaiIiIiIiIiIgKIA6HJCIiIiIiIiKifC/HRbBDhw6hdevWcHFxgUqlwtatW3Ues2jRInh6esLKygq+vr44fPiw1v1paWnw9fXFBx98gIMHD75344mIiIiIiIiIiN5Fjotg6enpqF69OhYuXKj3/g0bNmDYsGEYP348Tp8+jQYNGiAoKAgJCQmax8THxyMqKgpLlixBz549kZaW9tq8Z8+eIS0tTetGRERERERERESUEyohhHjvf6xSYcuWLWjXrp1mW506dVCzZk0sXrxYs61SpUpo164dZsyYofMcQUFB+Oabb+Dn56c3Y9KkSZg8ebLO9gcPHsDe3v59m05ERERERERERHlcWloaHBwc3qlOZNA5wZ4/f46oqCgEBgZqbQ8MDERkZCQA4N69e3j27BkA4ObNm7hw4QK8vLxe+5zjxo3DgwcPNLfExERDNpmIiIiIiIiIiAoAg64OmZKSgszMTDg7O2ttd3Z2RnJyMgDg4sWL+Pzzz2FiYgKVSoUFCxbAycnptc9paWkJS0tLQzaTiIiIiIiIiIgKGIMWwdRUKpXWz0IIzbb69evj3LlzMmKJiIiIiIiIiIj0MuhwyKJFi8LU1FTT60vtzp07Or3DiIiIiIiIiIiIjMWgRTALCwv4+voiIiJCa3tERATq169vyCgiIiIiIiIiIqJ3luPhkI8ePcK1a9c0P8fFxSEmJgZOTk5wc3NDaGgoevToAT8/P9SrVw/Lli1DQkICBgwYYNCGExERERERERERvascF8FOnTqFgIAAzc+hoaEAgODgYISHh6NLly5ITU3FlClTkJSUhCpVqmDHjh1wd3c3XKuJiIiIiIiIiIhyQCWEEEo3IifS0tLg4OCABw8ewN7eXunmEBERERERERGRQnJSJzLonGBERERERERERES5UY6HQxKRgaxTyc/olqc6ehIRERERERFJw55gRERERERERESU77EIRkRERERERERE+R6HQxKH5VHBwt93IiIiIiKiAsnoRbCHDx+icePGePHiBTIzMzFkyBD079/f2M0geokFESIiIiIiIqICwehFMBsbGxw8eBA2NjZ4/PgxqlSpgg4dOqBIkSLGbgoRERERERERERUQRp8TzNTUFDY2NgCAp0+fIjMzE0KwpwwREREREREREcmT4yLYoUOH0Lp1a7i4uEClUmHr1q06j1m0aBE8PT1hZWUFX19fHD58WOv++/fvo3r16ihdujRGjx6NokWLvvcLICIiIiIiIiIiepscD4dMT09H9erV0bt3b3Ts2FHn/g0bNmDYsGFYtGgR/P39sXTpUgQFBeHChQtwc3MDADg6OuLMmTO4ffs2OnTogE6dOsHZ2Vlv3rNnz/Ds2TPNz2lpaTltMuVmnJOLiIiIiIiIiIwgxz3BgoKCMHXqVHTo0EHv/fPmzUPfvn3Rr18/VKpUCWFhYXB1dcXixYt1Huvs7Ixq1arh0KFDr82bMWMGHBwcNDdXV9ecNpmIiIiIiIiIiAo4g84J9vz5c0RFRSEwMFBre2BgICIjIwEAt2/f1vTmSktLw6FDh1ChQoXXPue4cePw4MEDzS0xMdGQTSYiIiIiIiIiogLAoKtDpqSkIDMzU2doo7OzM5KTkwEAN2/eRN++fSGEgBACgwYNQrVq1V77nJaWlrC0tDRkM4mIiIxDySHfHG5ORERERKTFoEUwNZVK+8BbCKHZ5uvri5iYGBmxREREulgMIiIiIiIiGHg4ZNGiRWFqaqrp9aV2586d1058T0REREREREREJJtBe4JZWFjA19cXERERaN++vWZ7REQE2rZta8goIiLKCfaGIiIiIiKiAi7HRbBHjx7h2rVrmp/j4uIQExMDJycnuLm5ITQ0FD169ICfnx/q1auHZcuWISEhAQMGDDBow4mIiIiIiIiIiN5Vjotgp06dQkBAgObn0NBQAEBwcDDCw8PRpUsXpKamYsqUKUhKSkKVKlWwY8cOuLu7G67VREREREREREREOZDjIlijRo0gxJuHvISEhCAkJOS9G0VERERERERERGRIBp0Yn4iIiIiIiIiIKDdiEYyIiIiIiIiIiPI9FsGIiIiIiIiIiCjfYxGMiIiIiIiIiIjyPRbBiIiIiIiIiIgo31OkCNa+fXsULlwYnTp1UiKeiIiIiIiIiIgKGEWKYEOGDMGaNWuUiCYiIiIiIiIiogJIkSJYQEAA7OzslIgmIiIiIiIiIqICKMdFsEOHDqF169ZwcXGBSqXC1q1bdR6zaNEieHp6wsrKCr6+vjh8+LAh2kpERERERERERPReclwES09PR/Xq1bFw4UK992/YsAHDhg3D+PHjcfr0aTRo0ABBQUFISEh4rwY+e/YMaWlpWjciIiIiIiIiIqKcMMvpPwgKCkJQUNBr7583bx769u2Lfv36AQDCwsKwa9cuLF68GDNmzMhxA2fMmIHJkyfn+N8REVEusU4lP6ObkJ9BRERERER5mkHnBHv+/DmioqIQGBiotT0wMBCRkZHv9Zzjxo3DgwcPNLfExERDNJWIiIiIiIiIiAqQHPcEe5OUlBRkZmbC2dlZa7uzszOSk5M1Pzdr1gzR0dFIT09H6dKlsWXLFtSqVUvvc1paWsLS0tKQzSQiIiIiIiIiogLGoEUwNZVKe+iLEEJr265du2TEEhERERERERER6WXQ4ZBFixaFqampVq8vALhz545O7zAiIiIiIiIiIiJjMWgRzMLCAr6+voiIiNDaHhERgfr16xsyioiIiIiIiIiI6J3leDjko0ePcO3aNc3PcXFxiImJgZOTE9zc3BAaGooePXrAz88P9erVw7Jly5CQkIABAwYYtOFERERERERERETvKsdFsFOnTiEgIEDzc2hoKAAgODgY4eHh6NKlC1JTUzFlyhQkJSWhSpUq2LFjB9zd3Q3XaiKivGid6u2P+a+6CfkZREREREREeVCOi2CNGjWCEG8+yQoJCUFISMh7N4qIiIiIiIiIiMiQDDonGBERERERERERUW7EIhgREREREREREeV7LIIREREREREREVG+l+M5wZSmno8sLS1N4ZbkI4+NkPG6z0vJbKXzlX7tBVVB/cwLarbS+QU1m4iIiIjISNT1obfNXw8AKvEuj8pFbt68CVdXV6WbQUREREREREREuURiYiJKly79xsfkuSJYVlYWbt26BTs7O6hUKqWbo4i0tDS4uroiMTER9vb2BSqf2fzMmZ3/85nNz7ygZCudz2x+5szO//nM5mdeULKVzi+o2bmFEAIPHz6Ei4sLTEzePOtXnhsOaWJi8tbKXkFhb2+v6C+5kvnMVkZBfe0FNVvpfGYro6C+dr7vzC5I+cxWRkF97QU1W+n8gpqtdH5Bzc4NHBwc3ulxnBifiIiIiIiIiIjyPRbBiIiIiIiIiIgo32MRLA+ytLTExIkTYWlpWeDymc3PnNn5P5/Z/MwLSrbS+czmZ87s/J/PbH7mBSVb6fyCmp0X5bmJ8YmIiIiIiIiIiHKKPcGIiIiIiIiIiCjfYxGMiIiIiIiIiIjyPRbBiIiIiIiIiIgo32MRjIiIiIiIiIiI8j0WwYiIiIiIiIiIKN9jEYyIiIiIiIiIiPI9FsGIiIiIiIiIiCjfYxGMiIiIiIiIiIjyPRbBiIiIiIiIiIgoT9ixYwcmTZr0Xv+WRTAiIiIiIiIiIsoTduzYgcmTJ7/Xv2URjIiIiIiIiIiIcrXHjx//5+dgEYyIiIiIiIiIKJ+4e/cuPvvsM7i6usLS0hLFihWDv78/9uzZo3nMnj178NFHH8He3h42Njbw9/fH3r17tZ7n2rVr6N27N8qVKwcbGxuUKlUKrVu3xrlz57Qed+DAAahUKqxduxahoaEoUaIErK2t8eGHH+L06dM67fv9999Rr1492NjYwM7ODk2bNsWxY8e0HjNp0iSoVCpER0ejU6dOKFy4MMqUKYNevXrhhx9+AACoVCrNLT4+/p3eGxbBiIiIiIiIiIjyiR49emDr1q34+uuvsXv3bixfvhxNmjRBamoqAGDt2rUIDAyEvb09Vq9ejY0bN8LJyQnNmjXTKoTdunULRYoUwcyZM7Fz50788MMPMDMzQ506dXD58mWd3C+//BLXr1/H8uXLsXz5cty6dQuNGjXC9evXNY9Zt24d2rZtC3t7e/zyyy9YsWIF7t27h0aNGuHIkSM6z9mhQweULVsWmzZtwpIlSzBhwgR06tQJAHDs2DHNrWTJku/03qiEECJH7yYREREREREREeVKdnZ26NevH+bPn69z3+PHj+Hq6gp/f3/8/vvvmu1ZWVmoWbMmLC0t8ddff+l93szMTGRlZaFy5cpo1aoV5s2bB+BlT7CAgADUrFkTp06dgkqlAgDcuHED5cqVQ3BwMH788UdkZWXB1dUVRYoUQUxMDExMXvbLevToEcqUKYOyZcvi6NGjAF72BJs8eTK+/vprnfm/Bg0ahB9++AHvU85iTzAiIiIiIiIionyidu3aCA8Px9SpU3H8+HG8ePFCc19kZCT+/fdfBAcHIyMjQ3PLyspC8+bNcfLkSaSnpwMAMjIyMH36dHh7e8PCwgJmZmawsLDA1atXcfHiRZ3cbt26aQpgAODu7o769etj//79AIDLly/j1q1b6NGjh6YABgC2trbo2LEjjh8/rjPvV8eOHQ363rAIRkRERERERESUT2zYsAHBwcFYvnw56tWrBycnJ/Ts2RPJycm4ffs2AKBTp04wNzfXus2aNQtCCPz7778AgNDQUEyYMAHt2rXDH3/8gb/++gsnT55E9erV8eTJE53cEiVK6N2mHoap/q++oYsuLi7IysrCvXv3tLa/6zDHd2Vm0GcjIiIiIiIiIiLFFC1aFGFhYQgLC0NCQgJ+//13jB07Fnfu3MHw4cMBAN9//z3q1q2r9987OzsDeDl3WM+ePTF9+nSt+1NSUuDo6Kjz75KTk/VuK1KkCABo/puUlKTzuFu3bsHExASFCxfW2p69Z5khsCcYEREREREREVE+5ObmhkGDBqFp06aIjo6Gv78/HB0dceHCBfj5+em9WVhYAHhZgLK0tNR6vu3bt+Off/7Rm/XLL79ozdN148YNREZGolGjRgCAChUqoFSpUli3bp3W49LT0/Hrr79qVox8G3Wb9PVGexv2BCMiIiIiIiIiygcePHiAgIAAdOvWDRUrVoSdnR1OnjyJnTt3okOHDrC1tcX333+P4OBg/Pvvv+jUqROKFy+Ou3fv4syZM7h79y4WL14MAGjVqhXCw8NRsWJFVKtWDVFRUZgzZw5Kly6tN/vOnTto3749+vfvjwcPHmDixImwsrLCuHHjAAAmJiaYPXs2unfvjlatWuHzzz/Hs2fPMGfOHNy/fx8zZ858p9dYtWpVAMCsWbMQFBQEU1NTVKtWTVO8exMWwYiIiIiIiIiI8gErKyvUqVMHP/30E+Lj4/HixQu4ublhzJgxGD16NADg008/hZubG2bPno3PP/8cDx8+RPHixeHj44NevXppnmvBggUwNzfHjBkz8OjRI9SsWRO//fYbvvrqK73Z06dPx8mTJ9G7d2+kpaWhdu3aWL9+PcqUKaN5TLdu3VCoUCHMmDEDXbp0gampKerWrYv9+/ejfv367/Qau3XrhqNHj2LRokWYMmUKhBCIi4uDh4fHW/+tSrzPmpJERERERERERFTgHThwAAEBAdi0aRM6deqkdHPeiHOCERERERERERFRvsciGBERERERERER5XscDklERERERERERPkee4IREREREREREVG+xyIYERERERERERHle2ZKNyCnsrKycOvWLdjZ2UGlUindHCIiIiIiIiIiUogQAg8fPoSLiwtMTN7c1yvPFcFu3boFV1dXpZtBRERERERERES5RGJiIkqXLv3Gx+S5IpidnR2Aly/O3t5e4dYQEREREREREZFS0tLS4OrqqqkXvUmeK4Kph0Da29uzCEZERERERERERO80ZRYnxiciIiIiIiIionyPRTAiIiIiIiIiIsr3WAQjIiIiIiIiIqJ8j0UwIiIiIiIiIiLK91gEIyIiIiIiIiKifI9FMCIiIiIiIiIiyvdYBCMiIiIiIiIionyPRTAiIiIiIiIiIsr3WAQjIiIiIiIiIqJ8T5EimJmZGXx8fODj44N+/fop0QQiIiIiIiIiIipAzJQIdXR0RExMjBLRRERERERERERUAHE4JBERERERERER5Xs5LoIdOnQIrVu3houLC1QqFbZu3arzmEWLFsHT0xNWVlbw9fXF4cOHte5PS0uDr68vPvjgAxw8ePC9G09ERERERERERPQuclwES09PR/Xq1bFw4UK992/YsAHDhg3D+PHjcfr0aTRo0ABBQUFISEjQPCY+Ph5RUVFYsmQJevbsibS0tNfmPXv2DGlpaVo3IiIiIiIiIiKinFAJIcR7/2OVClu2bEG7du002+rUqYOaNWti8eLFmm2VKlVCu3btMGPGDJ3nCAoKwjfffAM/Pz+9GZMmTcLkyZN1tj948AD29vbv23QiIiIiIiIiIsrj0tLS4ODg8E51IoPOCfb8+XNERUUhMDBQa3tgYCAiIyMBAPfu3cOzZ88AADdv3sSFCxfg5eX12uccN24cHjx4oLklJiYasslERERERERERFQAGHR1yJSUFGRmZsLZ2Vlru7OzM5KTkwEAFy9exOeffw4TExOoVCosWLAATk5Or31OS0tLWFpaGrKZRERERERERERUwBi0CKamUqm0fhZCaLbVr18f586dkxFLRERERERERESkl0GHQxYtWhSmpqaaXl9qd+7c0ekdRkREREREREREZCwGLYJZWFjA19cXERERWtsjIiJQv359Q0YRERERERERERG9sxwPh3z06BGuXbum+TkuLg4xMTFwcnKCm5sbQkND0aNHD/j5+aFevXpYtmwZEhISMGDAAIM2nIiIiIiIiIiI6F3luAh26tQpBAQEaH4ODQ0FAAQHByM8PBxdunRBamoqpkyZgqSkJFSpUgU7duyAu7u74VpNlB+sU739Mf9VNyE/g4iIiIiIiCgPUAkh8tRZclpaGhwcHPDgwQPY29sr3Ryi98ciGBEREREREdF/kpM6kUHnBCMiIiIiIiIiIsqNWAQjIiIiIiIiIqJ8j0UwIiIiIiIiIiLK91gEIyIiIiIiIiKifI9FMCIiIiIiIiIiyvfMjB348OFDNG7cGC9evEBmZiaGDBmC/v37G7sZRC9xhUYiIiIiIiKiAsHoRTAbGxscPHgQNjY2ePz4MapUqYIOHTqgSJEixm5K7lJQizEF9XUXZPzMiUg2Jb9n+B1HRERElGsZfTikqakpbGxsAABPnz5FZmYmhODBHBERERERERERyZPjItihQ4fQunVruLi4QKVSYevWrTqPWbRoETw9PWFlZQVfX18cPnxY6/779++jevXqKF26NEaPHo2iRYu+9wsgIiIiIiIiIiJ6mxwXwdLT01G9enUsXLhQ7/0bNmzAsGHDMH78eJw+fRoNGjRAUFAQEhISNI9xdHTEmTNnEBcXh3Xr1uH27duvzXv27BnS0tK0bkRERERERERERDmR4yJYUFAQpk6dig4dOui9f968eejbty/69euHSpUqISwsDK6urli8eLHOY52dnVGtWjUcOnTotXkzZsyAg4OD5ubq6prTJhMRERERERERUQFn0DnBnj9/jqioKAQGBmptDwwMRGRkJADg9u3bmt5caWlpOHToECpUqPDa5xw3bhwePHiguSUmJhqyyUREREREREREVAAYdHXIlJQUZGZmwtnZWWu7s7MzkpOTAQA3b95E3759IYSAEAKDBg1CtWrVXvuclpaWsLS0NGQziYioIOFqfUREREREBAMXwdRUKu0TDiGEZpuvry9iYmJkxBIRERGRUlhwJiIiolzOoMMhixYtClNTU02vL7U7d+7o9A4jIiIiIiIiIiIyFoP2BLOwsICvry8iIiLQvn17zfaIiAi0bdvWkFFERJRXFOTeIUq+9oL8vhMVFPw7VwbfdyKiPCvHRbBHjx7h2rVrmp/j4uIQExMDJycnuLm5ITQ0FD169ICfnx/q1auHZcuWISEhAQMGDDBow4mIiIiIiIiIiN5Vjotgp06dQkBAgObn0NBQAEBwcDDCw8PRpUsXpKamYsqUKUhKSkKVKlWwY8cOuLu7G67VREREREREREREOZDjIlijRo0gxJu754aEhCAkJOS9G0VGxi7dVJDw952IiIiIiKhAkrI6JBER5TIs/hERERERUQFn0NUhiYiIiIiIiIiIciMWwYiIiIiIiIiIKN9jEYyIiIiIiIiIiPI9zglGRGQsnJeLiIiIiIhIMYr0BGvfvj0KFy6MTp06KRFPREREREREREQFjCJFsCFDhmDNmjVKRBMRERERERERUQGkSBEsICAAdnZ2SkQTEREREREREVEBlOMi2KFDh9C6dWu4uLhApVJh69atOo9ZtGgRPD09YWVlBV9fXxw+fNgQbSUiIiIiIiIiInovOZ4YPz09HdWrV0fv3r3RsWNHnfs3bNiAYcOGYdGiRfD398fSpUsRFBSECxcuwM3NLccNfPbsGZ49e6b5OS0tLcfPQUREREREREQ5xIWdKJ/JcU+woKAgTJ06FR06dNB7/7x589C3b1/069cPlSpVQlhYGFxdXbF48eL3auCMGTPg4OCgubm6ur7X8xARERERERERUcFl0DnBnj9/jqioKAQGBmptDwwMRGRk5Hs957hx4/DgwQPNLTEx0RBNJSIiIiIiIiKiAiTHwyHfJCUlBZmZmXB2dtba7uzsjOTkZM3PzZo1Q3R0NNLT01G6dGls2bIFtWrV0vuclpaWsLS0NGQziYiIiIiIiIiogDFoEUxNpdIeNyyE0Nq2a9cuGbFERERERERERER6GXQ4ZNGiRWFqaqrV6wsA7ty5o9M7jIiIiIiIiIiIyFgMWgSzsLCAr68vIiIitLZHRESgfv36howiIiIiIiIiIiJ6ZzkeDvno0SNcu3ZN83NcXBxiYmLg5OQENzc3hIaGokePHvDz80O9evWwbNkyJCQkYMCAAQZtOBERERERERER0bvKcRHs1KlTCAgI0PwcGhoKAAgODkZ4eDi6dOmC1NRUTJkyBUlJSahSpQp27NgBd3d3w7WaiIiIiIiUtU719sf8V92E/AwiotyG36/S5LgI1qhRIwjx5jcrJCQEISEh790oIiIiIiIiIiIiQzLonGBERERERERERES5UY57ghERERERERER5VscjphvsScYERERERERERHle3muJ5h6PrK0tDSFW2Jgj42Q8br3rKBmK52v9GtXitKvu6B+5gU1W+n8gpqtNL7vyijIr10pSr/nSucrpaC+biqYCurvu9KvW+n8PEZdH3rb/PUAoBLv8qhc5ObNm3B1dVW6GURERERERERElEskJiaidOnSb3xMniuCZWVl4datW7Czs4NKZYRxurlQWloaXF1dkZiYCHt7+wKVz2x+5szO//nM5mdeULKVzmc2P3Nm5/98ZvMzLyjZSucX1OzcQgiBhw8fwsXFBSYmb571K88NhzQxMXlrZa+gsLe3V/SXXMl8ZiujoL72gpqtdD6zlVFQXzvfd2YXpHxmK6OgvvaCmq10fkHNVjq/oGbnBg4ODu/0OE6MT0RERERERERE+R6LYERERERERERElO+xCJYHWVpaYuLEibC0tCxw+czmZ87s/J/PbH7mBSVb6Xxm8zNndv7PZzY/84KSrXR+Qc3Oi/LcxPhEREREREREREQ5xZ5gRERERERERESU77EIRkRERERERERE+R6LYERERERERERElO+xCEZERERERERERPkei2BERERERERERJTvsQhGRERERERERET5HotgRERERERERESU77EIRkRERERERERE+R6LYERERERERERE+UijRo1QpUoVgzzXhQsXMGnSJMTHxxvk+QylUaNGaNSoUY7+DYtgRERERERERESk14ULFzB58uRcVwR7HyyCEREREREREREp6PHjx0o3oUBgEYyIiIiIiIiIyEgmTZoElUqF6OhodOrUCYULF0aZMmXw9OlTjBs3Dp6enrCwsECpUqXwxRdf4P79+zrPsW7dOtSrVw+2trawtbWFj48PVqxY8cbcLVu2wMbGBv369UNGRgYA4NSpU2jTpg2cnJxgZWWFGjVqYOPGjZp/Ex4ejo8//hgAEBAQAJVKBZVKhfDwcAD/N+zy8OHDqFu3LqytrVGqVClMmDABmZmZWvn//vsvQkJCUKpUKVhYWMDLywvjx4/Hs2fPtB6Xk/chp1gEIyIiIiIiIiIysg4dOqBs2bLYtGkTlixZgnbt2uHbb79Fjx49sH37doSGhmL16tVo3LixVqHo66+/Rvfu3eHi4oLw8HBs2bIFwcHBuHHjxmuz5s+fj48//hhffvklli9fDjMzM+zfvx/+/v64f/8+lixZgm3btsHHxwddunTRFLlatmyJ6dOnAwB++OEHHDt2DMeOHUPLli01z52cnIyuXbuie/fu2LZtGzp16oSpU6di6NChmsc8ffoUAQEBWLNmDUJDQ7F9+3Z8+umnmD17Njp06KB5nBDind+H9yKIiIiIiIiIiMgoJk6cKACIr7/+WrNt586dAoCYPXu21mM3bNggAIhly5YJIYS4fv26MDU1Fd27d39jxocffigqV64sMjMzxaBBg4SFhYVYu3at1mMqVqwoatSoIV68eKG1vVWrVqJkyZIiMzNTCCHEpk2bBACxf/9+vTkAxLZt27S29+/fX5iYmIgbN24IIYRYsmSJACA2btyo9bhZs2YJAGL37t05eh/U2R9++OEb34dXsScYEREREREREZGRdezYUfP/+/btAwD06tVL6zEff/wxChUqhL179wIAIiIikJmZiS+++OKtz//06VO0a9cOP//8M3bv3o3u3btr7rt27RouXbqk2ZaRkaG5tWjRAklJSbh8+fI7vQ47Ozu0adNGa1u3bt2QlZWFQ4cOaV5foUKF0KlTJ63HqV+v+vW96/vwvsz+078mIiIiIiIiIqIcK1mypOb/U1NTYWZmhmLFimk9RqVSoUSJEkhNTQUA3L17FwBQunTptz7/nTt3kJiYiCZNmqB+/fpa992+fRsAMHLkSIwcOVLvv09JSXmn1+Hs7KyzrUSJEgCgaXdqaipKlCgBlUql9bjixYvDzMxM63Hv8j68L/YEIyIiIiIiIiIysuwFoSJFiiAjI0NT5FITQiA5ORlFixYFAE1x6ObNm299fjc3N/zxxx84cOAAOnTogKdPn2ruUz/fuHHjcPLkSb03Hx+fd3od6oJadsnJyZrXpf7v7du3IYTQetydO3eQkZGhac+7vg/vi0UwIiIiIiIiIiIFffTRRwCAtWvXam3/9ddfkZ6errk/MDAQpqamWLx48Ts9b2BgIHbt2oVDhw6hVatWSE9PBwBUqFAB5cqVw5kzZ+Dn56f3ZmdnBwCwtLQEADx58kRvxsOHD/H7779rbVu3bh1MTEzQsGFDzet79OgRtm7dqvW4NWvWaL3+d30f3heHQxIRERERERERKahp06Zo1qwZxowZg7S0NPj7++Ps2bOYOHEiatSogR49egAAPDw88OWXX+Kbb77BkydP8Mknn8DBwQEXLlxASkoKJk+erPPcH3zwAfbu3YvmzZsjMDAQO3bsgIODA5YuXYqgoCA0a9YMvXr1QqlSpfDvv//i4sWLiI6OxqZNmwAAVapUAQAsW7YMdnZ2sLKygqenp1Yvr4EDByIhIQHly5fHjh078OOPP2LgwIFwc3MDAPTs2RM//PADgoODER8fj6pVq+LIkSOYPn06WrRogSZNmuTofXhf7AlGRERERERERKQglUqFrVu3IjQ0FKtWrUKLFi3w7bffokePHti3b5+mNxYATJkyBWvWrMGNGzfQvXt3tGvXDqtWrYKnp+drn9/Pzw8HDx7E9evX0bhxY6SkpCAgIAAnTpyAo6Mjhg0bhiZNmmDgwIHYs2ePpigFAJ6enggLC8OZM2fQqFEj1KpVC3/88Yfm/hIlSmDdunVYvXo12rRpg40bN+LLL7/Ed999p3mMlZUV9u/fj+7du2POnDkICgpCeHg4Ro4cid9+++293of3ep/FqwMyiYiIiIiIiIiI3qJRo0ZISUnB+fPnlW7KO2FPMCIiIiIiIiIiyvdYBCMiIiIiIiIionyPwyGJiIiIiIiIiCjfY08wIiIiIiIiIiLK91gEIyIiIiIiIiKifM9M6QbkVFZWFm7dugU7OzuoVCqlm0NERERERERERAoRQuDhw4dwcXGBicmb+3rluSLYrVu34OrqqnQziIiIiIiIiIgol0hMTETp0qXf+Jg8VwSzs7MD8PLF2dvbK9waIiIiIiIiIiJSSlpaGlxdXTX1ojfJc0Uw9RBIe3t7FsGIiIiIiIiIiOidpszixPhERERERERERJTvsQhGRERERERERET5HotgRERERERERESU77EIRkRERERERERE+R6LYERERERERERElO+xCEZERERERERERPkei2BERERERERERJTvsQhGRERERERERET5HotgRERERERERESU7ylSBDMzM4OPjw98fHzQr18/JZpAREREREREREQFiJkSoY6OjoiJiVEimoiIiIiIiIiICiAOhyQiIiIiIiIionwvxz3BDh06hDlz5iAqKgpJSUnYsmUL2rVrp/WYRYsWYc6cOUhKSkLlypURFhaGBg0aaO5PS0uDr68vrK2tMW3aNHz44Yf/+YXkeetU8jO6CfkZRERERERERES5UI57gqWnp6N69epYuHCh3vs3bNiAYcOGYfz48Th9+jQaNGiAoKAgJCQkaB4THx+PqKgoLFmyBD179kRaWtpr8549e4a0tDStGxERERERERERUU7kuAgWFBSEqVOnokOHDnrvnzdvHvr27Yt+/fqhUqVKCAsLg6urKxYvXqx5jIuLCwCgSpUq8Pb2xpUrV16bN2PGDDg4OGhurq6uOW0yEREREREREREVcAadE+z58+eIiopCYGCg1vbAwEBERkYCAO7du4dnz54BAG7evIkLFy7Ay8vrtc85btw4PHjwQHNLTEw0ZJOJiIiIiIiIiKgAMOjqkCkpKcjMzISzs7PWdmdnZyQnJwMALl68iM8//xwmJiZQqVRYsGABnJycXvuclpaWsLS0NGQziYiIiIiIiIiogDFoEUxNpdKe5F0IodlWv359nDt3TkYsERERERERERGRXgYdDlm0aFGYmppqen2p3blzR6d3GBERERERERERkbEYtAhmYWEBX19fREREaG2PiIhA/fr1DRlFRERERERERET0znI8HPLRo0e4du2a5ue4uDjExMTAyckJbm5uCA0NRY8ePeDn54d69eph2bJlSEhIwIABAwzacCIiIiIiIiIioneV4yLYqVOnEBAQoPk5NDQUABAcHIzw8HB06dIFqampmDJlCpKSklClShXs2LED7u7uhms1kaGsU739Mf9VNyE/g4iIiIiIiIjeSCWEyFNn6GlpaXBwcMCDBw9gb2+vdHMMh8UYZfB9JyIiIiIiIsqzclInMuicYERERERERERERLlRjodDElE+wB5wREREREREVMCwCEZEZCwsPhIRERERESmGwyGJiIiIiIiIiCjfYxGMiIiIiIiIiIjyPaMXwR4+fIhatWrBx8cHVatWxY8//mjsJhARERERERERUQFj9DnBbGxscPDgQdjY2ODx48eoUqUKOnTogCJFihi7KUREREREREREVEAYvSeYqakpbGxsAABPnz5FZmYmhOBEzkREREREREREJE+Oe4IdOnQIc+bMQVRUFJKSkrBlyxa0a9dO6zGLFi3CnDlzkJSUhMqVKyMsLAwNGjTQ3H///n18+OGHuHr1KubMmYOiRYv+5xdC/4GSK9ZxtbyCh585ERERERERKSDHPcHS09NRvXp1LFy4UO/9GzZswLBhwzB+/HicPn0aDRo0QFBQEBISEjSPcXR0xJkzZxAXF4d169bh9u3br8179uwZ0tLStG5EREREREREREQ5keMiWFBQEKZOnYoOHTrovX/evHno27cv+vXrh0qVKiEsLAyurq5YvHixzmOdnZ1RrVo1HDp06LV5M2bMgIODg+bm6uqa0yYTEREREREREVEBZ9CJ8Z8/f46oqCiMHTtWa3tgYCAiIyMBALdv34a1tTXs7e2RlpaGQ4cOYeDAga99znHjxiE0NFTzc1paGgthREREuRmHPRMRERFRLmTQIlhKSgoyMzPh7Oystd3Z2RnJyckAgJs3b6Jv374QQkAIgUGDBqFatWqvfU5LS0tYWloasplEREREZGgsfhIREVEuZ9AimJpKpX0QJITQbPP19UVMTIyMWCIiyo14YkxERERERLlAjucEe5OiRYvC1NRU0+tL7c6dOzq9w4iIiIiIiIiIiIzFoD3BLCws4Ovri4iICLRv316zPSIiAm3btjVkFBERUe6nZC849sAjIiIiItKS4yLYo0ePcO3aNc3PcXFxiImJgZOTE9zc3BAaGooePXrAz88P9erVw7Jly5CQkIABAwYYtOFERERERERERETvKsdFsFOnTiEgIEDzs3rlxuDgYISHh6NLly5ITU3FlClTkJSUhCpVqmDHjh1wd3c3XKuJiIiIiIiIiIhyIMdFsEaNGkGINw9/CAkJQUhIyHs3ioiIiIhyiENgiYiIiN7IoBPjExERERERERER5UYsghERERERERERUb7HIhgREREREREREeV7LIIREREREREREVG+xyIYERERERERERHle4oUwdq3b4/ChQujU6dOSsQTEREREREREVEBo0gRbMiQIVizZo0S0UREREREREREVAApUgQLCAiAnZ2dEtFERERERERERFQA5bgIdujQIbRu3RouLi5QqVTYunWrzmMWLVoET09PWFlZwdfXF4cPHzZEW4mIiIiIiIiIiN5Ljotg6enpqF69OhYuXKj3/g0bNmDYsGEYP348Tp8+jQYNGiAoKAgJCQnv1cBnz54hLS1N60ZERERERERERJQTOS6CBQUFYerUqejQoYPe++fNm4e+ffuiX79+qFSpEsLCwuDq6orFixe/VwNnzJgBBwcHzc3V1fW9noeIiIiIiIiIiAoug84J9vz5c0RFRSEwMFBre2BgICIjI9/rOceNG4cHDx5obomJiYZoKhERERERERERFSBmhnyylJQUZGZmwtnZWWu7s7MzkpOTNT83a9YM0dHRSE9PR+nSpbFlyxbUqlVL73NaWlrC0tLSkM0kIiIiIiIiIqICxqBFMDWVSqX1sxBCa9uuXbtkxBIREREREREREell0OGQRYsWhampqVavLwC4c+eOTu8wIiIiIiIiIiIiYzFoTzALCwv4+voiIiIC7du312yPiIhA27ZtDRlFREQ5sU719sf8V92E/AwiIiIiIqL3lOMi2KNHj3Dt2jXNz3FxcYiJiYGTkxPc3NwQGhqKHj16wM/PD/Xq1cOyZcuQkJCAAQMGGLThRERERERERERE7yrHRbBTp04hICBA83NoaCgAIDg4GOHh4ejSpQtSU1MxZcoUJCUloUqVKtixYwfc3d0N12oiIiIiIiIiIqIcyHERrFGjRhDizUNeQkJCEBIS8t6NIiIiIiIiIiIiMiSDToxPRERERERERESUG7EIRkRERERERERE+R6LYERERERERERElO/leE4wpannI0tLS1O4JQb22AgZr3vPCmp2bshXSkH+zJVUUN93fuZy5cb3vSB/5kpS+n1XOp+IiIgKJHV96G3z1wOASrzLo3KRmzdvwtXVVelmEBERERERERFRLpGYmIjSpUu/8TF5rgiWlZWFW7duwc7ODiqVSunmKCItLQ2urq5ITEyEvb19gcpnNj9zZuf/fGbzMy8o2UrnM5ufObPzfz6z+ZkXlGyl8wtqdm4hhMDDhw/h4uICE5M3z/qV54ZDmpiYvLWyV1DY29sr+kuuZD6zlVFQX3tBzVY6n9nKKKivne87swtSPrOVUVBfe0HNVjq/oGYrnV9Qs3MDBweHd3ocJ8YnIiIiIiIiIqJ8j0UwIiIiIiIiIiLK91gEy4MsLS0xceJEWFpaFrh8ZvMzZ3b+z2c2P/OCkq10PrP5mTM7/+czm595QclWOr+gZudFeW5ifCIiIiIiIiIiopxiTzAiIiIiIiIiIsr3WAQjIiIiIiIiIqJ8j0UwIiIiIiIiIiLK91gEIyIiIiIiIiKifI9FMCIiIiIiIiIiyvdYBCMiIkVlZGRg8uTJSExMVLopRpeQkAB9izQLIZCQkKBAiwqGQ4cOISMjQ2d7RkYGDh06pECLiIiIiMgYVELf0TflKhkZGbCyskJMTAyqVKmiSBv27t2LvXv34s6dO8jKytK6b+XKlVKzTU1NkZSUhOLFi2ttT01NRfHixZGZmWnQvO++++6dHztkyBCDZtP/iY2NxapVqxAbG4sFCxagePHi2LlzJ1xdXVG5cmWlmyfN/fv3sXnzZsTGxmLUqFFwcnJCdHQ0nJ2dUapUKWm5iYmJUKlUKF26NADgxIkTWLduHby9vfHZZ59Jy1WztbXF+fPn4eHhIT3rVdHR0TA3N0fVqlUBANu2bcOqVavg7e2NSZMmwcLCQlq2sb/fsvPy8sLJkydRpEgRre33799HzZo1cf36dWnZ2T1//hxxcXEoU6YMzMzMjJKp5Puu9vz5c737VDc3N+nZ6nxjv++Act9xaqdOncLFixehUqlQsWJF+Pn5Sc8kUlpcXBxcXV2N8rc+ZcoUjBw5EjY2Nlrbnzx5gjlz5uDrr7+Wlr169WoULVoULVu2BACMHj0ay5Ytg7e3N3755Re4u7tLy84NsrKycO3aNb37loYNG0rNXrNmDbp06QJLS0ut7c+fP8f69evRs2dPadlK7leuXLmCAwcO6H3PZf6u038kKE/w8vISMTEximRPmjRJmJiYiNq1a4u2bduKdu3aad1kU6lU4vbt2zrb//nnH2FlZWXwPA8Pj3e6eXp6Gjzb0dFRFC5c+J1uxnDv3j2xa9cu8dNPP4nVq1dr3WQ6cOCAsLa2Fk2aNBEWFhYiNjZWCCHErFmzRMeOHaVmJycni08//VSULFlSmJqaChMTE62bTGfOnBHFihUTZcuWFWZmZprX/dVXX4kePXpIzf7ggw/EmjVrhBBCJCUlCXt7e1GvXj1RpEgRMXnyZKnZQgjRtm1bsWrVKuk5+vj5+YnNmzcLIYSIjY0VVlZW4pNPPhFly5YVQ4cOlZqtUqnEnTt3dLbHx8cLGxsb6dn6vluTk5OFhYWF1GwhhEhPTxd9+vQRpqamwtTUVPP7PnjwYDFjxgyp2a973y9fvizs7OykZl+5ckV88MEHOt8tKpVK+neMEMq+70p+xyUmJooPPvhAqFQqzX5UpVIJf39/kZCQIDVb7d69e+LHH38UY8eOFampqUIIIaKiosTNmzel5iq5XwsICBD37t3T2f7gwQMREBAgNVvt2rVrYvz48aJr166a77z//e9/4vz58/k6Oztzc3Nx4cIFo2SZmJjo3bekpKRI/30rX7682Lt3rxBCiMjISGFtbS2WLl0qWrduLdq3by81WwghevfuLdLS0nS2P3r0SPTu3Vtq9rFjx4Snp6dmf5L9Zox9i1Kfu5L7lWXLlglTU1Ph7OwsqlevLnx8fDS3GjVqSM0WQghPT0+RkpKis/3evXtSzlPzE+Nd+qP/5KuvvsK4ceOwdu1aODk5GTV7yZIlCA8PR48ePYyaq+6RpVKpsHz5ctja2mruy8zMxKFDh1CxYkWD58bFxRn8Od9VWFiY5v9TU1MxdepUNGvWDPXq1QMAHDt2DLt27cKECROkt+WPP/5A9+7dkZ6eDjs7O6hUKs19KpVK6hWdsWPHYurUqQgNDYWdnZ1me0BAABYsWCAtFwB69eqFhIQETJgwASVLltR63bKFhoaiV69emD17ttbrDgoKQrdu3aRmnz9/HrVr1wYAbNy4EVWqVMHRo0exe/duDBgwQPrVrKCgIIwbNw7nz5+Hr68vChUqpHV/mzZtpGVfuXIFPj4+AIBNmzahYcOGWLduHY4ePYquXbtq/V0aSmhoKICXf0sTJkzQumKemZmJv/76S9MmQ/v99981/79r1y44ODhoZe/du9coPfLGjRuHM2fO4MCBA2jevLlme5MmTTBx4kSMHTvW4JkdOnQA8PJ979Wrl9YV68zMTJw9exb169c3eG52vXr1gpmZGf7880+jf8cAyrzvakp+x/Xp0wcvXrzAxYsXUaFCBQDA5cuX0adPH/Tt2xe7d++Wmn/27Fk0adIEDg4OiI+PR//+/eHk5IQtW7bgxo0bWLNmjbRsJfdrBw4cwPPnz3W2P336FIcPH5aef/DgQQQFBcHf3x+HDh3CtGnTULx4cZw9exbLly/H5s2b81W2+jvuVZmZmRgyZIjm7+63334zeLaaEELv79iZM2ekn8MkJiaibNmyAICtW7eiU6dO+Oyzz+Dv749GjRpJzQZe9kSbOXOm1vcb8LIX3Jo1a6SOnhkwYAD8/Pywfft2RfYtr/vcb968qXWcYWhK7lemTp2KadOmYcyYMVJzXic+Pl5vz/Vnz57hn3/+UaBFeQeLYHnEd999h2vXrsHFxQXu7u46J4jR0dHSsp8/fy79pECf+fPnA3j5pbpkyRKYmppq7rOwsICHhweWLFli9HbJFBwcrPn/jh07YsqUKRg0aJBm25AhQ7Bw4ULs2bMHw4cPl9qWESNGoE+fPpg+fbpOl3bZzp07h3Xr1ulsL1asGFJTU6VmHzlyBIcPH5ZWgHiTkydPYunSpTrbS5UqheTkZKnZL1680BQE9uzZoyk6VaxYEUlJSVKzAWDgwIEAgHnz5uncp1KppA5PE0JourDv2bMHrVq1AgC4uroiJSVFSubp06c12efOndMacmlhYYHq1atj5MiRUrLbtWun+f/s3zkAYG5uDg8PD8ydO1dKdnZbt27Fhg0bULduXa0DZ29vb8TGxkrJVB+ICyFgZ2cHa2trzX0WFhaoW7cu+vfvLyVbLSYmBlFRUVIu4rwLJd53NSW/4w4fPozIyEhNAQwAKlSogO+//x7+/v5SswFlT9SU2K+dPXtW8/8XLlzQ+nwzMzOxc+dOowx/VfKimhLZW7duRcOGDeHp6alzn62trdRiROHChaFSqaBSqVC+fHmt75fMzEw8evQIAwYMkJYPvHyNqampcHNzw+7duzXHylZWVnjy5Im03LS0NAghIITAw4cPYWVlpbkvMzMTO3bs0Bl+b2hXr17F5s2bNUVAY6lRo4bmc//oo4+0htxmZmYiLi5O64KLoSm5X7l37x4+/vhjqRn65JaLmXkZi2B5RPaTFmPr168f1q1bZ5TeR9mpe2QFBATgt99+Q+HChY2Sq+6h8S70nbAbyq5duzBr1iyd7c2aNZN6pV7tn3/+wZAhQ4xeAAMAR0dHJCUl6RzEnT59WvpBs6urq96Jyo3BysoKaWlpOtsvX76MYsWKSc2uXLkylixZgpYtWyIiIgLffPMNAODWrVs6c0bJ8Oo8Csbk5+eHqVOnokmTJjh48CAWL14M4OV3kLOzs5TM/fv3AwB69+6NBQsWwN7eXkqOPur32tPTE6dOnTLK56vP3bt39Z4UpKenS7uCvWrVKgCAh4cHRo4cqXNByRi8vb2lFVffhRLvu5qS33Fubm548eKFzvaMjAyjFGOUPFFTYr/m4+OjOTFu3Lixzv3W1tb4/vvvpbdDyYtqSmSvW7cOo0aNQnBwMHr37q3ZvnbtWkybNg3e3t5ScoGXoxmEEOjTpw8mT56sdWKuvnitHtkgS9OmTdGvXz/UqFEDV65c0cwN9vfff0stCjg6OmoVAF+lUqkwefJkafkAUKdOHVy7ds3oRTD1OWpMTAyaNWumNXJH/bl37NhRWr6S+5WPP/5YM2LCmNTvuUqlUvRiZl7GIlgeMXHiRMWynz59imXLlmHPnj2oVq0azM3Nte6XWQgC/u9kEYDmIE7mgbq6h8bbyD5ZKFKkCLZs2YJRo0Zpbd+6datRTlqbNWuGU6dOwcvLS3rWq7p164YxY8Zg06ZNUKlUyMrKwtGjRzFy5EipwzCBlwdxY8eOxdKlS41+FaVt27aYMmUKNm7cCODl71hCQgLGjh0r9QACAGbNmoX27dtjzpw5CA4ORvXq1QG8vNqkHiZpLE+fPtW6iipbWFgYunfvjq1bt2L8+PGaA8jNmzdL7wWrLsoAL4cMqFQqo5yQv3jxAh4eHkhNTVWsCFarVi1s374dgwcPBvB/36k//vij9BMlJfeps2bNwujRozF9+nRUrVpVZ58quyCq5Puu5Hfc7NmzMXjwYPzwww/w9fWFSqXCqVOnMHToUHz77bdSswFlT9SU2K/FxcVBCAEvLy+cOHFC6zVaWFigePHiWj38ZVHyopoS2V27dkW9evXw6aef4s8//8Ty5cuNdhFZfTLu6ekJf39/nUn4MzMzsXXrVqkX9n/44Qd89dVXSExMxK+//qrZv0VFReGTTz6Rlrt//34IIdC4cWP8+uuvWsM+LSws4O7uDhcXF2n5ADB48GCMGDECycnJevct1apVk5Kr3p96eHigS5cuRj1+A5Tdr5QtWxYTJkzA8ePH9b7nshZQy34x8+TJkyhatKiUnHxNiYnI6P0oNaFqo0aNXnsz1qSmy5cvF5UrVxYWFhbCwsJCVK5cWfz4449GyVbKqlWrhImJiWjRooX45ptvxDfffCNatmwpTE1NjTKB+PLly4Wbm5uYOHGi2Lx5s9i2bZvWTabnz5+Lbt26aSb3NDc3FyYmJuLTTz8VGRkZBs97dUECCwsLYWJiImxtbY26IMGDBw+Ev7+/cHR0FKampsLV1VWYm5uLhg0bikePHknNFkKIjIwM8e+//2pti4uL0zuBuIzsKVOmCBcXF63Jur/66iuxfPly6fn6PHnyRDx//lxqRmZmppg8ebKwt7fXTFLt4OAgpkyZIjIzM6VmFy1aVFy5ckVqxpscPXpU2NnZiQEDBggrKysxdOhQ0aRJE1GoUCFx6tQpqdlKThSefaJiJSbGV/J9V/I7ztHRUfPdrj6WUP+/Mb7n+/fvL9q1ayeeP38ubG1txfXr18WNGzdEjRo1pCzAkVv2a0obNWqU+OCDD0RSUpKws7MTV69eFUeOHBFeXl5i0qRJ+TY7MzNTfP3118LV1VXs3LlTmJubi7///ltq5utcvHhRjBo1ShQvXlyYm5sr0gZjiY+PF1lZWTrbU1JSxPz586VmvzoZvnqfYqx9ixDKnKsquV8x9gJqZDgqIRQa90M58uqEqpcvX4aXlxcmTJggfUJVpU2YMAHz58/H4MGDtSaIX7hwIYYOHYqpU6cq3EJ5/vrrL3z33Xe4ePEihBDw9vbGkCFDUKdOHenZJiYmr71P9hxNatevX0d0dDSysrJQo0YNlCtXTkrO6tWr3/mxr3Y7lmHfvn2a112zZk00adJEembjxo3x22+/wdHRUWt7Wloa2rVrh3379knNnzJlClavXo0pU6agf//+OH/+PLy8vLBx40bMnz8fx44dk5qvlHHjxmHFihWYPHky/P39IYTA0aNHMWnSJPTv3x/Tpk2Tlj1ixAiYm5tj5syZ0jLe5ty5c/j2228RFRWl+X0fM2YMqlatKjU3KCgICQkJGDRokN4JhNu2bSst++DBg2+8/8MPP5SWrabU+66mxHec0t/zaWlpaNGiBf7++288fPgQLi4uSE5ORr169bBjxw6DD81V+vVmd+XKFRw4cAB37tzRGfoue9GVFy9eoFevXli/fj2EEDAzM0NmZia6deuG8PBwqb3RlMxWO3r0KHr06IEbN27g3LlzUodDZpeeno4NGzZgxYoVOH78OAICAtC1a1e0a9dOaq+V7HPRZadSqWBlZQU3NzetBVFkEkJg9+7dWLFiBbZt2wZ7e3vcvXtXWt6NGzfeeL+7u7u0bED5c1Ul9iu5wd69e7F37169368yF2LI61gEyyOaNGmCmjVraiZUPXPmDLy8vBAZGYlu3bohPj7eKO0w5nAdtaJFi+L777/X6cb8yy+/YPDgwdLnVjl58iQ2bdqEhIQEnRWOZK6uQ2RMJiYmSE5O1pkr6M6dOyhVqpTeuXQMqWzZsli6dCk++ugjre+4S5cuoV69erh375607MzMTMyfPx8bN27U+3f+77//Sst2cXHBkiVLdFa/3LZtG0JCQqSu7jN48GCsWbMGZcuWhZ+fn85JuOyh7kqys7NTbAEMKtgK2onajz/+iIEDB6Jo0aIoUaKEzkrTMhd2yi42NhanT5+WflFNH2Nd0HudR48eITY2FpUqVdJahEWGY8eOYfny5di4cSPKlSuH7t27Y8yYMTh79qxRCnAmJiZvnK7E3NwcXbp0wdKlS6UN24uPj8fKlSsRHh6Of/75B926dUNwcDACAgKMUvhUykcffQRfX1/Fz1WVIowwZc+rJk+ejClTpsDPz0/vBb0tW7YYrS15DecEyyOUnFA1KysLU6dOxdy5c/Ho0SMAL08gRowYgfHjx7+xx5AhZGZmws/PT2e7r68vMjIypGavX78ePXv2RGBgICIiIhAYGIirV68iOTkZ7du3l5Kpb84QfYw5kbaxderUCX5+fjoLAMyZMwcnTpzApk2bpGVHR0fD3Nxc0yNi27ZtWLVqFby9vTFp0iSDH0B+99137/xYGXML5JYVvP755x+9k7lmZWVJL8BNnjwZy5cvR2hoKCZMmIDx48cjPj4eW7duld5L4d9//9W7SmDFihWlFt8A4Pz586hZsyaAlz01sjPWQVxWVhauXbum9wpmw4YNpeUquQAGANy/fx8rVqzAxYsXoVKp4O3tjT59+khdue1Vd+7c0fu+y5o3Bnj5HVa2bFmd77KFCxfi2rVrCAsLk5atpsTrzq5x48Z6J4qXydj7teymTp2KadOmYcyYMdIy3kWZMmVQpkwZRbK9vLyMPr/q5MmT8emnn6JMmTKwtbXVzPMpk7e3Nx4/foxu3brhr7/+0hS9jLGYk9qWLVswZswYjBo1CrVr14YQAidPnsTcuXMxceJEZGRkYOzYsfjqq68MOhfgs2fP8Ntvv2H58uWIjIxEUFAQ5s2bh08++QTjxo0zSgEw+4qB2al7wZUtW1bvqqGGcurUKSxbtkxnuzHOVZXsDbVmzRrMmTMHV69eBQCUL18eo0aNQo8ePaTmAsCSJUsQHh5ulKx8R5lRmJRTxYsXF9HR0UIIIWxtbTXz5ezatUuULl1aavbYsWNFsWLFxKJFi8SZM2dETEyM+OGHH0SxYsXEl19+KTVbCCEGDRokhg8frrN9xIgRIiQkRGp21apVxcKFC4UQ//e+Z2Vlif79+4uvv/5aSqa+uWKUmDdGCCEOHDggWrVqJcqUKSPKli0rWrduLQ4dOiQ9t2jRouLs2bM628+ePSuKFy8uNdvPz09s3rxZCCFEbGyssLS0FJ988okoW7aslHlbXp1DoFChQkKlUmnmalGpVKJQoULS5hbI/vumbz4JGxsbsWLFCinZ2fn6+oqffvpJCKH9HTdp0iTxwQcfSM328vISf/75pyb72rVrQgghFixYID755BOp2bVr1xaDBw/W2T5o0CBRp04dqdlKO3bsmPD09NT7uyf7O27Xrl0iMDBQxMXFSc3R5+TJk8LJyUmUKlVKtG/fXrRr106ULl1aFClSRERFRUnPP3XqlKhcubIi77uLi4veeceioqJEqVKlpGYr+brV9uzZI8aNGyf69u0revfurXWTydj7tezs7Ow03+fGMnz48He+ydSxY0cxY8YMne2zZ88WnTp1kppdtWpVYWJiIurUqSO+//57o8ztaW5uLnr06CF2796tNS+WmZmZ0eYjq1Wrlti5c6fO9p07d4patWoJIYTYsmWL8PLyMmhukSJFRIMGDcTSpUu15lY15mvPPgfY6+YFa9iwoc7cr4ai1LnqpEmThImJiahdu7Zo27ataNeundZNprlz5wobGxsxevRosW3bNrF161YxatQoYWNjI+bNmyc1WwghnJycNMeslDMsguURxp5QNbuSJUvqnQh969atwsXFRWq2EC9PBu3t7UXlypVF3759Rd++fUXlypWFvb29pkAm62DGxsZGc5JUpEgRTWHmwoULokSJEgbPE+Jl4eldbrL99NNPwszMTHTu3FksWLBAhIWFic6dOwtzc3Px888/S822srISly5d0tl+8eJFYWVlJTXb3t5es0OZOXOmCAwMFEIIceTIEekF559//ln4+/trvfZLly6JBg0aiLVr10rJjI+PF3FxcUKlUomTJ0+K+Ph4ze3WrVtSFiLQ5/fffxcODg5i5syZwsbGRsyZM0f069dPWFhYiN27d0vNtrGxETdu3BBCCFGiRAlNISI2NlbY29tLzT5w4IAoVKiQqFSpkujTp4/o27evqFSpkrC1tTVKwVkIIa5evSp27twpHj9+LIQQeif1laF69eri448/FhcuXBD37t0T9+/f17rJlH2SdGNPFP7BBx+IXr16iRcvXmi2vXjxQgQHB4sGDRpIzRbi5clx+/btxfHjx0VcXJzW33x8fLzUbEtLS3H16lWd7VevXhWWlpZSs5V83UIoe6Km5H6tT58+YvHixVIzXvXqIk52dnbCxsZG1KhRQ9SoUUMUKlRI2NvbS1/cSckLekIIcf78eTFu3Djh6ekpzM3NRVBQkPj5559Fenq6lLybN2+KqVOnijJlyggXFxcxYsQIER0dbdRJ+a2srMTFixd1tmc/foyLixPW1tYGzXV0dBQNGzYUy5YtEw8ePNBsN2YRbM+ePaJOnTpiz549Ii0tTaSlpYk9e/aIunXriu3bt4sjR46IypUriz59+kjJV+pctUSJEmLNmjXSnv9NPDw8xOrVq3W2h4eHCw8PD+n5o0ePFlOmTJGekx+xCJZHKLnyhaWlpbh8+bLO9kuXLkkvSAjx5tUpZa9UWbp0ac0BTLVq1cS6deuEEEJERkZKPzlWWsWKFfVexZg7d66oWLGi1Gw/Pz8xefJkne0TJ04UNWvWlJptZ2enWTGvSZMmIiwsTAghxI0bN6T/vnt5eWmuomV36tQpo+xMlbZz507RsGFDUahQIWFtbS38/f3Frl27pOeWL19eHD9+XAjxskChvnK/fv16UaxYMen5//zzj/jyyy9Fhw4dRPv27cX48ePFP//8Iz03JSVFNG7cWHOFWH3Vtk+fPiI0NFR6vo2Njd6CiDGEh4e/8SbT607S/v77b4OfmOlja2ur2PteuXJl8f333+ts/+6770SlSpWkZiv5uoVQ9kRNyf3a9OnTRdGiRUVwcLD49ttvxYIFC7Russ2dO1e0bt1aq/fLv//+K9q2bSu+/fZbqdlKXtB71ZEjR0RISIgoVqyYsLOzk563d+9e0b17d2FtbS1UKpUYNWqU3nMJQ/Px8RHBwcHi2bNnmm3Pnz8XwcHBwsfHRwjx8r0w9DHVkydPxNq1a0VAQICwtrYWHTp0EL/99ptRC4CVK1cWR48e1dl+5MgR4e3tLYQQIiIiQri6ukrJV+pcVcneUK+7sHPlyhXpF3aEEGLIkCGaAuyrHUNk93TN6zgnWB5hb2+PI0eOKDKhavXq1bFw4UKduYsWLlxolDkG9u/fLz3jdRo0aICIiAhUrVoVnTt3xtChQ7Fv3z5ERETgo48+kp6v1Hw5wMuJXFu3bq2zvU2bNvjyyy+lZk+YMAEdO3ZEbGysZu6UvXv34pdffpE6HxgA+Pn5YerUqWjSpAkOHjyIxYsXAwDi4uLg7OwsNTspKUnv/FeZmZm4ffu21GxA2RW8AKBZs2Zo1qyZ9JxXtW/fHnv37kWdOnUwdOhQfPLJJ1ixYgUSEhIwfPhw6fkuLi5SV4F8neHDh8Pc3BwJCQmoVKmSZnuXLl0wfPhwzJ07V2p+nTp1cO3aNb1zwclmjFVeX8fe3h4JCQk6c8ElJibCzs5Oev5HH32EM2fOKPK+h4aGYtCgQbh7967Wd/vcuXOlzwem5OsGgOfPn6N+/fqKZCu5X1u2bBlsbW1x8OBBnZVRVSqVlLkus5s7dy52796NwoULa7YVLlwYU6dORWBgIEaMGCEtu0qVKtiwYYPO/nP9+vVGW6VRrVChQrC2toaFhQUePnwoPU89992DBw/w888/Y+XKlfj2229RpUqV167gaAg//PAD2rRpg9KlS6NatWpQqVQ4e/YsMjMz8eeffwJ4eXwbEhJi0FwrKyt0794d3bt3R2xsLFatWoUhQ4YgIyMD06ZNQ69evdC4cWOpE+PHxsbqnS/Y3t4e169fBwCUK1dO2oJiSp2r9uvXD+vWrcOECROk5uhTtmxZbNy4Uee8aMOGDUZZAOPs2bOaBX7Onz+vdZ8xJ+jPi7g6JL3VwYMH0bJlS7i5uaFevXpQqVSIjIxEYmIiduzYgQYNGijdRGn+/fdfPH36FC4uLsjKysK3336LI0eOoGzZspgwYYLWQZWhHT9+HN26dcONGzd0JnBWqVTIzMyUlg28/GIfNWoUPv/8c63tS5cuxbfffquZAFKW7du3Y/r06YiJiYG1tTWqVauGiRMn4sMPP5Sae/bsWXTv3h0JCQkIDQ3FxIkTAbxcSS81NRXr1q2Tlt26dWskJCRgxYoV8PX1hUqlwqlTp9C/f3+4urq+dtJTQ8gtK3idOnVKM1l4pUqV4Ovra5Tc7I4fP47IyEiULVtWZ9VGGe7fv48TJ07oLT727NlTWm6JEiWwa9cuVK9eXWslp7i4OFStWlWzEIosW7ZswVdffYVRo0ahatWqMDc317pf5kTlCQkJb7zfzc1NWvaQIUOwZcsWfPvtt6hfvz5UKhWOHDmCUaNGoWPHjtKLQSkpKQgODkbt2rVRpUoVnfdd9u/84sWLMW3aNNy6dQsA4OHhgUmTJkn9XQeUf91jxoyBra2tIidqSu7XlGZnZ4dt27bpLEawb98+tG3bVmpB6Pfff0fHjh3RrVs3vRf02rVrJy0beFnkXLduHX7++WdcuXIFDRs2RLdu3fDxxx8bdREOtZiYGKxcuTJHCwK9j0ePHmHt2rW4cuUKhBCoWLEiunXrZpSLDNllZWVh586dWLlyJf744w/Y2toiNTVVWt4HH3wAOzs7rFmzBsWKFQMA3L17Fz179kR6ejoOHTqEPXv2ICQkRGcxHFnu378PR0dHqRlDhw7FmjVrUK1aNVSrVk3nu13mSte//vorunTpgiZNmsDf31+zP9+7dy82btwobRE1+u9YBMtD9u7di/nz52tOECtWrIhhw4YZpTfYrVu38MMPP+DSpUsQQsDb2xshISFwcXGRktehQweEh4fD3t4eHTp0eONjf/vtNyltUJqPjw/Kly+PyZMn6132VvYBzOLFizFs2DD06dNH60QtPDwcCxYs0CmO5XdPnz6Fqampzs7VkO7evYvg4GDs3LlTk5ORkYFmzZohPDwcxYsXl5bt7u6OkJAQxVbwunnzJj755BMcPXpUc8B0//591K9fH7/88gtcXV0VaZdsf/zxB7p374709HTY2dnpFB9lrhBpZ2eH6OholCtXTqsIdvLkSTRv3lzqwToAvSsLq1QqCCGkF/pNTEzeeJVUZvbz588xatQoLFmyRLPCsbm5OQYOHIiZM2fC0tJSWjbw8sS8R48eek/+jXGBRe3u3buwtraGra2tUfKUft1Knqi9jjH2a0rr2bMnDh48iLlz56Ju3boAXl7oGDVqFBo2bIjVq1dLzVfqgl69evVw4sQJVK1aFd27d0e3bt2MstKzWkZGBg4cOIDY2FhNAerWrVuwt7c32t98bnL37l389NNPCA0NlZZx+fJltG3bFnFxcXB1dYVKpUJCQgK8vLywbds2lC9fHlu3bsXDhw+lrCY4a9YseHh4oEuXLgCAzp0749dff0WJEiWwY8cOaaOHAgICXnufSqXCvn37pOSqRUVFac7P1efII0aMQI0aNaTm0n/DIlgesXDhQgwfPhydOnVCvXr1ALzciW/evBnz5s3DoEGDFG6hYfXu3Rvfffcd7Ozs0Lt37zc+dtWqVdLasWPHDpiamuoM0dq9ezcyMzMRFBQkLbtQoUKKDt0AXvbUmDt3Li5evAgAqFSpEkaNGoW2bdsq1qaC4MqVK1rvefny5aVn2tvbIyYmxujLuKsFBgYiLS0Nq1evRoUKFQC8PKDr06cPChUqhN27dxs8MysrC3///TeqVq0K4OVS08+fP9fcb2pqioEDB+ot1hhK+fLl0aJFC0yfPh02NjbScvRp2bIlatasiW+++QZ2dnY4e/Ys3N3d0bVrV2RlZWHz5s1S82/cuPHG+93d3aVlnzlzRuvnFy9e4PTp05g3bx6mTZv21osvhvD48WPExsZCCIGyZcsa7fP38PBAq1atMGHCBOlD4XITpV+30idqSunTp88b71+5cqXU/MePH2PkyJFYuXKlZroBMzMz9O3bF3PmzEGhQoWk5ivlyy+/RPfu3VG5cmWjZ9+4cQPNmzdHQkICnj17hitXrsDLywvDhg3Ds2fPNMNxZYmNjUVYWJim04C3tzeGDBmCMmXKSM1Vu3//PjZv3ozY2FiMGjUKTk5OiI6OhrOzs/RCpBACu3bt0uoF17RpU6nHMWpeXl5Yu3Yt6tevj4iICHTu3BkbNmzAxo0bkZCQIOU4rqALCAh44wW9/LpfMQQWwfKIUqVKYdy4cTrFrh9++EFrWIGhnD17FlWqVIGJiclbx+7LHLKitGrVqmHmzJlo0aKF1vadO3dizJgxOidShtS4cWOMHj0azZs3l5aRmzg5OeHKlSsoWrQoChcu/MYvdZm9YzIzMzF//nzNTjt7UUR2dnbqr2Zjjenv27cvatWqhQEDBhgl71XW1taIjIzUuXIWHR0Nf39/PHnyxOCZ69atw9KlSzXz1NjZ2cHR0RFmZi+ny0xJSUFYWBj69u1r8Gy1QoUK4dy5c4oUHy9cuIBGjRrB19cX+/btQ5s2bfD333/j33//xdGjR412wpCbbN++HXPmzMGBAweUboo0dnZ2iImJUeTzvX37NkaOHIm9e/fizp07OkP9ZfbGUvJ1K03J/dqrw4FevHiB8+fP4/79+2jcuLHRevOnp6drFZ2NWfx6/vy53uHuModdvysZF8DatWsHOzs7rFixAkWKFNH0Mj548CD69esndTqNXbt2oU2bNvDx8YG/vz+EEIiMjMSZM2fwxx9/oGnTptKygZfnT02aNIGDgwPi4+Nx+fJleHl5YcKECbhx4wbWrFkjNV9J1tbWuHLlClxdXTF06FA8ffoUS5cuxZUrV1CnTh3cu3dP6SYaRFpammbutbS0tDc+Vt8cbYb06ry1L168QExMDM6fP4/g4GAsWLBAan5exonx84i0tDS9xZDAwEApw5d8fHyQnJyM4sWLw8fHRzNE5VXGGjqhVLfqq1ev6p28tGLFirh27Zq0XODlXB0jRoxAcnKy0efLUcL8+fM18zXInhPnTSZPnozly5cjNDQUEyZMwPjx4xEfH4+tW7caZXL4NWvWYM6cOZqDxPLly2PUqFFSuq5np57n7vjx43p/32RPXuzm5qZ3UYCMjAxpV05XrVqlU/Q7ePCg5mRgyZIlWLt2rdQiWLNmzXDq1ClFimDe3t44e/YsFi9eDFNTU6Snp6NDhw744osvULJkSSmZv//+O4KCgmBubv7WOe6MMR/bq8qXL4+TJ08a/Hlz0xD/Dh06YP/+/YoUg3r16oWEhARMmDBB7zB/mZR83UpTcr+2ZcsWnW1ZWVkICQkx6vdeoUKF4OTkBJVKZbQC2NWrV9GnTx9ERkZqbTfGkO93JaMvxJEjR3D06FFYWFhobXd3d8c///xj8Lzsxo4di+HDh2PmzJk628eMGSO9CBYaGopevXph9uzZWnOQBQUFoVu3bgbP++677/DZZ5/BysrqrXOtyT6OK1y4MBITE+Hq6oqdO3di6tSpAF7+jhn6d13JfWrhwoWRlJSE4sWLw9HRUe9+zFh/4/Pnz9e7fdKkSdLndc3rWATLI9q0aYMtW7Zg1KhRWtu3bdumdwW//youLk4zqWJcXJzBnz8nXu1W3bRpU9jZ2WH27Nl4+vQplixZIi3bwcEB169fh4eHh9b2a9euST+I6tixIwDtoQSy58tRsjeWerU29Rw5zZo1Q4kSJQya8S5+/vln/Pjjj2jZsiUmT56MTz75BGXKlEG1atVw/PhxqQcR8+bNw4QJEzBo0CDNFcyjR49iwIABSElJkbpSodIreM2ePRuDBw/GDz/8oLUowNChQ/Htt99Kybx48eIbV+j68MMPpayEmr3407JlS4waNQoXLlzQW3yUXQgqUaIEJk+eLDUju3bt2mkusLxpUmjZB4+vXr0VQiApKQmTJk2SsqKTg4OD5vvU3t5e0VWbypcvj3HjxuHIkSNGL3gfOXIEhw8f1qxmZUxKvO7cUvxUcr+mj4mJCYYPH45GjRph9OjRUrOysrIwdepUzJ07V3NSaGdnhxEjRmD8+PFSh4n16tULZmZm+PPPP41e9FVSVlaW3u/vmzdvSp+c/uLFi9i4caPO9j59+hjlAuvJkyexdOlSne2lSpVCcnKywfPmz5+P7t27w8rK6rUFEcA4x3EdOnRAt27dUK5cOaSmpmqmjImJiTH41C7Z96nGXuRh3759cHJyAgDs37/fqNnv6tNPP0Xt2rWlHT/nByyC5WLZK/qVKlXCtGnTcODAAa05wY4ePSpleefsc7HcuHED9evX1wwRUsvIyEBkZKTUeVuAl5PJ+vn54cyZMyhSpIhme/v27dGvXz+p2W3atMGwYcOwZcsWzdXja9euYcSIEdJPTpUoPmbvjTV//nxFDtjMzMwwcOBAzZxYxqbueQcAtra2ePDgAQBo5pKR6fvvv8fixYu1Vklr27YtKleujEmTJkktginx+/ZqoTU9PR116tTRfNdkZGTAzMwMffr0kbKKVkpKilZP0uvXr2t9x5ibmyM9Pd3gufpey5QpU3S2yS4EeXp64tNPP8Wnn36qmYdNtuzDgV4dGmRM+q7eCiHg6uqK9evXGzwv+9yV4eHhBn/+nFi+fLliBW9XV1cpPU/ehRKvW8kTteyU3K+9TmxsrOail0zjx4/HihUrMHPmTK2LS5MmTcLTp08xbdo0adkxMTGIiopCxYoVpWXkRk2bNkVYWBiWLVsG4OXf16NHjzBx4kSd6UUMrVixYoiJidG5mBETEyN1cSE1KysrvUPkLl++rOlcYEjZj92U7rQwf/58eHh4IDExEbNnz9YcXyUlJSEkJMSgWdn3qTLnhtYn+6IWshe4eF/Hjh2DlZWV0s3I1VgEy8VeregXLlwYFy5cwIULFzTbHB0dsXLlSnz11VfS2hEQEKDp9pndgwcPEBAQIL2rp5LdqufMmYPmzZujYsWKKF26NICXV7IaNGggvbouu7ioj7o3FvDyCqZS6tSpg9OnTyvyHpQuXRpJSUlwc3ND2bJlsXv3btSsWRMnT56UvmpbUlIS6tevr7O9fv36SEpKkpqtBCWHvQKAs7MzLl++rClwv3qAevHiRSm9EZUs/mQ3ePBg/PLLL5g2bRpq1KiBHj16oEuXLtKGQuYmr169NTExQbFixVC2bFmdCz6Gpp4H6dVl49PS0tCuXTvpE9kqeaIUFhaGsWPHYunSpTo9rGVT4nUreaKWnZL7tVdXw1P3uty+fbvWMYcsq1evxvLly7UuXFavXh2lSpVCSEiI1CKYt7c3UlJSpD1/bjV//nwEBATA29sbT58+Rbdu3XD16lUULVoUv/zyi9Ts/v3747PPPsP169e1VjafNWuWlE4Dr2rbti2mTJmi6Y2mXqFx7NixmhEexpKZmYlz587B3d0dhQsXlp5nbm6OkSNH6mwfNmyY9Gyl7Ny5E7a2tvjggw8AvJyr+8cff4S3tzd++OEH6e/7qz2M1d+vp06dUuwCR17BifHprUxMTHD79m2dE8QrV67Az8/vrZMC/ldOTk44cuQIvL29YWdnp5lg88iRI+jYsSNu374tNV8IgYiICJw5c0azvHXDhg2lZOWm+XKio6Nhbm6uuXq8bds2rFq1Ct7e3pg0aZJOUdKQNm3apJnXwdfXV2foqcz50MaOHQt7e3t8+eWX2Lx5Mz755BN4eHggISFB7zwThlSlShV069ZNZwje1KlTsWHDBpw7d05attIreCmhT58+uHz5Mo4ePapznxAC/v7+qFixotFf+/3793UKJDJduXIFP//8M9avX4/r168jICAAn376qVaPRFlOnDiBAwcO6J00et68edLzlWBiYqIZEprdnTt3UKpUKb1z4+UXhQsXxuPHj5GRkQEbGxudIYnGWnikoFFyv/bqqpjqgnPjxo3Rp08f6UVnKysrnD17VmeV5cuXL8PHx0fKoitq+/btw1dffYXp06frHYIre9LsdyFrZegnT57gl19+QXR0NLKyslCzZk10794d1tbWBs15lRACYWFhmDt3rmbRMBcXF4waNQpDhw6Vmg28vJjRokUL/P3333j48CFcXFyQnJyMevXqYceOHVKnUhk2bBiqVq2Kvn37IjMzEw0bNsSxY8dgY2ODP//8E40aNZKWrfbTTz9h6dKluH79Oo4dOwZ3d3eEhYXB09NT2sryqamp+Prrr7F//369xxIy9ytVq1bFrFmz0KJFC5w7dw5+fn4YMWIE9u3bh0qVKkm/+NG7d2+tn7N/vwYGBkrNzutYBKPXUleXt23bhubNm2tdLczMzMTZs2dRoUIF7Ny5U2o7unTpAgcHByxbtgx2dnY4e/YsihUrhrZt28LNzU3Rq6tqVatWxY4dO+Dq6vqfnif7ydGb5qkwxmSLtWrV0ly5un79Ory9vdGhQwecPHkSLVu2lNqLR99rlz0f2uscP34ckZGRKFu2rPTC46+//oouXbqgSZMm8Pf311zB3Lt3LzZu3KizypYh5ZYVvO7cuaP3IEZG4TM2NhY1a9ZExYoVMXLkSJQvXx4qlQqXLl3Ct99+i8uXLyMqKsrgc1lkN2vWLHh4eKBLly4AgI8//hi//vorSpYsiR07dqB69erSsvU5fvw4Bg4ciLNnz0r/O5s+fTq++uorVKhQAc7OzlrDE1UqlfQeUbGxsQgLC8PFixehUqlQqVIlDB06VNrE6eqVln18fLTmFAFe7lN37tyJpUuXIj4+3uDZoaGh+Oabb1CoUCGdnjmvkll8XL169Rvvl90z6ObNm/j999/1rpAou+iq5Inaq4y5X1NanTp1UKdOHZ1JwwcPHoyTJ0/i+PHj0rLVxzL6hl7nlonxs19czm8ePnwI4OVrTE9PR1RUlLSL2K/at2+fVgGwSZMm0jNLly6NrVu3ws/PD1u3bsUXX3yB/fv3Y82aNdi/f7/eC36GtHjxYnz99dcYNmwYpk2bhvPnz8PLywvh4eFYvXq1tPmzgoKCEBsbi759++ocSwBy9yu2trY4f/48PDw8MGnSJJw/fx6bN29GdHQ0WrRoIWUeODIMFsHyCCEENm/e/NqDJxknqOrq8urVq9G5c2etqzcWFhbw8PBA//79UbRoUYNnZ3fr1i0EBATA1NQUV69ehZ+fn6Zb9aFDh4wyxv9t8uNBhIODA6Kjo1GmTBnMmjUL+/btw65du3D06FF07doViYmJ0rJv3LjxxvuVGCZpLFFRUZg/fz4uXrwIIQS8vb0xYsQI1KhRw+htyb6Cl+zJi6OiohAcHKx53dnJPFk4ceIEevXqhUuXLmkOnIQQqFixIlatWoU6depIyVXz8vLC2rVrUb9+fURERKBz587YsGEDNm7ciISEBOzevVtqvtqJEyewbt06bNiwAQ8ePEDr1q2xYcMGqZnOzs6YNWuWIkOvd+3ahTZt2sDHx0czT1BkZCTOnDmDP/74Q8oKYiYmJlq/Y6+ytrbG999//9Zeme8jICAAW7ZsgaOjo07PnOyMUXxUyt69e9GmTRt4enri8uXLqFKlCuLj4yGEQM2aNaW/biVP1HKDu3fv4vLly1CpVChfvryU+ZH0OXjwIFq2bAk3NzfUq1cPKpUKkZGRSExMxI4dO9CgQQOp2W+SG+YTOnLkCGrVqmXQYbGvG8mgUqlgZWWFsmXLwtPT02B57+LMmTOoWbNmrig8ymJlZYVr166hdOnS+Oyzz2BjY4OwsDDExcWhevXq0kfueHt7Y/r06WjXrp3WedH58+fRqFEjaUOD7ezscOTIEaNfNAS0Ryt98MEH6NmzJz777DPEx8fD29sbjx8/Nko7oqKiNBf0vL29FTlnyGs4J1geMXToUCxbtgwBAQF6D55kUPew8vDwwKhRo2BjYyM9Ux8XFxfExMRg/fr1iIqKQlZWFvr27WuUbtUFmRBCU2zds2cPWrVqBeDlxMYy57h4+PAhrly5ghcvXqB27drSi6xqbxt+qib7qrmvry/Wrl0rNeNdGXMFr969e6N8+fJYsWKF0b7jAKB27dq4cOECTp8+jatXrwIAypUrZ7QDiKSkJE0P0j///BOdO3dGYGAgPDw8pBfg1MMg161bh/j4eAQEBGDmzJno0KGD9BW8gJe/X/7+/tJz9FEPt351GNjYsWMxZswYKUWwuLg4CCHg5eWFEydOaBUBLCwsULx4cZiamho8F4CmN0CXLl1yzWpWT5480Rn6KXN42Lhx4zBixAhMmTIFdnZ2+PXXX1G8eHF0794dzZs3l5arduTIEaOfqOWG/Vp6ejoGDx6MNWvWaI4pTE1N0bNnT3z//ffSjy0//PBDXLlyBT/88AMuXboEIQQ6dOiAkJAQuLi4SM9W0rv0fFTPZWRI7dq10/Tezy57j/4PPvgAW7duNcpcVcb0ao9DtewFwIYNG0r5rnd2dsaFCxdQsmRJ7Ny5E4sWLQIAPH78WNq+Jbu4uDi9x06WlpZSFhlSq1ixotRhzW/i7++P0NBQ+Pv748SJE5qLh1euXNHMJS3TnTt30LVrVxw4cACOjo4QQmjm7F6/fr3RLjbkSYLyhMKFC4vt27crkn39+nVx5coVne1XrlwRcXFxxm9QLmRraytiY2MN/ryPHj0S27dvF4sXLxYLFizQuskWEBAgevbsKdasWSPMzc3F1atXhRBCHDhwQLi7u0vJPHPmjHBxcREmJiZCpVIJBwcHERERISXrVSqVSuumbsOr22T4559/xIgRI8SDBw907rt//74YOXKkSE5OlpL9Ntu3bxdFixaVnmNra6v5HVPKs2fPxKVLl8SLFy+MllmyZElx9OhRIYQQ5cuXFxs3bhRCCHHp0iVhZ2cnNVulUolatWqJ+fPni6SkJKlZ+syaNUsMHTrU6LlCCGFpaal3v3b58mVhaWmpQIvkMzExEbdv31a0DY8ePRJffPGFKFasmDAxMdG5yWRrayuuXbsmhBDC0dFRnD9/XgghRExMjLR9WnZ+fn7i2LFj0nOyU3K/pvbZZ58JLy8vsWPHDvHgwQPx4MEDsX37dlGmTBkxYMAAqdm5RXp6urh48aI4c+aM1k2mPXv2CBsbG1G5cmVhZmYmfHx8hKOjo3BwcBABAQHSs+vUqSP27Nkj0tLSRFpamtizZ4+oW7eu2L59uzhy5IioXLmy6NOnj9R2ZBcTEyP9d10IITw8PEShQoWESqUSTk5OonDhwkKlUolChQoJZ2dnoVKpRJkyZURCQoLBsydOnCgcHBxExYoVhZubm3j69KkQQogVK1aIunXrGjzvVZUqVRJbt24VQmifFy1YsEDUrFlTWu6JEydE48aNxYEDB0RKSorme0Z9k+nGjRuiVatWolq1amL58uWa7cOGDRODBw+Wmi2EEJ07dxa+vr7iwoULmm1///238PPzE127dpWen5exCJZHeHh4iIsXLyqS3bBhQxEeHq6z/aeffhIffvih9Pzp06eLFStW6GxfsWKFmDlzpvT8dyGjCBYdHS1KlCgh7O3thampqShWrJhmR+rp6WnQLH3OnDkjqlSpIuzt7cWkSZM02wcNGiQ++eQTKZlBQUGibt264ujRoyIqKkq0adNGVKhQQUrW28gqbOozYsQI0b9//9fe//nnn4vRo0dLbcPw4cO1bsOGDRNdunQRtra24osvvpCaLYQQbdu2FZs3b5aeo096erro06ePMDU1FaampprPffDgwWLGjBlSs7/44gvh7u4umjRpIooUKSIePnwohBBi/fr1okaNGlKzL1++LPX53yYzM1M0b95ceHl5iVatWon27dtr3WQqXbq0puCY3YYNG4Srq6vUbKX2aSqVSvEiWEhIiKhUqZLYtGmTsLa2FitXrhTffPONKF26tFi7dq3UbGdnZ/H3338LIYTw9vYW27ZtE0K8PDkuVKiQ1GwhlD1RUzPmfk2tSJEiYv/+/Trb9+3bJ/UCy5UrV0TXrl1fe3Hpk08+kf5e3LlzR7Rs2VJvwVd2QaZWrVpiwoQJQoj/+9wfPnwo2rRpIxYtWiQ1u3LlypqLO9kdOXJEeHt7CyGEiIiIkP5dm52ximDr1q0TjRo10hTchRDi6tWronHjxmL9+vUiMTFR+Pv7i44dO0rJ37Rpk5g3b55ITEzUbAsPD9cUp2RauXKlKFWqlFi/fr0oVKiQ+OWXX8TUqVM1/y/LlStXhK+vr87fl+wi/4sXL0R4eLi4deuWtIy3sbe3FydOnNDZ/tdffwkHBwfjNygPYREsjwgPDxddu3YVjx8/Nnq2nZ2d3h4aV69eNcofmLu7u96d6fHjx4WHh4f0/Hch48Dyww8/FP379xcZGRma509ISBANGzYUv/76q0GzXpWRkSEOHDggUlNTde578uSJeP78uZTcYsWKiZMnT2p+TklJESYmJprCgDEZ82ShcuXK4vDhw6+9/+jRo5oDR1kaNWqkdWvcuLHo0qWLWLp0qVF6Rt29e1e0aNFCTJo0SWzevFls27ZN6ybTkCFDhK+vrzh8+LAoVKiQ5nPftm2b8PHxkZr9/PlzMWfOHDFkyBARHR2t2T5//nzx448/Ss0WQoh79+6JH3/8UYwdO1bz9x4VFSVu3rwpPTskJERYWlqK5s2bi+DgYNGrVy+tm0yTJ08Wjo6OYubMmeLQoUPi8OHDYsaMGcLR0VF88803UrOV2qepVCpx584dac//LlxdXTUFkezHFmvWrBFBQUFSs9u2bSuWLVsmhBBi1KhRomzZsmLq1KmiZs2a4qOPPpKaLYRyJ2rZKVEEs7a21uqloHb+/HlhY2MjLbd///5i1KhRr71/9OjR0nuidevWTdSvX1+cOHFCFCpUSOzevVv89NNPokKFCuLPP/+Umq1kz0crKytx7tw5ne1nz54VVlZWQggh4uPjhbW1tcEyXz1mePUWFhZmlL8zLy8vcfr0aZ3t0dHRmgvYR48eFSVKlJDeltepUqWKlJ5oQgixbNky4ebmpulpWrp0aa0eUjLUqlVL1KtXT6xfv17s379fHDhwQOsmk7W1tYiPj5ea8Sa2trav/X2TPZogr2MRLI9IT08XzZo1E7a2tqJKlSqiRo0aWjeZ7O3ttU7O1E6dOiVsbW2lZgvxctjK9evXdbbHxsbmmmErMg4sHRwcxKVLlzT/rz6IPH78uFF6R73ufZdJX08FW1tbo7dDnWuskwUbGxtx48aN195/48YNqScLucG2bduEvb29zlAdY5wgurm5aYYpZf/cr169mq8PIs6cOSOKFi0qypYtK8zMzDSv+6uvvhI9evSQnm9rayv9RPB1srKyxLx580SpUqU0v2elSpUSYWFhIisrS2q2Uvs0lUolWrRoodPjzpg98AoVKqQ5YShVqpT466+/hBAvp12Q3RsrNjZWMwQtPT1dDBw4UFStWlW0b9/eKCcxSp6oqSlRBGvcuLH4+OOPxZMnTzTbHj9+LD7++GOpxccKFSro7SGhdurUKVG+fHlp+UIIUaJECc3vuJ2dnab37bZt24S/v7/UbCV7Pvr7+4vmzZtrFd3v3LkjmjdvLho0aCCEeNkTrFy5cgbL1HfsoO8mm7W1tdbFXLUTJ05oin5xcXFG6X36OjK+B9S9otRTK9y9e9doPY+tra0150vG1qhRI7FlyxZFsoUQok2bNqJhw4bin3/+0Wy7efOm+PDDD0W7du0Ua1dewInx84hevXohKioKn376qVEnjQaABg0aYMaMGfjll180EytmZmZixowZUibUfJWrqyuOHj2qs5LM0aNHpU9q+q6WLl0KZ2dngz6nubm55nN2dnZGQkICKlWqBAcHByQkJBg0S5+qVavi+vXrRl3BR6VS4eHDh7CysgLwf8uIP3z4UGtVG5mTJyvB2toa8fHxcHNz03t/fHy80RaBUGoFryFDhqBHjx6YMGGCwf+W3ubu3bt6V5lNT083ynft5cuX8f3332tW9qlYsSIGDx6MChUqSM0dPnw4evfujdmzZ2tNhB8UFIRu3bpJzQZerqpUpkwZ6Tn6qFQqDB8+HMOHD8fDhw8BwCiLAQDK7tPs7OwUXVDGy8sL8fHxcHd3h7e3NzZu3IjatWvjjz/+gKOjo/RsNRsbG82k0cZy/vx5nD59WvrfdW6zYMECNG/eHKVLl0b16tWhUqkQExMDKysr7Nq1S1rujRs33rh6eNGiRaWucg283Ieo2+Dk5IS7d++ifPnyqFq1KqKjo6Vm161bF0ePHoW3tzdatmyJESNG4Ny5c/jtt99Qt25dqdkrVqxA27ZtUbp0abi6ukKlUiEhIQFeXl7Ytm0bAODRo0eYMGGCwTLViy4oLSAgAJ9//jmWL1+umST+9OnTGDhwIBo3bgwAOHfunNFXx5TNzMwMAwcOxMWLFwHAaItaAYCfnx8SExMV+W4NCQnBiBEjcPPmTfj6+qJQoUJa91erVk1q/sKFC9G2bVt4eHho/a1VrVo11yyylWspXYWjd2NjY/PG4VIy/f3336JIkSKiTJkymmEqZcqUEcWKFdPb3dnQZs6cKYoUKSJWrlwp4uPjRXx8vFixYoUoUqSImD59uvT8PXv2iHHjxom+ffuK3r17a91katq0qfj555+FEC/nhKpdu7ZYu3ataNasmahdu7bUbCGE2LVrl/Dx8RF//PGHuHXrllHmL1H3+tE3VMTYw0bs7OyM1gOtRYsWol+/fq+9v2/fvtKHCj169Ej07t1bmJqaaq6YmpmZiT59+oj09HSp2UJoD90wtoYNG4rvvvtO0w715/7FF1+IZs2aSc3etGmTMDMzE3Xr1tXMx1avXj1hZmamd84qQ7K3t9e859mvDMfHxxull+3KlStF586djfL7pfb48WOxbds2kZaWpnPfgwcPxLZt2zSTCcui1D4tN8wJNm/ePM3CLvv27RPW1tbCwsJCmJiYiLCwMKnZnp6eIiUlRWf7vXv3jDLPZoMGDYy20MvrGHO/lt3jx4/FsmXLRGhoqBg+fLj48ccfpU/v4ezsLPbu3fva+/fs2SOcnZ2ltsHPz0/s3LlTCPFyOG6PHj3EzZs3xejRo4WXl5fUbKV7PmZlZYn//e9/YsGCBSIsLEzs3LlTZGZmSs89ePCg3ikcMjIyxMGDB6XnJyUliSZNmgiVSiUsLCw0329NmzbVLHC0b98+sWvXLulteR1ZPUKV6hW1ceNG4e3tLVatWiVOnTpl1AUoXjd6wZjnK0IIsXv3bvHdd9+JBQsWKL6fyStUQryyfi3lShUrVsTGjRulV5Rf59atW1i4cCHOnDkDa2trVKtWDYMGDYKTk5P0bCEExo4di++++06zxLOVlRXGjBmDr7/+Wmr25MmTMWXKFPj5+aFkyZI6vUK2bNkiLfvUqVN4+PAhAgICcPfuXQQHB+PIkSMoW7YsVq1aJX2ZdRMTE83/Z3/d4v/3zsrMzDR45sGDB9/pcTKWHS9cuLDW67x//z7s7e213gcA+Pfffw2evX//fjRt2hTDhg3DqFGjND2hbt++jdmzZ2PBggXYvXu35iqiDJ9//jn27NmDhQsXwt/fHwBw5MgRDBkyBE2bNsXixYulZQNAcHAwGjRogH79+knN0ScyMhLNmzdH9+7dER4ejs8//xx///03jh07hoMHD8LX11datpeXFz799FNMmTJFa/vEiRPx008/4fr169KynZ2dsXPnTtSoUQN2dnY4c+YMvLy8sHv3bvTt21d6L4kaNWogNjYWQgh4eHjA3Nxc634ZPSUWLFiA33//HXv37tV7f5MmTdC+fXt88cUXBs9WU2qfZmpqiqSkpDf2jjG2hIQEnDp1CmXKlDHKPi05OVnn9d++fRtubm549uyZ1PxNmzZh0qRJGDVqFKpWrarz+y7j+E7J/ZrSOnfujBcvXrz2OK1t27awsLDApk2bpLXh559/xosXL9CrVy+cPn0azZo1Q2pqKiwsLBAeHo4uXbpIyy6oXvc9l5qaiuLFi0s5dtXn0qVLuHLlCoQQqFixYq7qAZp9f29ImzZtwtixYzF8+HCj9op69fsMeHneIvN8Re3GjRtvvN/d3V1aNv03LILlEdu3b8f333+PJUuWwMPDQ+nmKOLRo0e4ePEirK2tUa5cOVhaWkrPLFmyJGbPno0ePXpIz8pt3laQklGIUtLq1avf6XHBwcFS8pcuXYqhQ4fixYsXsLe3h0qlwoMHD2Bubo758+dj4MCBUnLVihYtis2bN6NRo0Za2/fv34/OnTvj7t27UvOnTZuGsLAwtGzZUu8J4pAhQ6Tmnzt3Dt9++y2ioqKQlZWFmjVrYsyYMahatarUXBsbG5w9exZly5bV2n716lVUr14djx8/lpb92Wef4e7du9i4cSOcnJxw9uxZmJqaol27dmjYsCHCwsKkZQMvLzK8ycSJEw2eWbt2bUyYMAGtW7fWe/+ff/6JKVOm4MSJEwbPfpWx92mvKwLld7///jsAoF27dli9ejUcHBw092VmZmLv3r2IiIjA5cuXpbZDiRM1pfdrADBjxgw4OzujT58+WttXrlyJu3fvYsyYMVJyT58+jXr16qFVq1YYPXq0pghx6dIlzJ49G9u3b0dkZCRq1qwpJV+fx48f49KlS3Bzc5M+XMzLywsnT55EkSJFtLbfv38fNWvWlHqBBXg5FPTgwYNISEjQFPvVZO7PTUxMcPv2bZ2pHK5cuQI/Pz+tqTUKKllFMKWKUQW5EDVkyBCULVtW529q4cKFuHbtmvTjuLyMRbA8onDhwnj8+DEyMjJgY2Ojc4JojKt4jx8/1rszM1bvtGvXriE2NhYNGzaEtbW15ktVpiJFiuDEiROKzVtTUEVHR8Pc3FxTgNi2bRtWrVoFb29vTJo0CRYWFgq3UI5//vkHGzduxLVr1yCEQPny5dGpUyeULl1aeraNjQ2ioqJQqVIlre1///03ateujfT0dKn5b5ofQ6VSST9gV0qLFi3w8ccfo3fv3lrbV61ahfXr10udMyctLQ0tWrTA33//jYcPH8LFxQXJycmoV68eduzYoXMVVym//PIL2rRpY5D2FC5cGGfOnHnt/HsJCQmoXr067t2795+zcpuDBw/C398fZmb/Nx3s06dPNXMwyvLdd9+982NlnByrT8zUJ2PZmZubw8PDA3PnzkWrVq0Mnp1dQT1R8/DwwLp161C/fn2t7X/99Re6du2KuLg4adl//vkn+vTpg9TUVK3tRYoUwfLly9GmTRtp2UpTsufj6dOn0aJFCzx+/Bjp6elwcnJCSkoKbGxsULx4cSn78w4dOgB4ebzYvHlzrYsKmZmZOHv2LCpUqICdO3caPPtVN2/exO+//673nGnevHnS899GVhGsoH7H/fTTT1iyZAni4uJw7NgxuLu7IywsDJ6enmjbtq3U7FKlSuH333/XGbEQHR2NNm3a4ObNm1Lz8zJOjJ9HKFnJvXv3Lnr37o3//e9/eu+X3bU4NTUVnTt3xv79+6FSqXD16lV4eXmhX79+cHR0xNy5c6Vl9+vXD+vWrTPo5J3v6vbt2xg5ciT27t2LO3fu6By8G6NL9+HDh7F06VJcv34dmzZtQqlSpfDTTz/B09NT6qIIn3/+OcaOHauZnL9r165o3749Nm3ahMePH0v9e+jVqxf69OmDhg0bSst4ndjYWAwePFjrJBUAMjIyEBkZKbVN9erVw8SJE7FmzRrNSfGTJ08wefJk1KtXT1qumswTobdRcvhEmzZtMGbMGERFRWkmKz5+/Dg2bdqEyZMna3qxqB9rSPb29jhy5Aj27duH6OhoTQ+4Jk2aGDTnv/r8889Rp04dgxywZ2Rk4O7du68tgt29excZGRn/OedtTp48iU2bNuk9Sfrtt9+kZKp772ZlZWHatGlYsmQJbt++jStXrsDLywsTJkyAh4cH+vbta9Dc+fPnv9PjVCqVlCKYesJsT09PnDx50qgTNmf3rieALVu2xPLly1GyZEmDZSu5X0tOTtb7WooVK4akpCSp2a1atcKNGzewa9cuXL16VXNxKTAwEDY2NlIyQ0ND3/mxMgoi2fcZu3bt0tvzUfaIkuHDh6N169ZYvHgxHB0dcfz4cZibm+PTTz/F0KFDpWSqX6cQQmcBEAsLC9StWxf9+/eXkp3d3r170aZNG3h6euLy5cuoUqUK4uPjIYQwaq/DN5GxmBeg7HdcbGwswsLCNAsMVapUCUOHDpXeiWHx4sX4+uuvMWzYMEybNk1zvOjo6IiwsDDpRbDU1FStv3E1e3t7pKSkSM3O61gEyyNkdlV/m2HDhuHevXs4fvw4AgICsGXLFty+fRtTp06VWoBSGz58OMzNzTWrI6p16dIFw4cPN3gbsh/AZGVlYdmyZdizZw+qVaum0wNP5hWdXr16ISEhARMmTNA7H5lsv/76K3r06IHu3bsjOjpac9Xw4cOHmD59Onbs2CEt+8qVK/Dx8QHwco6Bhg0bYt26dTh69Ci6du0qtQj28OFDBAYGwtXVFb1790ZwcDBKlSolLS+7gIAAvcWYBw8eICAgQGoxRqkVvHKD13WIfvbsmfRehyEhIQCARYsW6axWp74PgMGHEmRkZMDKygoxMTFo3Lix1Pnm/itDdlivXLky9uzZ89p53iIiIlC5cmWD5emzfv169OzZE4GBgYiIiEBgYCCuXr2K5ORktG/fXmo2AEydOhWrV6/G7NmztU4Kq1ativnz5xu8CKZkgTs7fe24f/++9FUpc+rQoUN48uSJQZ9Tyf2a0it8b9q0CV26dEG7du20tj9//lzzt2hIp0+ffqfHyTqmU79OlUqlc+6QveejTDExMVi6dClMTU1hamqKZ8+ewcvLC7Nnz0ZwcLCm15YhrVq1CsDLnocjR45UrCfzuHHjMGLECEyZMgV2dnb49ddfUbx4cXTv3h3NmzeXnr93717NxfNXV8xcuXIlABhl9ec3MfR33K5du9CmTRv4+PjA398fQghERkaicuXK+OOPP9C0aVODZb3q+++/x48//oh27dph5syZmu1+fn4YOXKktFy1smXLYufOnRg0aJDW9v/9738G7+mX37AIlkckJCS88f7XXdU2hH379mHbtm2oVasWTExM4O7ujqZNm8Le3h4zZsxAy5YtpWUDwO7du7Fr1y6dIWHlypV7a9fb9/HqAYy6GHP+/HmDZ73JkSNHcPjwYU2+sU2dOhVLlixBz549sX79es32+vXr60zibWhCCM3Oe8+ePZphKq6urtKvbPz6669ITU3F2rVrER4ejokTJ6JJkybo27cv2rZtq1MINaTXDfFNTU2VfkBXpUoVXL16FWvXrsWlS5cghEDXrl3RvXt3rSuqsrw6X8yr1AdvhqQepqVSqbB8+XLY2tpq7svMzMShQ4dQsWJFg+dmp9Sy7mZmZnB3dzfaJMG5RZ8+fRAaGorKlSvrDH/7448/MHXqVOnDVaZPn4758+fjiy++gJ2dHRYsWABPT098/vnnBr0y/jpr1qzBsmXL8NFHH2HAgAGa7dWqVcOlS5ek5ytl1qxZ8PDw0ExG/vHHH+PXX39FyZIlsWPHDukT8ytJyf1av379MGzYMLx48UJTbN+7dy9Gjx6NESNGSMtV6927N5o3b65zcenhw4fo3bu3wYtg+/fvN+jz5VRu6Plobm6uOZZxdnbWXMR2cHB46/nMfzVx4kRkZGRgz549iI2NRbdu3WBnZ4dbt27B3t5eaz8vw8WLF/HLL78AeLmfffLkCWxtbTFlyhS0bdtW6vyub1vMK79ST8afvQil3j5mzBipRbC4uDjUqFFDZ7ulpaX0aUSAlx03Bg0ahLt372p9v86dO5fzgb0Fi2B5hIeHxxu/zGSeyKSnp2sOHpycnHD37l2UL18eVatWlbJ6l758fd3WU1JSpEwkrPQBjJqrq6tBe0Dk1OXLl/UOnbC3t8f9+/elZvv5+WHq1Klo0qQJDh48qFmZMC4uTkoX7lcVKVIEQ4cOxdChQ3H69GmsXLkSPXr0gK2tLT799FOEhISgXLlyBstTXxVVqVTo1auX3rksXp1PRQZra2ujDBfQ59U5mF68eIHz58/j/v370nopqYdpCSGwZMkSmJqaau6zsLCAh4cHlixZIiU7N/jqq68wbtw4rF271igr/eYGn332GQ4dOoQ2bdpoVuxSqVS4ePEirly5gs6dO+Ozzz6T2obY2FjNxSP1gbJKpcLw4cPRuHHjty4Y8F/9888/OgsxAC9Pnl+8eCE1G1BuvpylS5di7dq1AF72+NuzZw927tyJjRs3YtSoUdi9e7e07NzA2Ps1tdGjR+Pff/9FSEiIzmqoY8eONXjeq153cenmzZt6hxHlF0r2wKxRowZOnTqF8uXLIyAgAF9//TVSUlLw008/SV9s5saNG2jevDkSEhLw7NkzNG3aFHZ2dpg9ezaePn0qfZ9eqFAhzcgJFxcXxMbGanoXy76Iu2TJEoSHhxe4xbwuXryIjRs36mzv06eP9EKQp6cnYmJidIaC/u9//4O3t7fUbODla3z27BmmTZuGb775BsDLmsHixYsNXuDPb1gEyyNe7Z304sULnD59GvPmzcO0adOkZleoUAGXL1+Gh4cHfHx8sHTpUs3JoTGuWjds2BBr1qzR/HGrVCpkZWVhzpw5CAgIkJrdp08fLFiwAHZ2dlrb09PTMXjwYCm9U9TCwsIwduxYzfttbCVLlsS1a9d0so8cOSK9i21YWBi6d++OrVu3Yvz48ZoTts2bNxulGKSWlJSE3bt3Y/fu3TA1NdVMIu7t7Y3Zs2dj+PDhBsnJDXNZKLWCl5q+ZeyzsrIQEhIi7fdNfZIQEBCA3377DYULF5aS8zZKraL13Xff4dq1a3BxcYG7u7tOb0NjXORQwtq1a9GmTRusW7dOs4R9hQoVMHnyZHTu3Fl6vpOTEx4+fAjg5aS258+fR9WqVXH//n2pq4GqVa5cGYcPH9Y5aN+0aZPeK9qGpOR8OUlJSXB1dQXwcsL0zp07IzAwEB4eHqhTp47U7NzEWPs1NZVKhVmzZmHChAlGXQ21Ro0aUKlUUKlU+Oijj7Tm2szMzERcXJxRhqcpMf+fmlL7lunTp2u+47755hsEBwdj4MCBKFu2rGbYoixDhw6Fn58fzpw5o7UyZvv27dGvXz+p2QBQt25dHD16FN7e3mjZsiVGjBiBc+fO4bffftPM+ynL8+fPjXqMnFsUK1YMMTExOkX8mJgY6ashjxo1Cl988QWePn0KIQROnDiBX375Bf+PvTOPi3H9//9rJtpUCkVIKy0KEbIcRI59/ziWiEp2OqGyJ7Jv5VgKoRCS7WRXVArHElnq0J79JMdWSM3790e/ub9NE8f5fOaauzLPx+N+MNfMY17XPc1c132/lFrKrwAAwOFJREFUr/f1eq9cuRI7d+5kqi1mypQpmDJlCvLy8qCmpsY827HaQAqqNCdPnqSuXbsy1di3bx/t3r2biIiSkpJIV1eXhEIhqaqq0sGDB5lqExE9ePCAdHV1qXfv3qSsrEz/+c9/yNLSkurXr0/p6elMtYVCIb18+VKqPS8vj5SUlGSup62tTTo6OtyhrKxMQqGQNDQ0JNp1dHRkrl2e1atXk5WVFV27do00NTXp8uXLtG/fPtLV1aXffvuNuX5FfPz4kYqKiphqFBUVUWRkJPXr149q1qxJbdq0oW3bttG7d++41xw4cIC0tbVlrr1kyRL68OGDzN/3ezA0NKTExESp9mvXrpGRkREPPSrlzz//pAYNGvCmz5qkpCRq0KABaWlpkZKSEunq6pJAIKBatWqRsbExU+0lS5Z886gsaGhoUEZGBt/dkBmjRo2i9evXExGRv78/6erq0oQJE8jQ0JCGDBnCXP/333+n2rVr06pVq0hdXZ3Wrl1LEyZMIGVlZTp//jxT7bZt29KiRYuI6P/+ru/fv6eBAwfS1q1bmWrr6+tzY1yzZs0oIiKCiErHGE1NTaba/wYW33c+57U3b95Qfn6+VHt+fj69fftW5npixOOYQCCgOXPmSIxtK1asoPDwcPr8+TMzfaLSz7RmzZrUr18/UlZWpv79+5O5uTnVrl2bxo8fz1Sbr7lFJBJRdnY2FRYWMtP4FnXr1qU///yTiCR/S1lZWaSmpsZcPyMjg5KTk4mIqKCggKZMmUI2NjY0ZMgQys7OZqrt7e1NS5cuZaohC2Q9xvn5+ZG2tjatWrWK4uPj6fLly7Ry5UrS1tamZcuWyUynLF++fOH+v337dmrSpAkJBAISCATUuHFj2rlzJxPd8mRmZtKjR4+k2h89ekRZWVly6UNVRZEJVsVp1qwZbty4wVTDycmJ+7+trS2ys7Px559/okmTJnLxGrCyssLdu3exbds2KCkpoaCgAEOHDsW0adOYZaK9e/cORAQiwvv37yVKyJeUlOD06dNMVhcq0/5tb29vzpD906dP6NKlC1RUVDBnzhwpA0Z5UfbvwAp9fX2IRCKMGjUK169fr9CTrVevXkzMlPn0suCzgte3yMjIkEu1Pr62aPFRRUuMr6/vd73uwIEDGDhwIG9Gw4aGhkw8i0QiEdLT0ys0EGZZRW/z5s349OkTgFIT5Zo1ayIhIQFDhw6VSyXiAQMG4NChQ1ixYgUEAgEWL16M1q1bMzcQBvj1yxk6dChGjx6Npk2bIj8/H3369AFQmi1Q0fbQ6gSf89rIkSMxYMAAiUIfABAREYHff/+dWZEd8fgm9oGTx/VDefj0/+NrbiEiNG3aFA8ePGCyvfafEIlEFVrEPHnyRGpXh6wpKSnB48eP0aJFCwCAurq6VMEbWVNZinnxyaJFi6CpqYn169dj3rx5AEq3oi5ZsoRZxqO+vj7GjRsHNzc3uLu7w93dHa9evYJIJGKefVYWceXf8r+1P/74Azt37kRsbKzc+lLl4DkIp+A7efv2rcTx5s0bSk1NpREjRlDLli3l2pfi4mK6ffs2vX79Wq665fn48SOtXbuWyXsLBAISCoVfPZSUlMjf35+JdmWjoKCAbty4QX/88Qe9f/9eLprFxcW0du1aatu2LdWvX1+uWXBhYWH08eNHphpfIzs7mywsLEhdXZ2UlJS4lTIPDw+aNGkSU20zMzPau3evVHtYWBjzjCQiIk9PT4nj119/pREjRpCGhgZNmzaNqXZ0dDSpq6tT8+bNqUaNGtSqVSvS1tam2rVrk4ODA1Pt2rVrc6vWtWvXppSUFCIqzcAzNzdnqv29aGpqMs/Eev/+vdQ8x5KrV6+SsbExCYVCbvVWfAiFQqbaPzL169enBw8eEBGRlZUVnThxgoiI7ty5Q7Vq1WKqXVRURGvXrqWZM2dSUlIS175x40basWMHU20iori4OInsATFfvnyhuLg47vGKFSvo77//lqk2n/Oajo4ON66VJTU1lerUqSOXPvz999+0Y8cOmjt3LpeVduvWLXry5AlTXXV1dS4bo27dunT37l0iIkpJSWGe4czn3GJlZUVXr15lqvE1fvnlF3J3dyei0oyjzMxMev/+PXXv3p159h0RkYqKCmVmZjLXEdOtW7fvPljD5xgn5t27dxIZrqxYsWIFNWvWjIRCIdnb29POnTvldo9UFk1NTUpLS5NqT0tLo9q1a8u9P1UJRRCsilBRUEYgEFCTJk3oypUrTLU9PDy4tM7i4mLq2LEjl1J96dIlptp5eXl08uRJOnfuHBUXFxNR6YVsQEAA1a9fn+rWrctENzY2li5dukQCgYCOHj1KsbGx3HHlyhV6+vQpE92ynDp1is6ePSvVfu7cOTp9+jRz/T179vC2NW/RokWkr69Pa9euJVVVVVq2bBm5ublR3bp1KTAwkJc+yYNBgwbRmDFj6PPnzxLp4rGxsWRmZsZUe9WqVVS3bl3atWsXZWdnU3Z2NoWEhFDdunVpxYoVTLWJpC/kunfvTiNGjKDg4OAKL6pkCZ9btOrVq0cPHz4kotItWuLffGpqqly2bnwPrLYjZmZmUt++fUldXV1qbmMdiGrZsiUNHz6cUlJS6O+//6Y3b95IHCy5desWdzNMRHT8+HEaNGgQzZs3j/n2LCKi3Nxcevz4Mff4jz/+IA8PDwoODmauPWjQINq+fTsREXl5eZGZmRn5+/tT69atqUePHsz1+eRr9gqvXr2q1oFXdXV1ie+7mLt378pljEtOTiZdXV0yMzOjGjVqcGPZwoULaezYsUy1GzduzJ17ixYtKDw8nIiIrly5QlpaWky1+ZxbTp48SZ07d6Z79+4x1amIp0+fUrNmzcjS0pJq1KhB9vb2VLduXTI3N6/w9ydr7OzsKDo6mrlOZYSvMc7BwaHCoNrbt2+ZL2TGx8fT+PHjSUNDgzQ0NGj8+PGUkJDAVLMsWlpaEos6Ym7evEkaGhpy60dVRBEEqyKUDcLExsZSfHw8paamMr85JCJq1KgR3bhxg4iIjh07Rg0bNqSHDx/SggULqGPHjsx0ExMTSVtbm7shateuHT148ICaNm1Kpqam9Ntvv1FBQQEzfaLSzJz4+HhycnIie3t7btUwLCyMLl++zFTbxsaGTp06JdV+5swZatGiBVNtotILKHV1dRoxYgRFRUXJ5bsmxsTEhE6ePElEpTfgYu+3wMBAGjVqFDPdixcv0rp167gJLCgoiAwMDKhevXo0YcIE5h4XfHpZiEQi8vb2JlVVVS4Yoa6uTn5+fiQSiZhq803Z75i2tjbdv3+fiEqzUwwNDZlq9+zZk/bv309ERJMmTaJ27drRvn37qFevXtSuXTum2t8LqyBYhw4dqEOHDnTw4EG6dOmS1DzHEnV19QpXT+WBnZ0dRUZGElGpf4yKigqNGjWKzMzMyMPDg7l+586dKSwsjIiInj9/TpqamtShQweqW7cu+fn5MdXm0y+HqHTu7tSpE+nr63N6GzdupOPHjzPXFggE9Ndff0m1P3z4kKknGd/zWteuXWn69OlS7VOnTqXOnTsz1SYi6t69O3l5eRGR5FiWmJjIfHzn0/+Pz7lFW1ub87RVVVWVu6dtYWEhhYSE0LRp02jKlCm0Y8cOuXmUnTt3jlq1akVRUVH07NkzuWY4u7i4VJgF9eHDB3JxcWGqTcTfGCcQCCoMvr18+ZJq1KjBTLcsHz58oJ07d1Lnzp1JIBBQs2bNaPXq1cx1+/XrR8OHD+cSRYhKE1aGDRtGvXv3Zq5flVEEwRT8IyoqKtyqsbu7O3eRnpmZyXRQE2eC3Lt3jzw9PUkgEJCxsTGFhobK7aY8MjKS1NTUaMKECaSiosJdPG3ZsoX69OnDVFtVVbVCU8OsrCxSV1dnqk1Umr4cFRVFo0ePplq1alG9evVoypQpFZqnyxp1dXXKyckhIqIGDRrQrVu3iKj0BorV6un27dtJSUmJTE1NSUVFhVasWEG1atWiyZMn09SpU0lLS4t8fHyYaIvR0dHhtgqVvVi/fPky6enpMdUW8/79e7p+/Trdu3ePPn36JBdNvuFzi9aNGzfo4sWLRET0119/UZ8+fUhTU5NsbW3pzp07TLW/F1ZBsFq1anFBX3nj4OBAZ86c4UVbS0uLC7quWrWKfv75ZyIiSkhIoMaNGzPX19bW5j73wMBAbjHr3Llzctn6zBdbt26levXqkb+/P6mpqXHf6d27dzPdKjRkyBAaMmQICYVC6tu3L/d4yJAhNHDgQDIyMqJevXox0a4M81pCQgKpqqrSTz/9xBnT//TTT6Sqqkrx8fFMtYkkf29lx7Ls7GxSUVFhqp2fn8/tHCgpKaHVq1fTgAEDyNPTk7mlCJ9zy549e755VGfKb62XZ4azvIt5ieFrjEtOTqbk5GQSCAR06dIl7nFycjIlJSXRihUrmAe6K+LkyZNUp04duWT4PnjwgOrWrUumpqY0fvx4Gj9+PJmampKuri4vmZhVCYUxfiUnPj7+u17H0sS3fv36SElJgb6+Ps6ePcuZPBYWFkJJSYmZbnJyMuLi4tC8eXP4+/sjMDAQq1evxvDhw5lplsff3x9BQUFwdnbGwYMHufaOHTti6dKlTLVr166NzMxMGBkZSbSnp6fLxaC6Ro0a6N+/P/r374/CwkIcO3YM4eHhcHBwQOPGjZGRkcFMu3Hjxnj+/DmaNGkCMzMznD9/Hq1bt8aNGzeYlVUPDAzExo0bMWPGDJw9exYDBgzAzp07MW7cOABAt27dMG/ePKxatYqJPgD07NkTAQEB2L59O4DS0vIfPnyAr68v+vbty0wXAN6+fYuSkhLUqVMHbdu25dpfv36NGjVqQEtLi4mug4MDBALBN18jEAgQExPDRB/gt6S5nZ0d939dXV1mJtGVkbZt2+Lx48cwNzeXu/aMGTMwe/ZsvHjxAjY2NlIGwmJjYxYQEWfEHx0djf79+wMADAwM8OrVK2a6Yr58+cKNo9HR0Rg4cCAAwMLCQu5FMDIzM/Hx40dYWlpCKBQy1frtt9+wY8cODB48WGIct7Ozw5w5c5jp1q5dG0Dp311TUxNqamrcc8rKyrC3t4e7uzsT7cowr3Xq1AlXr17F2rVrERERATU1NbRo0QIhISFyMU5XVVXFu3fvpNofPnwIXV1dptp16tTh/i8UCuHt7Q1vb2+mmmL4nFvE3y8++P333ytsFwgEUFVVhZmZGYyNjZnpX7p0idl7fw2+inmJ4WuMa9WqFQQCAQQCAbp37y71vJqaGn777TeZ61ZEYWEhDh06hN27dyMxMRGmpqbw8vJirisuHrd582YkJydDTU0Nzs7OmD59usT4o6ACeA3BKfhHyhv2VrTCwDK6T0Tk6+tLtWvXJgsLC2rSpAmXHRISEkL29vbMdMunt2poaMh9+4qamhqXjVV2BVG8hYUl7u7uZGNjw61gEpUaHbZo0YLc3NyYaldEXl4e/fbbb9S8eXPmqxs+Pj60fPlyIiI6fPgw1ahRg8zMzEhZWZnZqrWamprEdpyaNWtKmPnm5OSQsrIyE20xfHpZ9O7dm7Zs2SLVvm3bNqZZj7/++utXD1dXV1JTU2P+feN7i1Zlh1UmWHp6Ojk6OtKePXvo5s2bEqu44r8HK742p8pjtd7BwYGcnZ0pLCyMatasyc1rsbGxclm1bteuHfn4+FB8fDypqqpyWSFXr16lRo0aMdEsKiqixYsXU//+/cnf35+Ki4tp5MiR3HWMpaUl83Luqqqq3O+57Hf60aNHpKqqylSbiGjJkiVy99msDPPa1yguLqZjx44x13F3d6fBgwdTUVERZ5Sek5NDtra2ctl+LEYkElFMTAydPHlSboWl8vLy6MaNG3Tz5k169eqVXDTFFBcXU2RkJC1btoz8/f3p6NGjElu2WFF2LP/a+N6lSxfei3vJkspSzEveY1x2djZlZWWRQCCgGzducH622dnZ9OzZM7l83+Lj48nFxYU0NTVJXV2dnJ2dJYoA8MWrV69o48aNfHejUqMIglVyypv1io9nz56Rj48PqampUfPmzZn34/Dhw7RhwwYJM909e/Yw9dEQCoWUnp7OVcPU1NSk5ORkue6vNzExoQsXLhCR5EVzaGgoWVpaMtV+8+YN2dvbU40aNcjIyIiMjIyoRo0aXzWAZEFBQQHt27eP+vTpQzVr1iQTExNasGBBhZWeWHL16lVav349t02NBRUFXcve+L948UIuqc18eVlUhgpeYr58+UIBAQGcmfGBAwfkqi9PXrx4QWPGjCF9fX1SUlKSunitDDRv3pxyc3Nl/r7iCo18BKLKXixXdLAkOTmZrK2tSUtLi5YsWcK1T58+nannoZhLly6RtrY2CYVCCZ+YefPmMfMpmjVrFunq6pKbmxuZmJjQwIEDydzcnA4ePEgRERFkY2NDo0ePZqItxtLSkrtmKTu+BwYGUuvWrZlq80VlmdfKkpqaSl5eXqSnp0c1a9Zkrvf27Vvq1KkTaWtrk5KSEhkYGFDNmjWpS5cuzG7Y//77b3J2diZra2uaMGEC1wfxOKenp8c00H///n366aefpOYTBwcHSk1NZaYrJi0tjZo2bUrq6upka2tLrVq1InV1dTI3N5dY2GVBdHQ0tW/fnqKjo7lKgdHR0WRvb0+nTp2ihIQEat68Obm6ujLrw99//03r1q0jNzc3mjBhAm3YsIFpwZXKUMzrR2P58uXUtGlTEggE1K5dOwoKCmJ+T/pPiEQiOnv2LA0fPpyUlZWpXr16vPansiMgIuI7G03B9yMSibBr1y74+flBKBRiyZIlGDduHPNtBHwgFAoltkkRUYWPS0pKmPVhzZo1CA0Nxa5du9CzZ0+cPn0aOTk58PT0xOLFizF9+nRm2kDpOV64cIFLcW3RogXTra9lGTVqFKKioqCuro7hw4fDyckJHTt2lIs2HygpKeHRo0fQ1dUFEcHAwAAJCQncdtSXL1/CwsKC6feNT2rVqoVr167BxsZGov3evXto3749CgsL5dKP/fv3Y/Hixfj48SMWLlyIiRMnokYN+e3c//DhA7dVTQyrraAA0KdPH+Tm5mL69OnQ19eX2ho6aNAgZtplkfd5A6Vp/JaWlvD29kb9+vWlzt3Q0JCpfmXj06dPUFJSktqayYKSkhK8e/cOOjo6XFt2djbU1dWZbJsxNDTEtm3b0LdvXzx69AgWFhY4deoU+vTpAwCIi4uDk5MTnjx5InNtMbt378aiRYuwfv16uLm5YefOncjIyMDKlSuxc+dOjBw5kpm2mMjISERERCA3NxdFRUUSzyUlJclcr7LMawUFBTh06BBCQkJw7do1ODg4YOTIkRg8eDDq1avHVFvMxYsXkZSUBJFIhNatW8PR0ZGZ1oQJExAfHw9nZ2ecPHkSQqEQRISAgABuW6SGhgaioqJkrv3ixQtYW1tDV1cXkydPhoWFBYgIKSkp2LFjB/Lz83H//n2m2+P69u0LIsL+/fu5LVn5+fkYM2YMhEIhTp06xUzb2toa27dvl7peTUxMxMSJE/HgwQNER0fD1dUVubm5Mte/efMmevXqBTU1NbRr1w5EhJs3b+Ljx4+ctQcrcnJykJubi+DgYGRkZCAyMhKNGjXC3r17YWxsjM6dOzPTFiPvMQ4AwsLCvvm8s7OzzDV1dXUxZswYuLm5wdraWubv/2/Izs7Grl27sGfPHjx9+hSjR4/GuHHj4ODgwNS2qMrDU/BNwX/BkSNHyNzcnOrUqUNr166Vq2l1dHQ0zZs3j9zc3MjFxUXiYEX5SmFfO1gzf/58UlNT41bwVFVVaeHChcx1vxdra2smWRqjRo2ikydPyrUqpJgTJ05UePz+++90/vx5yszMlLnm10xM5Wlqysd5i+G7gteZM2eoZcuWpKWlRUuXLpVrSn1mZib17duX1NXV5f4319DQoNu3bzPV+Bp8njcRvxUaiUq3Y06fPp169OhBjo6ONGPGDOZZCmX5/PkzPX78mHJyciSO6kiNGjW46spEpVsTHz16xD1+9uwZc2sHolKj+CZNmnDzeePGjWnnzp3MdYlKM840NDRo2rRppKysTJMmTSJHR0eqXbs2zZ8/n4km3/PalStXyNXVlTQ0NMjW1pbWrVtHSkpKXCESvmCdTd+wYUPu+vTJkyeccbeYP/74g+rXr89E29vbm1q3bk0fP36Ueq6wsJBat25Nc+fOZaItRl1dne7evSvVLo9iM6qqqhUagt+9e5fb9pydnc2s4nbnzp1p/PjxEtfOX758oXHjxtFPP/3ERFMMn8W8iPgZ44hKi72UPWrVqkUCgYBUVFSYVSMtKioiotKdQRXdj3/+/JlCQ0OZaBMRffr0icLDw6l79+6kqqpKQ4YM4exj+B5fqwqKTLAqQFxcHHx8fHDv3j14eHjAx8eHMyGUB35+fli6dCns7OwqzFQ4duyY3PrCF4WFhUhJSYFIJIKVlRU0NDT47hKHpqYmkpOTYWJiwou+jY0NTp8+DQMDA5m9pzgLsPzwJG4TCATo3Lkzjh8/LpHJ8L8QFxf3Xa/r2rWrTPQqgo/zFpOYmAhHR0e0bdsWPXr0AADExMTgxo0bOH/+PH766SeZ6om5fv06fHx8cO3aNUyePBkLFiyQW2aAGPGKsYeHR4UZSSz/5lZWVti/fz9sbW2ZaXwNPs8bAAYMGIDx48dj2LBhTHUq4ty5cxg4cCBatWqFTp06gYhw5coVJCcnIyoqCj179mSm/ejRI7i5ueHKlSsS7SSH7GYx8l6tFwqFePHiBZd9Un7eevnyJRo2bCi3TNtXr15BJBIxzYYpj4WFBXx9fTFq1CiJ81+8eDFev36NzZs3y1yTz3nNysoKhYWFGD16NMaMGQMrKysAQM2aNZGcnMw9Zs3q1athZGSEESNGAAB++eUXHDlyBA0aNMDp06fRsmVLmWvWqFEDjx8/hr6+PgBAXV0d9+7dg6mpKYDSbK1GjRox+b63bt0ac+fOxS+//FLh8wcPHsSaNWuYZeUApQUBTp48WWE21oABA/D69Wtm2p07d4ampibCwsK4wgd5eXlwdnZGQUEB4uPjER0djalTp+LRo0cy11dTU8Pt27dhYWEh0Z6SkgI7OzumWfW2trbw9PSEs7OzxBhz584d9O7dGy9evGCmDfAzxn2NtLQ0TJkyBV5eXujVqxczHSUlJTx//lxqLsnPz4eenh6zOa1evXqwsrLCmDFjMHz4cO6eQN7ja1VGUR2yktO3b1/ExMTAxcUFx48fR4MGDeTeh6CgIOzZswdjx46Vu7YYkUiE9PR0/PXXX1JbduSxPVBdXV2i0o6C/yM7OxtfvnyR6XteuHABCxYswPLly9GuXTsApcGShQsXYtGiRahduzYmTZqEOXPmICQkRCaarG/4vwc+zlsMXxW87O3toaamhilTpsDIyAjh4eEVvm7mzJnM+nD37l3cunWLlyqFAQEBmDt3LoKDg6UqwbKGz/MGSoNgnp6euHfvXoUVGsVVC1kwd+5ceHp6SlXFmzt3Lnx8fJgGwVxcXFCjRg2cPHmywoUl1mzatAkLFizAuHHjcOLECbi4uCAjIwM3btzAtGnTmOmeO3eOW8ATiUSIiYnB/fv3AQBv3rxhplsR8g60A0Bubi4XFFBTU8P79+8BAGPHjoW9vT2TG8Tvmdc+fvwoc12gtJL1yJEj4eDgAEtLSyYa30NwcDD27dsHoHSOvXDhAs6cOYOIiAh4eXnh/PnzMtcUiUQS25CUlJQkfucsf/OZmZnf3HJnZ2eHzMxMZvoA0L9/f0ycOBEhISHctcwff/yByZMnMx3XASAkJASDBg1C48aNYWBgAIFAgNzcXJiYmODEiRMASrf/L1q0iIm+lpYWcnNzpYJgjx8/hqamJhNNMQ8fPqzwnkhLS0suYywfY9zXaNq0KVatWoUxY8bgzz//ZKZD5ax6xDx58oRpwkpJSQlXGVOx5fG/QxEEq+ScPXsWNWrUwKFDhxAREfHV17FcVSkqKuLVC+ratWsYPXo0cnJyKsyQqa4eTT8yHh4eUp4OPXr0gKqqKufpEBAQAFdXVyb6fAVd+T7vVq1aYf/+/Uze+2s0adIEAoHgmxmlAoGAaRCsbdu2ePz4MS/BoBEjRqCwsBCmpqZQV1eXCgSxHNv5PG8AmDx5MgBg6dKlUs+xHttTU1MrnFNdXV0REBDATBcA7ty5g1u3bkndJMmLrVu3Yvv27Rg1ahRCQ0Ph7e0tsVrPinHjxkk8njRpEjOtisjPz8fixYtx6dKlCsd2lucOAA0aNEB+fj4MDQ1haGiIa9euoWXLlsjKypK6tpE106ZNw5YtW6TaCwoK0K9fP8TGxspcMysrC3v27MGUKVPw8eNHjBo1Ck5OTnIP+j5//pzLVD958iR++eUX/PzzzzAyMkL79u2Z6e7cuZPbNVBcXIw9e/ZwwVdxcIAF79+//6afo6amJj58+MBMHygNtI8bNw4dOnTg5rTi4mIMHDiQ+fhqbm6O1NRUnDt3Do8ePQIRwcLCAj179uT8kwcPHsxMf8SIEXBzc8O6devQsWNHCAQCJCQkwMvLC6NGjWKmCwD6+vpIT0+XWlBLSEiQy24RPse4ilBSUsKzZ8+YvLetrS0XhOrRo4eEd21JSQmysrLQu3dvJtpA6bh25MgRhISEwMPDA3369MGYMWPkPr5WZRRBsErO7t27+e4CJkyYgPDwcGarJv/E5MmTYWdnh1OnTvGyaq5A/mRkZFR4EaelpcWtYDZt2hSvXr2SuTafQVc+z7ssHz9+lMruY2WSnp2dzeR9/w07d+7E5MmT8fTpU1hbW0sFolq0aMFMm/UNwbfg87wBSAUh5Imuri7u3LkjleV4584d5lvkrKysmP+GvwUfq/V8/q3FjBkzBhkZGXBzc6tw+y9runfvjqioKLRu3Rpubm7w9PREZGQkbt68iaFDhzLVPn/+PBYuXAh/f3+uraCggOlNWqNGjbBgwQIsWLAAFy9exK5du9CpUycuIDRhwgQ0a9aMmb4YHR0dPH78GAYGBjh79iz3GRARs/m8SZMm2LFjB/e4QYMG2Lt3r9RrWPH+/XuoqqpW+Ny7d++YByS0tbVx4sQJpKenIzU1FUQEKysrmJmZMdUVIxAI0Lt3729+v1lYeQDAunXrIBAI4OzsjOLiYgClW9SmTJkilXksayZNmgQPDw/s2rULAoEAz549w9WrVzFnzhwsXryYqTbA3xj3+++/SzwmIjx//hybN29Gp06dmGiKA6l37txBr169JGxylJWVYWRkxNTqQVVVFU5OTnByckJGRgZ2796NmTNnori4GMuXL8f48ePRvXt3RZbYt5C3CZmCqsfMmTNJW1ubunTpQtOnTydPT0+JgzV8mydXdsqXPK8O+p06daLevXvTX3/9xbX99ddf1Lt3b85Y9MKFC9S0aVOZ6hIRtWzZkoYPH04pKSn0999/05s3byQOlvB53gUFBTRt2jTS1dWVKqsuD5P0bxV3uHr1KlPtq1evkrGxMWeWLTaLlpdBPF/wfd5ZWVnMNb6Gn58faWtr06pVqyg+Pp4uX75MK1euJG1tbVq2bBlT7ZiYGOrQoQNdunSJXr16RW/fvpU4WGNsbEy3bt0iIiI7OzsKCgoiIqJz584xMxEWExcXV2GxleLiYoqLi2OqraGhQXfu3GGq8S1KSkokzv3QoUM0Y8YMCgwMpM+fPzPVzszMpIYNG9KGDRuIiOjdu3fUoUMH+umnn+RahOTNmze0ZcsWatOmDQkEArKxsWGuOW3aNDI0NCRHR0eqW7cuvX//noiIDh48SLa2tsz15U354gflD3mM735+flRQUCDVXlhYSH5+fky1vxfW184FBQV09+5dSk5OrvCzYAWfxbz4GuPKXsOIv9/169enUaNG0bNnz5jpEhHt2bOnwiIUfFBSUkKnT5+mYcOGkbKyMtWtW5fvLlVqFMb4VYTx48fD1dVVLv5X5XFwcPjqcwKBABcvXmSq3717d3h7ezNdsazK8G2Mz0L/4cOHGDRoELKysir0dGjWrBmOHz+O9+/fy9yrrlatWkhOTpbbimVZ+DzvadOm4dKlS1i6dCmcnZ2xZcsWPH36FMHBwVi1ahWcnJxkqlceCwsLJCYmom7duhLtiYmJ6NevH1M/CysrK1haWsLb27vCDBFDQ0Nm2klJSahZsyZsbGwAACdOnMDu3bthZWWFJUuWQFlZmZk2n+cNlJqld+zYEWPHjsXw4cNRp04dpnplISIEBARg/fr13HaJhg0bwsvLCzNnzmSaJSTeklNeg+RkjD9hwgQYGBjA19cXQUFBmDVrFjp16sSt1svab7AsfJkIA6Xbf3/77TfY29sz06jM3L9/H926dcOiRYtw8OBBqKio4NSpU6hVqxYv/blz5w527dqFTZs2MdX58uULAgMD8fjxY4wfP54rQhIQEAANDQ1MmDCBmXZYWBhGjBgBFRUVifaioiIcPHgQzs7OMtesDEV++Pydfy+srp1dXV0RGBgo5f9VUFCAGTNmYNeuXTLVq4jKXMyrulJUVFThNnuWGZ/fIi8vD3v37sWsWbN40a8KKIJgVYRhw4bh1KlTMDAwgIuLC8aNG4dGjRrx3S25cOzYMSxcuBBeXl4Vmiez3rJT2QkPD8egQYN4u5BldSFBRN/0dGAF30FXvs67SZMmCAsLQ7du3aClpYWkpCSYmZlh7969OHDgAE6fPs1U393dHUlJSYiNjeUuHuPj4zFgwAAsWbIEnp6ezLT5DHy2bdsWc+fOxbBhw5CZmQkrKysMHToUN27cQL9+/Zhul+TzvIHSAOCBAwdw8OBB5OXloVevXhgzZgwGDhwoddPIEvF2QNamxWL+6SaVdZEOkUgEkUjEeZhEREQgISEBZmZmmDx5MtPAq1AoxMuXL7mqbWIePXoEOzs7vHv3jpn2jRs3MHfuXCxevLjC7b+stnyX5c2bN7h+/XqFN0ssAiLluXbtGhwdHdG+fXucPHkSampqzDWBUj+o2NhYZGRkYPTo0dDU1MSzZ8+gpaVVaW7Q+/Xrh507d3IVHWVBVQgGseBrv/OLFy9ixIgRyMvL46ln/wera9ev/c1fvXqFBg0acFskqyt8j3FluXfvHkJCQpheR6WlpcHV1ZXXas8K/jsUQbAqRH5+Pvbt24c9e/bg/v37cHR0hJubGwYNGiR1MVedqOjmXyAQ/BADTExMDGJiYiqcTFivJn3vCiafQTgWng5VIejK4rw1NDTw4MEDGBoaonHjxjh69CjatWuHrKws2NjYMDfSJSIMHz4cf/31F86fP4+rV69i4MCB8Pf3h4eHB1PtAQMGYPz48Uz9G75G7dq1kZSUBFNTU6xevRoXL17EuXPnkJiYiJEjR+Lx48fMtPk877IQEWJjYxEeHo4jR46gpKQEw4YNk8uKuQL5IPaDOXHiBHr37i0xr5SUlODu3bswNzfH2bNnmfUhLS0No0aNwu3btyXa5XUtERUVBScnJxQUFEBTU1OqWqCsjfnFxs3lycnJgZ6enkQALCkpSaba5fV69+6N3NxcfP78GY8ePYKJiQl+/fVXfP78Gdu2bWOm/W9gERT5WjAoOTkZDg4OMv+b/5sgMougr46ODgQCAd6+fQstLS2J719JSQk+fPiAyZMnV1ikQd7I+u8t9lrT0dFBWlqaxN+8pKQEUVFRmDt3LjOj9sqAvMe4inj37h0OHDiAkJAQ3Lx5Ey1atMCdO3eY6XXq1Ak1atTA3LlzK/StbtmyJTNt4P9+c+URCARQVVWFmZkZxo8fDxcXF6b9qIoojPGrEHXr1oWHhwc8PDxw+/Zt7Nq1C2PHjoWGhgbGjBmDqVOnSpn8yoobN27g8OHDyM3NRVFRkcRzR48eZaIpJisri+n7V1b8/PywdOlS2NnZ8VIQwMXFBb1795ZazXr//j1cXFy4INjo0aPl2q+yZGdnSxm4/6+IAwJlKzBWtqAri/M2MTFBdnY2DA0NYWVlhYiICLRr1w5RUVHQ1taWqVZFCAQCHDhwAP369UOPHj1w9+5drFy5EtOnT2euPWDAAHh6euLevXsVBj5ZlnQnIi7AHR0djf79+wMADAwMmJun83neZREIBHBwcICDgwOmTJkCNzc3hIaGyjwI1rp1a8TExEBHR+erAQIxLIMCYgoLCyucU+URaL98+TKCg4ORkZGByMhINGrUCHv37oWxsTE6d+4scz1xqXgigqampkQARllZGfb29nB3d5e5blmcnJygrKyM8PBwXozxZ8+eDVdXV6xYsQLq6urM9VhWwPs3eHh4wM7ODsnJyRLb3YcMGcJ0KyKf8FU5Tltb+7u/1yyuZQICAkBEcHV1hZ+fH/e7B/7PLLxDhw4y160MiD97gUBQYcEHgUAAPz8/HnomP+Q9xpUlLi4OISEhOHLkCD59+gQvLy+Eh4czz3Tnu9rz4sWLsXz5cvTp0wft2rUDEeHGjRs4e/Yspk2bhqysLEyZMgXFxcXM59iqhiIIVgV5/vw5zp8/j/Pnz0NJSQl9+/bFgwcPYGVlhTVr1sh825A46+fnn3/GhQsX8PPPPyMtLQ0vXrzAkCFDZKpVEax9aSorQUFB2LNnj8y9n74XcdCnPE+ePJG4sKlu/KhBVxcXFyQnJ6Nr166YN28e+vXrh99++w3FxcXYsGEDE827d+9Ktfn6+mLUqFEYM2YMunTpwr2GZWBg8uTJAIClS5dKPcc68GlnZwd/f384OjoiLi6Oy4rIyspC/fr1mekC/J53WR4/fowDBw4gPDwc9+7dQ4cOHZhUKBw0aBCXgTRo0CDeKg3n5eXBxcUFZ86cqfB51p/7kSNHMHbsWDg5OeH27dv4/PkzgNIFjhUrVjDZ+iyudG1kZIQ5c+bwkjl8//593L59G+bm5nLXBoCnT59i5syZcrs59PX1lYvOP5GQkIDExESpbbaGhoZ4+vQpT71iC1+V4y5dusT9Pzs7G3PnzsX48eO5wNPVq1cRGhqKlStXylwbAMaNGwcAMDY25jJkfhQuXboEIkL37t1x5MgRCY9LZWVlGBoaomHDhjz2kD3yHuOeP3+O3bt3Y9euXSgoKMCoUaMQFxeHDh06wNnZWS5WD3xXe05ISIC/vz93PScmODgY58+fx5EjR9CiRQts2rRJEQQrj9ws+BX8TxQVFVFkZCT169ePatasSW3atKFt27bRu3fvuNccOHCAtLW1Za5tY2NDmzdvJqL/q6YiEonI3d2dFi9eLHO9ikhPT6fp06dTjx49yNHRkWbMmEHp6ely0eaLOnXq8HKOrVq1IltbWxIKhWRjY0O2trbc0aJFC9LU1KThw4fLvV8VwXdlTL6Qx3nn5OTQkSNHmFZTK1uNsHx1wh+lQmNycjJZW1uTlpYWLVmyhGufPn06jRo1iseesSc4OJi6dOlCQqGQrKysaPny5bxWjJQXo0ePpo4dO9L169epVq1adP78edq7dy+Zm5vTyZMnmeu3atWKQkNDiUhyLLl9+zbVr1+fuf6XL1/owoULFBQUxF3DPH36lKvax4qffvqJLly4wFTjWwwZMoQOHTrEi/b169fp2rVrUu3Xrl2jGzduMNXW0dGhBw8eEJHk9+3y5cukp6fHVPvfwGJe5bNyXPfu3Sk8PFyqff/+/dS1a1cmmuWrAxIRvXjxgpYsWUJeXl50+fJlJrr/Dfv372dSGTU7O5tEIpHM37cqIO8xTkVFhcaMGUNnz56lkpISrr1GjRrcmMMavqs916pVi9LS0qTa09LSqFatWkRUeg+trq7OvC9VjR8nRF/F0dfXh0gkwqhRo3D9+nW0atVK6jW9evVism0pIyMD/fr1AwCoqKigoKAAAoEAnp6e6N69O/P03nPnzmHgwIFo1aoVOnXqBCLClStX0Lx5c0RFRaFnz55M9fliwoQJCA8Px6JFi+Sqy9cKZmUiIyMDAQEBSE1NhUAggKWlJTw8PGBqasp31+RGkyZNKqxqI0s/sh81664sLVq0wL1796Ta165dCyUlJe7xgQMHMHDgQJlm0GRnZ8PIyEhm7/dvWbZsGUaOHInAwMAK5zSWmJiY4MaNG1LVSN+8eYPWrVsjMzOTmfbFixdx4sQJtG3bFkKhEIaGhujZsye0tLSwcuVKbr5lxcOHDyusNK2lpcW0Cisg7Q/Vs2dPaGpqYs2aNfj06ROCgoKYac+YMQMeHh5y9Xv8/fffuf/369cPXl5eSElJkfv242nTpsHb2xvt27eXaH/69ClWr16NP/74g5l2z549ERAQgO3btwMozTL98OEDfH190bdvX2a6lYFx48bhzZs32LdvHzIyMuDl5YU6deogKSkJ9evXZ1rg6urVqxX+nuzs7JhtQ3Vzc0PNmjW5v/X79+/Rtm1bfPr0Cfr6+ti4cSNOnDjB/O/+PX66srbyeP36NQoLCyV2rzx48ADr1q1DQUEBBg8ezKt9CCv4HOMMDQ2RkJCAJk2awNDQkJctiY6OjgCAHj16SLSTnCxU6tSpg6ioKKldYFFRUVw2otijTYEkiiBYFWHjxo0YPnw4VFVVv/oaHR0dJjeVderU4apnNWrUCPfv34eNjQ3evHmDwsJCmeuVZ+7cufD09MSqVauk2n18fKpVEKxsKVuRSITt27cjOjoaLVq0kJpMWG1RE2+hMDIywogRI775nauO/KhB1+9Fln5kfG513rRpEyZOnAhVVVVs2rTpm6+dOXOmnHr1f5T/3U2aNAnt27eXqWmziYkJOnbsiLFjx2L48OES2zfkQW5uLhISErBu3TpkZmbi8OHDzL2pxGRnZ1d4cfr582c8efKEmS5QekEq9lqsU6cO8vLy0KxZM9jY2MjFi0xfXx/p6elSAdCEhASZV0orD5/+UCNGjAAgX7/Hiny5+Nh+nJKSgtatW0u129raIiUlhZkuUHr96uDgACsrK3z69AmjR49GWloa6tWrhwMHDjDV5pu7d+/C0dERtWvXRnZ2Ntzd3VGnTh0cO3YMOTk5CAsLY6ZtYGCAoKAgrF+/XqI9ODhYpkV1ypKYmCixlT0sLAzFxcVIS0tD7dq14ePjg7Vr1zINgvHlpztt2jTo6+tz1+Z//fUXfvrpJzRs2BCmpqYYP348SkpKeLM4YQWfY9zDhw+RmJiIkJAQtG3bFs2aNcOYMWM4PXlQdgsyHyxatAhTpkzBpUuX0K5dOwgEAly/fh2nT5/mguAXLlxgXnW6KqIIglUR+Bw0f/rpJ1y4cAE2Njb45Zdf4OHhgYsXL+LChQtSkW8WpKamIiIiQqrd1dWVadlbPihftUqcHXH//n2594XPFUw++ZGCrpWJlStXon79+hI3qEDpqm1eXh58fHxkqrdx40Y4OTlBVVUVGzdu/OrrBAIBL0Gw8hCDQs43b97EgQMHuAqcvXr1wpgxYzBw4ECpqrAsOHr0KOdNlZSUJBdvqrKr1ufOnZPwNywpKUFMTAyMjY1lrlsWc3NzPHz4EEZGRmjVqhWCg4NhZGSEoKAg6OvrM9UGSgOqHh4e2LVrFwQCAZ49e4arV69izpw5WLx4MVNtPv2h+Mg8LZ+FwhcqKip4+fKlVJDz+fPnzH2bGjZsiDt37uDgwYO4desWRCIR3Nzc4OTkJFEggRXx8fHo2LGj1HkWFxfjypUrXFbk/PnzZb4Q4OnpifHjx2PNmjUSmRh9+vRhnhW0ceNGDBs2DOfOnYO9vT0A4Nq1a8jIyMCRI0eYaD59+lSiQFdMTAyGDRvGjbPjxo3j/AFZwZef7rVr1yTOLSwsDHXq1MGdO3dQo0YNrFu3Dlu2bKl2QTC+x7hOnTqhU6dO2LRpEw4cOIBdu3ahpKQEU6dOxejRozF48GCp6qyyhO/gkru7O6ysrLB582YcPXoURAQLCwvExcWhY8eOAEoLFiioAD73Yir4Pi5evEjr1q2jhIQEIiIKCgoiAwMDqlevHk2YMIEKCwuZ6ufn59PTp0+JqHS//+rVq2nAgAHk6elJr1+/ZqpNRNS4cWOKiIiQaj906BAZGBgw1/9RSU5OJl1dXTIzM6MaNWpwXhkLFy6ksWPH8ty7Ulh4OqioqNCjR4+k2h8+fEgqKioy1fpvYeVl8T2w8iMzNDSkxMREqfZr166RkZGRzPWqGix94EQiEV28eJEmTJhAOjo6pKWlRS4uLky0ysKHN1VF3nPiQ1lZmZo1a0ZRUVFMtMXs27ePdu/eTURESUlJpKurS0KhkFRVVengwYNMtcXMnz+f1NTUuHNXVVWlhQsXMtetKv5Q1Y0RI0ZQ165d6c2bN1zb33//TV27dmXu8RkXFyflE0VU6g0XFxfHVJuISCgU0suXL6XaX716xdxvUktLi/N2Lft9z87Olsv1RG5uLs2bN4+GDBlCgwcPpvnz51Nubi4zvTp16kh4Menr69O+ffu4xxkZGaSmpsZMX9wHPvx0VVVVKTs7m3vcp08fmjNnDvf44cOHVKdOHbn360ckJSWFZs+eTXp6elSjRg3mevHx8eTk5EQdOnSgJ0+eEBFRWFhYpfLAUyCNIhOskrNjxw5MmTIFRkZGWLBgAXx9fbF8+XKMHTsWQqEQ+/btQ926daWyVmRFcXExoqKi0KtXLwCAUCiEt7c3vL29mehVhLu7OyZOnIjMzEx07NgRAoEACQkJWL16dbWObru6uiIwMFBqH3dBQQFmzJjB+Rqwgs8VTIAfTwcA0NXVxZ07dyRWM4FSjzTxFiaW8HXefPPixYsKs2B0dXXx/PlzptpLly7FnDlzpCoaffz4EWvXrmWeHcM3AoEADg4OcHBwwJQpU+Dm5obQ0FDmYwwf3lTi35SxsTFu3LiBevXqMdH5Fk5OTtz/bW1tkZ2djT///BNNmjRh3p+SkhIkJCRg9uzZWLBgAVJSUiASiWBlZSXh/8gKeftD/f777+jTpw9q1qwpkQVYESw8uf5pq3VZWGacrl+/Hl26dIGhoSFsbW0BlM5p9evXx969e5npAoCDgwOeP38uNX++ffsWDg4OzD1z6CuVrvPz85lXKVVVVcW7d++k2h8+fMg0O0WMgYEBVqxYwVxHTMuWLbF3716sXLkSly9fxsuXL9G9e3fu+YyMDOYVEvny0xXPW2Kbh+vXr8PNzY17XiAQcNnO1YnKMsaVxdLSEuvWrcOqVav+cdz/XylbbVleGe3lEYlESE9Pr/C+oaJrLAX/H76jcAq+TfPmzWnTpk1ERHTmzBmqUaMG7dmzh3s+IiKCTE1NmfZBTU1NYnVD3ohEItqwYQM1atSIW7Vu1KgRBQQEVOsKLF9bvczLyyMlJSXm+nyuYC5ZsoSEQiG1a9eOBg0aRIMHD5Y4WOLn50fa2tq0atUqio+Pp8uXL9PKlStJW1ubli1bxlSbz/P+XlhlJJmZmdHevXul2sPCwsjY2FjmemXhM1Pge2GZCZabm0urV6+mli1bklAopE6dOtHWrVuZaJXFxMSEq9ZX9vxCQ0PJ0tKSuT4fFBUVkbGxsdwqV1WEiooKZWZm8qL99OlTatasGVlaWlKNGjXI3t6e6tatS+bm5hX+Bv9XBAIB977lM//KV6VlgZGRkcRRq1YtEggEpKOjQzo6OiQQCKhWrVrMxzgiog8fPlBwcDBNnTqVZs+eTaGhoVRUVMRcVyAQ0F9//SXV/vDhQ9LU1GSmO2TIEBoyZAgJhULq27cv93jIkCE0cOBAMjIyol69ejHTJyJyd3enwYMHU1FREWloaFBmZibl5OSQra0teXh4MNUmkn+GysWLF0lVVZVMTExITU2NXF1dJZ6fMmUKOTs7y1zX09OTOzw8PEhbW5u6dOlC06dPl3jO09NT5tpi+vfvT66urlRSUkKHDx8mZWVlid0yJ0+eJAsLC2b6fFEZxjg+r+H4rrZ89epVMjY2rjC7vbJcv1ZWFJlglZzMzExudbJ3794QCARo164d93z79u3x+PFjpn1o3749bt++zZuJtbgSpaenJ2fQX52rXLx79w5EBCLC+/fvJQyyS0pKcPr0ablkJPG5gsmXpwNQajKpqamJ9evXY968eQBKPU2WLFnCfBWLz/PmmwkTJuDXX3/Fly9fuJXjmJgYeHt7M8/4pK9kCiQnJ8vdLF6ebN++Hfv370dCQgIsLCzg5OSE48ePy61iJJ/eVDNnzoSZmZnUb3rz5s1IT09n5jdZs2ZNfP78WW6mvRVhY2ODzMxM5t5nFSH2hzpw4ACSkpKY+0OJRCLk5uaCiHjxrinrQxYeHo6tW7ciJCQE5ubmAErnU3d3d0yaNIl5X2rVqoWJEycy1xEzdOhQAKXXcOPHj5fwGSwpKcHdu3c5zxoWiH2oiAiampoS3y9lZWXY29vD3d2dmT4ArFu3Dn379oWenh4+fvyIrl274sWLF+jQoQOWL1/OVJuPDBUHBwfcunULFy5cQIMGDTB8+HCJ51u1aiVxDyMrKoOf7rJly+Do6Ih9+/ahuLgY8+fPh46ODvf8wYMHefePYkFlGOPoK56pnz9/lvKflDV8VlsGgMmTJ8POzg6nTp2SayGIagGfETgF/0zZVUwi6WyAFy9eMI/0RkREkImJCf3222905coVSk5OljgUyBZx9P5rh5KSEvn7+zPvB58rmHx5OpTn3bt39O7dO7npVZbz/has/MhEIhF5e3uTqqoq911XV1cnPz8/mWuJ0dbWJh0dHRIKhdz/xYeWlhYJhUKaOnUqM/1/Q/PmzWXu5dK4cWOaM2cO3b59W6bv+2/gy5uqYcOGdPPmTan2W7duUaNGjZhqr1y5ksaNG1ehT5I8OHfuHLVq1YqioqLo2bNn9PbtW4mjuvG1LAF5Y2JiQklJSVLtN2/elIvvYXp6Ok2fPp169OhBjo6ONGPGDKbzzfjx42n8+PEkEAhoxIgR3OPx48fTxIkTacWKFZSXl8dMX8ySJUt489AUExMTQ2vXrqXVq1dz2a+s4TNDhW8fOL7466+/6Pjx43Tt2jWp506ePElZWVny75QckfcYFxgYSIGBgSQUCmn58uXc48DAQNqwYQMNHjyYWrVqJXPdsvCd0a6urk5paWnMdaojAiIGJacUyAwlJSU8evQIurq6ICIYGBggISGBW6l/+fIlLCwsmHgqiKsvamtrSz3Huqx469atERMTAx0dHdja2n4zsi2PkvLyJC4uDkSE7t2748iRIxKZKMrKyjA0NGTuqQCUZqT17dsXDx48wPv379GwYUO8ePEC9vb2OHPmDFMvDR8fH2hoaMjd04Fv+D7v7/EjY82HDx+QmpoKNTU1NG3alGmVwtDQUBARN9aVrRSorKwMIyMjdOjQgZl+eT58+CD1uWtpaTHTIyIkJCQgODgYmZmZOHz4MBo1aoS9e/fC2NgYnTt3ZqZdlsLCQrl7U6mqquL+/fswMzOTaE9PT4e1tTU+ffokc83c3Fw0btwYw4YNQ0xMDDQ0NGBjYyM1lh49elTm2mURCoXc/8vOrSzndDFf82cRCARQVVWFmZmZzDPUhEIhXrx4IZcM6m+hrq6O2NhYqUyY69evo1u3bigsLGSmfe7cOQwcOBCtWrVCp06dQES4cuUKkpOTERUVxbTqsZ+fH+bMmcPcf6uq8ObNmwqvq2WNuro6UlJSYGRkBE1NTSQnJ8PExASZmZmwsrJiMsaJUVJSqtAHLj8/H3p6ekzHGL79dMPCwjBixAipa5eioiIcPHgQzs7OTPX5RN5jnHiuyMnJQePGjaGkpMQ9J76GW7p0Kdq3by9T3bKsWbOG81Dt2bMnTp8+jZycHHh6emLx4sWYPn06M20A6N69O7y9vdG7d2+mOtURRRCskiMUCiu8SC3/mMWEIp7EPn78+M3Xsdgm6efnBy8vL6irq2PJkiXfDIL5+vrKXL8ykJOTg9zcXAQHByMjIwORkZG83KBeunSJK2veunVrODo6MtGZNWsW93+RSITQ0FC0aNECLVq0QM2aNSVeu2HDBplq8xl05fO8y+Ln54elS5fCzs6uwpTqY8eOMdMuz5MnTyAQCNCoUSO56MXFxaFTp06oUUP+DgFZWVmYPn06YmNjJW5K5BGQKLtdZu/evUhJSYGJiQm2bt2KkydPysXQlS+sra0xefJkqQvU3377Ddu2bUNKSorMNcVzqo+Pzzdft3v3bplrlyUuLu6bz7PcsiO+pil/6Vl2Ya1z5844fvy4xFai/1WzMgTBBgwYgNzcXISEhKBNmzYQCAS4efMm3N3dYWBgwNTA2dbWFr169ZIqojR37lycP3++2i0mlicyMhIRERHIzc1FUVGRxHMsz3316tUwMjLCiBEjAAC//PILjhw5ggYNGuD06dNo2bIlM21TU1MEBwfD0dFRIggWFhaGVatWMRnjxAiFQrx8+VLKOuPRo0ews7Or0GpDVnwtAPfq1Ss0aNAAxcXFzLS/pS+PACDf8DXGOTg44OjRozKbM/4tCxYswMaNG7lrOBUVFcyZMwfLli1jrn3s2DEsXLgQXl5esLGxkbpvaNGiBfM+VFUUnmCVnEuXLvGmLb5I5cMLrGxga8mSJXLXrwzcvHmTu0G9ffs2LxVHymcG/fnnnwgPDwcg+8wgPj0dBg0axK3aDRo0SK576iuDlwXAvx+ZSCSCv78/1q9fjw8fPgAo9f4TV7Erm70iazQ1NZGamgobGxsAwIkTJ7B7925YWVlhyZIlTD0lxJUCd+3ahfr168v1u+fv74+goCA4Ozvj4MGDXHvHjh2xdOlSufWDD2bNmoXp06cjLy9PwoNu/fr1zPzAxHMq6yDXP8GnL82FCxewYMECLF++nMsWuH79OhYuXIhFixahdu3amDRpEubMmYOQkBCZ6e7cufMfMwxZez7u2rUL48aNQ7t27bgbleLiYvTq1Qs7d+5kqp2amoqIiAipdnEWLGv4CkIBpdXrFixYgHHjxuHEiRNwcXFBRkYGbty4gWnTpjHVDg4Oxr59+wCUfvcvXLiAM2fOICIiAl5eXjh//jwzbT48F/n0gassfrrlkxXEPHnyRCLbvDrC1xgnvlcuKipCVlYWTE1N5bqouXz5cl6qLQPAsGHDAJSO5WJY79aqNshz76UCNhQWFjJ5369V9JE3xsbG9OrVK6n2v//+Wy4VlfiC74ojVaFSoQLZwbcf2dy5c0lXV5e2bt1KycnJdOfOHdqyZQvp6urS/PnzmWrb2dlRZGQkERFlZGSQiooKjRo1iszMzJj739WqVYv+/PNPphpfQ01NjfMoKTvGiD+D6s7WrVslqg4bGxtzYy4Lynt88sWuXbsoIiJCqj0iIkKi+jQLmjdvTomJiVLtCQkJZGVlRUREFy5cIAMDA5lpCgQCMjAwkKpiVvZgfS0hEokoOzubCgoK6NGjR3TixAk6fvw4PXz4kKmumMaNG1f4Nz906JBMP+uKCAwMJA0NDZo2bRopKyvTpEmTyNHRkWrXrs18bCciMjc3p/DwcCKSHOcWLVpE06ZNY6qtqqrKeTnOnDmTJk6cSESllTG1tbWZahPJ33ORTx84vv10W7VqRba2tiQUCsnGxoZsbW25o0WLFqSpqUnDhw9nps83fI5xhYWF5OrqSkpKSqSkpMT9xmfMmEErV65krs8n2dnZ3zwUfB1FJlgVYdq0adiyZYtUe0FBAfr164fY2Fgmus2aNfvHzITXr18z0RaTnZ1dYST78+fPePLkCVNtPuG74gifmUF8ejqYmJjgxo0bqFu3rkT7mzdv0Lp1a2RmZjLT5vO8J0yYgPDwcN78yEJDQ7Fz506uGi4AtGzZEo0aNcLUqVOZVtJ69OgRl4F3+PBhdO3aFeHh4UhMTMTIkSOZZkq0bdsWjx8/5iopyRN9fX2kp6dLVYNMSEiAiYmJ3Psjb6ZMmYIpU6YgLy8Pampqclm5rQwZSatWrUJQUJBUu56eHiZOnIhx48Yx087IyKjQ505LS4sbW5s2bYpXr17JVPfmzZu8bockIjRt2hQPHjxA06ZN0bRpU7nqu7u7Y+LEicjMzETHjh0hEAiQkJCA1atXM6++u3XrVmzfvh2jRo1CaGgovL29YWJigsWLFzO/fgRKvfjE2UdqampclfGxY8fC3t4emzdvZqato6ODx48fw8DAAGfPnoW/vz+A0u+DPDI05J2hIs5yNTIykrsP3KVLl3j10x08eDAA4M6dO+jVq5fE5yz2pxJn7VRH+Bzj5s6di+TkZMTGxkp4Yzk6OsLX1xdz586Vqd7QoUOxZ88eaGlpcdmPX4O1xycfu7WqC4ogWBXh/PnzWLhwITeBAqU3xqyN8Pz8/HhL3y27d/zcuXMS/SgpKUFMTAwvJd7lBd83qEVFRUzLl3+L0NBQrFq1SioY9PHjR4SFhTENBvEZdJX3eZf3I9u+fTuio6Pl7kcGlAbTLSwspNotLCyY3ygREWdIHx0djf79+wMADAwMZH4zXp6dO3di8uTJePr0KaytreXq58DHdpnKSHnfGpYEBQVJmPeWRyAQMA+C5eTkVDh3GhoaIjc3l6l2mzZt4OXlhbCwMO5zz8vLg7e3N9q2bQsASEtLQ+PGjWWmWRlKxguFQjRt2hT5+flyD4ABwKJFi6CpqYn169dj3rx5AICGDRtiyZIlzL9vfAahAKBBgwbIz8+HoaEhDA0Nce3aNbRs2RJZWVlS3nSyZujQoRg9ejT3t+/Tpw+A0kBJ+aIcrFBXV+e22stri5avry+Ki4sRHR2NjIwMjB49Gpqamnj27Bm0tLSY9EO8zTsrK4sXP12xjYvYA67sdswfAT7HuOPHj+PQoUOwt7eXGO+trKyQkZEhc73atWtzOnzcI//+++/o06cPatas+Y8+a2UXlhVIogiCVRHOnz+Pzp07o27duvD09MT79+/Rq1cv1KhRA2fOnGGmO3LkSN5WT8WrKgKBQGplumbNmjAyMsL69et56Jl84PsGlY/MID49HfgMuvJ13pXFjwwozfravHkzNm3aJNG+efNmpubBAGBnZwd/f384OjoiLi4O27ZtA1B6MV2/fn2m2nl5ecjIyICLiwvXJi8/B29vb7x9+xYODg749OkTunTpwhm6sq5oVBngw6eI74wkoDTj6+7du1ILLMnJyVIZsLImJCQEgwYNQuPGjWFgYACBQIDc3FyYmJjgxIkTAEqrpMpy3mEd6Phe1qxZAy8vL2zbtg3W1tZy1RYIBPD09OSuHwFILbawgs8gFFBaPS0qKgqtW7eGm5sbPD09ERkZiZs3b/5jFsf/ysaNG2FkZITHjx9jzZo1XPDn+fPnmDp1KlPt4uJi+Pn5YdOmTZzPpoaGBmbMmAFfX1+pBRdZkpOTg969eyM3NxefP39Gz549oampiTVr1uDTp08VZqLKCr79dMeNG4c3b95g3759yMjIgJeXF+rUqYOkpCTUr19fbgV/+ICvMS4vL6/CebWgoIDJIkhZX08+PD4HDx7MFXsR3ytXhMIT7B/gZROmgv+Ke/fuUd26dSkgIIDs7e2pa9eu9OHDB2Z6QqGwUviXGBkZMfMQqOzI28+hLDNnziRtbW3q0qULTZ8+nTw9PSUOFvDp6SD+jIVCIfd/8aGsrEzNmjWjqKgoZtp8ellUBmJjY6lWrVpkaWlJrq6u5ObmRpaWlqShoUHx8fFMtZOTk8na2pq0tLRoyZIlXPv06dNp1KhRTLUtLS1p6NChdO3aNcrKyuLFz6GgoIBu3LhBf/zxB71//14umnzDh09RZZlTvby8yNDQkC5evEjFxcVUXFxMMTExZGhoSLNnz2auLxKJ6MyZMxQYGEgBAQF09uxZKikpYaa3ZMkSKigooM+fP3/1NfK4xtDW1iZlZWUSCoWkqqpKOjo6Ekd1xc3NjRtXt23bRmpqauTo6Eja2trk6urKXL+kpIS+fPnCPT506BDNmDGDAgMDv/mdkCd9+/alZ8+eyfQ9J02aRHp6ehQUFETJycmUnJxMQUFB1KBBA5o0aZJMtcozaNAgGjNmDH3+/FnChy02NpbMzMyYavPtp5ucnEy6urpkZmZGNWrU4PQXLlxIY8eOZa7PJ3yNcV26dKFNmzYRUenfPDMzk4iIpk2bRr169WKmq6BqIyCqJEtkCr6La9euwdHREe3bt8fJkyehpqbGTKuylBX/0SksLOSl4oiDg8NXnxMIBLh48aLMNePi4nj1dAAAY2Nj3LhxA/Xq1WOqU5bKcN58+pGJefbsGbZs2YI///wTRAQrKytMnTqV+bl/jU+fPkFJSYnpinmtWrWQnJwst60xCkqxsLCAr68vRo0aBU1NTSQnJ0v4FLHYolVZ5tSioiKMHTsWhw8f5ipoiUQiODs7IygoiGk11O/FxsYGp0+fhoGBgczec/DgwTh69KhUpdmXL1+iR48ezDNgQ0NDv/m8rL3YbG1tvzsLgmWFRpFIBJFIxH3XIiIikJCQADMzM0yePLlSfN/4puwYJCtq166NgwcPclswxZw5cwYjR47E27dvZaZVnnr16iExMRHm5uYS55adnQ0rKysUFhYy01ZXV0dKSgqMjIwktDMzM2FlZYVPnz4x0waAHj16oE2bNlizZo2E/pUrVzB69GhkZ2cz1ecTeY9xYq5cuYLevXvDyckJe/bswaRJk/DgwQNcvXoVcXFxaNOmjUz1KsvYCgBhYWEYMWKERCVWoHSeP3jwIJydnZnqV2UUQbBKzNd+ZDk5OdDT05MIgLH+kfHJzJkzYWZmJuVbsXnzZqSnp8ulvLcC+ZKTk8OLpwPf8HneSkpKeP78udQN+qtXr9CgQQMUFxcz064MvHnzBpGRkXLfvjBgwACMHz++WhvmVkbU1dWRmpoKQ0ND6Onp4cKFC2jZsiXS0tJgb2+P/Px8mWv6+fnBy8sL6urqMn/v/4ZHjx4hOTkZampqsLGxqVQGuyyCAu3bt4eVlZXE9pUXL17AwcEBzZs3R2RkpMy0KgN+fn7f/Vqxn1F15c2bN7h+/Tr++usvzv9RTGW4SWTxfa9fvz5iY2NhaWkp0Z6amoouXbogLy9PZlrlqVOnDhISEmBlZSVxbgkJCRg2bBhevnzJTNvU1BTBwcFwdHSU0A4LC8OqVauQkpLCTBsoDT4mJSXB1NRUQj8nJwfm5ubMg3A/Kvfu3cO6detw69YtiEQitG7dGj4+PrCxsZG5VmUaW7927Z6fnw89PT3FdshvoPAEq8R8a58va/6NTwLryhdHjhyp0PivY8eOWLVqlSIIVg3h09OBz6ArH+fNpw/b3bt3v/u1LA3i7969ix49ekBbWxvZ2dlwd3dHnTp1cOzYMeTk5CAsLIyZ9oABA+Dp6Yl79+7BxsZGKutMYWrKBj58isQXw506dULXrl3RrVs3dOrUSa4V1MrSrFkzNGvWjBdtPjh9+jS6dOkCT09PbNy4EU+fPkX37t3RsmVLHDx4UK59+fjxI758+SLRVlHVzP+FyhTY4jMIFRUVBScnJxQUFEBTU1NicVkgEFSKIBgLpk2bhmXLlmH37t1clsjnz5+xfPly5p6PPXv2REBAALZv3w6g9HP+8OEDfH190bdvX6bafPvpqqqq4t27d1LtDx8+lGsRFr6RxxhXFhsbm3/MRJMVlWlspf/vH1ueJ0+e8FbYrqqgyARTUCFlTZqJCMeOHUPt2rVhZ2cHALh16xbevHmDoUOHMjcFVFVVxf3796W2C6Wnp8Pa2lqxqlINsbW1haenJ5ydnSVW0u7cuYPevXvjxYsXzLQbNWqE33//XSp9OikpCQMHDmRaIZKP8xYKhd9M6xYIBPDz88OCBQuYaf/TNMTa3NPR0RGtW7fmZftC+a1ZZVGYmrJjwoQJMDAwgK+vL4KCgjBr1ix06tSJM8sOCQlhpr1y5UrExcXhypUr+PTpE9q0acMFxTp37sx8y3tJSQn27NmDmJiYCoMSLLa6/1tYZMYApTcGnTt3xpAhQ3Dq1Cm0bt0a+/fv/2bFTllRUFAAHx8fREREVJhpKM/femZmJj5+/AhLS8tvjkGy4J+CUKyr/zZr1gx9+/bFihUrKk0WZnlYfN+HDBmCmJgYqKiocMVlkpOTUVRUhB49eki8VtaL2c+ePYODgwOUlJSQlpYGOzs7pKWloV69eoiPj2e+JXzBggXYuHEjd38gLviybNkyproAMHHiROTl5SEiIgJ16tTB3bt3oaSkhMGDB6NLly7VeuGerzEuKSkJNWvW5LK+Tpw4gd27d8PKygpLlixhuuX6xo0bEIlEaN++vUT7H3/8ASUlJe6+WdaId4slJyejefPm3HZzoPRzzsrKQu/evREREcFEvzqgyASrIsj7R1Y2sOXj44NffvlForR7SUkJpk6dyjSqL8bMzAxnz56VWrk6c+aMzC+QFVQOHj58iC5duki1a2lp4c2bN0y18/PzK1w90dLSwqtXr5hq83Hely5d4s2PLCsri8n7/ltu3LiB4OBgqfZGjRoxDbgCkApAKJAP27dv5z77yZMnc9t3BgwYgMmTJzPVnjdvHubNm4eSkhLcuHEDsbGxiI2NxYYNGyAQCLgMUFZ4eHhgz5496NevH6ytrZlUz6qsNG7cGBcuXEDnzp3Rs2dP7N27V27n7+3tjUuXLmHr1q1wdnbGli1b8PTpUwQHB2PVqlVMNIuKirB8+XIkJSXB3t4ec+fOxZgxY7gbI3Nzc5w+fVqqUqgsmT17NlxdXXkLQj19+hQzZ86stAEwVmhra0tts5elx963aNiwIe7cuYMDBw4gKSkJIpEIbm5ucHJyYuplLGb58uVYsGABL36669atQ9++faGnp4ePHz+ia9euePHiBTp06IDly5fLpQ98wccYB5Rm/82dOxc2NjbIzMzEiBEjMHToUBw+fBiFhYVMA4/Tpk2Dt7e31P3506dPsXr1avzxxx9MdMW7xe7cuYNevXpJfL+VlZVhZGSksNn4J+Tvxa/gv6Ft27Z0+PBhqfYjR45Qu3btmGrXq1eP/vzzT6n2P//8k+rUqcNUm4goJCSE1NTUaPHixRQbG0uxsbG0aNEiUldXp+3btzPXVyB/TExM6MKFC0QkWd0nNDSULC0tmWo3b96cfvvtN6n2TZs2Mdfm87yzs7MpPj6enJycyN7enp48eUJERGFhYXT58mWm2nyjp6dHSUlJRCT5uZ87d44aN27MVDsrK4vp+yuovKSmplJQUBCNHDmS9PX1qW7dujR48GDmunXr1qVTp04x1/lfKPs7/F/Q1taWqlCmo6NDKioqpKWlJdfqjAYGBnTp0iUiItLU1KS0tDQiKh1j+/Tpw0Rz1qxZpKurS25ubmRiYkIDBw4kc3NzOnjwIEVERJCNjQ2NHj2aibYYdXV1mfwt/1uGDBlChw4d4k3/e5DV911B5SEmJobWrl1Lq1ev5q7rqjt8jHFERFpaWpSenk5ERKtWraKff/6ZiIgSEhKYX8PVqlWrwt9uZmYmaWhoMNUmItqzZw99/PiRuU51RJEJVkVISUlB69atpdptbW2ZmzwWFxcjNTUV5ubmEu2pqalyyWJwdXXlfAzEqcxGRkbYtm1btfVy+NHh09Nh1qxZmD59OvLy8tC9e3cAQExMDNavX888jZ3P8+bTh03Mw4cP8dtvvyE1NRUCgQAWFhaYMWOG1NgjawYNGoSlS5dy2RECgQC5ubmYO3cu85U0ExMTdOzYEWPHjsXw4cMlMvEUsOPs2bPQ0NDgik1s2bIFO3bsgJWVFbZs2QIdHR1m2iNGjEB8fDxEIhG6dOmCLl26YN68eUx978qirKz8w1QjrUxbj16/fg1jY2MApdm94m2AnTt3xpQpU5hoRkZGYs+ePejbty8ePXoECwsLnDp1iqsYqKenBycnJybaYnr16oWbN2/KNXO/rI9sv3794OXlhZSUFLn7LsbHx6Njx44SW5WA0uvqK1eucJnf8+fPl/nYv2TJEri4uPBS8KIiH1+gdG5VVVWFmZkZ91uornTv3p27hmS9g6GywMcYB5Ta9ojvR6Ojo9G/f38ApZmPrHdwqKio4OXLl1Lj2/Pnz6V+9yxgVXHzh4DvKJyC76NOnTp05coVqfbExETS1tZmqu3p6Uk6Ojq0du1aunz5Ml2+fJnWrl1LdevWJU9PT6ba5fnrr7/o/fv3ctVUwA/z588nNTU1EggEJBAISFVVlRYuXCgX7a1bt1KjRo04bWNjYwoNDZWLNl/n3apVK+4cy65K3759m+rXr89c//Dhw1SjRg2yt7cnT09P8vT0pA4dOlCNGjUoIiKCqfbbt2+pU6dOpK2tTUpKSmRgYEA1a9akLl260IcPH5hq37p1i+bMmUONGzcmFRUVGjhwIEVERNCnT5+Y6v7oWFtbc9lQd+/eJWVlZZo3bx61b9+exo8fz1RbIBCQrq4ueXl50enTp+U+p61bt46mTp1KIpFIrrr/hv379zP/7ckbGxsbio2NJSKinj170uzZs4mIKDAwkBo1asREs0aNGlxWLxGRqqoqPXr0iHv87NkzUlJSYqItZufOndSkSRPy9fWlyMhIOnHihMTBAvH8+U+HUChkoi9GKBTSy5cvpdpfvXrFXLt169akpKRE3bt3p/3798s1W0T82Vb0eYv/7dKlC71+/VpufZIXq1atooMHD3KPhw8fTkKhkBo2bEh37tzhsWfs4WOMIyJycHAgZ2dnCgsLo5o1a3IZaLGxsWRoaMhMl4hoxIgR1LVrV3rz5g3X9vfff1PXrl1p+PDhTLWJiIqLi2nt2rXUtm1bql+/vlTWs4KvowiCVRH4/JGVlJTQ6tWrqWHDhtxE1rBhQ1q9ejUVFxcz1VbwY1NQUEA3btygP/74g5fgJ19BVz7OW01NjduaVzYIlpGRQSoqKsz1jY2NadGiRVLtixcvJmNjY+b6RPxuXxCJRHTx4kWaMGEC6ejokJaWFrm4uMi1Dz8StWrV4r7vvr6+NGzYMCIqDUqyDvr+/fffdOLECfL09KTWrVuTiooKtWvXjry9ven06dNMtYmIBg8eTLVr1yZjY2Pq378/DRkyROJgTXR0NM2bN4/c3NzIxcVF4mDJqVOn6OzZs1Lt586dk8vnvmHDBgoMDCQioosXL5KamhopKyuTUCikgIAAJpoCgUAiCFN+292LFy+YB2P4DELxjUAgoL/++kuq/eHDh6SpqclcPzk5mX799VfS09MjbW1tmjx5Ml2/fp25bnR0NLVv356io6Pp3bt39O7dO4qOjiZ7e3s6deoUJSQkUPPmzcnV1ZV5X+SNsbExJSYmEhHR+fPnSVtbm86dO0dubm7Us2dPnnvHFj7GOKLS77m1tTVpaWnRkiVLuPbp06fTqFGjmOkSET158oRMTEyodu3a1K1bN+rWrRtpa2uTubk55ebmMtUmIlq0aBHp6+vT2rVrSVVVlZYtW0Zubm5Ut25d7m+hoGIU1SGrCE+fPkWXLl2Qn58PW1tbAKVmePXr18eFCxfkZnYpLvsrD0P8skRGRiIiIgK5ubkoKiqSeC4pKUmufVGgoDpiamqK4OBgODo6SlSqCgsLw6pVq5hvu1ZXV8fdu3eltmmlpaWhZcuWKCwsZKr/PdjY2OD06dPMx9ukpCS4ubnh7t27iuqQjBAb4VtZWaFz585wdnbGxIkTkZ2dDSsrK7l+3zIyMuDv7499+/ZBJBIx/5uXrf5cESwrPvv5+WHp0qWws7ODvr6+lCn9sWPHmGm3aNECq1atQt++fSXaz549Cx8fHyQnJzPTrojc3FzcvHkTpqamXPU+WSMUChEaGsoVexk1ahQCAgJQv359AKXbtFxcXBTjjIwZOnQogNIqdb1794aKigr3XElJCe7evQtzc3OcPXtWLv0pLi5GVFQUdu/ejbNnz8Lc3BwTJkzA+PHjKywE9L9ibW2N7du3o2PHjhLtiYmJmDhxIh48eIDo6Gi4uroiNzdX5vp8oqamhkePHsHAwAAeHh749OkTgoOD8ejRI7Rv3x5///03312UG/IY477Fp0+foKSkxG2BPnDgAAYOHIhatWrJVKegoAD79+9HcnIy1NTU0KJFC4waNUpq6zULTE1NsWnTJvTr1w+ampq4c+cO13bt2jWEh4cz70NVReEJVkVo1KgR7t69K/Ejc3FxkduPTIy8g18AsGnTJixYsADjxo3DiRMn4OLigoyMDNy4cQPTpk2Te38UVH9+xKArn35kANCtWzdcvnxZKgiWkJCAn376ibn+95CdnY0vX74wee/Hjx/jwIEDCA8Px71799ChQwds3ryZiZaCUo+SWbNmoVOnTrh+/ToOHToEAHj06BEaN27MVPv169eIi4vjqkI+ePAAderUwaBBg+Dg4MBUG2Ab5PongoKCsGfPHowdO1bu2mlpabCyspJqt7CwQHp6ulz6EBMTg5iYGPz1119Snqq7du1iolneM2bSpElMdCoTmzZt+u7Xzpw5U+b64sASEUFTU1OiIqKysjLs7e3h7u4uc92vIRKJUFRUhM+fP4OIUKdOHWzbtg2LFi3Cjh07MGLECJnqZWRkVHi/oKWlhczMTABA06ZNmfs18YGOjg4eP34MAwMDnD17Fv7+/gBKvws/QrCZjzHua6iqqko8njRpEtq3by9zf8JatWph4sSJ33xNv379sHPnTujr68tU+8WLF7CxsQEAaGho4O3btwCA/v37Y9GiRTLVqm4ogmBViO/5kbHg5cuXmDNnDjeolU8eZD2ob926Fdu3b8eoUaMQGhoKb29vmJiYYPHixZzpogIFsuJHDbp6e3vj7du3cHBwwKdPn9ClSxeoqKhgzpw5mD59OhPNsua5AwcOhI+PD27dugV7e3sAwLVr13D48GH4+fkx0a8MbN++Hfv370dCQgIsLCzg5OSE48ePw8jIiO+uVWs2b96MqVOnIjIyEtu2bUOjRo0AAGfOnEHv3r2Zauvq6qJevXr46aef4O7ujm7dusHa2pqpZmWhqKhIKjtEXtSuXRuZmZlSv6309HSZZwZUxD9lwbFAHsWLvoe4uDisW7eOK3piaWkJLy8vZgscGzdulHicl5eHwsJCaGtrAyjNgFNXV4eenh6TIJg40GxkZIQ5c+bI5ftVEbdu3cLu3btx4MABqKiowNnZGVu2bOEWm9avX4+ZM2fKPAjWpk0beHl5ISwsDLq6ugBK/wbe3t5o27YtgNKgNOsFBz4YOnQoRo8ejaZNmyI/P58rQnHnzp1qX5CEjzHu38Dn5rf4+Hh8/PhR5u/buHFjPH/+HE2aNIGZmRnOnz+P1q1b48aNGxIZqAqkUWyHrEJkZGQgICBA4iLCw8MDpqamTHX79OmD3NxcTJ8+vcJBbdCgQUz11dXVkZqaCkNDQ+jp6eHChQto2bIl0tLSYG9vj/z8fKb6Cn4sLCws4Ovri1GjRklsCxQHXat7dk5hYSFSUlIgEolgZWUFDQ0NZlpCofC7XicQCCrFCmrZ74OsMDAwwMiRI+Hk5IRWrVrJ7H0VVF7u378v96BX69atERMTAx0dHdja2n7z5oRltquPjw80NDR4WaGeOHEirl27hmPHjnHXTenp6Rg2bBjatm2LnTt3MtXX19fHmjVreMmC+1qVwpKSEiQmJnJVClmwb98+uLi4YOjQoejUqROICFeuXMGxY8ewZ88ejB49mpk2AISHh2Pr1q0ICQnhKg0/fPgQ7u7umDRpEvPqmPJGSUkJz58/h6OjI1JTU/Hzzz/D3d0dAwYMgJKSksRr8/LyUL9+fZkHSx8+fIhBgwYhKysLBgYGXMVlExMTnDhxAs2aNcPx48fx/v17Xn4PLPny5QsCAwPx+PFjjB8/nrOwCQgIgIaGBiZMmMBzD9nB5xj3PbC4huNbe+7cudDS0sL8+fMRGRmJUaNGwcjICLm5ufD09MSqVatkqledUATBqgjnzp3DwIED0apVK4mLiOTkZERFRaFnz57MtDU1NXH58mXebtBMTEwQGRmJ1q1bo23btpgwYQImTZqE8+fPY+TIkYpsMAUyRRF0VfA1WFzEEBESEhIQHByMzMxMHD58GI0aNcLevXthbGyMzp07y0xLgSQikQjp6ekVbttgGRTgAz8/P3h5eUFdXf0fMyt9fX1lqj1r1izu/yKRCKGhoWjRogVatGghZeewYcMGmWqX5e3bt+jduzdu3rzJZaA8efIEP/30E44ePcplCbGibt26uH79OvOFy4oQB0b09PQk2vPz86Gnp8d0kcHS0hITJ06Ep6enRPuGDRuwY8cOpKamMtMGSj1zIiMjuWCEmFu3buE///kPsrKymOrL215BKBTixYsXCA4OhqurK5flKm+ICOfOncOjR49ARLCwsEDPnj2/e/GrusNqexyf8DnGfQ/VMQhWnmvXruHKlSswMzPDwIEDmWpVdRTbIasIc+fOrTCiO3fuXPj4+DANghkYGPCaQtq9e3dERUWhdevWcHNzg6enJyIjI3Hz5k3OfFSBAlnRoEED5Ofnw9DQEIaGhrh27RpatmyJrKwsXn8HCkqRlzm9vDh69CjGjh0LJycnJCUl4fPnzwCA9+/fY8WKFTh9+jTPPayeXLt2DaNHj0ZOTo7U71oemYfyvjEuG9j63iCXrEyEb9++LfFYvKB2//79/+l9/y21a9fGlStXcOHCBQkDY3kFPCdMmIDw8HBesuCIqMLsv/z8fOZb9TIzMzFgwACp9oEDB2L+/PlMtQHg+fPnFXo5lpSU4OXLl0y1+bRX4NsPSCAQoHfv3t/cXl7d5vN/A6vtcXzC5xinoBR7e3vOUkTBt1EEwaoIqampiIiIkGp3dXVFQEAAU+2AgADMnTsXwcHBvPjUbN++nVulnzx5MlfVa8CAAZg8ebLc+6OgeqMIulZuWJrT84G/vz+CgoLg7OyMgwcPcu0dO3bE0qVLeexZ9Wby5Mmws7PDqVOn5O5dUlV8B2VlInzp0iUZ9eh/RyAQ4Oeff8bPP/8sF73yWXDbt29HdHS03LLgxHOWQCDA+PHjK6xSyNqjzcDAADExMVJ+SDExMXIJfvTo0QPu7u4ICQlBmzZtIBAIcPPmTUyaNAmOjo5MtfnytD137tw/Vn2sDFki1W0+/xHhe4xTUFrQJzY2tsKsdnkUtqqqKIJgVQRdXV3cuXMHTZs2lWi/c+eOVHq7rBkxYgQKCwthamoKdXV1qUGN9XZEoVAokT79yy+/4JdffmGqqeDHRRF0VfA1goODUb9+fZm+58OHDyvMRNHS0sKbN29kqqXg/0hLS0NkZCQvRsVVpdgLi8xXV1dXBAYGQlNTU6K9oKAAM2bMYF49TN4G7d+bBccqCFsZqhTOnj0bM2fOxJ07d9CxY0cIBAIkJCRgz549CAwMZKoNlFakGzduHNq1a8ddvxYXF6NXr17MfeByc3O5IKOamhrev38PABg7dizs7e2ZeYyWrwhansris6mg6sP3GPdvMDQ0lLqHrers2LEDU6ZMQb169dCgQQOJz1kgECiCYN9AEQSrIri7u2PixInIzMyUuIhYvXo1Zs+ezVSbdabZP3H27FloaGhw3jhbtmzBjh07YGVlhS1btkBHR4fX/imoXiiCrj8m31PWm4WBs76+PtLT06WybBMSEnjxrfhRaN++PdLT03kJgvF1Y1wZCA0NxapVq6SCYB8/fkRYWBjTIFhZg/aZM2dy3qo9evRgZtDOdxZcZahSOGXKFDRo0ADr16/ndjRYWlri0KFDzAsrEREKCwsRGRmJp0+fIjU1FUQES0tLNGvWjKk2wJ+9wosXL5gvkCtQAPA/xpXnw4cPUtdwWlpaAOS/Bb8s8+fPR506dWT+vv7+/li+fDl8fHxk/t7VHlJQJRCJRLRhwwZq1KgRCQQCEggE1KhRIwoICCCRSMR395hibW1Np06dIiKiu3fvkrKyMs2bN4/at29P48eP57l3CqobZ86cocuXL3OPN2/eTC1btqRRo0bR69eveeyZAiIiDQ0NysjIkOl7LlmyhIRCIbVr144GDRpEgwcPljhYsnr1arKysqJr166RpqYmXb58mfbt20e6urr022+/MdX+kTl69ChZWVnR7t276ebNm5ScnCxxsMTY2Jhu3bpFRER2dnYUFBRERETnzp0jHR0dptr/Bln+1t6+fUtv3rwhgUBA6enp9PbtW+54/fo1hYaGkr6+vky0voaFhQVt2LBBqn39+vVkYWHBVLsy8OXLF7pw4QIFBQXRu3fviIjo6dOn9P79e557xo6SkhKqWbMmPXr0iBd9Nzc3WrJkCRERbdu2jdTU1MjR0ZG0tbXJ1dWViaZQKKSXL18yeW9Zw2I+ryr8yOcuazIzM6lv376krq5OQqGQOwQCAQmFQma6IpGIMjMz6cuXL0RE9PnzZzp48CCFhoZSXl4eM92yaGpqKr5H/yWKIFgV5N27d9wFjLxIT0+nBQsW0MiRI7nJ9cyZM3T//n3m2rVq1aKsrCwiIvL19aVhw4YREdGtW7eofv36zPUV/Fgogq6VGxYXjg0aNKCwsDCZvue/Yf78+aSmpsYtcKiqqtLChQt568+PgPizLnvI46KZiJ8b4/8GWf7WxJ/r1w4lJSXy9/eXidbXUFZWprS0NKn2tLQ0UlFRYarNN9nZ2WRhYUHq6uqkpKTE/V09PDxo0qRJTLVzc3Pp8ePH3OM//viDPDw8KDg4mKmuGCsrK7p69apctMpTUlLC3SATER06dIhmzJhBgYGB9PnzZyaaAoFAEQSrAvzI5y5rOnToQB06dKCDBw/SpUuXKDY2VuJgwZ9//kmGhoYkFArJzMyMMjMzqU2bNlSrVi1SV1enevXqySX47urqStu2bWOuUx1RbIesgpTfRsCauLg49OnTB506dUJ8fDyWL18OPT093L17Fzt37kRkZCRTfWVlZRQWFgIAoqOj4ezsDACoU6cO3r17x1RbwY9HVlYWrKysAABHjhzBgAEDsGLFCiQlJaFv3748904BC4qKipibQ3+L5cuXY8GCBUhJSYFIJIKVlRU0NDR468+PQFZWFm/aP6Lv4KVLl0BE6N69O44cOSKxLURZWRmGhoZo2LAh0z7wbdDOJx4eHrCzs0NycjLq1q3LtQ8ZMgQTJkxgqj169GhMnDgRY8eOxYsXL+Do6Ahra2vs27cPL168YO5Zs2bNGnh5eWHbtm2wtrZmqlUePuwVxo0bJ+H9pkC+xMfHo2PHjqhRQ/IWu7i4GFeuXOE8QFltj/sRuXv3Lm7dugVzc3O5afr4+KBly5aIiorCrl270L9/fzRt2hRXr14FEeGXX37B0qVLsXfvXqb9MDMzw6JFi3Dt2jXY2NhIeZ7NnDmTqX5VRkDEcFO6gv8JW1vb7zYSZFFSXUyHDh0wfPhwzJo1C5qamkhOToaJiQlu3LiBwYMH4+nTp8y0gdIKNkVFRejUqROWLVuGrKwsNGrUCOfPn8f06dPx6NEjpvoKfizEN6RWVlbo3LkznJ2dMXHiRGRnZ8PKyooLyCrgh/DwcAwaNEim3jY+Pj7Q0NBQlPVWwDtPnz5Fo0aN+O4GAMDa2hpnzpyRaYAoJycHubm5CA4ORkZGBiIjI9GoUSPs3bsXxsbGnPcnC7Zt24Zff/0Vrq6uFRq0T5o0iZk239SrVw+JiYkwNzeXuI6Tx7ymo6ODa9euwdzcHJs2bcKhQ4eQmJiI8+fPY/LkycjMzGSmLdYvLCxEcXExlJWVpQJErItRvHnzBtevX6/Qb1K8qMsKkUiE9PT0CrUrKsgib1jM53yjpKSE58+fS3my5efnQ09PT1GQgAEODg5YsGAB82qvZdHT08P58+fRqlUrFBQUQFNTE/Hx8dwcdvXqVYwcORI5OTlM+2FsbPzV5wQCAfPxtSqjyASrxAwePJjvLgAA7t27h/DwcKl2XV1d5OfnM9ffvHkzpk6disjISGzbto27QThz5gx69+7NXF/Bj0Xnzp0xa9YsdOrUCdevX8ehQ4cAlJYgbty4Mc+9q97I05xeUdZbAQCkpKQgNzcXRUVFEu0DBw6Uaz9evHiB5cuXY+fOnfj48aPcdOVtInzz5k2MHTsWTk5OuH37Nj5//gwAeP/+PVasWIHTp0/LXFMMnwbtfCMSiSq8+X7y5Anz3QVfvnyBiooKgNJsfvFvy8LCAs+fP2eqDfBb3CkqKgpOTk7cTXL5ym0sg2DXrl3D6NGjkZOTI2XCL4/qkHwVm+EbIqowgSE/P79aBfsqEzt37sTkyZPx9OlTWFtbS13DtWjRQuaaHz584DL5atWqhVq1akFfX597vnHjxnj58qXMdcvDZ1Z7VUcRBKvE+Pr68t0FAIC2tjaeP38uFW2+ffu2XFasmzRpgpMnT0q1b9y4kbm2gh8PRdCVH/z8/LB06VLY2dlBX1+feTnt7y3rraB6kpmZiSFDhuDevXsQCATcTaL4e8fiBvHNmzeYNm0azp8/j5o1a2Lu3LmYPn06lixZgnXr1qF58+ZMqyOKycrKwvTp0xEbG4tPnz5x7eKbN5Y3x/7+/ggKCoKzszMOHjzItXfs2BFLly5lpitmyJAhGDJkCHOdykbPnj0REBCA7du3Ayj9nn/48AG+vr7Mt/k3b94cQUFB6NevHy5cuIBly5YBAJ49eyaxNZMV48aNY67xNWbPng1XV1esWLEC6urqctWePHky7OzscOrUKbnMqWWR93xeGRg6dCiA0t/W+PHjucAvUDqf3L17l1fbhepMXl4eMjIy4OLiwrWJ53VWc1rDhg2Rm5uLJk2aACjddl02+y8vLw86Ojoy1/0W5a9jFHwbRRCsipKZmYmPHz/C0tJSwm+ABaNHj4aPjw8OHz4MgUAAkUiExMREzJkzh3kqt5jKntKtoPqgCLryQ1BQEPbs2YOxY8fKRa+ylfVWIF88PDxgbGyM6OhomJiY4Pr168jPz8fs2bOxbt06Jprz589HfHw8xo0bh7Nnz8LT0xNnz57Fp0+fcObMGXTt2pWJbnmcnJwAlGZj1K9fX64XzA8fPqxwztbS0sKbN2/k1o8fjY0bN8LBwQFWVlb49OkTRo8ejbS0NNSrVw8HDhxgqr169WoMGTIEa9euxbhx49CyZUsAwO+//4527dox1S7Px48f8eXLF4k2ceYjC54+fYqZM2fKPQAGAGlpaYiMjJTywJMH8p7PKwO1a9cGUBqI0NTUlNh2q6ysDHt7e7i7u/PVvWqNq6srbG1tceDAAbnNaY6Ojvjzzz+57Y9TpkyReP78+fNo3bo1834AQFhYGNauXYu0tDQAQLNmzeDl5fVD/f7+K3gy5FfwnXz+/JkWL15M/fv3J39/fyouLqaRI0dyFZUsLS25yomsKCoqotGjR3OVs2rWrElCoZDGjBlDxcXFTLWJiK5evUrGxsacfvlqXgoUyJqSkhJ6+PAhXb58meLi4iQOBWyoU6cOpaen86Lt4uJSYcXdDx8+kIuLCw89UsCaunXrUnJyMhERaWlp0Z9//klERDExMdSqVSsmmk2aNKELFy4QEVFGRgYJBALy8PBgovUtatWqxZ2vvDExMeE+g7LV0UJDQ8nS0lLmetra2qSjo/NdR3WnsLCQQkJCaNq0aTRlyhTasWMHFRYWMtUUiUSUnZ1Nb9++pdevX0s8l5WVJZcqhh8+fKBp06aRrq5uhZVJWTJkyBA6dOgQU42v4eDgQGfOnOFFm8/5nG+WLFlCHz584LsbPxTq6uoVVv7lk8zMTHr27BlznfXr15O6ujp5e3vTiRMn6Pjx4+Tl5UXq6uq0YcMG5vpVGYUxfiVn9uzZ2Lt3LwYOHIhLly7B2toaDx8+hJ+fH4RCIZYtWwYbGxvs37+feV8yMzORlJQEkUgEW1tbNG3alLkmULpNqVmzZvDz86swrVq8+qJAgSzg20fjR4VPc/qvGdm+evUKDRo0QHFxsdz7pIAtOjo6uHXrFkxMTGBqaoqdO3fCwcEBGRkZsLGxYWIUXrNmTeTk5HBVENXV1XH9+nW5V6zjw0RYzJo1axAaGopdu3ahZ8+eOH36NHJycuDp6YnFixdj+vTpMtULDQ397tfyuW2uuiISiaCqqooHDx7I7ZqxPNOmTcOlS5ewdOlSODs7Y8uWLXj69CmCg4OxatUqLjNSVvz+++/c//Py8rB06VK4uLhUWLmNpffgsWPHsHDhQnh5eVWozcInSYyi2IwCeTJgwACMHz8ew4YN47srcsfY2Bh+fn5SO7NCQ0OxZMkShWfYN1Bsh6zkREZGYs+ePejbty8ePXoECwsLnDp1Cn369AFQWp1C1hP41zAxMYGJiQlKSkpw7949/P3333LZ78xnSreCHw8+fTR+NPg2p3/37h2ICESE9+/fQ1VVlXuupKQEp0+flgqMKageWFtb4+7duzAxMUH79u2xZs0aKCsrY/v27TAxMWGiKRKJJL7XSkpKvBgl82EiLMbb2xtv376Fg4MDPn36hC5dukBFRQVz5syReQAMUAS2xJQNzJRFIBBAVVUVZmZm36wy9t8iFArRtGlT5Ofn8xYEi4qKQlhYGLp16wZXV1f89NNPMDMzg6GhIfbv3y/za+iKilpV5HfHelFNHBBwdXWV0CRGPkl8z+eVicjISERERFRYdCUpKYmnXlVfBgwYAE9PT9y7d0/uwWagtAjExo0bkZqaCoFAAAsLC/z6669yWWh6/vx5hV5zHTt2lEvhkaqMIhOsklOzZk1kZ2dz5txqamq4e/cudzHx/PlzGBgYMM1U+PXXX2FjYwM3NzeUlJSga9euuHLlCtTV1XHy5El069aNmTYAdO/eHd7e3gpTcgVyoVatWkhOTlYEXeWAg4PDd7+WhYeXUCj8ZpBTIBDAz88PCxYskLm2An45d+4cCgoKMHToUGRmZqJ///74888/UbduXRw6dAjdu3eXuaZQKESfPn04w+SoqCh0795dKhB29OhRmWuXRZztmp2dzbWxNhEuT2FhIVJSUiASiWBlZQUNDQ3mmmUhIly6dAkfP35Ex44d5W5gLG/EY11F2c3iv3vnzp1x/PhxmX8Wp06dwqpVq7Bt2za5Zz0CgIaGBh48eABDQ0M0btwYR48eRbt27ZCVlQUbGxt8+PBB7n2SBzk5Od983tDQUKZ6fM/nlYVNmzZhwYIFGDduHHbs2AEXFxdkZGTgxo0bmDZtGpYvX853F6sd3/LGZj2nbd68GZ6envjPf/6DDh06ACidYyMjI7FhwwYmiztlsba2xujRozF//nyJdn9/fxw6dAj37t1jql+VUQTBKjlCoRAvXrzgshE0NTWRnJzMrVS/fPkSDRs2ZPoDb9y4MY4fPw47OzscP34cU6dORWxsLMLCwnDp0iUkJiYy0wb4TelW8OOhCLr+OMTFxYGI0L17dxw5coQrdw2UGtkaGhpyW9cUVH9ev34NHR0dZtmfZStXfYvdu3cz0RdjZWUFS0tLeHt7V2giLOubY7558+YNPDw8kJSUBHt7e6xfvx59+/bFlStXAAC6urq4cOFCtb6WiImJwYIFC7B8+XLOjP769etYuHAhFi1ahNq1a2PSpElo3749QkJCZKqto6ODwsJCFBcXQ1lZWcIwHCj93bGkRYsW+O2339C1a1f8/PPPaNGiBdatW4dNmzZhzZo1ePLkCVN9BT8WFhYW8PX1xahRoyTu2RYvXozXr19j8+bNfHdRgQxp1KgR5s2bJxXs2rJlC5YvX45nz54x1T9y5AhGjBgBR0dHdOrUCQKBAAkJCYiJiUFERMQPWQ35e1EEwSo5QqEQoaGhnO/VqFGjEBAQgPr16wMovbhzcXFhGgRTVVVFeno6GjdujIkTJ0JdXR0BAQHIyspCy5Yt8e7dO2baQMURfnmvWiv4cVAEXfnB1dUVgYGB0NTUlGgvKCjAjBkzsGvXLmbaOTk5yM3NRXBwMDIyMhAZGYlGjRph7969MDY25qr/KKgeFBcXQ1VVFXfu3OElM4VvfrRs1wkTJiA+Ph7Ozs44efIkhEIhiAgBAQEQCoXw9vaGhoYGoqKi+O4qM6ytrbF9+3apbTOJiYmYOHEiHjx4gOjoaLi6uiI3N1em2v/ky8Z6y+rGjRuhpKSEmTNn4tKlS+jXrx9KSkpQXFyMDRs2wMPDQ6Z6mzZt+u7Xzpw5U6baZeFrCyzA73zON+rq6khNTYWhoSH09PRw4cIFtGzZEmlpabC3t0d+fj7fXax2ZGdnw8jIiBdtTU1N3L59W2o+TUtLg62trVwyTW/dusVtxyQiWFlZYfbs2bC1tWWuXZVRBMEqOd9K8SyLSCRi1gdDQ0Ps2LEDPXr0gLGxMbZu3Yr+/fvjwYMH6Ny5M/7++29m2oD8U7oV/Ngogq78wKc5/ZEjRzB27Fg4OTlh7969SElJgYmJCbZu3YqTJ0/i9OnTzLQV8IOpqSmOHj2Kli1b8t0VufOjmQg3atQI4eHh6Nq1K54+fQoDAwNcvHiRs3K4fv06Bg4ciBcvXvDbUYaoqanhxo0bUkHfe/fuoV27dvj48SNycnJgaWnJpChEZSI3Nxc3b96Eqakpk99/+cBSXl4eCgsLoa2tDaB08VpdXR16enrIzMyUub4YPrfA/sjFZkxMTBAZGYnWrVujbdu2mDBhAiZNmoTz589j5MiRzDMff0SEQiE6duyIsWPHYvjw4RJZ/axxcnJCq1at4OXlJdG+bt063Lp1CwcOHJBbXxT8OxTG+JUclsGt78XFxQW//PILZxLes2dPAMAff/wBCwsL5vqKIJcCeaKopCJfKoM5vb+/P4KCguDs7IyDBw9y7R07dqzQ0FhB1WfhwoWYN28e9u3bJ5cL5qFDh373a1l7gvFtIixvXr58iWbNmgEoDYipqqrCwMCAe75JkybIy8vjq3tyoU2bNvDy8kJYWBh0dXUBlAZnvL290bZtWwClmQuNGzdmop+RkYHdu3cjIyMDgYGB0NPTw9mzZ2FgYIDmzZsz0SxLTEwMYmJi8Ndff0ldV8s6K6nsNUR4eDi2bt2KkJAQmJubAwAePnwId3d3TJo0Saa65blw4cJ3bYGdM2eOzLbAVob5nG+6d++OqKgotG7dGm5ubvD09ERkZCRu3rz5r+YBBd/PzZs3ceDAAfj7+8PDwwO9evXCmDFjMHDgQM6DU5aUzfa0tLTE8uXLERsbK+EJlpiYiNmzZ8tcuzxJSUmoWbMmbGxsAAAnTpzA7t27YWVlhSVLlkBZWZl5H6oqikywKkJ8fDw6duyIGjUk45YlJSVITExEly5dmOpHRkbi8ePHGD58OHeRFBoaCm1tbQwaNIiptpiUlJQKK61Utwt2BQp+JCqDOb26ujpSUlJgZGQk4eGRmZkJKysrfPr0iZm2AvkSHx+PDh06oF27dkhPT8eXL19gaGgoZU4v6wpeZf3AiAjHjh1D7dq1YWdnB6B0O8ObN28wdOhQ5p5gfJoI80Fl8Fblm4cPH2LQoEHIysqCgYEBBAIBcnNzYWJighMnTqBZs2Y4fvw43r9/j7Fjx8pUOy4uDn369EGnTp0QHx+P1NRUmJiYYM2aNbh+/ToiIyNlqlcePz8/LF26FHZ2dhVWfD527BgzbVNTU0RGRkptS7p16xb+85//MF1042MLbGWYz/lGJBJBJBJx92sRERFISEiAmZkZJk+erAhKMISIEBsbi/DwcBw5cgQlJSUYNmyYzAPd37uNWCAQMM32BIC2bdti7ty5GDZsGHfNOnToUNy4cQP9+vVDQEAAU/2qjCIIVkX4Wmpxfn4+9PT0KsXFm42NDU6fPi2xwioLMjMzMWTIENy7d08itVs80VaGc1dQ/VAEXeVDZTCnNzU1RXBwMBwdHSVukMPCwrBq1SqkpKQw1VcgP8Rz6bZt2775Ol9fX2Z98PHxwevXrxEUFAQlJSUApfPY1KlToaWlhbVr1zLT/hERCoXw9/fnKlD6+PjAy8sL9erVAwC8f/8eixcvrvbXEkSEc+fO4dGjRyAiWFhYoGfPnt9tu/Hf0qFDBwwfPhyzZs2SGF9v3LiBwYMH4+nTp0z19fX1sWbNGpkH974HdXV1xMbGcplYYq5fv45u3box3XrKxxbYyjCfK1AAlC5kubm54e7du9V6bK9duzaSkpJgamqK1atX4+LFizh37hwSExMxcuRIPH78mO8uVloU2yGrCOL9++XJz8+XWsHmi+zsbHz58kXm7+vh4QFjY2NER0fDxMQE169fR35+PmbPno1169bJXE/Bj40i6CpfunbtCqB0Cwlf5vSTJk2Ch4cHdu3aBYFAgGfPnuHq1auYM2cOFi9ezExXgfwR/55ZBrn+iV27diEhIYELgAGlwblZs2ahY8eOzINgfJoI80GTJk2wY8cO7nGDBg2wd+9eqddUdwQCAXr37v3NyscsFjPv3buH8PBwqXZdXV25mIQXFRVJZUPJix49esDd3R0hISFo06YNBAIBbt68iUmTJsHR0ZGpNh9bYCvDfF4ZePPmDa5fv17h9ltnZ2eeelX9efz4MQ4cOIDw8HDcu3cPHTp0kFs1zqKiImRlZcHU1FRq1xZLiIj7jkVHR6N///4AAAMDA7x69Upu/aiKKIJglRzx/nGBQIDx48dL7G0uKSnB3bt3eZvc5cXVq1dx8eJF6OrqQigUQigUonPnzli5ciVmzpyJ27dv891FBdUIRdCVH27evMmZ09++fRufP38GUJqlsWLFCqbm9N7e3nj79i0cHBzw6dMndOnSBSoqKpgzZ45U2WsFVZ9vbdeRB8XFxUhNTeU8gsSkpqbKxQfUxMSENxNhPsjOzua7C1UGFouZ2traeP78udQWotu3b6NRo0Yy1aqICRMmIDw8HIsWLWKuVZ5du3Zh3LhxaNeuHee9V1xcjF69emHnzp1MtUNCQjBo0CA0bty4wi2wAPDhwwcmnwuf8znfREVFwcnJCQUFBdDU1JSYbwQCgSIIxoDt27dj//79SEhIgIWFBZycnHD8+HG5LPYUFhZixowZXBXcR48ewcTEBDNnzkTDhg0xd+5cpvp2dnbw9/eHo6Mj4uLiuCz3rKws1K9fn6l2VUcRBKvk1K5dG0BppFdTUxNqamrcc8rKyrC3t4e7uztf3ZMLJSUl3DaGevXq4dmzZzA3N4ehoSEePnzIc+8UVDcUQVd+4Nucfvny5ViwYAFSUlIgEolgZWXFjTsKqheLFi2Curr6N1+zYcMGZvouLi5wdXVFeno67O3tAZQa6a5atUrCO4wV8jYRriyEhYVhxIgRUudYVFSEgwcPKm5OGTF69Gj4+Pjg8OHDEAgEEIlESExMxJw5c5h95rNmzeL+LxKJsH37dkRHR6NFixZShSBY/daJCIWFhYiMjMTTp0+RmpoKIoKlpSVXqIEl5ubmSE1N/eYW2MGDBzPR5ns+55PZs2fD1dUVK1as+Md5RoFsWLZsGUaOHInAwEC0atVKrtrz5s1DcnIyYmNjJbJsHR0d4evryzwIFhAQwAX9FixYADMzMwClXt7VPUnmf0XhCVZF8PPzw5w5cyrN1seKKG82Kyt++uknzJ49G4MHD8bo0aPx999/Y+HChdi+fTtu3bqF+/fvy1RPwY+Njo4Obt26BRMTE5iammLnzp1wcHBARkYGbGxsqn35eL5QmNMrkAdCoRAdOnT4pjmxQCDAxYsXmfVBJBJh3bp1CAwMxPPnzwGU+hZ5eHhg9uzZEtskWSIvE+HKQlXwVuUbFtdxX758wfjx43Hw4EEQEWrUqIGSkhKMHj0ae/bsYfJ9d3Bw+K7Xsfyti0QiqKqq4sGDB2jatCkTjcrKjzyf16pVC/fu3ZP5vZCCr0NESEhIQHBwMDIzM3H48GG5bb81NDTEoUOHYG9vL/FdT09PR+vWrfHu3Ttm2iUlJUhISICNjY1URvenT5+gpKQkFfRX8H8oMsGqCL6+viguLkZ0dDQyMjIwevRoaGpq4tmzZ9DS0qrWGQsLFy5EQUEBgNLVpf79++Onn35C3bp1cejQIZ57p6C6YW1tjbt378LExATt27fHmjVroKysjO3btysuahiir6+P9PR0qfT1hIQExeeuQKYcO3ZMKhAiT4RCIby9veHt7c1dIGtpacm9HwKBAA4ODnBwcMCUKVPg5uaG0NDQahsE+5q36pMnT7isewWyp2bNmti/fz+WLl2K27dvQyQSwdbWlmlg6NKlS8ze+3sRCoVo2rQp8vPz5RYE27RpEyZOnAhVVVVs2rTpm6+dOXMms378yPN5r169cPPmzWp/npWJo0ePcttvk5KS5Lr9Ni8vr8LriYKCAubWC0pKSujVqxdSU1OlgmCqqqpMtasDiiBYFSEnJwe9e/dGbm4uPn/+jJ49e0JTUxNr1qzBp0+fEBQUxHcXmdGrVy/u/yYmJkhJScHr16+ho6PDu7eLguqHIujKDwpzegXyoLLNGXwEv8TwaSIsT2xtbSEQCCAQCNCjRw8J0+KSkhJkZWV90yxegWwwNTXlAgOV7XfIijVr1sDLywvbtm2TqtLIgo0bN8LJyQmqqqrYuHHjV18nEAiYBsF+tPn8999/5/7fr18/eHl5ISUlBTY2NlKZOIoK47KHz+23bdu2xalTpzBjxgwA/ze27dixAx06dGCqDZQWM8nMzJTyXFTwzyiCYFUEDw8P2NnZITk5GXXr1uXahwwZggkTJvDYs/8jODhY5iZ8xcXFUFVVxZ07dyQuIKq7ka8C/lAEXflBYU6vQB5UBgeIly9fYs6cOYiJicFff/0l1SfW2/L4NBHmA7Hv0Z07d9CrVy+JzHllZWUYGRlh2LBhPPXuxyAkJAQbN25EWloaAKBp06b49ddfK831KyvGjBmDwsJCtGzZEsrKyhK+vgDw+vVrmeplZWVV+H9586PN5xV5q1UUfBEIBIpt1wx4+PAhunTpItWupaWFN2/eMNVeuXIlevfujZSUFBQXFyMwMBAPHjzA1atXERcXx1QbKPWznTNnDpYtW4Y2bdpI2SbxudBW2VF4glUR6tWrh8TERJibm0vsOc7OzoaVlRVzn6KYmBjugr189SrWWydMTU1x9OhRtGzZkqmOAgVfC7oqkB+FhYUKc3oFzAgNDcXIkSPxxx9/oGPHjlKlzIuLi3HlypUKL6hlRZ8+fZCbm4vp06dDX19fKrg+aNAgZtpAaen0kSNHwsnJSe4mwnwSGhqKESNGKLaJfIPw8HAMGjRIpv6zixYtwsaNGzFjxgwuM+Lq1avYvHkzPDw84O/vLzOtyoa4YtzXGDdunJx6Uhpcv3fvHgwNDaGjoyMXTcV8rkAemJqaIjg4GI6OjhL3yGFhYVi1ahVSUlKY6t+/fx9r167FrVu3IBKJ0Lp1a/j4+MDGxoapLgCuyAUgmWEr3v6vCLp+HUUQrIpQp04dJCQkwMrKSuIHnpCQgGHDhuHly5fMtP38/LB06VLY2dlVeMF+7NgxZtoAsHv3bhw+fBj79u1TZIApYI4i6KpAQfWHT5N0TU1NXL58mbcAFJ8mwnwSHR0NR0fHCp8LDg7GpEmT5Nwj+cLXYma9evXw22+/YdSoURLtBw4cwIwZM/Dq1Stm2j8yv/76K2xsbODm5oaSkhJ06dIFV69ehbq6Ok6ePIlu3brx3UUFCmTCmjVrOD/Lnj174vTp08jJyYGnpycWL17MNPvQyckJ3bp1Q9euXeVS9bU8/5Rt1rVrVzn1pOqh2A5ZRejZsycCAgKwfft2AKXR3g8fPsDX1xd9+/Zlqh0UFIQ9e/Zg7NixTHXKEx8fjw4dOmDTpk1IT09Hw4YNYWhoKLVCmZSUJNd+KajeLFy4EPPmzVMEXRUoqMZ8zSQ9Pz+feRVmAwMDXrdl8mkizCf9+vXD9OnTsXLlSq46aF5eHlxdXZGYmFitg2D/tJjJkpKSEtjZ2Um1t2nTBsXFxXLrB998/PgRX758kWhjuVUpMjISY8aMAQBERUUhOzsbf/75J8LCwrBgwQIkJiYy0/7R+KciBGVh6cX2o8Ln9lsNDQ2sX78ekydPRv369dG1a1d07doV3bp1g4WFBVNtQBHk+l9QZIJVEZ49ewYHBwcoKSkhLS0NdnZ2SEtLQ7169RAfH8+00lXdunVx/fp1mJqaMtOoCPFK/bZt2775Ol9fXzn1SEF1Rhx0bdeuHdLT0/HlyxdF0FWBgmrG0KFDAQAnTpxA7969oaKiwj1XUlKCu3fvwtzcHGfPnmXWh/Pnz2P9+vUIDg7mxYfL1tYWnp6ecHZ2lsgsv3PnDnr37o0XL17IvU/y4I8//sDYsWOhpqaG8PBwZGdnw9XVFVZWVggLC4OBgQHfXWSGvr4+1qxZI/fFTACYMWMGatasiQ0bNki0z5kzBx8/fsSWLVvk3id5UVBQAB8fH0RERCA/P1/qeZYZp6qqqkhPT0fjxo0xceJEqKurIyAgAFlZWWjZsiVXmVbB/055U/K8vDwUFhZCW1sbAPDmzRuoq6tDT08PmZmZPPTwx4DP7bcvXrxAbGwsYmNjERcXh0ePHkFPTw/Pnz9nrn358uUfLrNbFigywaoIDRs2xJ07d3DgwAEkJSVBJBLBzc0NTk5OUkabsmbChAkIDw/HokWLmOqURxyfVQS5FMgDBwcHPH/+vEKDUwUKFFQPateuDaB0ftHU1JSYP5WVlWFvbw93d3emfRgxYgQKCwthamoKdXV1qephsjbLLg+fJsJ80r59e9y+fRuTJ09GmzZtIBKJ4O/vDy8vr2pf9KSoqAgdO3bkTT8kJATnz5+Hvb09AODatWt4/PgxnJ2dMWvWLO515QNlVR1vb29cunQJW7duhbOzM7Zs2YKnT58iODgYq1atYqpdv359pKSkQF9fH2fPnsXWrVsBlAYKlJSUmGr/aJQtQhAeHo6tW7ciJCQE5ubmAErHXHd392qdbVoZUFdXrzDrVB5oampCR0cHOjo60NbWRo0aNdCgQQPmukeOHPkhM7tlgSITTEGFlL0oEYlECA0NRYsWLdCiRQupC3ZWFy1CoRAvX76Erq4uk/dXoKAsQqEQL168YJpVqUCBgsqBn58f5syZw3zrY0XwbZbNt4kwnyQlJWH06NEoLi7Gs2fPMHLkSPz222+8fA/kiY+PDzQ0NOS+mAmULjB9DwKBABcvXmTcG/nSpEkThIWFoVu3btDS0kJSUhLMzMywd+9eHDhwgOkN6pIlSxAQEAB9fX0UFhbi0aNHUFFRwa5du7Bjxw5cvXqVmfaPjKmpKSIjI2FrayvRfuvWLfznP//htWqnAtnj4+ODuLg4JCcnw9raGl26dEHXrl3RpUsXLhOQJT9qZrcsUGSCVRF+//33CtsFAgFUVVVhZmYmlY77v3D79m2Jx2ID3/v378tM43tYtGgR1NXVv/ma6rZyqIA/qns2gAIFCkrx9fVFcXExoqOjkZGRgdGjR0NTUxPPnj2DlpYW020U8qwIVxGTJk2Ch4cHdu3aBYFAgGfPnuHq1auYM2cOFi9ezGvfWLJq1Sr4+vpi4sSJWLt2LTIyMjBmzBi0aNEC+/bt4yoXVhfKL2Zu374d0dHRcl3MBIBLly4xe+/KzuvXr7lrcy0tLS7Ls3PnzpgyZQpT7SVLlsDa2hqPHz/G8OHDua3fSkpKmDt3LlPtH5nnz59Leb8BpVtfWRYxU8APa9euha6uLnx9fTFo0CBYWlrKVf9HzeyWBYogWBVh8ODBEAgEUma64jaBQIDOnTvj+PHjMil9XFkuWu7du8cZ2FaEImihQJYogq4KFPwY5OTkoHfv3sjNzcXnz5/Rs2dPaGpqYs2aNfj06ROCgoKY6mdkZGD37t3IyMhAYGAg9PT0cPbsWRgYGKB58+ZMtfk0EeaTwMBAHD9+HH369AEANG/eHNevX8f8+fPRrVs3bhtJdaGyLGb+yJiYmCA7OxuGhoawsrJCREQE2rVrh6ioKLlkifznP/+RaisfhLexscHp06ertSeePOnRowfc3d0REhKCNm3aQCAQ4ObNm5g0adJXq9MqqLrcvn0bcXFxiI2Nxfr166GkpMQZ43fr1o15UExfXx/p6elS/qIJCQkwMTFhql3VUWyHrCLExMRgwYIFWL58Odq1awcAuH79OhYuXIhFixahdu3amDRpEtq3b4+QkBCZaru6uiIwMBCampoS7QUFBZgxYwaz0tqK7WkK5IlQKESHDh3+Mej6/9q796gqy3wP4N8XlJty8wLiDdgIKkdQC02JUVGZNDtqVuaBxMQLXVTSQXKGCQMvU+TgJY+JKQqUGmKpFKMpMjIopQR5g6MIyHbEC4IKAl7Ye58/XOxph5UVm2fvd38/a7mWPO9ePt/l2Ci/93l+P7ld1yAyRZMnT4atrS22bNmCzp07a68QHDlyBLNnz0ZJSYne9j5y5AjGjx+Pp59+Gjk5OSguLoZCoUB8fDyOHz+O9PR0ve39QyKbCItw48YNdOnS5ZHPjhw5wilbenL37l18+OGHyM7OxvXr16FWq3Wey3nYzOrVq2Fubo4FCxYgOzsbEyZMgEqlQlNTExISEhARESE6os4VKvr9qqqqMGPGDOzfv1974rKpqQnPPPMMtm3bxu9pZO7kyZNYs2YNPvnkE6jVar0OvwCA+Ph4JCcnIykpCUFBQcjMzERFRQUWLlyImJgYWb/Y+r1YBDMSAwYMwKZNm1o0Nj169Cjmzp2Ls2fP4tChQwgLC4NSqWzVvZunNP74/7hv3LiBbt266W3E9U/tS6QPLLoSmY4uXbrg6NGj6Nu3r843gRcvXoS3tzcaGhr0tvfw4cPx0ksvYdGiRTp7nzhxApMnT8bly5f1trepu3XrFtLT01FaWorFixejU6dOKCgogLOzM3r06CE6nt6IepkJAMHBwTh48CBefPFFODs7tzjBb0rDj5RKJfLz8+Hh4YGBAweKjgOARbDWpNFooFQq0bVrV1y+fBnFxcXQaDTo378/vLy8RMcjPSksLNROhvzXv/6F2tpaDBo0CIGBgfjggw/0vn90dDRWr16Nu3fvAoD2ZPeyZcv0vrcx43VII1FaWgo7O7sW63Z2dtpxu56enrhx40ar7VlbWwuNRgONRoO6ujpYWVlpn6lUKmRmZuq1YMD6LLUlXq0lMh0/9Yb23//+d4tCQWs7ffo0tm/f3mK9a9euqK6u1uvepuzUqVMYO3Ys7O3tcfHiRcyZMwedOnXCF198gYqKCqSkpIiOqDfJycl47733WvzZbmxsREpKil6LYF999RUyMzPx9NNP620PQ5aVlYWsrKxHnoLT5+87tT2NRgNPT0+cPXsWnp6e8PT0FB2J9MzR0RF37tzBwIEDMWrUKMyZMwcjRox45Pfs+rJixQpER0eb1Mnu1mAmOgA9nieffBKLFy9GVVWVdq2qqgpRUVEYMmQIAKCkpAQ9e/ZstT0dHBzQqVMnSJIELy8v7ehXR0dHdOnSBWFhYXjzzTdbbb8f27p1K+zt7ZGTk/PI02ZNTU3IycnR2/5kWlh0JTIdQUFBWLNmjfZrSZJw584dLF26FM8++6xe93ZwcMCVK1darBcWFsr6NJJoixYtwquvvoqSkhKdl3rjx4+X7b8lamtrcfv2be3LzNraWu2Pmzdv6v1lJgD06NFD74VlQxUbG4s//vGPyMrKwo0bN3Dz5k2dHyQvZmZm8PT05MsME5Kamorq6mrk5+dj1apVeO6559q0ANbMxsYGzs7O6N69Owtgj4nXIY3EuXPnMGnSJJSXl6NXr16QJAlKpRIKhQJ79+6Fl5cX9uzZg7q6OkyfPr1V9jxy5Ag0Gg1Gjx6N3bt3o1OnTtpnFhYWcHV1Rffu3Vtlr5/zU9ciq6ur4eTkpPf71mQakpOTMW3aNHz77bfw9/dHu3a6B2Wbmppw7NixR05hISLjUllZicDAQJibm6OkpAR+fn4oKSlBly5dkJOTo9fCQFRUFPLy8rBr1y54eXmhoKAA165dQ2hoKEJDQ03qelhbsre3R0FBATw8PHSugFVUVKBv377aqyRyYmZm9rOnnCVJQmxsLKKjo/WW4R//+AfWrVuHjRs3wtXVVW/7GCIXFxfEx8e32r/L9YHXIVvXV199hffeew8fffQRBgwYIDoOyVxTUxNiY2Oxbt063LlzBwDQsWNHzJ8/H0uXLm0xCZj+g0UwI6LRaHDgwAGcP38eGo0G/fr1Q1BQEMzM9Hugr6KiAkqlEomJiSgtLUV6ejp69OiB1NRUuLu7IyAgQK/7m5mZ4dq1a+jatavO+vnz5+Hn54fa2lq97k+mhUVXItPQ2NiIHTt2oKCgAGq1Gk888QRCQkJgbW2t130fPHiAV199FTt37oRGo0G7du2gUqkQHByMbdu2wdzcXK/7mypnZ2fs378fgwcP1vnG/+uvv8asWbNw6dIl0RFbnSG8zKyqqsLUqVORk5MDGxubFt+U1dTU6HV/kTp37ozjx4/Dw8NDdJSfxCJY63J0dERDQwOamppgYWHR4u8TOf95p7b32muv4YsvvkBcXByGDx8OAMjLy8O7776LSZMm6X3StTFjEUxm9DHqePfu3Zg+fTpCQkKQmpqKoqIiKBQKbNiwAV9++SUyMzNbba8fmjJlCgBg7969GDduHCwtLbXPVCoVTp06hb59+2L//v162Z9ME4uuRNQWysrKtAW4wYMHs3+Mns2dOxdVVVVIS0tDp06dcOrUKZibm2Py5MkYMWKEzvVYuRH5MnPs2LFQKpWYNWvWIxvjz5gxQ297i/b222+jY8eOeOedd0RH+Unbt2/HpEmT0KFDB9FRZCE5Oflnn8v5zzu1PXt7e+zcuRPjx4/XWf/HP/6BadOm4fbt24KSGT42xpeZixcv4sGDB636ay5fvhwbN25EaGgodu7cqV339/dHXFxcq+71Q/b29gAenoCztbXVeZtiYWGBYcOGYc6cOXrbn0xLc9FVkiS8+uqrjyy6/ng6KxEZp3379j1yXZIkWFlZoU+fPnB3d9drBoVCAYVCAZVKhdOnT+PmzZtwdHTU656mbNWqVXj22Wfh5OSExsZGjBw5ElevXsXw4cOxYsUK0fH0Kj8/X/sys7CwEPfu3QMA1NXVYeXKlXp7mQkAx44dQ15ensFMQ9S3RYsWaX+uVquxadMmHDp0CL6+vi1OwSUkJOg1y+M05Q8ODtZrBlPDIhe1JSsrK7i5ubVYd3Nzg4WFRdsHMiIsgtEvOnfu3CP7INnZ2eHWrVt623fr1q0AHv6HHBkZybdUpFcsuhKZjsmTJ0OSpBYDMZrXJElCQEAA9uzZ0+qFqbfeegs+Pj6YNWsWVCoVRo4ciWPHjsHGxgZffvklRo0a1ar70UN2dnbIzc3F4cOHda7Ajh07VnQ0vRP1MhMA+vXrh8bGRr3uYUgKCwt1vh40aBAA4MyZMzrr+p5IHRsbi7i4OPj5+cHFxYUTsAVobGxscTBBRNN0kq8333wTy5Ytw9atW7Uv7+/du4cVK1Zg3rx5gtMZNhbB6Be5uLjgwoULLSrNubm5bdJDYOnSpWhqasKhQ4dQWlqK4OBg2NraorKyEnZ2dpyCQa2CRVci03Hw4EFER0djxYoVGDp0KADg+PHj+Otf/4p33nkH9vb2CA8PR2RkJLZs2dKqe6enp+OVV14BAGRkZKCsrAz/93//h5SUFERHR+Po0aOtuh/pGj16NEaPHi06RpsS9TITAN577z386U9/wooVK+Dj49PiNJTcigLZ2dmiIwAANm7ciG3bthl0U345qq+vx9tvv420tLRHTolkX1lqTYWFhcjKykLPnj21p21PnjyJ+/fvY8yYMdpbLgDw+eefi4ppkFgEo18UHh6OiIgIJCUlQZIkVFZWIi8vD5GRkYiJidH7/hUVFRg3bhyUSiXu3buHoKAg2NraIj4+Hnfv3mXTP2pVLLoSyV9ERAQ2bdqkc8V5zJgxsLKywty5c3H27FmsWbMGYWFhrb73jRs30K1bNwBAZmYmpk6dCi8vL8yaNQvr1q1r9f1MXUpKymN9LjQ0VM9JxBH5MnPcuHEAHv739UPNJy5ZFNCP+/fvs4WDAFFRUcjOzsaGDRsQGhqK//3f/8Xly5eRmJiI9957T3Q8khkHBwe88MILOmut2RdczlgEo18UFRWF27dvIzAwEHfv3sWIESNgaWmJyMjINjlqGRERAT8/P5w8eRKdO3fWrj///POYPXu23vcn08KiK5H8lZaWPvIEip2dHcrKygAAnp6euHHjRqvv7ezsjKKiIri4uGD//v3YsGEDAKChoYGTIfUgIiLiJ59JkoT6+no0NTXJuggm8mWmoZyMMjWzZ8/G9u3bDbopvxxlZGQgJSUFo0aNQlhYGP7whz+gT58+cHV1xaeffoqQkBDREUlGmm+x0K/HIhg9lhUrViA6OhpFRUVQq9Xw9vZusxMxubm5OHr0aIsGf66urrh8+XKbZCDTwaIrkfw9+eSTWLx4MVJSUrSTYKuqqhAVFYUhQ4YAAEpKStCzZ89W33vmzJmYOnWqtk9PUFAQAODbb79Fv379Wn0/U3fz5s1Hrl+5cgWxsbFISkrS/m8gVyJfZo4cOVKvvz79hyE15TdVNTU12qEqdnZ2qKmpAQAEBATg9ddfFxmNiH6ARTCZSUxMhLOzs15+bRsbG/j5+enl1/45arX6kcfl//3vf8PW1rbN85C8sehKJH9btmzBpEmT0LNnT/Tq1QuSJEGpVEKhUGDv3r0AgDt37ujlFMW7776LAQMG4NKlS3jppZe0zWzNzc2xZMmSVt+PdNXV1eH999/H2rVr8V//9V84cOAAAgMDRcfSu7Z8mXnq1CkMGDAAZmZmOHXq1M9+1tfXVy8ZTNHjNuUn/VEoFLh48SJcXV3h7e2NtLQ0DB06FBkZGXBwcBAdj2SmuroaMTExyM7OfuQU2OYiLLUkaX48GokM1uOMOpajl19+Gfb29ti0aRNsbW1x6tQpdO3aFZMmTULv3r15FJRaVadOnZCbmwtvb2/Y2tri5MmTUCgUyM3NxQsvvIBr166JjkhErUCj0eDAgQM4f/48NBoN+vXrh6CgIJiZmYmOBgDw8fFBZmYm+3u0kvv372P9+vVYuXIlunTpguXLl+PFF18UHUuWzMzMcPXqVTg5OcHMzOyRk1gBsCcYyc7q1athbm6OBQsWIDs7GxMmTIBKpUJTUxMSEhJ+9no20a81fvx4lJaWYtasWXB2dm4xBXbGjBmCkhk+FsGMxC+NOv7iiy8EJdO/yspKBAYGwtzcHCUlJfDz80NJSQm6dOmCnJwcODk5iY5IMsKiKxE1E1mI+mERnn47jUaDlJQUxMTEoKmpCUuXLsWsWbPYf02PKioq0Lt3b0iShIqKip/9rKuraxulMi1hYWFYu3ZtixsT9fX1mD9/vqxfnhsSpVKJ/Px8eHh4aKf3EbUWW1tb5Obm8s/Wb8AimJFwcXFBfHy8yY46bmxsxI4dO1BQUAC1Wo0nnngCISEhsLa2Fh2NZIZFVyJqJrIQxSJY6/D19UVpaSnmz5+Pt956CzY2No/83KMGJVDbmTBhAjZv3gwXFxfRUWTB3NwcV65cafFvlubptE1NTYKSyZ+p3tyhtjdkyBB8+OGHGDZsmOgoRodFMCPRuXNnHD9+HB4eHqKjEMkei65EBLAIJgc/vN7641P0wMOTYryWJx7/vLeO2tpaaDQaODo6oqSkRDv4AwBUKhUyMjKwZMkSVFZWCkwpX6Z8c4fa3okTJ7BkyRLExMRgwIABLQZg8OXOT2NjfCNhyqOO9+3b98h1SZJgZWWFPn36aCexELUGa2trhIWFISwsTHQUIiL6HbKzs0VHIGozDg4OkCQJkiTBy8urxXNJkhAbGysgmWnYuHEjtm3bZrI3d6htOTg44Pbt2xg9erTOOl/u/DIWwQwYRx0/NHny5Ec2VW1ekyQJAQEB2LNnDxwdHQWlJLlg0ZWISD5GjhwpOgJRm8nOzoZGo8Ho0aOxe/dudOrUSfvMwsICrq6u6N69u8CE8nb//n34+/uLjkEmIiQkBBYWFti+ffsjG+PTT+N1SAP2a0Z2y/lNZ1ZWFqKjo7FixQoMHToUAHD8+HH89a9/xTvvvAN7e3uEh4fjqaeewpYtWwSnJWP3U5OsWHQlMj28DikfP9Ujqbq6Gk5OTnxjLhj/vLeuiooKKJVKJCYmorS0FOnp6ejRowdSU1Ph7u6OgIAA0RFl6e2330bHjh1N8uYOtT0bGxsUFhaib9++oqMYHZ4EM2ByLmz9GhEREdi0aZPOm5UxY8bAysoKc+fOxdmzZ7FmzRpeXaNWcfDgwccqukZGRrLoSkR6k5iYCGdnZ9ExZOOn3vneu3cPFhYWbZyGSL/y8/Mxffp0hISEoLCwEPfu3QMA1NXVYeXKlcjMzBScUD54c4dE8fPzw6VLl1gE+w1YBDMSpjzquLS09JGN/ezs7FBWVgYA8PT0xI0bN9o6GskQi65E1ExfhajHmR4WHBzc6vuaonXr1gF4eJp38+bN6Nixo/aZSqVCTk4O+vXrJyoekV4sX74cGzduRGhoKHbu3Kld9/f3R1xcnMBk8lNYWKjz9aBBgwAAZ86c0VnnVTVqbfPnz0dERAQWL14MHx+fFkVXX19fQckMH69DGglTHnUcEBAAW1tbpKSkaKfcVFVVITQ0FPX19cjJycGhQ4fwxhtv4Pz584LTkrGztrbGiRMnMGDAAJ3106dPY+jQoWhsbERFRQX69++PhoYGQSmJ6PcSNcae08PaVnMPx4qKCvTs2RPm5ubaZxYWFnBzc0NcXByeeuopURFlLScnB/7+/mjXTve9e1NTE44dO4YRI0YAAP72t7/h9ddfh4ODg4CU8mNjY4OioiK4ubnpXDUtKyuDt7c37t69KzoiEf1OP5x+3OyH7Vt4zf+n8SSYgWsedazRaFBXVwcrKyvtM5VKhczMzBaFMbnZsmULJk2ahJ49e6JXr16QJAlKpRIKhQJ79+4FANy5c4f376lVPPnkk1i8eHGLomtUVBSGDBkCACgpKUHPnj1FxiSi3+GXClH6xOlhbau8vBzAwz6rn3/+OXs5trHAwMBHvsS9ffs2AgMDtd+k/fnPfxYRT7ZcXFxw4cIFuLm56azn5uay7xqRTDT//Ua/HotgBo6jjoG+ffuiuLgYBw4cwPnz56HRaNCvXz8EBQVpK+CTJ08WG5Jkg0VXIvkTWYji9DAxmvus3r9/H+Xl5fDw8GhxOolaX/OJhB+rrq5Ghw4dBCQyDeHh4YiIiEBSUhIkSUJlZSXy8vIQGRmJmJgY0fGIqBW4urqKjmC0eB3SwB05coSjjh+Tj48PMjMz0atXL9FRyMhpNJqfLboSkXHr3Lkzjh8/Dg8Pjzbfm9PDxGhsbMS8efOQnJwMADh//jwUCgUWLFiA7t27Y8mSJYITysuUKVMAAHv37sW4ceNgaWmpfaZSqXDq1Cn07dsX+/fvFxVR9qKjo7F69Wrt1UdLS0tERkZi2bJlgpMR0e+xb9++x/rcxIkT9ZzEeLEIZiQ46viXcbw2tSUWXYmMV1sXon48PSw5ORm+vr6cHtaGIiIicPToUaxZswbjxo3DqVOnoFAosG/fPixdurRFc2v6fWbOnAkASE5OxtSpU2Ftba191tyLbc6cOejSpYuoiCahoaEBRUVFUKvV8Pb21hkMQUTG6XFeyrMn2M/jOXAjwVHHRIbl4sWLePDggegYRPSYRI6xf9zpYaQ/e/bswWeffYZhw4bpXM/z9vZGaWmpwGTytHXrVgCAm5sbIiMjefVREBsbG/j5+YmOQUSt6MfDfOjXYxHMSHDUMRER0W8nshDV3I+KxKmqqnrkIKH6+vo2HYxgapYuXSo6AhERkQ4WwYzEuXPntGOkf8jOzg63bt1q+0BERERGxFAKUWFhYVi7di1sbW111uvr6zF//nwkJSUJSiZvQ4YMwVdffYX58+cDgLbw9fHHH2P48OEio8leeno60tLSoFQqcf/+fZ1nBQUFglIRERm/c+fO4cMPP0RxcTEkSUK/fv0wb9489OvXT3Q0g8Yuz0aiedTxj3HUMRER0a8TFhaGurq6Fuv19fUICwvT697JyclobGxssd7Y2IiUlBS97m3K/va3vyE6Ohqvv/46mpqasHbtWgQFBWHbtm1YsWKF6HiytW7dOsycORNOTk4oLCzE0KFD0blzZ5SVlWH8+PGi4xERGa309HQMGDAA3333HQYOHAhfX18UFBTAx8cHu3btEh3PoLEIZiSaRx1/++232lHHn376KSIjI/HGG2+IjkdERGQ0RBSiamtrcfv2bWg0GtTV1aG2tlb74+bNm8jMzHzkdT1qHf7+/jh69CgaGhrg4eGBr7/+Gs7OzsjLy8OTTz4pOp5sbdiwAZs2bcL69ethYWGBqKgoHDx4EAsWLMDt27dFxyMiMlpRUVH485//jLy8PCQkJCAhIQHHjh3DX/7yF7z99tui4xk0Xoc0ElFRUbh9+zYCAwNx9+5djBgxQjvqeN68eaLjGYTExEQ4OzuLjkFERAaqtrYWGo1GW4iysrLSPlOpVHotRDk4OECSJEiSBC8vrxbPJUlCbGysXvamh3x8fJCcnCw6hklRKpXw9/cHAFhbW2tPYE6fPh3Dhg3D+vXrRcYjIjJaV69eRWhoaIv1V155BR988IGARMaDRTAjsmLFCkRHR5vkqOOsrCxkZWXh+vXrLSZiNPdPCQ4OFhGNTBSLrkTGR2QhKjs7GxqNBqNHj8bu3bvRqVMn7TMLCwu4urqie/fuetmbHvaeat++PXx8fAAAe/fuxdatW+Ht7Y13330XFhYWghPKU7du3VBdXQ1XV1e4urrim2++wcCBA1FeXg6NRiM6HhGR0Ro1ahT+9a9/oU+fPjrrubm5+MMf/iAolXGQNPwbiAxcbGws4uLi4OfnBxcXlxZTnL744gtByUiuHqfoSkTG58iRI8ILURUVFVAqlUhMTERpaSnS09PRo0cPpKamwt3dHQEBAXrd31QNGTIES5YswQsvvICysjJ4e3tjypQpOHHiBCZMmIA1a9aIjihLs2fPRq9evbB06VJs3LgRixYtwtNPP438/HxMmTIFW7ZsER2RiMgobdy4ETExMZg6dSqGDRsGAPjmm2+wa9cuxMbG6vx7ZuLEiaJiGiQWwcjgubi4ID4+HtOnTxcdhUwAi65E8ieyELV7925Mnz4dISEhSE1NRVFRERQKBTZs2IAvv/wSmZmZetvblNnb26OgoAAeHh54//33cfjwYRw4cABHjx7FtGnTcOnSJdERZUmtVkOtVqNdu4eXT9LS0pCbm4s+ffrgtdde4wk8IqLfyMzs8dq7S5IElUql5zTGhdchyeDdv39f20+CSN82btyIbdu2sehKJGP5+fnaQlRhYSHu3bsHAKirq8PKlSv1Wohavnw5Nm7ciNDQUOzcuVO77u/vj7i4OL3ta+o0Go32ZO+hQ4fw3HPPAQB69eqFGzduiIwma2ZmZjrfqE2dOhVTp04VmIiISB5+fFuFHh+LYGTwZs+eje3bt+Odd94RHYVMAIuuRPInshB17tw5jBgxosW6nZ0dbt26pde9TZmfnx+WL1+OsWPH4siRI/joo48AAOXl5ezvqGe3bt3C8ePHH9li4FFNnYmIiPSJRTAySIsWLdL+XK1WY9OmTTh06BB8fX3Rvn17nc8mJCS0dTySMRZdieRPZCHKxcUFFy5cgJubm856bm4uFAqFXvc2ZWvWrEFISAj27NmD6OhobSPh9PR0vvjQo4yMDISEhKC+vh62trY6LQYkSWIRjIjodzhy5AhWrVqF4uJiSJKE/v37Y/HixWyM/wtYBCODVFhYqPP1oEGDAABnzpwRkIbkjkVXItMishAVHh6OiIgIJCUlQZIkVFZWIi8vD5GRkYiJidHr3qbM19cXp0+fbrH+wQcfwNzcXPv1jh07MHHiRHTo0KEt48nWn/70J4SFhWHlypWwsbERHYeISDY++eQTzJw5E1OmTMGCBQug0Whw7NgxjBkzBtu2bUNwcLDoiAaLjfGJyOQFBgY+9mezs7P1mISI2kJ8fDySk5ORlJSEoKAgZGZmoqKiAgsXLkRMTAzmzZun1/2jo6OxevVq3L17FwBgaWmJyMhILFu2TK/70i+zs7PD999/z1N5raRDhw44ffo0fz+JiFpZ//79MXfuXCxcuFBnPSEhAR9//DGKi4sFJTN8LIKRwQsLC8PatWtha2urs15fX4/58+cjKSlJUDIiIjJWogtRDQ0NKCoqglqthre3Nzp27Ngm+9LPs7W1xcmTJ1m0aSVTpkzBtGnT2AyfiKiVWVpa4uzZs9rr/c0uXLiAAQMGaP99Qy2xCEYGz9zcHFeuXIGTk5PO+o0bN9CtWzc0NTUJSkZyxKIrkelgIYp+jEWw32/fvn3an1dVVSEuLg4zZ86Ej49PixYDEydObOt4RESy0KdPHyxevBjh4eE664mJiVi1ahVKSkoEJTN8LIKRwaqtrYVGo4GjoyNKSkrQtWtX7TOVSoWMjAwsWbIElZWVAlOS3LDoSkRkulgE+/3MzMwe63OSJEGlUuk5DRGRPH300Ud46623EBYWBn9/f0iShNzcXGzbtg1r165tURyj/2BjfDJYDg4OkCQJkiTBy8urxXNJkhAbGysgGclRc9FVo9Ggrq4OVlZW2mcqlQqZmZktCmNERESkS61Wi45ARCR7r7/+Orp164a///3vSEtLA/CwT9hnn32GSZMmCU5n2FgEI4OVnZ0NjUaD0aNHY/fu3ejUqZP2mYWFBVxdXdG9e3eBCUlOWHQlIiIiIiJj8fzzz+P5558XHcPosAhGBmvkyJEAgPLyciiVSiQmJqK0tBTp6eno0aMHUlNT4e7ujoCAAMFJSQ5YdCUiIldX1xZ9q+jXWbdu3WN/dsGCBXpMQkQkXwqFAidOnEDnzp111m/duoUnnngCZWVlgpIZPvYEI4O3e/duTJ8+HSEhIUhNTUVRUREUCgU2bNiAL7/8EpmZmaIjkoxUVFSw6EpEJGN37txpcWXPzs5OUBr5cXd31/m6qqoKDQ0NcHBwAPDwGzQbGxs4OTnxmzQiot/IzMwMV69ebdGu5dq1a+jduzfu3bsnKJnh40kwMnjLly/Hxo0bERoaip07d2rX/f39ERcXJzAZyVF+fr626FpYWKj9C6Surg4rV65k0ZWIyAiVl5dj3rx5+Oc//6kzNl6j0bBBeysrLy/X/nz79u3YsGEDtmzZgr59+wIAzp07hzlz5rBpMxHRb/DDCbwHDhyAvb299muVSoWsrCy4ubkJSGY8eBKMDJ6NjQ2Kiorg5uamM7WprKwM3t7eOv+YJfq9Bg8ejIULFyI0NFTnz9v333+PcePG4erVq6IjEhHRr+Tv7w8AiIiIgLOzMyRJ0nne3IKBWpeHhwfS09MxePBgnfXvvvsOL774ok7BjIiIflnzBF5JkvDjUk779u3h5uaGv//973juuedExDMKPAlGBs/FxQUXLlxoUdHOzc3lCHNqdefOncOIESNarNvZ2eHWrVttH4iIiH63U6dO4bvvvtOeRqK2ceXKFTx48KDFukqlwrVr1wQkIiIybs3X+d3d3XHixAl06dJFcCLjYyY6ANEvCQ8PR0REBL799ltIkoTKykp8+umniIyMxBtvvCE6HslMc9H1x1h0JSIyXkOGDMGlS5dExzA5Y8aMwZw5c5Cfn689sZCfn4/w8HCMHTtWcDoiIuNVXl7eogDGF/aPhyfByOBFRUXh9u3bCAwMxN27dzFixAhYWloiMjIS8+bNEx2PZKa56JqUlKQtuubl5SEyMhIxMTGi4xER0W+wefNmvPbaa7h8+TIGDBjQYgKkr6+voGTylpSUhBkzZmDo0KHa3/OmpiY888wz2Lx5s+B0RETG6/3334ebmxtefvllAMBLL72E3bt3w8XFBZmZmRg4cKDghIaLPcHIaDQ0NKCoqAhqtRre3t7o2LGj6EgkU9HR0Vi9erW231xz0XXZsmWCkxER0W/xzTffIDg4GBcvXtSuNfdTYWN8/dBoNFAqlejatSsuX76M4uJiaDQa9O/fH15eXqLjEREZNYVCgU8++QT+/v44ePAgpk6dis8++wxpaWlQKpX4+uuvRUc0WCyCERE9AouuRETy4e3tjf79+yMqKuqRjfFdXV0FJZMvtVoNKysrnD17Fp6enqLjEBHJirW1Nc6fP49evXohIiICd+/eRWJiIs6fP4+nnnoKN2/eFB3RYPE6JBHRI9jY2MDPz090DCIiagUVFRXYt28f+vTpIzqKyTAzM4Onpyeqq6tZBCMiamWOjo64dOkSevXqhf3792P58uUAHp7C5enmn8fG+EREREQka6NHj8bJkydFxzA58fHxWLx4Mc6cOSM6ChGRrEyZMgXBwcEICgpCdXU1xo8fDwD4/vvv+cLnF/AkGBERERHJ2n//939j4cKFOH36NHx8fFo0xp84caKgZPL2yiuvoKGhAQMHDoSFhQWsra11ntfU1AhKRkRk3FavXg03NzdcunQJ8fHx2tYtV65cwRtvvCE4nWFjTzAiIiIikjUzs5++/MDG+PqTnJz8s89nzJjRRkmIiEzThAkTsHnzZri4uIiOYjBYBCMiIiIiIiIikhlbW1ucPHkSCoVCdBSDweuQRERERCRrFy9ehJubm+gYJq2xsREPHjzQWbOzsxOUhoiITBUb4xMRERGRrCkUCgQEBCAxMZF9qNpQfX095s2bBycnJ3Ts2BGOjo46P4iIiNoai2BEREREJGv5+fkYPnw4li9fju7du2PSpEnYtWsX7t27JzqarEVFReHw4cPYsGEDLC0tsXnzZsTGxqJ79+5ISUkRHY+IiEwQe4IRERERkUnQaDT45z//ie3bt2P37t1QqVR44YUXkJSUJDqaLPXu3RspKSkYNWoU7OzsUFBQgD59+iA1NRU7duxAZmam6IhERLLGnmAt8SQYEREREZkESZIQGBiIjz/+GIcOHYJCofjFCYb029XU1MDd3R3Aw/5fzVdRAwICkJOTIzIaERGZKBbBiIiIiMgkXLp0CfHx8Rg0aBCGDBmCDh06YP369aJjyZZCocDFixcBAN7e3khLSwMAZGRkwMHBQVwwIiIjl5OTg6amphbrTU1NOi8Z/vKXv6BTp05tGc3g8TokEREREcnapk2b8OmnnyI3Nxf9+vVDSEgIgoODOTFSz1avXg1zc3MsWLAA2dnZmDBhAlQqFZqampCQkICIiAjREYmIjJK5uTmuXLkCJycnnfXq6mo4OTlBpVIJSmb4WAQjIiIiIlnr1asXpk2bhpCQEAwaNEh0HJOlVCqRn58PDw8PDBw4UHQcIiKjZWZmhmvXrqFr16466+fPn4efnx9qa2sFJTN87UQHICIiIiLSJ6VSidzcXKxatQplZWXYtWsXevTogdTUVLi7uyMgIEB0RNnKyspCVlYWrl+/DrVarfOMAwmIiH6dKVOmAHjY4/LVV1+FpaWl9plKpcKpU6fg7+8vKp5RYE8wIiIiIpK1zz//HM888wysra1RUFCAe/fuAQDq6uqwcuVKwenkKzY2Fn/84x+RlZWFGzdu4ObNmzo/iIjo17G3t4e9vT00Gg1sbW21X9vb26Nbt26YO3cuPvnkE9ExDRqvQxIRERGRrA0ePBgLFy5EaGiozrj477//HuPGjcPVq1dFR5QlFxcXxMfHY/r06aKjEBHJSmxsLCIjI9GhQwfRUYwOr0MSERERkaydO3cOI0aMaLFuZ2eHW7dutX0gE3H//n1eyyEi0oOlS5eKjmC0WAQjIiIiIllzcXHBhQsXWkyDzM3NhUKhEBPKBMyePRvbt2/HO++8IzoKEZHspKenIy0tDUqlEvfv39d5VlBQICiV4WMRjIiIiIhkLTw8HBEREUhKSoIkSaisrEReXh4iIyMRExMjOp6sLFq0SPtztVqNTZs24dChQ/D19UX79u11PpuQkNDW8YiIZGHdunWIjo7GjBkzsHfvXsycOROlpaU4ceIE3nzzTdHxDBp7ghERERGR7EVHR2P16tW4e/cuAMDS0hKRkZFYtmyZ4GTyEhgY+FifkyQJhw8f1nMaIiJ56tevH5YuXYr/+Z//0el1GRMTg5qaGqxfv150RIPFIhgRERERmYSGhgYUFRVBrVbD29sbHTt2FB2JiIjoV7OxsUFxcTFcXV3h5OSEgwcPYuDAgSgpKcGwYcNQXV0tOqLBMhMdgIiIiIioLdjY2MDPzw9Dhw5lAYyIiIxWt27dtIUuV1dXfPPNNwCA8vJy8JzTz2MRjIiIiIiIiIjISIwePRoZGRkAgFmzZmHhwoUICgrCyy+/jOeff15wOsPG65BEREREREREREZCrVZDrVajXbuHsw7T0tKQm5uLPn364LXXXoOFhYXghIaLRTAiIiIiIiIiIpK9dqIDEBERERERERHR47t16xaOHz+O69evQ61W6zwLDQ0VlMrw8SQYEREREREREZGRyMjIQEhICOrr62FrawtJkrTPJElCTU2NwHSGjUUwIiIiIiIiIiIj4eXlhWeffRYrV66EjY2N6DhGhUUwIiIiIiIiIiIj0aFDB5w+fRoKhUJ0FKNjJjoAERERERERERE9nmeeeQb5+fmiYxglNsYnIiIiIiIiIjJg+/bt0/58woQJWLx4MYqKiuDj44P27dvrfHbixIltHc9o8DokEREREREREZEBMzN7vIt8kiRBpVLpOY3xYhGMiIiIiIiIiIhkjz3BiIiIiIiIiIhI9tgTjIiIiIiIiIjIgK1bt+6xP7tgwQI9JjFuvA5JRERERERERGTA3N3ddb6uqqpCQ0MDHBwcAAC3bt2CjY0NnJycUFZWJiChceB1SCIiIiIiIiIiA1ZeXq79sWLFCgwaNAjFxcWoqalBTU0NiouL8cQTT2DZsmWioxo0ngQjIiIiIiIiIjISHh4eSE9Px+DBg3XWv/vuO7z44osoLy8XlMzw8SQYEREREREREZGRuHLlCh48eNBiXaVS4dq1awISGQ8WwYiIiIiIiIiIjMSYMWMwZ84c5Ofno/lyX35+PsLDwzF27FjB6Qwbi2BEREREREREREYiKSkJPXr0wNChQ2FlZQVLS0s89dRTcHFxwebNm0XHM2jsCUZEREREREREZAQ0Gg2USiW6du2Ky5cvo7i4GBqNBv3794eXl5foeAaPRTAiIiIiIiIiIiOgVqthZWWFs2fPwtPTU3Qco8PrkERERERERERERsDMzAyenp6orq4WHcUosQhGRERERERERGQk4uPjsXjxYpw5c0Z0FKPD65BEREREREREREbC0dERDQ0NaGpqgoWFBaytrXWe19TUCEpm+NqJDkBERERERERERI9nzZo1oiMYLZ4EIyIiIiIiIiIi2eNJMCIiIiIiIiIiI9TY2IgHDx7orNnZ2QlKY/jYGJ+IiIiIiIiIyEjU19dj3rx5cHJyQseOHeHo6Kjzg34ai2BEREREREREREYiKioKhw8fxoYNG2BpaYnNmzcjNjYW3bt3R0pKiuh4Bo09wYiIiIiIiIiIjETv3r2RkpKCUaNGwc7ODgUFBejTpw9SU1OxY8cOZGZmio5osHgSjIiIiIiIiIjISNTU1MDd3R3Aw/5fNTU1AICAgADk5OSIjGbwWAQjIiIiIiIiIjISCoUCFy9eBAB4e3sjLS0NAJCRkQEHBwdxwYwAr0MSERERERERERmJ1atXw9zcHAsWLEB2djYmTJgAlUqFpqYmJCQkICIiQnREg8UiGBERERERERGRkVIqlcjPz4eHhwcGDhwoOo5Bayc6ABERERERERERPb6srCxkZWXh+vXrUKvVOs+SkpIEpTJ8LIIRERERERERERmJ2NhYxMXFwc/PDy4uLpAkSXQko8HrkERERERERERERsLFxQXx8fGYPn266ChGh9MhiYiIiIiIiIiMxP379+Hv7y86hlFiEYyIiIiIiIiIyEjMnj0b27dvFx3DKPE6JBERERERERGRAVu0aJH252q1GsnJyfD19YWvry/at2+v89mEhIS2jmc0WAQjIiIiIiIiIjJggYGBj/U5SZJw+PBhPacxXiyCERERERERERGR7LEnGBERERERERERyR6LYEREREREREREJHssghERERERERERkeyxCEZERERERERERLLHIhgREREREREREckei2BERERERERERCR7LIIREREREREREZHs/T9Anm9fE8YYYAAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "rpc_call_types = defaultdict(lambda: defaultdict(int))\n", - "rpc_call_types_total = defaultdict(int)\n", - "for scenario, calls in rpc_calls.items():\n", - " for item in calls:\n", - " method = item[\"method\"]\n", - " rpc_call_types[scenario][method] += 1\n", - " rpc_call_types_total[method] += 1\n", - "\n", - "rpc_calls_by_count = list(map(lambda item: item[0], sorted(rpc_call_types_total.items(), key=lambda item: item[1], reverse=True)))\n", - "\n", - "rpc_call_types_total = list(zip(*sorted(rpc_call_types_total.items(), key=lambda item: item[1], reverse=True)))\n", - "\n", - "plt.figure(figsize=(15, 5))\n", - "plt.bar(rpc_call_types_total[0], rpc_call_types_total[1], color='g')\n", - "plt.title('RPC call types')\n", - "plt.ylabel('Count (logarithmic)')\n", - "plt.gca().set_yscale('log')\n", - "plt.xticks(rotation='vertical')\n", - "plt.subplots_adjust(bottom=0.3)\n", - "plt.show()\n", - "\n", - "fig, axs = plt.subplots(len(rpc_call_types), 1, sharex=True, sharey=True, figsize=(15, 10))\n", - "fig.suptitle('RPC call counts by scenario')\n", - "plt.subplots_adjust(hspace=0.5)\n", - "plt.xticks(rotation='vertical')\n", - "plt.subplots_adjust(bottom=0.2)\n", - "\n", - "for ax, (scenario, counts) in zip(axs, rpc_call_types.items()):\n", - " ys = [counts.get(method, 0) for method in rpc_calls_by_count]\n", - " ax.bar(rpc_calls_by_count, ys, color='orange')\n", - " ax.set_yscale('log')\n", - " y_major = matplotlib.ticker.LogLocator(base = 10.0, numticks = 5)\n", - " ax.yaxis.set_major_locator(y_major)\n", - " ax.set_title(scenario, loc='right')\n", - "\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "a73f5e1a-159c-416f-9944-43ae7bff6df0", - "metadata": {}, - "source": [ - "### `eth_getBlockByNumber`\n", - "\n", - "The high number of `eth_getBlockByNumber` calls is concerning. In aggregate, the various scenarios call `eth_getBlockByNumber` 10x more than `eth_sendTransaction` while there should be no reason to get more blocks than there are transactions. In `rocketpool` and `synthetix` the multiplier is 100x which points to a bug in a plugin used by these repos.\n", - "\n", - "The overhead from `eth_getBlockByNumber` is twofold: \n", - "1. While fetching already mined blocks is cheap in Rust, serializing them to string and then parsing on the JS side is not.\n", - "2. The plugins probably do some extra processing of the blocks which might be expensive.\n", - "\n", - "### Automining\n", - "\n", - "Only the `openzeppelin` repo turns off automining and only briefly, so it's worth optimizing for automining which we know that it's currently slow due to making snapshots before each automined block.\n", - "\n", - "### `eth_estimateGas`\n", - "\n", - "It's interesting to see that `eth_estimateGas` usage varies between scenarios. Most scenarios use `eth_estimateGas` for a fraction of the transactions, while `rocketpool` doesn't use it all and `neptune-mutual` seems to use it for all transactions.\n", - "\n", - "### Cacheable getters\n", - "\n", - "There is a high number of `eth_chainId`, `net_version` and `eth_accounts` calls. These should be cacheable for the lifetime of a provider. The performance impact is unclear.\n", - "\n", - "### `hardhat_reset`\n", - "\n", - "Only `seaport` is using `hardhat_reset` out of the 7 scenarios, so it's not worth spending time on optimizing this method.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "d529743b-69a6-4db1-9654-38ea1e967142", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAk0AAAIYCAYAAABwudgcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB67klEQVR4nO3deXhM1/8H8PdkXySTRHYiCSEVSaz9ZtHaxRZLaaloSO20IiStakuEEkXRVotulKp0UaqWiFpCSiwhiJIWIUE2JBNZZL2/PyS3xgTDj7mReb+eZ57HnHtm5j236c0n5557rkwQBAFERERE9FA6UgcgIiIieh6waCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCKqY2QymVqP/fv3Sx31mVmwYAG2bNmi0r5///46/d1lMhnefvttqWM819auXQuZTIbLly9LHYVIhZ7UAYhI2eHDh5Wez5s3D/v27cPevXuV2j08PDQZS6MWLFiAV199FYMGDVJqb9euHQ4fPlyvv7u269evHw4fPgwHBwepoxCpYNFEVMf4+voqPbexsYGOjo5K+/2Ki4thYmLyLKNJztzc/JH7gZ5PJSUlMDIygo2NDWxsbKSOQ1Qrnp4jeg516dIFnp6eOHDgAPz9/WFiYoLRo0cDAH766ScEBATAwcEBxsbGaNmyJd577z0UFRUpvUdISAgaNGiACxcuoG/fvmjQoAGcnJwQHh6O0tJSpb4rV65E69at0aBBA5iZmeGFF17A+++/L27Pzc3F5MmT4eHhgQYNGsDW1hbdunXDwYMHVbKXlpZi7ty5aNmyJYyMjNCwYUN07doVhw4dAnD3FFdRURG+//578VRkly5dADz49NzWrVvh5+cHExMTmJmZoWfPniojdnPmzIFMJsPZs2cxfPhwyOVy2NnZYfTo0VAoFEp9f/nlF/j4+EAul8PExARNmzYV9686Vq9ejRYtWsDQ0BAeHh6IiYkRt12+fBl6enqIjo5Wed2BAwcgk8nwyy+/PPC9q6qq8NFHH8Hd3R3GxsawsLCAt7c3Pv30U6V+58+fx/Dhw2FnZwdDQ0M0adIEI0eOVPpvm5WVhQkTJqBx48YwMDCAq6sroqKiUFFRoZRXJpNhyZIlWLp0KVxdXdGgQQP4+fkhMTFR6TOPHz+O119/HS4uLjA2NoaLiwuGDx+OK1euKPWrOQUXFxeH0aNHw8bGBiYmJigtLX3g6bnvvvsOrVu3hpGREaysrPDKK6/g3LlzD/6PQPQMcKSJ6DmVmZmJN954A++++y4WLFgAHZ27fwP9+++/6Nu3L8LCwmBqaorz58/j448/xtGjR1VO8ZWXl2PAgAEYM2YMwsPDceDAAcybNw9yuRyzZ88GAMTExGDy5MmYMmUKlixZAh0dHVy4cAF///23+D63bt0CAERGRsLe3h6FhYXYvHkzunTpgj179ohFT0VFBfr06YODBw8iLCwM3bp1Q0VFBRITE5Geng5/f38cPnwY3bp1Q9euXTFr1iwAd0eYHuTHH3/EiBEjEBAQgI0bN6K0tBSLFi0SP/ull15S6j9kyBAMGzYMY8aMwZkzZzBz5kwAd38pA3dPjw4bNgzDhg3DnDlzYGRkhCtXrqjsuwfZunUr9u3bh7lz58LU1BRffvklhg8fDj09Pbz66qtwcXHBgAEDsGrVKrz77rvQ1dUVX7tixQo4OjrilVdeeeD7L1q0CHPmzMGHH36ITp06oby8HOfPn0d+fr7Y59SpU3jppZdgbW2NuXPnonnz5sjMzMTWrVtRVlYGQ0NDZGVl4X//+x90dHQwe/ZsNGvWDIcPH8ZHH32Ey5cvY82aNUqf+8UXX+CFF17A8uXLAQCzZs1C3759kZaWBrlcDuBugeXu7o7XX38dVlZWyMzMxMqVK/Hiiy/i77//hrW1tdJ7jh49Gv369cP69etRVFQEfX39Wr9zdHQ03n//fQwfPhzR0dG4efMm5syZAz8/Pxw7dgzNmzdX678N0f+bQER12qhRowRTU1Olts6dOwsAhD179jz0tVVVVUJ5ebkQHx8vABBOnTql9L4AhJ9//lnpNX379hXc3d3F52+//bZgYWHxWJkrKiqE8vJyoXv37sIrr7witq9bt04AIHz99dcPfb2pqakwatQolfZ9+/YJAIR9+/YJgiAIlZWVgqOjo+Dl5SVUVlaK/W7fvi3Y2toK/v7+YltkZKQAQFi0aJHSe06ePFkwMjISqqqqBEEQhCVLlggAhPz8/Mf6zoIgCAAEY2NjISsrS2yrqKgQXnjhBcHNzU3le2zevFlsu3btmqCnpydERUU99DMCAwOFNm3aPLRPt27dBAsLCyEnJ+eBfSZMmCA0aNBAuHLlilJ7zfc/e/asIAiCkJaWJgAQvLy8hIqKCrHf0aNHBQDCxo0bH/gZFRUVQmFhoWBqaip8+umnYvuaNWsEAMLIkSNVXlOzLS0tTRAEQcjLyxOMjY2Fvn37KvVLT08XDA0NhaCgoAfvCKKnjKfniJ5TlpaW6Natm0r7pUuXEBQUBHt7e+jq6kJfXx+dO3cGAJXTGTKZDP3791dq8/b2Vjqd8r///Q/5+fkYPnw4fv/9d9y4caPWPKtWrUK7du1gZGQEPT096OvrY8+ePUqfuXPnThgZGT3Wqa6HSU1NxfXr1xEcHCyOtAFAgwYNMGTIECQmJqK4uFjpNQMGDFB67u3tjTt37iAnJwcA8OKLLwIAhg4dip9//hnXrl17rEzdu3eHnZ2d+FxXVxfDhg3DhQsXcPXqVQB3T6+2bt0aX3zxhdhv1apVkMlkGD9+/EPf/3//+x9OnTqFyZMnY9euXSgoKFDaXlxcjPj4eAwdOvShc4O2bduGrl27wtHRERUVFeKjT58+AID4+Hil/v369VMaFfP29gYApZ+VwsJCzJgxA25ubtDT04Oenh4aNGiAoqKiWk+lDRky5KHfFbg78ldSUoKQkBCldicnJ3Tr1g179ux55HsQPS0smoieU7VdXVRYWIiXX34ZR44cwUcffYT9+/fj2LFj+O233wDcnWx7LxMTExgZGSm1GRoa4s6dO+Lz4OBgfPfdd7hy5QqGDBkCW1tb+Pj4YPfu3WKfpUuXYtKkSfDx8cGmTZuQmJiIY8eOoXfv3kqfmZubC0dHR6UC5//j5s2bAGrfF46OjqiqqkJeXp5Se8OGDVW+L/DfvunUqRO2bNmCiooKjBw5Eo0bN4anpyc2btyoViZ7e/sHttXkBYDQ0FDs2bMHqampKC8vx9dff41XX3211tffa+bMmViyZAkSExPRp08fNGzYEN27d8fx48cBAHl5eaisrETjxo0f+j7Z2dn4448/oK+vr/Ro1aoVAKgUx4/abwAQFBSEFStWYOzYsdi1axeOHj2KY8eOwcbGRuVnD6j9v9v9HvXf+N59SvSscU4T0XNKJpOptO3duxfXr1/H/v37xdElAErzXZ7Em2++iTfffBNFRUU4cOAAIiMjERgYiH/++QfOzs744Ycf0KVLF6xcuVLpdbdv31Z6bmNjg4SEBFRVVT2VwqnmF3lmZqbKtuvXr0NHRweWlpaP/b4DBw7EwIEDUVpaisTERERHRyMoKAguLi7w8/N76GuzsrIe2HZv4REUFIQZM2bgiy++gK+vL7KysvDWW289Mpuenh6mT5+O6dOnIz8/H3/++Sfef/999OrVCxkZGbCysoKurq44qvUg1tbW8Pb2xvz582vd7ujo+Mgs91IoFNi2bRsiIyPx3nvvie2lpaXinLf71fYzfL9H/Te+f54U0bPEkSaieqTml1DNKECN1atXP5X3NzU1RZ8+ffDBBx+grKwMZ8+eFT/3/s88ffq0yhVsffr0wZ07d7B27dqHfo6hoWGtIxP3c3d3R6NGjfDjjz9CEASxvaioCJs2bRKvqHtShoaG6Ny5Mz7++GMAwMmTJx/5mj179iA7O1t8XllZiZ9++gnNmjVTGv0xMjLC+PHj8f3332Pp0qVo06YNOnbs+Fj5LCws8Oqrr+Ktt97CrVu3cPnyZRgbG6Nz58745ZdfHngqFQACAwORkpKCZs2aoUOHDiqPxy2aZDIZBEFQ+Tn45ptvUFlZ+VjvdS8/Pz8YGxvjhx9+UGq/evUq9u7di+7duz/xexM9Lo40EdUj/v7+sLS0xMSJExEZGQl9fX1s2LABp06deuL3HDduHIyNjdGxY0c4ODggKysL0dHRkMvl4vyfwMBAzJs3D5GRkejcuTNSU1Mxd+5cuLq6Kl2+Pnz4cKxZswYTJ05EamoqunbtiqqqKhw5cgQtW7bE66+/DgDw8vLC/v378ccff8DBwQFmZmZwd3dXyaajo4NFixZhxIgRCAwMxIQJE1BaWorFixcjPz8fCxcufOzvO3v2bFy9ehXdu3dH48aNkZ+fj08//VRpbtjDWFtbo1u3bpg1a5Z49dz58+eVlh2oMXnyZCxatAhJSUn45ptv1MrXv39/eHp6okOHDrCxscGVK1ewfPlyODs7i1eRLV26FC+99BJ8fHzw3nvvwc3NDdnZ2di6dStWr14NMzMzzJ07F7t374a/vz9CQ0Ph7u6OO3fu4PLly9ixYwdWrVr1yFN89zI3N0enTp2wePFiWFtbw8XFBfHx8fj2229hYWGh9vvcz8LCArNmzcL777+PkSNHYvjw4bh58yaioqJgZGSEyMjIJ35voscm9Ux0Inq4B10916pVq1r7Hzp0SPDz8xNMTEwEGxsbYezYscKJEycEAMKaNWse+r6C8N9VZjW+//57oWvXroKdnZ1gYGAgODo6CkOHDhVOnz4t9iktLRUiIiKERo0aCUZGRkK7du2ELVu2CKNGjRKcnZ2V3r+kpESYPXu20Lx5c8HAwEBo2LCh0K1bN+HQoUNin+TkZKFjx46CiYmJAEDo3LmzIAiqV8/V2LJli+Dj4yMYGRkJpqamQvfu3YW//vqr1u+Vm5ur1H7/1Vrbtm0T+vTpIzRq1EgwMDAQbG1thb59+woHDx6sdX/fC4Dw1ltvCV9++aXQrFkzQV9fX3jhhReEDRs2PPA1Xbp0EaysrITi4uJHvr8gCMInn3wi+Pv7C9bW1oKBgYHQpEkTYcyYMcLly5eV+v3999/Ca6+9JjRs2FDsFxISIty5c0fsk5ubK4SGhgqurq6Cvr6+YGVlJbRv31744IMPhMLCQkEQ/rt6bvHixbV+38jISPH51atXhSFDhgiWlpaCmZmZ0Lt3byElJUVwdnZWuhqyZp8fO3ZM5T3v/+9R45tvvhG8vb0FAwMDQS6XCwMHDhSv8CPSFJkg3DOmTUREGpOTkwNnZ2dMmTIFixYtkjoOET0CT88REWnY1atXcenSJSxevBg6OjqYOnWq1JGISA2cCE5EpGHffPMNunTpgrNnz2LDhg1o1KiR1JGISA08PUdERESkBo40EREREamBRRMRERGRGlg0EREREamBV889RVVVVbh+/TrMzMzUuj0AERERSU8QBNy+ffuR98Zk0fQUXb9+HU5OTlLHICIioieQkZHx0JXwWTQ9RWZmZgDu7nRzc3OJ0xAREZE6CgoK4OTkJP4efxAWTU9RzSk5c3NzFk1ERETPmUdNreFEcCIiIiI1sGgiIiIiUgOLJiIiIiI1sGgiIiIiUgOLJiIiIiI1sGgiIiIiUgOLJiIiIiI1sGgiIiIiUgOLJiIiIiI1sGgiIiIiUgNvo/KckEU9fGn355EQKUgdgYiISG0caSIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjWwaCIiIiJSA4smIiIiIjXUmaIpOjoaMpkMYWFhYpsgCJgzZw4cHR1hbGyMLl264OzZs0qvKy0txZQpU2BtbQ1TU1MMGDAAV69eVeqTl5eH4OBgyOVyyOVyBAcHIz8/X6lPeno6+vfvD1NTU1hbWyM0NBRlZWXP6usSERHRc6ZOFE3Hjh3DV199BW9vb6X2RYsWYenSpVixYgWOHTsGe3t79OzZE7dv3xb7hIWFYfPmzYiJiUFCQgIKCwsRGBiIyspKsU9QUBCSk5MRGxuL2NhYJCcnIzg4WNxeWVmJfv36oaioCAkJCYiJicGmTZsQHh7+7L88ERERPRdkgiAIUgYoLCxEu3bt8OWXX+Kjjz5CmzZtsHz5cgiCAEdHR4SFhWHGjBkA7o4q2dnZ4eOPP8aECROgUChgY2OD9evXY9iwYQCA69evw8nJCTt27ECvXr1w7tw5eHh4IDExET4+PgCAxMRE+Pn54fz583B3d8fOnTsRGBiIjIwMODo6AgBiYmIQEhKCnJwcmJub15q9tLQUpaWl4vOCggI4OTlBoVA88DVPShYle6rvVxcIkZL+6BEREQG4+/tbLpc/8ve35CNNb731Fvr164cePXootaelpSErKwsBAQFim6GhITp37oxDhw4BAJKSklBeXq7Ux9HREZ6enmKfw4cPQy6XiwUTAPj6+kIulyv18fT0FAsmAOjVqxdKS0uRlJT0wOzR0dHiKT+5XA4nJ6f/x54gIiKiukzSoikmJgYnTpxAdHS0yrasrCwAgJ2dnVK7nZ2duC0rKwsGBgawtLR8aB9bW1uV97e1tVXqc//nWFpawsDAQOxTm5kzZ0KhUIiPjIyMR31lIiIiek7pSfXBGRkZmDp1KuLi4mBkZPTAfjKZ8mkpQRBU2u53f5/a+j9Jn/sZGhrC0NDwoVmIiIiofpBspCkpKQk5OTlo37499PT0oKenh/j4eHz22WfQ09MTR37uH+nJyckRt9nb26OsrAx5eXkP7ZOdna3y+bm5uUp97v+cvLw8lJeXq4xAERERkXaSrGjq3r07zpw5g+TkZPHRoUMHjBgxAsnJyWjatCns7e2xe/du8TVlZWWIj4+Hv78/AKB9+/bQ19dX6pOZmYmUlBSxj5+fHxQKBY4ePSr2OXLkCBQKhVKflJQUZGZmin3i4uJgaGiI9u3bP9P9QERERM8HyU7PmZmZwdPTU6nN1NQUDRs2FNvDwsKwYMECNG/eHM2bN8eCBQtgYmKCoKAgAIBcLseYMWMQHh6Ohg0bwsrKChEREfDy8hInlrds2RK9e/fGuHHjsHr1agDA+PHjERgYCHd3dwBAQEAAPDw8EBwcjMWLF+PWrVuIiIjAuHHjnvpVcERERPR8kqxoUse7776LkpISTJ48GXl5efDx8UFcXBzMzMzEPsuWLYOenh6GDh2KkpISdO/eHWvXroWurq7YZ8OGDQgNDRWvshswYABWrFghbtfV1cX27dsxefJkdOzYEcbGxggKCsKSJUs092WJiIioTpN8nab6RN11Hp4E12kiIiJ6Np6bdZqIiIiIngcsmoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUwKKJiIiISA0smoiIiIjUIGnRtHLlSnh7e8Pc3Bzm5ubw8/PDzp07xe0hISGQyWRKD19fX6X3KC0txZQpU2BtbQ1TU1MMGDAAV69eVeqTl5eH4OBgyOVyyOVyBAcHIz8/X6lPeno6+vfvD1NTU1hbWyM0NBRlZWXP7LsTERHR80XSoqlx48ZYuHAhjh8/juPHj6Nbt24YOHAgzp49K/bp3bs3MjMzxceOHTuU3iMsLAybN29GTEwMEhISUFhYiMDAQFRWVop9goKCkJycjNjYWMTGxiI5ORnBwcHi9srKSvTr1w9FRUVISEhATEwMNm3ahPDw8Ge/E4iIiOi5IBMEQZA6xL2srKywePFijBkzBiEhIcjPz8eWLVtq7atQKGBjY4P169dj2LBhAIDr16/DyckJO3bsQK9evXDu3Dl4eHggMTERPj4+AIDExET4+fnh/PnzcHd3x86dOxEYGIiMjAw4OjoCAGJiYhASEoKcnByYm5urlb2goAByuRwKhULt16hLFiV7qu9XFwiRdepHj4iItJS6v7/rzJymyspKxMTEoKioCH5+fmL7/v37YWtrixYtWmDcuHHIyckRtyUlJaG8vBwBAQFim6OjIzw9PXHo0CEAwOHDhyGXy8WCCQB8fX0hl8uV+nh6eooFEwD06tULpaWlSEpKemDm0tJSFBQUKD2IiIiofpK8aDpz5gwaNGgAQ0NDTJw4EZs3b4aHhwcAoE+fPtiwYQP27t2LTz75BMeOHUO3bt1QWloKAMjKyoKBgQEsLS2V3tPOzg5ZWVliH1tbW5XPtbW1VepjZ2entN3S0hIGBgZin9pER0eL86TkcjmcnJyefEcQERFRnaYndQB3d3ckJycjPz8fmzZtwqhRoxAfHw8PDw/xlBsAeHp6okOHDnB2dsb27dsxePDgB76nIAiQyf47nXXvv/8/fe43c+ZMTJ8+XXxeUFDAwomIiKieknykycDAAG5ubujQoQOio6PRunVrfPrpp7X2dXBwgLOzM/79918AgL29PcrKypCXl6fULycnRxw5sre3R3Z2tsp75ebmKvW5f0QpLy8P5eXlKiNQ9zI0NBSv/Kt5EBERUf0kedF0P0EQxNNv97t58yYyMjLg4OAAAGjfvj309fWxe/dusU9mZiZSUlLg7+8PAPDz84NCocDRo0fFPkeOHIFCoVDqk5KSgszMTLFPXFwcDA0N0b59+6f+HYmIiOj5I+npuffffx99+vSBk5MTbt++jZiYGOzfvx+xsbEoLCzEnDlzMGTIEDg4OODy5ct4//33YW1tjVdeeQUAIJfLMWbMGISHh6Nhw4awsrJCREQEvLy80KNHDwBAy5Yt0bt3b4wbNw6rV68GAIwfPx6BgYFwd3cHAAQEBMDDwwPBwcFYvHgxbt26hYiICIwbN46jR0RERARA4qIpOzsbwcHByMzMhFwuh7e3N2JjY9GzZ0+UlJTgzJkzWLduHfLz8+Hg4ICuXbvip59+gpmZmfgey5Ytg56eHoYOHYqSkhJ0794da9euha6urthnw4YNCA0NFa+yGzBgAFasWCFu19XVxfbt2zF58mR07NgRxsbGCAoKwpIlSzS3M4iIiKhOq3PrND3PuE7T4+E6TUREVBc8d+s0EREREdVlLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1MCiiYiIiEgNLJqIiIiI1CBp0bRy5Up4e3vD3Nwc5ubm8PPzw86dO8XtgiBgzpw5cHR0hLGxMbp06YKzZ88qvUdpaSmmTJkCa2trmJqaYsCAAbh69apSn7y8PAQHB0Mul0MulyM4OBj5+flKfdLT09G/f3+YmprC2toaoaGhKCsre2bfnYiIiJ4vkhZNjRs3xsKFC3H8+HEcP34c3bp1w8CBA8XCaNGiRVi6dClWrFiBY8eOwd7eHj179sTt27fF9wgLC8PmzZsRExODhIQEFBYWIjAwEJWVlWKfoKAgJCcnIzY2FrGxsUhOTkZwcLC4vbKyEv369UNRURESEhIQExODTZs2ITw8XHM7g4iIiOo0mSAIgtQh7mVlZYXFixdj9OjRcHR0RFhYGGbMmAHg7qiSnZ0dPv74Y0yYMAEKhQI2NjZYv349hg0bBgC4fv06nJycsGPHDvTq1Qvnzp2Dh4cHEhMT4ePjAwBITEyEn58fzp8/D3d3d+zcuROBgYHIyMiAo6MjACAmJgYhISHIycmBubm5WtkLCgogl8uhUCjUfo26ZFGyp/p+dYEQWad+9IiISEup+/u7zsxpqqysRExMDIqKiuDn54e0tDRkZWUhICBA7GNoaIjOnTvj0KFDAICkpCSUl5cr9XF0dISnp6fY5/Dhw5DL5WLBBAC+vr6Qy+VKfTw9PcWCCQB69eqF0tJSJCUlPTBzaWkpCgoKlB5ERERUP0leNJ05cwYNGjSAoaEhJk6ciM2bN8PDwwNZWVkAADs7O6X+dnZ24rasrCwYGBjA0tLyoX1sbW1VPtfW1lapz/2fY2lpCQMDA7FPbaKjo8V5UnK5HE5OTo/57YmIiOh5IXnR5O7ujuTkZCQmJmLSpEkYNWoU/v77b3G7TKZ8WkoQBJW2+93fp7b+T9LnfjNnzoRCoRAfGRkZD81FREREzy/JiyYDAwO4ubmhQ4cOiI6ORuvWrfHpp5/C3t4eAFRGenJycsRRIXt7e5SVlSEvL++hfbKzs1U+Nzc3V6nP/Z+Tl5eH8vJylRGoexkaGopX/tU8iIiIqH6SvGi6nyAIKC0thaurK+zt7bF7925xW1lZGeLj4+Hv7w8AaN++PfT19ZX6ZGZmIiUlRezj5+cHhUKBo0ePin2OHDkChUKh1CclJQWZmZlin7i4OBgaGqJ9+/bP9PsSERHR80FPyg9///330adPHzg5OeH27duIiYnB/v37ERsbC5lMhrCwMCxYsADNmzdH8+bNsWDBApiYmCAoKAgAIJfLMWbMGISHh6Nhw4awsrJCREQEvLy80KNHDwBAy5Yt0bt3b4wbNw6rV68GAIwfPx6BgYFwd3cHAAQEBMDDwwPBwcFYvHgxbt26hYiICIwbN46jR0RERARA4qIpOzsbwcHByMzMhFwuh7e3N2JjY9GzZ08AwLvvvouSkhJMnjwZeXl58PHxQVxcHMzMzMT3WLZsGfT09DB06FCUlJSge/fuWLt2LXR1dcU+GzZsQGhoqHiV3YABA7BixQpxu66uLrZv347JkyejY8eOMDY2RlBQEJYsWaKhPUFERER1XZ1bp+l5xnWaHg/XaSIiorrguVuniYiIiKguY9FEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAYWTURERERqYNFEREREpAZJi6bo6Gi8+OKLMDMzg62tLQYNGoTU1FSlPiEhIZDJZEoPX19fpT6lpaWYMmUKrK2tYWpqigEDBuDq1atKffLy8hAcHAy5XA65XI7g4GDk5+cr9UlPT0f//v1hamoKa2trhIaGoqys7Jl8dyIiInq+SFo0xcfH46233kJiYiJ2796NiooKBAQEoKioSKlf7969kZmZKT527NihtD0sLAybN29GTEwMEhISUFhYiMDAQFRWVop9goKCkJycjNjYWMTGxiI5ORnBwcHi9srKSvTr1w9FRUVISEhATEwMNm3ahPDw8Ge7E4iIiOi5IBMEQXjcFzVt2hTHjh1Dw4YNldrz8/PRrl07XLp06YnC5ObmwtbWFvHx8ejUqROAuyNN+fn52LJlS62vUSgUsLGxwfr16zFs2DAAwPXr1+Hk5IQdO3agV69eOHfuHDw8PJCYmAgfHx8AQGJiIvz8/HD+/Hm4u7tj586dCAwMREZGBhwdHQEAMTExCAkJQU5ODszNzR+Zv6CgAHK5HAqFQq3+j0MWJXuq71cXCJGP/aNHRET01Kn7+/uJRpouX76sNIpTo7S0FNeuXXuStwRwtwACACsrK6X2/fv3w9bWFi1atMC4ceOQk5MjbktKSkJ5eTkCAgLENkdHR3h6euLQoUMAgMOHD0Mul4sFEwD4+vpCLpcr9fH09BQLJgDo1asXSktLkZSUVGve0tJSFBQUKD2IiIioftJ7nM5bt24V/71r1y7I5XLxeWVlJfbs2QMXF5cnCiIIAqZPn46XXnoJnp6eYnufPn3w2muvwdnZGWlpaZg1axa6deuGpKQkGBoaIisrCwYGBrC0tFR6Pzs7O2RlZQEAsrKyYGtrq/KZtra2Sn3s7OyUtltaWsLAwEDsc7/o6GhERUU90fclIiKi58tjFU2DBg0CAMhkMowaNUppm76+PlxcXPDJJ588UZC3334bp0+fRkJCglJ7zSk3APD09ESHDh3g7OyM7du3Y/DgwQ98P0EQIJP9d0rr3n//f/rca+bMmZg+fbr4vKCgAE5OTg/MRERERM+vxyqaqqqqAACurq44duwYrK2tn0qIKVOmYOvWrThw4AAaN2780L4ODg5wdnbGv//+CwCwt7dHWVkZ8vLylEabcnJy4O/vL/bJzs5Wea/c3FxxdMne3h5HjhxR2p6Xl4fy8nKVEagahoaGMDQ0VP+LEhER0XPrieY0paWlPZWCSRAEvP322/jtt9+wd+9euLq6PvI1N2/eREZGBhwcHAAA7du3h76+Pnbv3i32yczMREpKilg0+fn5QaFQ4OjRo2KfI0eOQKFQKPVJSUlBZmam2CcuLg6GhoZo3779//u7EhER0fPtia6eA4A9e/Zgz549yMnJEUeganz33XdqvcfkyZPx448/4vfff4e7u7vYLpfLYWxsjMLCQsyZMwdDhgyBg4MDLl++jPfffx/p6ek4d+4czMzMAACTJk3Ctm3bsHbtWlhZWSEiIgI3b95EUlISdHV1AdydG3X9+nWsXr0aADB+/Hg4Ozvjjz/+AHB3TlabNm1gZ2eHxYsX49atWwgJCcGgQYPw+eefq/V9ePXc4+HVc0REVBeo+/v7sU7P1YiKisLcuXPRoUMHODg4PHDOz6OsXLkSANClSxel9jVr1iAkJAS6uro4c+YM1q1bh/z8fDg4OKBr16746aefxIIJAJYtWwY9PT0MHToUJSUl6N69O9auXSsWTACwYcMGhIaGilfZDRgwACtWrBC36+rqYvv27Zg8eTI6duwIY2NjBAUFYcmSJU/03YiIiKh+eaKRJgcHByxatEhpcUjiSNPj4kgTERHVBc90naaysjJxLhARERGRNniiomns2LH48ccfn3YWIiIiojrrieY03blzB1999RX+/PNPeHt7Q19fX2n70qVLn0o4IiIiorriiYqm06dPo02bNgCAlJQUpW1POimciIiIqC57oqJp3759TzsHERERUZ32RHOaiIiIiLTNE400de3a9aGn4fbu3fvEgYiIiIjqoicqmmrmM9UoLy9HcnIyUlJSVG7kS0RERFQfPFHRtGzZslrb58yZg8LCwv9XICIiIqK66KnOaXrjjTfUvu8cERER0fPkqRZNhw8fhpGR0dN8SyIiIqI64YlOzw0ePFjpuSAIyMzMxPHjxzFr1qynEoyIiIioLnmiokkulys919HRgbu7O+bOnYuAgICnEoyIiIioLnmiomnNmjVPOwcRERFRnfZERVONpKQknDt3DjKZDB4eHmjbtu3TykVERERUpzxR0ZSTk4PXX38d+/fvh4WFBQRBgEKhQNeuXRETEwMbG5unnZOIiIhIUk909dyUKVNQUFCAs2fP4tatW8jLy0NKSgoKCgoQGhr6tDMSERERSe6JRppiY2Px559/omXLlmKbh4cHvvjiC04EJyIionrpiUaaqqqqoK+vr9Kur6+Pqqqq/3coIiIiorrmiYqmbt26YerUqbh+/brYdu3aNUybNg3du3d/auGIiIiI6oonKppWrFiB27dvw8XFBc2aNYObmxtcXV1x+/ZtfP7552q/T3R0NF588UWYmZnB1tYWgwYNQmpqqlIfQRAwZ84cODo6wtjYGF26dMHZs2eV+pSWlmLKlCmwtraGqakpBgwYgKtXryr1ycvLQ3BwMORyOeRyOYKDg5Gfn6/UJz09Hf3794epqSmsra0RGhqKsrKyx9s5REREVC89UdHk5OSEEydOYPv27QgLC0NoaCh27NiBpKQkNG7cWO33iY+Px1tvvYXExETs3r0bFRUVCAgIQFFRkdhn0aJFWLp0KVasWIFjx47B3t4ePXv2xO3bt8U+YWFh2Lx5M2JiYpCQkIDCwkIEBgaisrJS7BMUFITk5GTExsYiNjYWycnJCA4OFrdXVlaiX79+KCoqQkJCAmJiYrBp0yaEh4c/yS4iIiKiekYmCIKgbue9e/fi7bffRmJiIszNzZW2KRQK+Pv7Y9WqVXj55ZefKExubi5sbW0RHx+PTp06QRAEODo6IiwsDDNmzABwd1TJzs4OH3/8MSZMmACFQgEbGxusX78ew4YNAwBcv34dTk5O2LFjB3r16oVz587Bw8MDiYmJ8PHxAQAkJibCz88P58+fh7u7O3bu3InAwEBkZGTA0dERABATE4OQkBDk5OSofN/aFBQUQC6XQ6FQqNX/cciiZE/1/eoCIVLtHz0iIqJnRt3f34810rR8+XKMGzeu1jeUy+WYMGECli5d+vhpqykUCgCAlZUVACAtLQ1ZWVlKV+QZGhqic+fOOHToEIC7C2yWl5cr9XF0dISnp6fY5/Dhw5DL5WLBBAC+vr6Qy+VKfTw9PcWCCQB69eqF0tJSJCUl1Zq3tLQUBQUFSg8iIiKqnx6raDp16hR69+79wO0BAQEPLDAeRRAETJ8+HS+99BI8PT0BAFlZWQAAOzs7pb52dnbitqysLBgYGMDS0vKhfWxtbVU+09bWVqnP/Z9jaWkJAwMDsc/9oqOjxTlScrkcTk5Oj/u1iYiI6DnxWEVTdnZ2rUsN1NDT00Nubu4TBXn77bdx+vRpbNy4UWWbTKZ8akoQBJW2+93fp7b+T9LnXjNnzoRCoRAfGRkZD81EREREz6/HKpoaNWqEM2fOPHD76dOn4eDg8NghpkyZgq1bt2Lfvn1KE8nt7e0BQGWkJycnRxwVsre3R1lZGfLy8h7aJzs7W+Vzc3Nzlfrc/zl5eXkoLy9XGYGqYWhoCHNzc6UHERER1U+PVTT17dsXs2fPxp07d1S2lZSUIDIyEoGBgWq/nyAIePvtt/Hbb79h7969cHV1Vdru6uoKe3t77N69W2wrKytDfHw8/P39AQDt27eHvr6+Up/MzEykpKSIffz8/KBQKHD06FGxz5EjR8TJ6zV9UlJSkJmZKfaJi4uDoaEh2rdvr/Z3IiIiovrpsa6ey87ORrt27aCrq4u3334b7u7ukMlkOHfuHL744gtUVlbixIkTDxyZud/kyZPx448/4vfff4e7u7vYLpfLYWxsDAD4+OOPER0djTVr1qB58+ZYsGAB9u/fj9TUVJiZmQEAJk2ahG3btmHt2rWwsrJCREQEbt68iaSkJOjq6gIA+vTpg+vXr2P16tUAgPHjx8PZ2Rl//PEHgLtLDrRp0wZ2dnZYvHgxbt26hZCQEAwaNEjttad49dzj4dVzRERUF6j7+/uxiiYAuHLlCiZNmoRdu3ah5qUymQy9evXCl19+CRcXF7Xf60FzhdasWYOQkBAAd0ejoqKisHr1auTl5cHHxwdffPGFOFkcAO7cuYN33nkHP/74I0pKStC9e3d8+eWXShOzb926hdDQUGzduhUAMGDAAKxYsQIWFhZin/T0dEyePBl79+6FsbExgoKCsGTJEhgaGqr1fVg0PR4WTUREVBc8s6KpRl5eHi5cuABBENC8eXOVq9e0EYumx8OiiYiI6gJ1f3/rPekHWFpa4sUXX3zSlxMRERE9V57oNipERERE2oZFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqUHSounAgQPo378/HB0dIZPJsGXLFqXtISEhkMlkSg9fX1+lPqWlpZgyZQqsra1hamqKAQMG4OrVq0p98vLyEBwcDLlcDrlcjuDgYOTn5yv1SU9PR//+/WFqagpra2uEhoairKzsWXxtIiIieg5JWjQVFRWhdevWWLFixQP79O7dG5mZmeJjx44dStvDwsKwefNmxMTEICEhAYWFhQgMDERlZaXYJygoCMnJyYiNjUVsbCySk5MRHBwsbq+srES/fv1QVFSEhIQExMTEYNOmTQgPD3/6X5qIiIieS3pSfnifPn3Qp0+fh/YxNDSEvb19rdsUCgW+/fZbrF+/Hj169AAA/PDDD3BycsKff/6JXr164dy5c4iNjUViYiJ8fHwAAF9//TX8/PyQmpoKd3d3xMXF4e+//0ZGRgYcHR0BAJ988glCQkIwf/58mJubP8VvTURERM+jOj+naf/+/bC1tUWLFi0wbtw45OTkiNuSkpJQXl6OgIAAsc3R0RGenp44dOgQAODw4cOQy+ViwQQAvr6+kMvlSn08PT3FggkAevXqhdLSUiQlJT0wW2lpKQoKCpQeREREVD/V6aKpT58+2LBhA/bu3YtPPvkEx44dQ7du3VBaWgoAyMrKgoGBASwtLZVeZ2dnh6ysLLGPra2tynvb2toq9bGzs1PabmlpCQMDA7FPbaKjo8V5UnK5HE5OTv+v70tERER1l6Sn5x5l2LBh4r89PT3RoUMHODs7Y/v27Rg8ePADXycIAmQymfj83n//f/rcb+bMmZg+fbr4vKCggIUTERFRPVWni6b7OTg4wNnZGf/++y8AwN7eHmVlZcjLy1MabcrJyYG/v7/YJzs7W+W9cnNzxdEle3t7HDlyRGl7Xl4eysvLVUag7mVoaAhDQ8P/9/eixyOLenAh+7wSIgWpIxAR0SPU6dNz97t58yYyMjLg4OAAAGjfvj309fWxe/dusU9mZiZSUlLEosnPzw8KhQJHjx4V+xw5cgQKhUKpT0pKCjIzM8U+cXFxMDQ0RPv27TXx1YiIiKiOk3SkqbCwEBcuXBCfp6WlITk5GVZWVrCyssKcOXMwZMgQODg44PLly3j//fdhbW2NV155BQAgl8sxZswYhIeHo2HDhrCyskJERAS8vLzEq+latmyJ3r17Y9y4cVi9ejUAYPz48QgMDIS7uzsAICAgAB4eHggODsbixYtx69YtREREYNy4cbxyjoiIiABIXDQdP34cXbt2FZ/XzA8aNWoUVq5ciTNnzmDdunXIz8+Hg4MDunbtip9++glmZmbia5YtWwY9PT0MHToUJSUl6N69O9auXQtdXV2xz4YNGxAaGipeZTdgwACltaF0dXWxfft2TJ48GR07doSxsTGCgoKwZMmSZ70LiIiI6DkhEwSBkymekoKCAsjlcigUiqc+QsV5PP/hviAioqdJ3d/fz9WcJiIiIiKpsGgiIiIiUgOLJiIiIiI1sGgiIiIiUgOLJiIiIiI1sGgiIiIiUsNzdRsVIvoPl14gItIsjjQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqYFFExEREZEaWDQRERERqUHSounAgQPo378/HB0dIZPJsGXLFqXtgiBgzpw5cHR0hLGxMbp06YKzZ88q9SktLcWUKVNgbW0NU1NTDBgwAFevXlXqk5eXh+DgYMjlcsjlcgQHByM/P1+pT3p6Ovr37w9TU1NYW1sjNDQUZWVlz+JrExER0XNI0qKpqKgIrVu3xooVK2rdvmjRIixduhQrVqzAsWPHYG9vj549e+L27dtin7CwMGzevBkxMTFISEhAYWEhAgMDUVlZKfYJCgpCcnIyYmNjERsbi+TkZAQHB4vbKysr0a9fPxQVFSEhIQExMTHYtGkTwsPDn92XJyIioueKTBAEQeoQACCTybB582YMGjQIwN1RJkdHR4SFhWHGjBkA7o4q2dnZ4eOPP8aECROgUChgY2OD9evXY9iwYQCA69evw8nJCTt27ECvXr1w7tw5eHh4IDExET4+PgCAxMRE+Pn54fz583B3d8fOnTsRGBiIjIwMODo6AgBiYmIQEhKCnJwcmJubq/UdCgoKIJfLoVAo1H6N2vsnSvZU368uECKf7EeP++Iu7gcioqdD3d/fdXZOU1paGrKyshAQECC2GRoaonPnzjh06BAAICkpCeXl5Up9HB0d4enpKfY5fPgw5HK5WDABgK+vL+RyuVIfT09PsWACgF69eqG0tBRJSUkPzFhaWoqCggKlBxEREdVPdbZoysrKAgDY2dkptdvZ2YnbsrKyYGBgAEtLy4f2sbW1VXl/W1tbpT73f46lpSUMDAzEPrWJjo4W50nJ5XI4OTk95rckIiKi50WdLZpqyGTKpyAEQVBpu9/9fWrr/yR97jdz5kwoFArxkZGR8dBcRERE9Pyqs0WTvb09AKiM9OTk5IijQvb29igrK0NeXt5D+2RnZ6u8f25urlKf+z8nLy8P5eXlKiNQ9zI0NIS5ubnSg4iIiOqnOls0ubq6wt7eHrt37xbbysrKEB8fD39/fwBA+/btoa+vr9QnMzMTKSkpYh8/Pz8oFAocPXpU7HPkyBEoFAqlPikpKcjMzBT7xMXFwdDQEO3bt3+m35OIiIieD3pSfnhhYSEuXLggPk9LS0NycjKsrKzQpEkThIWFYcGCBWjevDmaN2+OBQsWwMTEBEFBQQAAuVyOMWPGIDw8HA0bNoSVlRUiIiLg5eWFHj16AABatmyJ3r17Y9y4cVi9ejUAYPz48QgMDIS7uzsAICAgAB4eHggODsbixYtx69YtREREYNy4cRw9IiIiIgASF03Hjx9H165dxefTp08HAIwaNQpr167Fu+++i5KSEkyePBl5eXnw8fFBXFwczMzMxNcsW7YMenp6GDp0KEpKStC9e3esXbsWurq6Yp8NGzYgNDRUvMpuwIABSmtD6erqYvv27Zg8eTI6duwIY2NjBAUFYcmSJc96FxAREdFzos6s01QfcJ2mx8N1mv7DdZru4jpNRCSF536dJiIiIqK6hEUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRrqdNE0Z84cyGQypYe9vb24XRAEzJkzB46OjjA2NkaXLl1w9uxZpfcoLS3FlClTYG1tDVNTUwwYMABXr15V6pOXl4fg4GDI5XLI5XIEBwcjPz9fE1+RiIiInhN1umgCgFatWiEzM1N8nDlzRty2aNEiLF26FCtWrMCxY8dgb2+Pnj174vbt22KfsLAwbN68GTExMUhISEBhYSECAwNRWVkp9gkKCkJycjJiY2MRGxuL5ORkBAcHa/R7EhERUd2mJ3WAR9HT01MaXaohCAKWL1+ODz74AIMHDwYAfP/997Czs8OPP/6ICRMmQKFQ4Ntvv8X69evRo0cPAMAPP/wAJycn/Pnnn+jVqxfOnTuH2NhYJCYmwsfHBwDw9ddfw8/PD6mpqXB3d9fclyUiIqI6q86PNP37779wdHSEq6srXn/9dVy6dAkAkJaWhqysLAQEBIh9DQ0N0blzZxw6dAgAkJSUhPLycqU+jo6O8PT0FPscPnwYcrlcLJgAwNfXF3K5XOzzIKWlpSgoKFB6EBERUf1Up4smHx8frFu3Drt27cLXX3+NrKws+Pv74+bNm8jKygIA2NnZKb3Gzs5O3JaVlQUDAwNYWlo+tI+tra3KZ9va2op9HiQ6OlqcByWXy+Hk5PTE35WIiIjqtjpdNPXp0wdDhgyBl5cXevToge3btwO4exquhkwmU3qNIAgqbfe7v09t/dV5n5kzZ0KhUIiPjIyMR34nIiIiej7V6aLpfqampvDy8sK///4rznO6fzQoJydHHH2yt7dHWVkZ8vLyHtonOztb5bNyc3NVRrHuZ2hoCHNzc6UHERER1U/PVdFUWlqKc+fOwcHBAa6urrC3t8fu3bvF7WVlZYiPj4e/vz8AoH379tDX11fqk5mZiZSUFLGPn58fFAoFjh49KvY5cuQIFAqF2IeIiIioTl89FxERgf79+6NJkybIycnBRx99hIKCAowaNQoymQxhYWFYsGABmjdvjubNm2PBggUwMTFBUFAQAEAul2PMmDEIDw9Hw4YNYWVlhYiICPF0HwC0bNkSvXv3xrhx47B69WoAwPjx4xEYGMgr54iIiEhUp4umq1evYvjw4bhx4wZsbGzg6+uLxMREODs7AwDeffddlJSUYPLkycjLy4OPjw/i4uJgZmYmvseyZcugp6eHoUOHoqSkBN27d8fatWuhq6sr9tmwYQNCQ0PFq+wGDBiAFStWaPbLEtETkUU9fO7h80iIFKSOQES1kAmCwP87n5KCggLI5XIoFIqnPr+Jvxj+w31xF/fDXdwPRPT/pe7v7+dqThMRERGRVFg0EREREamBRRMRERGRGlg0EREREamBRRMRERGRGlg0EREREamBRRMRERGRGur04pZERKQerldF9OxxpImIiIhIDSyaiIiIiNTAoomIiIhIDSyaiIiIiNTAoomIiIhIDbx6joiI6hVeSUjPCkeaiIiIiNTAoomIiIhIDSyaiIiIiNTAoomIiIhIDSyaiIiIiNTAoomIiIhIDVxy4D5ffvklFi9ejMzMTLRq1QrLly/Hyy+/LHUsIiKix8KlF54+jjTd46effkJYWBg++OADnDx5Ei+//DL69OmD9PR0qaMRERGRxFg03WPp0qUYM2YMxo4di5YtW2L58uVwcnLCypUrpY5GREREEuPpuWplZWVISkrCe++9p9QeEBCAQ4cO1fqa0tJSlJaWis8VCgUAoKCg4OkHvPP031JqT7yfuC/u4n64i/vhLu6H/3Bf3MX98NjvKwiPOP0nkCAIgnDt2jUBgPDXX38ptc+fP19o0aJFra+JjIwUAPDBBx988MEHH/XgkZGR8dBagSNN95HJlCfOCYKg0lZj5syZmD59uvi8qqoKt27dQsOGDR/4mrquoKAATk5OyMjIgLm5udRxJMP9cBf3w3+4L+7ifriL++E/9WFfCIKA27dvw9HR8aH9WDRVs7a2hq6uLrKyspTac3JyYGdnV+trDA0NYWhoqNRmYWHxrCJqlLm5+XP7w/80cT/cxf3wH+6Lu7gf7uJ++M/zvi/kcvkj+3AieDUDAwO0b98eu3fvVmrfvXs3/P39JUpFREREdQVHmu4xffp0BAcHo0OHDvDz88NXX32F9PR0TJw4UepoREREJDEWTfcYNmwYbt68iblz5yIzMxOenp7YsWMHnJ2dpY6mMYaGhoiMjFQ57ahtuB/u4n74D/fFXdwPd3E//Eeb9oVMEB51fR0RERERcU4TERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBER0UPNnTsXxcXFKu0lJSWYO3euBImIpMGiScvNmjULlZWVKu0KhQLDhw+XIBFJraSkROkX5JUrV7B8+XLExcVJmEpaFy5cwK5du1BSUgIAj74Tej0TFRWFwsJClfbi4mJERUVJkIikpM3HCC5uqeXWrVuH3bt3Y8OGDWjWrBkAYP/+/Rg5ciQaNWokcTqSwsCBAzF48GBMnDgR+fn58PHxgb6+Pm7cuIGlS5di0qRJUkfUmJs3b2LYsGHYu3cvZDIZ/v33XzRt2hRjx46FhYUFPvnkE6kjasSDblx+6tQpWFlZSZBIswYPHqx2399+++0ZJqkbtPkYwaJJy50+fRoTJkxAmzZtsHTpUvzzzz/49NNP8d577yEyMlLqeM9c27Zta/1lUJsTJ0484zR1w4kTJ7Bs2TIAwK+//go7OzucPHkSmzZtwuzZs+v1AfF+06ZNg56eHtLT09GyZUuxfdiwYZg2bVq9L5osLS0hk8kgk8nQokULpf9XKisrUVhYqBW3mVLnRq7aRJuPESyatJxcLkdMTAw++OADTJgwAXp6eti5cye6d+8udTSNGDRokNQR6pzi4mKYmZkBAOLi4jB48GDo6OjA19cXV65ckTidZsXFxWHXrl1o3LixUnvz5s21Yl8sX74cgiBg9OjRiIqKUioeDAwM4OLiAj8/PwkTasaaNWukjlCnaPMxgkUT4fPPP8eyZcswfPhwJCUlITQ0FD/++CNat24tdbRnThtG0x6Xm5sbtmzZgldeeQW7du3CtGnTAAA5OTkwNzeXOJ1mFRUVwcTERKX9xo0bWnGfrVGjRqGiogIA0KNHD5XiUZvl5uYiNTVVHIWzsbGROpLGaPMxghPBtVyfPn0QFRWFdevWYcOGDTh58iQ6deoEX19fLFq0SOp4kkhKSsIPP/wg7g9tM3v2bERERMDFxQU+Pj7iSEJcXBzatm0rcTrN6tSpE9atWyc+l8lkqKqqwuLFi9G1a1cJk2mOnp4eJk+eXOsFI9qoqKgIo0ePhoODAzp16oSXX34Zjo6OGDNmTK1XGNZHWn2MEEir9ejRQ7h27ZpK+7Zt2wR7e3sJEkknOztb6Nq1qyCTyQRLS0vBwsJCkMlkQrdu3YScnByp42lUZmamcOLECaGyslJsO3LkiHD+/HkJU2ne2bNnBRsbG6F3796CgYGB8OqrrwotW7YU7OzshAsXLkgdT2O6dOkibN68WeoYdcL48eOFpk2bCjt27BAUCoWgUCiE7du3C82aNRMmTpwodTyN0dZjhEwQtOzaWVLbjRs3YG1tLXUMjRk2bBguXryI9evXi5N+//77b4waNQpubm7YuHGjxAk1Y/To0fj000/FOQs1ioqKMGXKFHz33XcSJZNGVlYWVq5ciaSkJFRVVaFdu3Z466234ODgIHU0jfnll1/w3nvvYdq0aWjfvj1MTU2Vtnt7e0uUTPOsra3x66+/okuXLkrt+/btw9ChQ5GbmytNMA3S5mMEiyaianK5HH/++SdefPFFpfajR48iICAA+fn50gTTMF1dXWRmZsLW1lap/caNG7C3txfnuNR35eXlCAgIwOrVq9GiRQup40hKR0d1JodMJhOXItCmU3cmJiZISkpSupoSAM6ePYv//e9/KCoqkiiZ5mjzMYITwbWQlZUV/vnnH1hbW4uXFD/IrVu3NJhMWlVVVdDX11dp19fXR1VVlQSJNKugoACCIEAQBNy+fRtGRkbitsrKSuzYsUPlIFmf6evrIyUlRe0lKeqztLQ0qSPUGX5+foiMjMS6devE/0dKSkoQFRVV768k5DGCRZNWWrZsmTisumzZMv5SqNatWzdMnToVGzduhKOjIwDg2rVrmDZtmlYswWBhYaG0Js/9ZDKZ1q3+PHLkSHz77bdYuHCh1FEk5ezsLHWEOuPTTz9F79690bhxY7Ru3RoymQzJyckwMjLCrl27pI73TPEYwdNzRKKMjAwMHDgQKSkpcHJygkwmQ3p6Ory8vPD777/X+8ut4+PjIQgCunXrhk2bNimt9GxgYABnZ2exmNQWU6ZMwbp16+Dm5oYOHTqozOVZunSpRMk07+LFi1i+fDnOnTsHmUyGli1bYurUqeKdBLRJSUkJfvjhB5w/fx6CIMDDwwMjRoyAsbGx1NGeKR4jWDRpvQedm7558yZsbW21aq5Cjd27dysdDHv06CF1JI26cuUKmjRpwhFI4KHLCshkMuzdu1eDaaSza9cuDBgwAG3atEHHjh0hCAIOHTqEU6dO4Y8//kDPnj2ljkgapM3HCBZNWk5HRwdZWVkqRdP169fRrFkz8QalpD3WrFmDBg0a4LXXXlNq/+WXX1BcXIxRo0ZJlIyk0rZtW/Tq1UvlNOV7772HuLg4rbnFUA1tH3XT5mMEiyYt9dlnnwG4e2+tefPmoUGDBuK2yspKHDhwAJcvX9aqxR1DQ0Ph5uaG0NBQpfYVK1bgwoULWL58uTTBNMzd3R2rVq1SGWWJj4/H+PHjkZqaKlEyaV29ehUymUwrb2RtZGSEM2fOoHnz5krt//zzD7y9vXHnzh2JkmkeR920/BihwTWhqA5xcXERXFxcBJlMJjg5OYnPXVxchBYtWggBAQFCYmKi1DE1ytHRUTh+/LhKe1JSktCoUSMJEknD0NBQSEtLU2lPS0sTjIyMNB9IQpWVlUJUVJRgbm4u6OjoCDo6OoJcLhfmzp2rtKhffde4cWPh559/Vmn/6aefBCcnJwkSSadNmzbCjBkzVNpnzJghtG3bVoJEmqfNxwhePaelai4h7tq1K3777TdYWlpKnEh6N2/erPVu5ubm5rhx44YEiaRha2uL06dPw8XFRan91KlTaNiwoTShJPLBBx+IV8/VjCr89ddfmDNnDu7cuYP58+dLHVEjxo0bh/Hjx+PSpUvw9/eHTCZDQkICPv74Y4SHh0sdT6POnTuHn3/+WaV99OjRWjMardXHCKmrNqobSktLhfPnzwvl5eVSR5FMq1athM8//1yl/bPPPhNatmwpQSJpvPPOO4Kzs7Owd+9eoaKiQqioqBD27NkjODs7C+Hh4VLH0ygHBwfh999/V2nfsmWL4OjoKEEiaVRVVQlLly4VGjVqJMhkMkEmkwmNGjUSli9fLlRVVUkdT6M46qbdxwgWTVquuLhYGD16tKCrqyvo6uoKFy9eFARBEKZMmSJER0dLnE6zvv32W8HY2FiYPXu2sH//fmH//v3CrFmzBBMTE+Grr76SOp7GlJaWCkOHDhVkMpmgr68v6OvrC7q6usKbb74plJaWSh1PowwNDYXU1FSV9vPnz9f70xAPUlBQIBQUFEgdQzJRUVGChYWFsHDhQuHAgQPCwYMHhejoaMHCwkKYN2+e1PE0QpuPEZwIruWmTp2Kv/76C8uXL0fv3r1x+vRpNG3aFFu3bkVkZKRWTQQHgJUrV2L+/Pm4fv06AMDFxQVz5szByJEjJU6mef/88w9OnToFY2NjeHl5aeUChz4+PvDx8REvnKgxZcoUHDt2DImJiRIlk0ZOTg5SU1Mhk8ng7u4OGxsbqSNpnCAIWL58OT755BPxOOHo6Ih33nkHoaGhWnUZvjYeI1g0aTlnZ2f89NNP8PX1hZmZGU6dOoWmTZviwoULaNeuHQoKCqSOKInc3FwYGxsrXVVI2ic+Ph79+vVDkyZN4OfnB5lMhkOHDiEjIwM7duzAyy+/LHVEjSgoKMBbb72FjRs3ircU0tXVxbBhw/DFF1/UOhdQG9y+fRsAVG5cS/UXJ4Jrudzc3FrvFVRUVKRVfzHdKzc3V+mvaWtra6kjadzVq1exdetWpKeno6ysTGmbNq2C3blzZ6SmpuLLL78UFzwdPHgwJk+eXO9XPr7X2LFjkZycjO3btysVj1OnTsW4ceNqnRhd32n7qJvWHiOkPDdI0uvUqZPw2WefCYIgCA0aNBAuXbokCIIgvPXWW0KvXr2kjKZxhYWFwptvvino6uqKk1319PSE0aNHC0VFRVLH05g///xTMDExEVq1aiXo6ekJbdq0ESwsLAS5XC507dpV6ngkARMTE+HgwYMq7QcOHBBMTEwkSCQdhUIhvPHGGyrHiREjRgj5+flSx9MIbT5G6EhdtJG0oqOj8cEHH2DSpEmoqKjAp59+ip49e2Lt2rVaczl1jenTpyM+Ph5//PEH8vPzkZ+fj99//x3x8fFadVn1zJkzER4ejpSUFBgZGWHTpk3IyMhA586dVVYAru/WrFmDX375RaX9l19+wffffy9BImk0bNiw1lNwcrlc65YrGTt2LI4cOYLt27cjPz8fCoUC27Ztw/HjxzFu3Dip42mEVh8jpK7aSHqnT58WRo4cKbRq1Upo2bKlMGLECOH06dNSx9K4hg0bCvv27VNp37t3r2Btba35QBJp0KCBcOHCBUEQBMHCwkJISUkRBEEQkpOTBWdnZwmTaV6LFi2EvXv3qrTv379faNGihQSJpLF69WqhR48ewvXr18W2zMxMISAgQFi1apWEyTSPo27afYzgnCaCl5eXVv3V/CDFxcWws7NTabe1tUVxcbEEiaRhamqK0tJSAHevCrp48SJatWoFAFq1yCdw98akrq6uKu3Ozs5IT0+XIJE0Vq5ciQsXLsDZ2RlNmjQBAKSnp8PQ0BC5ublYvXq12Le+34eOo27afYxg0USoqqrChQsXkJOTI14ZU6NTp04SpdI8Pz8/REZGYt26dTAyMgIAlJSUICoqCn5+fhKn0xxfX1/89ddf8PDwQL9+/RAeHo4zZ87gt99+g6+vr9TxNEqrVz6+x6BBg6SOUGd8+OGHmD59OtatWwcHBwcAQFZWFt555x3MmjVL4nSaoc3HCC45oOUSExMRFBSEK1eu4P4fBZlMhsrKSomSad6ZM2fQp08f3LlzB61bt4ZMJkNycjKMjIywa9cu8S+p+u7SpUsoLCyEt7c3iouLERERgYSEBLi5uWHZsmVasRZLjXfffRc///wz1qxZI/4BER8fj9GjR+PVV1/FkiVLJE5Imta2bVtcuHABpaWlKqNu99/QuL6OumnzMYJFk5Zr06YNWrRogaioKDg4OKgsM6Bt66+UlJTghx9+EC8v9/DwwIgRI2BsbCx1NI2orKxEQkICvL29teZUw8OUlZUhODgYv/zyC/T07g7MV1VVYeTIkVi1ahUMDAwkTkiaNmfOHLWXY4mMjHzGaTRP248RLJq0nKmpKU6dOgU3Nzepo0juwIED8Pf3F3851qioqMChQ4e05lSlkZERzp07V+tcHm3177//Ijk5WatWPr5XZWUlli1bhp9//rnWdXlu3bolUTKSgjYfI7jkgJbz8fHBhQsXpI5RJ3Tt2rXWg79CoUDXrl0lSCQNLy8vXLp0SeoYdUrz5s3h6OiInj17al3BBABRUVFYunQphg4dCoVCgenTp2Pw4MHQ0dHBnDlzpI6nUU2bNsXNmzdV2vPz89G0aVMJEmmeNh8jONKkhU6fPi3+++LFi/jwww/xzjvvwMvLC/r6+kp9vb29NR1PMjo6OsjOzlZZ2feff/5Bhw4dtOaWMnFxcZgxYwbmzZuH9u3bw9TUVGm7ubm5RMmkZW5ujuTkZK35xXivZs2a4bPPPkO/fv1gZmaG5ORksS0xMRE//vij1BE1RkdHB1lZWSp3UsjOzoaTk5PKKFx9pM3HCBZNWkhHRwcymUxl4neNmm3aMhF88ODBAIDff/8dvXv3hqGhobitsrISp0+fhru7O2JjY6WKqFE6Ov8NQN87d0ObfiZqc++9GbWNqakpzp07hyZNmsDBwQHbt29Hu3btcOnSJbRt2xYKhULqiM/c1q1bAdy9kvD7779Xmu9ZWVmJPXv2YPfu3UhNTZUqosZo8zGCSw5oobS0NKkj1Ck1Bz9BEGBmZqY06dvAwAC+vr5as9IvAOzbt0/qCFTHNG7cGJmZmWjSpAnc3NwQFxeHdu3a4dixY0p/ZNRnNcsuyGQyjBo1Smmbvr4+XFxc8Mknn0iQTPO0+RjBokkL3Tsn41GTn7Vh/saaNWsAAC4uLoiIiFAZatY2rq6ucHJyUrlCSBAEZGRkSJRKeqtXr6518VNt8Morr2DPnj3w8fHB1KlTMXz4cHz77bdIT0/HtGnTpI6nETVr2Lm6uuLYsWNaeSPvGtp8jODpOS2nq6uLzMxMlfPzN2/ehK2tbb0eZn2Q3Nxc8e7lLVq00Lq7l/Nngh4lMTERhw4dgpubGwYMGCB1HMncuXNHXAhXm2jzMYJXz2m5mnPQ97t586bWjbgUFxdj9OjRcHBwQKdOnfDyyy/D0dERY8aM0arbqDzoZ6KwsFCrfkHs3r0bkZGR2Lt3L4C7o7J9+vRBt27dxNFJbeXr64vp06drZcFUVVWFefPmoVGjRmjQoIF4FdmsWbPw7bffSpxOM7T5GMHTc1qqZvKzTCZDSEhIrZOf/f39pYoniWnTpiE+Ph5//PEHOnbsCABISEhAaGgowsPDsXLlSokTPlvTp08HcPdnYtasWTAxMRG3VVZW4siRI2jTpo1E6TTrhx9+wJtvvglvb28sXboUn3/+OaZNm4ZXX30VgiBg4sSJMDMzw6uvvip1VI1Zv349Vq1ahbS0NBw+fBjOzs5Yvnw5XF1dMXDgQKnjacxHH32E77//HosWLVKa6+jl5YVly5ZhzJgxEqZ7tniMYNGktTj5WdWmTZvw66+/okuXLmJb3759YWxsjKFDh9b7ounkyZMA7v5MnDlzRmm1awMDA7Ru3RoRERFSxdOoTz75BJ988glCQ0OxZ88e9O/fH/Pnzxfn73h4eGD58uVaUzStXLkSs2fPRlhYGObPny+efrGwsMDy5cu1qmhat24dvvrqK3Tv3h0TJ04U2729vXH+/HkJkz17PEYAEEirzZkzRygsLJQ6Rp1gbGws/P333yrtKSkpgomJiQSJpBESEiIoFAqpY0jK1NRUuHTpkvhcX19fOHXqlPj8/PnzQsOGDaWIJomWLVsKmzdvFgRBEBo0aCBcvHhREARBOHPmjFbtB0EQBCMjI+Hy5cuCICjvi7NnzwqmpqZSRtMYbT5GcE6TlouMjNS6uUsP4ufnh8jISNy5c0dsKykpQVRUFPz8/CRMpllr1qyp14vTqUNfX19pkUJDQ0M0aNBAfG5gYICSkhIpokkiLS0Nbdu2VWk3NDREUVGRBImk06pVKxw8eFCl/Zdffql1H9VH2nyM4Ok5LZednY2IiAjs2bMHOTk5Kgte1uerIO63fPly9OnTB40bN0br1q0hk8mQnJwMIyMj7Nq1S+p4GlNUVISFCxeKPxM1l1rX0IbbJ7i5ueH8+fNwd3cHAFy7dg1mZmbi9osXL6Jx48ZSxdM4V1dXJCcnqyxBsnPnTnh4eEiUShqRkZEIDg7GtWvXUFVVhd9++w2pqalYt24dtm3bJnU8jdDmYwSLJi0XEhKC9PR0zJo1Cw4ODmrfvbs+8vLywr///osffvgB58+fhyAIeP311zFixAilOV/13dixYxEfH4/g4GCt/Zl4//33le7gfv9f1cePH8fQoUM1HUsy77zzDt566y3cuXMHgiDg6NGj2LhxI6Kjo/HNN99IHU+j+vfvj59++gkLFiyATCbD7Nmz0a5dO/zxxx/o2bOn1PE0QpuPEVynScuZmZnh4MGD9f6Kh0cpLy+Hu7s7tm3bpnV/Od/PwsIC27dvF68gJAKAr7/+Gh999JG4eGHjxo0RGRlZr68Wq01GRgacnJxq3ZaYmAhfX18NJ9I8bT5GcE6TlnNycnrgPei0ib6+PkpLS7XqL6YHsbS0hJWVldQx6oSoqChcvHhR6hiSKykpwYgRI3DlyhXk5OQgMTER06ZN06pTlDV69uyJmzdvqrT/9ddf6N27twSJNE+bjxEsmrTc8uXL8d577+Hy5ctSR5HclClT8PHHH6OiokLqKJKaN28eZs+erVULej7Ipk2b0KJFC/j6+mLFihXIzc2VOpIkBg4ciHXr1gEA9PT0MGDAACxduhSDBg2q90tx3O/ll19GQEAAbt++LbYdOHAAffv2RWRkpITJNEebjxE8PaflLC0tUVxcjIqKCpiYmEBfX19p+61btyRKpnk199dq0KABvLy8VK4q/O233yRKpllt27bFxYsXIQgCXFxcVH4mTpw4IVEyaZw9exYbNmxATEwMrl69ih49euCNN97AoEGDlBb3q8+sra0RHx+PVq1a4ZtvvsHnn3+OkydPYtOmTZg9ezbOnTsndUSNEQQBr732GnJychAXF4fDhw9jwIAB+OijjzB16lSp42mENh8jOBFcyy1btoynpKpZWFhgyJAhUseQXM3d3OmuVq1aYcGCBViwYAH++usv/PjjjwgLC8PEiRNRUFAgdTyNKC4uFq8ejIuLw+DBg6GjowNfX19cuXJF4nSaJZPJsHHjRvTr1w/du3fH6dOnER0djbffflvqaBqjzccIjjQREakpOTkZP/zwA2JiYnDz5k2tWavJ29sbY8eOxSuvvAJPT0/ExsbCz88PSUlJ6NevH7KysqSO+EydPn1ape327dsYPnw4+vXrh0mTJont3t7emoxGGsaiSct16dIFo0ePxmuvvaZVl9U/TE5ODlJTUyGTydCiRQuVO3lri6SkJJw7dw4ymQweHh5as3Df/dLS0vDjjz9iw4YN+Oeff9CpUycEBQXhtddeE29HVN/9+uuvCAoKQmVlJbp37464uDgAQHR0NA4cOICdO3dKnPDZ0tHRgUwmU7po5t7nNf+WyWRatbadNh4jWDRpufDwcGzYsAElJSUYOnQoxowZoxWXzNamoKAAb731FmJiYsQDn66uLoYNG4YvvvhCa35B5uTk4PXXX8f+/fthYWEBQRCgUCjQtWtXxMTEwMbGRuqIGuPn54ejR4/Cy8sLI0aMQFBQEBo1aiR1LElkZWUhMzMTrVu3ho7O3WuIjh49CnNzc7zwwgsSp3u2HucU5P0LgNZH2nyMYNFEqKysxLZt27BmzRrs2LEDbm5uGD16NIKDg2FnZyd1PI0ZOnQokpOT8fnnn8PPzw8ymQyHDh3C1KlT4e3tjZ9//lnqiBoxbNgwXLx4EevXr0fLli0BAH///TdGjRoFNzc3bNy4UeKEmvP+++9jxIgRaNWqldRRiOoMrT5GaO42d/Q8yMnJEebNmycYGRkJ+vr6wsCBA4U9e/ZIHUsjTExMhIMHD6q0HzhwQKtu2Gtubi4cPXpUpf3IkSOCXC7XfKA6YtKkSUJubq7UMUhiCxYsEL799luV9m+//VZYuHChBIk0T5uPEVyniURHjx7F7NmzsWTJEtja2mLmzJmwtbVF//79ERERIXW8Z65hw4a1noKTy+VKt9So76qqqlQuIQbuLgB6/z2mtMkPP/ygNVfL0YOtXr261tORrVq1wqpVqyRIpHnafIxg0aTlcnJy8Mknn8DT0xMvv/wycnNzERMTg8uXLyMqKgpfffUVfv/9d604GHz44YeYPn06MjMzxbasrCy88847mDVrloTJNKtbt26YOnUqrl+/LrZdu3YN06ZNQ/fu3SVMJi2BMxkId48JDg4OKu02NjZKx476TJuPEVynScs1btwYzZo1w+jRoxESElLrBL7//e9/ePHFFyVIp1krV67EhQsX4OzsjCZNmgAA0tPTYWhoiNzcXKxevVrsW58Xb1uxYgUGDhwIFxcXODk5QSaTIT09HV5eXvjhhx+kjkckKScnJ/z1119wdXVVav/rr7/g6OgoUSrN0uZjBIsmLffnn3+iffv24urXV65cwebNm9GyZUv06tULwN07vO/bt0/KmBqhzQu23cvJyQknTpzA7t27cf78eQiCAA8PD/To0UPqaJK697YZpL3Gjh2LsLAwlJeXo1u3bgCAPXv24N1330V4eLjE6TRDm48RvHpOywUEBGDw4MGYOHEi8vPz4e7uDgMDA9y4cQNLly5VWrSNSBtVVlZi8+bN4no0L7zwAgYNGgQ9Pf7NqY0EQcB7772Hzz77DGVlZQAAIyMjzJgxA7Nnz5Y4HT1rnNOk5U6cOIGXX34ZwN0F7Ozt7XHlyhWsW7cOn332mcTppDN58mTcuHFD6hiSCA0NrfW//YoVKxAWFqb5QBJKSUlBixYtMGrUKGzevBm//fYbQkJC0Lx5c5w5c0bqeCQBmUyGjz/+GLm5uUhMTMSpU6dw69YtrSqYtPkYwaJJy/GeUrXT5iulNm3ahI4dO6q0+/v749dff5UgkXTGjh2LVq1a4erVqzhx4gROnDiBjIwMeHt7Y/z48VLHIwk1aNAADg4OsLS0hKGhodRxNEqbjxEsmrScm5sbtmzZgoyMDOzatQsBAQEA7l5VZ25uLnE66WjzWeubN2/WuvSCubm51o2+nTp1CtHR0UpLTlhaWmL+/PlITk6WLhhJpqqqCnPnzoVcLhcvGrGwsMC8efPq/eX2NbT5GMGiScvNnj0bERERcHFxgY+PD/z8/ADcHXXShvsIkSo3NzfExsaqtO/cuRNNmzaVIJF03N3dkZ2drdKek5MDNzc3CRKR1D744AOsWLECCxcuxMmTJ3HixAksWLAAn3/+udYsTaLVxwgJF9akOiIzM1M4ceKEUFlZKbYdOXJEOHfunISpSCrffvutYGxsLMyePVvYv3+/sH//fmHWrFmCiYmJ8NVXX0kdT6O2b98utGrVSvjll1+EjIwMISMjQ/jll18ELy8vYfv27YJCoRAfpB0cHByE33//XaV9y5YtgqOjowSJNE+bjxG8eo7oHhcvXsSaNWtw6dIlLF++HLa2toiNjYWTk5NW3X9s5cqVmD9/vrh4nYuLC+bMmYORI0dKnEyzam5MC9ydAAxA6c72Nc+17e722szIyAinT59GixYtlNpTU1PRpk0blJSUSJRMs7T1GMGiiahafHw8+vTpg44dO+LAgQM4d+4cmjZtikWLFuHo0aP1foJjbXJzc2FsbIwGDRpIHUUS8fHxavft3LnzM0xCdYWPjw98fHxUrh6bMmUKjh07hsTERImSSUPbjhEsmoiq+fn54bXXXsP06dNhZmaGU6dOoWnTpjh27BgGDRqEa9euSR1R4xYuXIiJEyfCwsJC6ihEdcKBAwfQt29fNGnSBH5+fpDJZDh06BAyMjKwY8cOcQkXbaFtxwgWTUTVGjRogDNnzsDV1VWpaLp8+TJeeOEF3LlzR+qIGmdubo7k5OT6P7nzEYqLi5Geni4uZljD29tbokQkhfLycgQEBGD+/PnYvn270mrYkydP1prbqNxL244RXNKWqJqFhQUyMzNV7il18uRJNGrUSKJU0tL2v6lyc3Px5ptvYufOnbVu5zwm7aKvr4+UlBTY2Nhg/vz5UsepE7TtGMElB4iqBQUFYcaMGcjKyoJMJkNVVRX++usvRERE1PvJjVS7sLAw5OXlITExEcbGxoiNjcX333+P5s2bY+vWrVLHIwmMHDkS3377rdQxSCI8PUdUrby8HCEhIYiJiYEgCNDT00NlZSWCgoKwdu1a6OrqSh1R4zIyMuDo6KiV3x0AHBwc8Pvvv+N///sfzM3Ncfz4cbRo0QJbt27FokWLkJCQIHVE0rApU6Zg3bp1cHNzQ4cOHcSbnddYunSpRMmkkZGRgUaNGildaVqfsWgius/Fixdx8uRJVFVVoW3btmjevLnUkSRRVlaGnJwclVWOmzRpIlEizTM3N8fp06fh4uICFxcXbNiwAR07dkRaWhpatWqF4uJiqSOShnXt2vWB22QyGfbu3avBNNLJz8/Hr7/+iosXL+Kdd96BlZUVTpw4ATs7u3o9nYFzmoju06xZMzRr1kzqGJL5999/MXr0aBw6dEipXRvXI3J3d0dqaipcXFzQpk0brF69Gi4uLli1ahUcHBykjkcS2Ldvn9QRJHf69Gn06NEDcrkcly9fxrhx42BlZYXNmzeLN3yvr1g0EVUbPXr0Q7d/9913GkoirZCQEOjp6WHbtm1wcHAQF3HURmFhYcjMzAQAREZGolevXtiwYQMMDAywdu1aacMRSWT69OkICQnBokWLxBu+A0CfPn0QFBQkYbJnj0UTUbW8vDyl5+Xl5UhJSUF+fj66desmUSrNS05ORlJSEl544QWpo0huxIgR4r/btm2Ly5cv4/z582jSpAmsra0lTEYknWPHjmH16tUq7Y0aNUJWVpYEiTSHRRNRtc2bN6u0VVVVYfLkyVqzBgkAeHh41Ps7lavr33//VZrTZmJignbt2kmYiEh6RkZGKCgoUGlPTU2FjY2NBIk0hxPBiR4hNTUVXbp0EU/T1Hd79+7Fhx9+iAULFsDLywv6+vpK283NzSVKpnk6OjpwcHBA586d0blzZ3Tp0gXu7u5SxyKS1Pjx45Gbm4uff/4ZVlZWOH36NHR1dTFo0CB06tQJy5cvlzriM8OiiegRduzYgVGjRiE3N1fqKBpRc+nw/XOZtHEieHZ2Nvbu3Yv4+Hjs378f//zzD+zs7MQCauLEiVJHJNK4goIC9O3bF2fPnsXt27fh6OiIrKws+Pn5YceOHSrLMNQnLJqIqk2fPl3puSAIyMzMxPbt2zFq1CisWLFComSa9aib1GrzjWkvXLiAjz76CBs2bEBVVZVWFZBE99u7dy9OnDiBqqoqtGvXDj169JA60jPHoomo2v3rr+jo6MDGxgbdunXD6NGjoafHKYDaprCwEAkJCdi/fz/i4+ORnJyMli1bokuXLujcuTMGDhwodUQijbCyssI///wDa2trjB49Gp9++qnSlXPagkUTEeH06dPw9PSEjo4OTp8+/dC+2nSTWn19fVhZWSE4OBhdu3bFSy+9BLlcLnUsIo1r0KABTp8+jaZNm0JXVxdZWVn1ftJ3bVg0ERF0dHSQlZUFW1tb6OjoQCaT1XojTm2b0zRo0CAkJCRAV1cXXbp0ER8tW7aUOhqRRvXs2RPZ2dlo3749vv/+ewwbNgzGxsa19q3Pa9rxfANptbZt26q9eOOJEyeecRrppKWliX81pqWlSZym7tiyZQuAuyNx8fHx2LNnD+bMmQOZTIYuXbogJiZG2oBEGvLDDz9g2bJluHjxImQyGRQKBe7cuSN1LI3jSBNptaioKLX7RkZGPsMkVNedPHkS+/btw759+xAbGwuZTIaysjKpYxFpnKurK44fP46GDRtKHUXjWDQREbZu3ap23wEDBjzDJHXLsmXLsH//fhw8eBC3b99GmzZtxOUGOnXqpFVrVhERiyYiFcePH8e5c+cgk8nQsmVLtG/fXupIz1zN2kyPom1zmjp06CDOY2KRRPSfoqIixMfHIz09XWXENTQ0VKJUzx6LJqJqV69exfDhw/HXX3/BwsICAJCfnw9/f39s3LgRTk5O0gYkIqoDTp48ib59+6K4uBhFRUWwsrLCjRs3YGJiAltbW1y6dEnqiM+Men9eEmmB0aNHo7y8HOfOncOtW7dw69YtnDt3DoIgYMyYMVLHk4Q2TvS8V2xsLBISEsTnX3zxBdq0aYOgoCCVGzwTaYtp06ahf//+uHXrFoyNjZGYmIgrV66gffv2WLJkidTxnikWTUTVDh48iJUrVyrdW8zd3R2ff/45Dh48KGEyzaqsrMS8efPQqFEjNGjQQPyrcdasWfj2228lTqdZ77zzjnhj0jNnziA8PBx9+/bFpUuXVFaQJ9IWycnJCA8Ph66uLnR1dVFaWgonJycsWrQI77//vtTxnikWTUTVmjRpgvLycpX2iooKNGrUSIJE0pg/fz7Wrl2LRYsWwcDAQGz38vLCN998I2EyzUtLS4OHhwcAYNOmTQgMDMSCBQvw5ZdfYufOnRKnI5KGvr6+uFSLnZ0d0tPTAQByuVz8d33Foomo2qJFizBlyhQcP35cXNjx+PHjmDp1ar0fcr7XunXr8NVXX2HEiBHQ1dUV2729vXH+/HkJk2megYEBiouLAQB//vknAgICANy9pUTNCBSRtmnbti2OHz8O4O7tp2bPno0NGzYgLCwMXl5eEqd7tri4JWk1S0tLpcUti4qK4OPjI95nrqKiAnp6ehg9ejQGDRokUUrNunbtGtzc3FTaq6qqah2Jq89eeuklTJ8+HR07dsTRo0fx008/AQD++ecfNG7cWOJ0RNJYsGABbt++DQCYN28eRo0ahUmTJqF58+b1/hQ+iybSasuXL5c6Qp3TqlUrHDx4EM7Ozkrtv/zyC9q2bStRKmmsWLECkydPxq+//oqVK1eKp2l37tyJ3r17S5yOSBqtWrUSR+NtbGzw5ZdfYvPmzfDw8ECbNm2kDfeMcckBIlLyxx9/IDg4GDNnzsTcuXMRFRWF1NRUrFu3Dtu2bUPPnj2ljkhEEgoICMDgwYMxceJE5Ofn44UXXoC+vj5u3LiBpUuXYtKkSVJHfGY4p4moFv369UNmZqbUMSTRv39//PTTT9ixYwdkMhlmz56Nc+fO4Y8//tCKguneuUoFBQUPfRBpoxMnTuDll18GAPz666+ws7PDlStXsG7dOnz22WcSp3u2eHqOqBYHDhxASUmJ1DEk06tXL/Tq1UvqGJKwtLREZmYmbG1tYWFhUesNnQVB0LrV0YlqFBcXw8zMDAAQFxeHwYMHQ0dHB76+vrhy5YrE6Z4tFk1EVCttvJ0MAOzduxdWVlYAgH379kmchqjucXNzw5YtW/DKK69g165dmDZtGgAgJyen3t9qiHOaiGrh6emJnTt3auWtU3g7GSJ6mF9//RVBQUGorKxE9+7dERcXBwCIjo7GgQMH6vUaZiyaiEhJQEAACgoK8P3334uro6empmL06NEwNTUVD5DaIj8/H0ePHkVOTg6qqqqUto0cOVKiVETSysrKQmZmJlq3bi3e8Pvo0aMwNzfHCy+8IHG6Z4dFE2m106dPq93X29v7GSapO4yNjXHo0CGV5QVOnDiBjh07atVcrz/++AMjRoxAUVERzMzMlOY3yWQy3Lp1S8J0RKRpnNNEWq1NmzaQyWR40N8ONdu0adIvbyfzn/DwcIwePRoLFiyAiYmJ1HGISGIsmkirpaWlSR2hzqm5ncwXX3yB9u3bQyaTaeXtZIC7q6OHhoayYCIiADw9R0T3sbS0RHFxsXgLGeC/28mYmpoq9a3vp6cGDx6M119/HUOHDpU6ChHVARxpIrrP33//jfT0dJSVlSm1DxgwQKJEmsVby/ynX79+eOedd/D333/Dy8sL+vr6Stu15WeCiO7iSBNRtUuXLuGVV17BmTNnlOY51Uz+1ZY5TfSfmquCaqNN89yI6C6ONBFVmzp1KlxdXfHnn3+iadOmOHr0KG7evInw8HCtm8tTWVmJzZs3Ky1uOXDgQPF0nba4f4kBItJuHGkiqmZtbY29e/fC29sbcrkcR48ehbu7O/bu3Yvw8HCcPHlS6ogakZKSgoEDByIrK0tcp+mff/6BjY0Ntm7dCi8vL4kTas7cuXMfuE0mk2HWrFkaTENEUtOuPxuJHqKyshINGjQAcLeAun79Otzd3eHs7IzU1FSJ02nO2LFj0apVKxw/fhyWlpYAgLy8PISEhGD8+PE4fPiwxAk1Z/PmzUrPy8vLkZaWBj09PTRr1oxFE5GWYdFEVM3T0xOnT59G06ZN4ePjg0WLFsHAwABfffUVmjZtKnU8jTl16pRSwQTcvaJu/vz5ePHFFyVMpnm1jS4WFBQgJCQEr7zyigSJiEhKD57lSKRlPvzwQ3EOy0cffYQrV67g5Zdfxo4dO/DZZ59JnE5z3N3dkZ2drdKek5MDNzc3CRLVLebm5pg7dy5HmYi0EOc0ET3ErVu3YGlpqXT7jPpux44dePfddzFnzhz4+voCABITEzF37lwsXLgQL730kti3vt/R/EESEhLQv39/5OXlSR2FiDSIRRMRKbn3MvuaYvH+5Re05dYy948wCoKAzMxMrF+/Hp06dcLGjRslSkZEUmDRRFSta9euDx1R2rt3rwbTSCc+Pl7tvp07d36GSaTn6uqq9FxHRwc2Njbo1q0bZs6cCTMzM4mSEZEUOBGcqFqbNm2UnpeXlyM5ORkpKSkYNWqUNKEkUN8LocfBexMS0b1YNBFVW7ZsWa3tc+bMQWFhoYbTSOvgwYNYvXo1Ll26hF9++QWNGjXC+vXr4erqqjSniYhIm/DqOaJHeOONN/Ddd99JHUNjNm3ahF69esHY2BgnTpxAaWkpAOD27dtYsGCBxOmIiKTDoonoEQ4fPgwjIyOpY2jMRx99hFWrVuHrr79WukGtv78/Tpw4IWEyIiJp8fQcUbXBgwcrPa+5Uur48eNatSZPamoqOnXqpNJubm6O/Px8zQciIqojWDQRVTM3N1e6ek5HRwfu7u6YO3cuAgICJEymWQ4ODrhw4QJcXFyU2hMSErRqZXQiovuxaCKqtnbtWqkj1AkTJkzA1KlT8d1330Emk+H69es4fPgwIiIiMHv2bKnjERFJhus0EVVr2rQpjh07hoYNGyq15+fno127drh06ZJEyTTvgw8+wLJly3Dnzh0AgKGhISIiIjBv3jyJkxERSYdFE1E1HR0dZGVlwdbWVqk9OzsbTZo0Ea8i0xbFxcX4+++/UVVVBQ8PDzRo0EDqSEREkuLpOdJ6W7duFf+9a9cuyOVy8XllZSX27NmjMr+nPlu3bh1efPFFtGzZEh06dBDb79y5g59//hkjR46UMB0RkXQ40kRar+ZeazKZDPf/76Cvrw8XFxd88sknCAwMlCKexuno6MDU1BRr167FkCFDxPbs7Gw4OjrW+/vNERE9CEeaSOtVVVUBuHufsWPHjsHa2lriRNKLiopCcHAwzpw5gzlz5kgdh4ioTuBIExEpqZnbdenSJbzyyivo2LEj1q9fj4KCAo40EZFWY9FEVG3u3LkP3a4tl9vr6uoiMzMTtra2SE9Px4ABAyCTybBq1Sr4+/uzaCIircWiiaha27ZtlZ6Xl5cjLS0Nenp6aNasmdbcQuT+qwiLi4sxYsQI7NmzB0VFRSyaiEhrcU4TUbWTJ0+qtBUUFCAkJASvvPKKBImkERkZqbS8gImJCTZv3ozIyEgcOHBAwmRERNLiSBPRI6SkpCAwMBCXL1+WOgoREUmII01Ej5Cfnw+FQiF1DI36559/sH//fuTk5IhXFwJ3l2XQppsXExHdi0UTUbXPPvtM6bkgCMjMzMT69evRu3dviVJp3tdff41JkybB2toa9vb2SjcxZtFERNqMp+eIqrm6uio919HRgY2NDbp164aZM2fCzMxMomSa5ezsjMmTJ2PGjBlSRyEiqlNYNBGREnNzcyQnJ6Np06ZSRyEiqlN0pA5ARHXLa6+9hri4OKljEBHVOZzTRFTtzp07+Pzzz7Fv3z6VCdAAtGadJjc3N8yaNQuJiYnw8vKCvr6+0vbQ0FCJkhERSYun54iqBQUFYffu3Xj11VdhZ2enNAEauLt+kTa4f27XvWQyGS5duqTBNEREdQeLJqJqcrkcO3bsQMeOHaWOQkREdRDnNBFVa9SokdZcIaeOsrIypKamoqKiQuooRER1AosmomqffPIJZsyYgStXrkgdRVLFxcUYM2YMTExM0KpVK6SnpwO4O5dp4cKFEqcjIpIOiyaiah06dMCdO3fQtGlTmJmZwcrKSumhLWbOnIlTp05h//79MDIyEtt79OiBn376ScJkRETS4tVzRNWGDx+Oa9euYcGCBbVOBNcWW7ZswU8//QRfX1+lfeDh4YGLFy9KmIyISFosmoiqHTp0CIcPH0br1q2ljiKp3Nxc2NraqrQXFRVpbSFJRATw9ByR6IUXXkBJSYnUMST34osvYvv27eLzmkLp66+/hp+fn1SxiIgkx5EmomoLFy5EeHg45s+fX+uijubm5hIl06zo6Gj07t0bf//9NyoqKvDpp5/i7NmzOHz4MOLj46WOR0QkGa7TRFRNR+fuwOv9p6AEQYBMJkNlZaUUsSRx5swZLFmyBElJSaiqqkK7du0wY8YMeHl5SR2NiEgyLJqIqj1qFKVz584aSkJERHURiyYiUlFZWYnNmzfj3LlzkMlkaNmyJQYOHAg9PZ7RJyLtxSMgUS28vLywY8cOODk5SR1F41JSUjBw4EBkZWXB3d0dAPDPP//AxsYGW7du5Sk6ItJaHGkiqoWZmRlOnTqFpk2bSh1F43x9fWFra4vvv/8elpaWAIC8vDyEhIQgJycHhw8fljghEZE0WDQR1UKbiyZjY2McP34crVq1UmpPSUnBiy++yGUZiEhrcZ0molq8/PLLMDY2ljqGJNzd3ZGdna3SnpOTAzc3NwkSERHVDRxpIiIlO3bswLvvvos5c+bA19cXAJCYmIi5c+di4cKFeOmll8S+2rJ2FRERwKKJSMn69euxatUqpKWl4fDhw3B2dsby5cvh6uqKgQMHSh1PI2rWqwL+W7Oq5jBx73NtW7uKiIhXzxFVW7lyJWbPno2wsDB89NFHYkFgYWGB5cuXa03RtG/fPqkjEBHVSRxpIqrm4eGBBQsWYNCgQUoTwVNSUtClSxfcuHFD6ogak5+fj2+//VZpnaYxY8ZALpdLHY2ISDKcCE5ULS0tDW3btlVpNzQ0RFFRkQSJpHH8+HG4ublh2bJluHXrFm7cuIFly5ahWbNmOHHihNTxiIgkw9NzRNVcXV2RnJwMZ2dnpfadO3fCw8NDolSaN23aNPTv3x9ff/21uAJ4RUUFxo4di7CwMBw4cEDihERE0mDRRFTtnXfewVtvvYU7d+5AEAQcPXoUGzduRHR0NL755hup42nM8ePHlQomANDT08O7776LDh06SJiMiEhaLJqIqr355puoqKjAu+++i+LiYgQFBaFRo0b49NNP8frrr0sdT2PMzc2Rnp6OF154Qak9IyMDZmZmEqUiIpIeJ4IT1eLGjRuoqqqCra2t1FE0LjQ0FJs3b8aSJUvg7+8PmUyGhIQEvPPOOxgyZAiWL18udUQiIklwpImoFtbW1lJHkMySJUsgk8kwcuRIVFRUAAD09fUxadIkLFy4UOJ0RETS4UgTUbXs7GxERERgz549yMnJwf3/a2jbQo7FxcW4ePEiBEGAm5sbTExMpI5ERCQpFk1E1fr06YP09HS8/fbbcHBwEFe/rqEti1sSEVHtWDQRVTMzM8PBgwfRpk0bqaMQEVEdxMUtiao5OTmpnJIjIiKqwaKJqNry5cvx3nvv4fLly1JHISKiOoin54iqWVpaori4GBUVFTAxMYG+vr7S9lu3bkmUjIiI6gIuOUBUjesPERHRw3CkiYiIiEgNHGkiqpaenv7Q7U2aNNFQEiIiqos40kRUTUdHR2Vtpntp2+KWRESkjCNNRNVOnjyp9Ly8vBwnT57E0qVLMX/+fIlSERFRXcGRJqJH2L59OxYvXoz9+/dLHYWIiCTEdZqIHqFFixY4duyY1DGIiEhiPD1HVK2goEDpuSAIyMzMxJw5c9C8eXOJUhERUV3BoomomoWFhcpEcEEQ4OTkhJiYGIlSERFRXcE5TUTV4uPjlZ7r6OjAxsYGbm5u0NPj3xdERNqOvwmIqslkMvj7+6sUSBUVFThw4AA6deokUTIiIqoLONJEVE1XVxeZmZmwtbVVar958yZsbW25ThMRkZbj1XNE1QRBqHVxy5s3b8LU1FSCREREVJfw9BxpvcGDBwO4e3ouJCQEhoaG4rbKykqcPn0a/v7+UsUjIqI6gkUTaT25XA7g7kiTmZkZjI2NxW0GBgbw9fXFuHHjpIpHRER1BOc0EVWLiopCREQET8UREVGtWDQR3ScnJwepqamQyWRo0aKFysRwIiLSTpwITlStoKAAwcHBaNSoETp37oxOnTqhUaNGeOONN6BQKKSOR0REEmPRRFRt7NixOHLkCLZt24b8/HwoFAps27YNx48f55wmIiLi6TmiGqampti1axdeeuklpfaDBw+id+/eKCoqkigZERHVBRxpIqrWsGFD8Uq6e8nlclhaWkqQiIiI6hIWTUTVPvzwQ0yfPh2ZmZliW1ZWFt555x3MmjVLwmRERFQX8PQcUbW2bdviwoULKC0tRZMmTQAA6enpMDQ0RPPmzZX6njhxQoqIREQkIS5uSVRt0KBBUkcgIqI6jCNNRERERGrgnCaie+Tn5+Obb77BzJkzcevWLQB3T8Vdu3ZN4mRERCQ1jjQRVTt9+jR69OgBuVyOy5cvIzU1FU2bNsWsWbNw5coVrFu3TuqIREQkIY40EVWbPn06QkJC8O+//8LIyEhs79OnDw4cOCBhMiIiqgtYNBFVO3bsGCZMmKDS3qhRI2RlZUmQiIiI6hIWTUTVjIyMUFBQoNKempoKGxsbCRIREVFdwqKJqNrAgQMxd+5clJeXAwBkMhnS09Px3nvvYciQIRKnIyIiqXEiOFG1goIC9O3bF2fPnsXt27fh6OiIrKws+Pr6YufOnTA1NZU6IhERSYhFE9F99u3bh6SkJFRVVaFdu3bo0aOH1JGIiKgOYNFEdI89e/Zgz549yMnJQVVVldK27777TqJURERUF/A2KkTVoqKiMHfuXHTo0AEODg6QyWRSRyIiojqEI01E1RwcHLBo0SIEBwdLHYWIiOogXj1HVK2srAz+/v5SxyAiojqKRRNRtbFjx+LHH3+UOgYREdVRnNNEVO3OnTv46quv8Oeff8Lb2xv6+vpK25cuXSpRMiIiqgs4p4moWteuXR+4TSaTYe/evRpMQ0REdQ2LJiIiIiI1cE4TERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRpYNBERERGpgUUTERERkRr+DxwrasCeHijaAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
scenariotransaction_count
0synthetix42643
1neptune-mutual-blue-protocol14629
2openzeppelin-contracts12859
3uniswap-v3-core4199
4seaport2828
5rocketpool1854
6safe-contracts632
\n", - "
" - ], - "text/plain": [ - " scenario transaction_count\n", - "0 synthetix 42643\n", - "1 neptune-mutual-blue-protocol 14629\n", - "2 openzeppelin-contracts 12859\n", - "3 uniswap-v3-core 4199\n", - "4 seaport 2828\n", - "5 rocketpool 1854\n", - "6 safe-contracts 632" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "transactions = defaultdict(list)\n", - "for name, calls in rpc_calls.items():\n", - " for item in calls:\n", - " if \"send\" in item[\"method\"] and \"Transaction\" in item[\"method\"]:\n", - " transactions[name].append(item) \n", - "\n", - "transaction_counts = {key: len(value) for key, value in transactions.items()}\n", - "transaction_counts = list(zip(*sorted(transaction_counts.items(), key=lambda item: item[1], reverse=True)))\n", - "\n", - "plt.bar(transaction_counts[0], transaction_counts[1], color='g')\n", - "plt.title('Transactions by scenario')\n", - "plt.ylabel('Count')\n", - "plt.xticks(rotation='vertical')\n", - "plt.subplots_adjust(bottom=0.3)\n", - "\n", - "plt.show()\n", - "\n", - "df = pd.DataFrame({\"scenario\": transaction_counts[0], \"transaction_count\": transaction_counts[1]})\n", - "display(df)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "5bec40dc-5b7e-40dd-a20d-5f10b5fa92d6", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABecAAAPzCAYAAAA9DLdyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAACntElEQVR4nOzdebhVdd3//9eReTzKDIqACgg5D7eClSCIomhqaYbhmJKKhGYOWYlzWg4VqWmKlpplZVkaTqRpAiKGUw5p4AjigAdRBoX1+8Mv++cRVCRcB+HxuK5zXZ61Pnvt99rsw939PIu1q4qiKAIAAAAAAJRmrboeAAAAAAAA1jTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAASZJJkyZl7733zvrrr59GjRqlffv26dOnT7797W/X9WifSL9+/bLJJpustOO9/fbbGT16dO66666Vdswy9evXL/369avrMVaql156KaNHj87UqVNX2jEPPvjgNG/efKUdb01VVVWV0aNH1/UYAACfCeI8AAC5+eab07dv38yZMyfnnXdebrvttvzkJz/JDjvskN/+9rd1PV6devvtt3Paaad9ZuP86uill17KaaedtlLjPCvHhAkT8o1vfKOuxwAA+EyoX9cDAABQ984777x069Ytt956a+rX////J+L++++f8847rw4no64URZH58+enSZMmdT1KxaJFi/Luu+/W9Rh8wPvfK9tvv31djwMA8JnhynkAAPLaa6+lTZs2tcL8EmutVft/Mnbt2jVDhgzJuHHjstVWW6VJkybZeOONc+WVV9Za98orr+Soo45K796907x587Rr1y477bRT7rnnnlrrpk+fnqqqqpx33nk566yzsv7666dx48bZZpttcueddy51zCOOOCKdO3dOo0aN0rZt2+ywww654447lpp78uTJ+cIXvpCmTZtmgw02yA9/+MMsXry41prnnnsuX//619OuXbs0atQovXr1yvnnn19ZN3369LRt2zZJctppp6WqqipVVVU5+OCDP/E87/f000/nkEMOSffu3dO0adOsu+662WOPPfLII4/UWnfXXXelqqoqv/nNb3LKKaekU6dOadmyZQYOHJgnn3yy1tqiKHLeeeelS5cuady4cbbaaqv87W9/+8g53q+qqiojRozIpZdeml69eqVRo0a5+uqrkyT/+c9/MnTo0Fqv089//vPKY1955ZU0bNgw3//+95c67hNPPJGqqqr89Kc/rWybOXNmhg8fnvXWWy8NGzZMt27dctppp9UK7+9/X5x55pnp1q1bGjVqlL///e/ZdtttkySHHHJI5c9kya1U/vvf/2b//fdPp06dKrdnGjBgwHJfZf/YY49lwIABadasWdq2bZsRI0bk7bffruwfMGBANt544xRFUetxRVFko402yu677/6Rxx8/fnz69euX1q1bp0mTJll//fXz5S9/udZzLFiwIKeffnp69eqVxo0bp3Xr1unfv3/uu+++Ws938cUXZ4sttkiTJk2yzjrr5Ctf+Ur++9//1nq+Jbd5+rifh/nz5+fb3/52tthii1RXV6dVq1bp06dP/vznPy91Dh/1XlnWbW0effTRfOlLX8o666yTxo0bZ4sttqisBwBYk7lyHgCA9OnTJ7/85S8zcuTIHHDAAdlqq63SoEGDD13/0EMP5dvf/nZOOumktG/fPr/85S9z2GGHZaONNsoXv/jFJMnrr7+eJDn11FPToUOHzJ07NzfeeGP69euXO++8c6n7oI8ZMyZdunTJRRddlMWLF+e8887L4MGDc/fdd6dPnz5JkmHDhuXBBx/MWWedlR49euSNN97Igw8+mNdee63WsWbOnJkDDjgg3/72t3PqqafmxhtvzMknn5xOnTrlwAMPTPJeUO7bt28WLlyYM844I127ds1f//rXHH/88XnmmWdy8cUXp2PHjhk3blx23XXXHHbYYZXbdSwJ9ss7zwe99NJLad26dX74wx+mbdu2ef3113P11Vdnu+22y7/+9a/07Nmz1vrvfve72WGHHfLLX/4yc+bMyYknnpg99tgjjz/+eOrVq5fkvV8enHbaaTnssMPyla98Jc8//3wOP/zwLFq0aKnjfZg//elPueeee/KDH/wgHTp0SLt27fLvf/87ffv2zfrrr5/zzz8/HTp0yK233pqRI0fm1Vdfzamnnpq2bdtmyJAhufrqq3PaaafV+oXO2LFj07BhwxxwwAGVP5v/+7//y1prrZUf/OAH2XDDDTNhwoSceeaZmT59esaOHVtrpp/+9Kfp0aNHfvzjH6dly5Zp3759xo4dm0MOOSTf+973KjF8vfXWS5LstttuWbRoUc4777ysv/76efXVV3PffffljTfe+Njzf+edd7Lbbrtl+PDhOemkk3LfffflzDPPzLPPPpu//OUvSZJvfetb+dKXvpQ777wzAwcOrDz2b3/7W5555plav4T4oOnTp2f33XfPF77whVx55ZVZe+218+KLL2bcuHFZuHBhmjZtmnfffTeDBw/OPffck1GjRmWnnXbKu+++m4kTJ+a5555L3759kyTDhw/PVVddlZEjR+bcc8/N66+/ntNPPz19+/bNQw89lPbt21eed3l+HhYsWJDXX389xx9/fNZdd90sXLgwd9xxR/bZZ5+MHTu2su6j3ivL8uSTT6Zv375p165dfvrTn6Z169a55pprcvDBB+fll1/OCSec8LF/LgAAq60CAIA13quvvlp8/vOfL5IUSYoGDRoUffv2Lc4555zizTffrLW2S5cuRePGjYtnn322sm3evHlFq1atiuHDh3/oc7z77rvFO++8UwwYMKDYe++9K9unTZtWJCk6depUzJs3r7J9zpw5RatWrYqBAwdWtjVv3rwYNWrUR57LjjvuWCQpJk2aVGt77969i1122aXy/UknnbTMdUceeWRRVVVVPPnkk0VRFMUrr7xSJClOPfXUpZ5reeZZHu+++26xcOHConv37sWxxx5b2f73v/+9SFLstttutdb/7ne/K5IUEyZMKIqiKGbPnl00bty41utaFEXxz3/+s0hS7Ljjjh87Q5Kiurq6eP3112tt32WXXYr11luvqKmpqbV9xIgRRePGjSvrb7rppiJJcdttt9U6r06dOhVf/vKXK9uGDx9eNG/evNb7pyiK4sc//nGRpHjssceKovj/3xcbbrhhsXDhwlprJ0+eXCQpxo4dW2v7q6++WiQpLrrooo893w866KCDiiTFT37yk1rbzzrrrCJJce+99xZFURSLFi0qNthgg+JLX/pSrXWDBw8uNtxww2Lx4sUf+hy///3viyTF1KlTP3TNr371qyJJcfnll3/omgkTJhRJivPPP7/W9ueff75o0qRJccIJJ1S2Le/Pwwct+Xk97LDDii233LLWvg97ryzZ9/6flf33379o1KhR8dxzz9VaN3jw4KJp06bFG2+88aEzAACs7tzWBgCAtG7dOvfcc08mT56cH/7wh/nSl76Up556KieffHI23XTTvPrqq7XWb7HFFll//fUr3zdu3Dg9evTIs88+W2vdpZdemq222iqNGzdO/fr106BBg9x55515/PHHl5phn332SePGjSvft2jRInvssUf+8Y9/ZNGiRUmS//u//8tVV12VM888MxMnTsw777yzzPPp0KFD/u///q/Wts0226zWfOPHj0/v3r2XWnfwwQenKIqMHz/+o16yTzTPB7377rs5++yz07t37zRs2DD169dPw4YN85///GeZr82ee+651LkkqZzPhAkTMn/+/MrV6Uv07ds3Xbp0Wa6ZkmSnnXbKOuusU/l+/vz5ufPOO7P33ntXrupe8rXbbrtl/vz5mThxYpJk8ODB6dChQ60r32+99da89NJLOfTQQyvb/vrXv6Z///7p1KlTreMNHjw4SXL33Xcvde4f9a843q9Vq1bZcMMN86Mf/SgXXHBB/vWvfy11K6OP88HXcOjQoUmSv//970neu83TiBEj8te//jXPPfdckuSZZ57JuHHjctRRR6WqqupDj73FFlukYcOGOeKII3L11VcvdQua5L0r8Bs3blzrNfugv/71r6mqqsrXv/71Wq9hhw4dsvnmmy/14cXL8/OQJDfccEN22GGHNG/evPLzesUVVyzzPfnB98qHGT9+fAYMGJDOnTvX2n7wwQfn7bffzoQJEz72GAAAqytxHgCAim222SYnnnhibrjhhrz00ks59thjM3369KU+FLZ169ZLPbZRo0aZN29e5fsLLrggRx55ZLbbbrv84Q9/yMSJEzN58uTsuuuutdYt0aFDh2VuW7hwYebOnZsk+e1vf5uDDjoov/zlL9OnT5+0atUqBx54YGbOnPmJ53vttdfSsWPHpdZ16tSpsv/jLO88H3Tcccfl+9//fvbaa6/85S9/yaRJkzJ58uRsvvnmy3xtPng+jRo1SpLK2iWzfthruLw++Hq89tpreffdd/Ozn/0sDRo0qPW12267JUnlFzf169fPsGHDcuONN1ZuIXPVVVelY8eO2WWXXSrHfPnll/OXv/xlqeN97nOfq3W8D5vpo1RVVeXOO+/MLrvskvPOOy9bbbVV2rZtm5EjR+bNN9/82MfXr19/qdd6yev3/vfDoYcemiZNmuTSSy9Nkvz85z9PkyZNPjKoJ8mGG26YO+64I+3atcvRRx+dDTfcMBtuuGF+8pOfVNa88sor6dSp01Kf9fB+L7/8coqiSPv27Zd6HSdOnLjUa7g8Pw9//OMfs99++2XdddfNNddckwkTJmTy5Mk59NBDM3/+/KUev7x/Livj5wwAYHXlnvMAACxTgwYNcuqpp+bCCy/Mo48++okff80116Rfv3655JJLam3/sEi6rKA9c+bMNGzYMM2bN0+StGnTJhdddFEuuuiiPPfcc7npppty0kknZdasWRk3btwnmq9169aZMWPGUttfeumlynN9nBWd55prrsmBBx6Ys88+u9b2V199NWuvvfYnOo/k/4+vH/Yadu3adbmO88GrvtdZZ53Uq1cvw4YNy9FHH73Mx3Tr1q3y34ccckh+9KMf5frrr89Xv/rV3HTTTRk1alTlvvjJe6/ZZpttlrPOOmuZx1sSbT9spo/TpUuXXHHFFUmSp556Kr/73e8yevToLFy4sBLTP8y7776b1157rVbMXvKavn9bdXV15Zcyxx9/fMaOHZuhQ4cu15/dF77whXzhC1/IokWL8sADD+RnP/tZRo0alfbt22f//fdP27Ztc++992bx4sUfGujbtGmTqqqq3HPPPZVf1LzfsrZ9nGuuuSbdunXLb3/721qv+YIFC5a5fnn/XFbGzxkAwOrKlfMAACwzniWp3M7ig8F0eVRVVS0VCR9++OEPvY3FH//4x1pX6L755pv5y1/+ki984Qu14u4S66+/fkaMGJGdd945Dz744Ceeb8CAAfn3v/+91GN/9atfpaqqKv3790+y9FXqH+aTzLOs1+bmm2/Oiy+++ElPI0my/fbbp3Hjxrn22mtrbb/vvvuWunXJJ9G0adP0798///rXv7LZZptlm222Werr/dG6V69e2W677TJ27Nhcd911WbBgQQ455JBaxxwyZEgeffTRbLjhhss83vK815b3z6RHjx753ve+l0033XS53yMffA2vu+66JFnqA4yXfCDuV77ylbzxxhsZMWLEch1/iXr16mW77bbLz3/+8ySpzDd48ODMnz8/V1111Yc+dsiQISmKIi+++OIyX8NNN930E82SvPeebNiwYa3oPnPmzPz5z3/+xMd6vwEDBmT8+PGVGL/Er371qzRt2jTbb7/9/3R8AIDPMlfOAwCQXXbZJeutt1722GOPbLzxxlm8eHGmTp2a888/P82bN8+3vvWtT3zMIUOG5Iwzzsipp56aHXfcMU8++WROP/30dOvWLe++++5S6+vVq5edd945xx13XBYvXpxzzz03c+bMyWmnnZYkqampSf/+/TN06NBsvPHGadGiRSZPnpxx48Zln332+cTzHXvssfnVr36V3XffPaeffnq6dOmSm2++ORdffHGOPPLI9OjRI8l7977v0qVL/vznP2fAgAFp1apV2rRpk3XWWWeF5xkyZEiuuuqqbLzxxtlss80yZcqU/OhHP8p66633ic8jee8K9+OPPz5nnnlmvvGNb2TffffN888/n9GjR3+i29osy09+8pN8/vOfzxe+8IUceeSR6dq1a9588808/fTT+ctf/rLUvfkPPfTQDB8+PC+99FL69u2bnj171tp/+umn5/bbb0/fvn0zcuTI9OzZM/Pnz8/06dNzyy235NJLL/3Y12HDDTdMkyZNcu2116ZXr15p3rx5OnXqlFdffTUjRozIvvvum+7du6dhw4YZP358Hn744Zx00kkfe64NGzbM+eefn7lz52bbbbfNfffdlzPPPDODBw/O5z//+Vpre/TokV133TV/+9vf8vnPfz6bb775xx7/0ksvzfjx47P77rtn/fXXz/z583PllVcmSQYOHJgk+drXvpaxY8fmm9/8Zp588sn0798/ixcvzqRJk9KrV6/sv//+2WGHHXLEEUfkkEMOyQMPPJAvfvGLadasWWbMmJF77703m266aY488siPnef9hgwZkj/+8Y856qij8pWvfCXPP/98zjjjjHTs2DH/+c9/PtGx3u/UU0+tfM7AD37wg7Rq1SrXXnttbr755px33nmprq5e4WMDAHzm1fEH0gIAsAr47W9/WwwdOrTo3r170bx586JBgwbF+uuvXwwbNqz497//XWttly5dit13332pY+y4447FjjvuWPl+wYIFxfHHH1+su+66RePGjYutttqq+NOf/lQcdNBBRZcuXSrrpk2bViQpzj333OK0004r1ltvvaJhw4bFlltuWdx6662VdfPnzy+++c1vFptttlnRsmXLokmTJkXPnj2LU089tXjrrbdqzfG5z31uqfk++LxFURTPPvtsMXTo0KJ169ZFgwYNip49exY/+tGPikWLFtVad8cddxRbbrll0ahRoyJJcdBBBy33PMsye/bs4rDDDivatWtXNG3atPj85z9f3HPPPUu9hn//+9+LJMUNN9xQ6/FLXrOxY8dWti1evLg455xzis6dOxcNGzYsNttss+Ivf/nLUsf8MEmKo48+epn7pk2bVhx66KHFuuuuWzRo0KBo27Zt0bdv3+LMM89cam1NTU3RpEmTIklx+eWXL/N4r7zySjFy5MiiW7duRYMGDYpWrVoVW2+9dXHKKacUc+fOrXWOP/rRj5Z5jN/85jfFxhtvXDRo0KBIUpx66qnFyy+/XBx88MHFxhtvXDRr1qxo3rx5sdlmmxUXXnhh8e67737k+R900EFFs2bNiocffrjo169f0aRJk6JVq1bFkUceWZnpg6666qoiSXH99dd/5LGXmDBhQrH33nsXXbp0KRo1alS0bt262HHHHYubbrqp1rp58+YVP/jBD4ru3bsXDRs2LFq3bl3stNNOxX333Vdr3ZVXXllst912RbNmzYomTZoUG264YXHggQcWDzzwQGXNJ/l5+OEPf1h07dq1aNSoUdGrV6/i8ssvL0499dTig/9v40e9V5b8WbzfI488Uuyxxx5FdXV10bBhw2LzzTev9d4FAFhTVRVFUdTNrwUAACCZPn16unXrlh/96Ec5/vjj63ocWG5f/vKXM3HixEyfPj0NGjSo63EAAPiMcVsbAACA5bRgwYI8+OCDuf/++3PjjTfmggsuEOYBAFgh4jwAAMBymjFjRvr27ZuWLVtm+PDhOeaYY+p6JAAAPqPc1gYAAAAAAEq2Vl0PAAAAAAAAaxpxHgAAAAAASibOAwAAAABAyXwg7HJavHhxXnrppbRo0SJVVVV1PQ4AAAAAAKugoijy5ptvplOnTllrrQ+/Pl6cX04vvfRSOnfuXNdjAAAAAADwGfD8889nvfXW+9D94vxyatGiRZL3XtCWLVvW8TQAAAAAAKyK5syZk86dO1ea8ocR55fTklvZtGzZUpwHAAAAAOAjfdzt0X0gLAAAAAAAlEycBwAAAACAkonzAAAAAABQMvecBwAAAGCVVRRF3n333SxatKiuRwFIktSrVy/169f/2HvKfxxxHgAAAIBV0sKFCzNjxoy8/fbbdT0KQC1NmzZNx44d07BhwxU+hjgPAAAAwCpn8eLFmTZtWurVq5dOnTqlYcOG//NVqgD/q6IosnDhwrzyyiuZNm1aunfvnrXWWrG7x4vzAAAAAKxyFi5cmMWLF6dz585p2rRpXY8DUNGkSZM0aNAgzz77bBYuXJjGjRuv0HF8ICwAAAAAq6wVvSIV4NO0Mv5u8rcbAAAAAACUTJwHAAAAAICSuec8AAAAAJ8pXU+6udTnm/7D3Ut9vjVRVVVVbrzxxuy11151Pcr/ZnR1yc9XU+7zsVK5ch4AAAAA+Mzr169fRo0aVddjsBqoqqrKn/70p0/9ecR5AAAAAABWCe+8806dPffChQtLfT5xHgAAAABWoqIoct5552WDDTZIkyZNsvnmm+f3v/99Fi9enPXWWy+XXnpprfUPPvhgqqqq8t///jfJe1ft/uIXv8iQIUPStGnT9OrVKxMmTMjTTz+dfv36pVmzZunTp0+eeeaZ5ZrnoYceSv/+/dOiRYu0bNkyW2+9dR544IEkyVVXXZW11147t956a3r16pXmzZtn1113zYwZMyqPnzx5cnbeeee0adMm1dXV2XHHHfPggw/Weo6qqqpccsklGTx4cJo0aZJu3brlhhtuqOxfuHBhRowYkY4dO6Zx48bp2rVrzjnnnFrHePXVV7P33nunadOm6d69e2666aZa++++++783//9Xxo1apSOHTvmpJNOyrvvvpskOfjgg3P33XfnJz/5SaqqqlJVVZXp06cv1+uzplnV3p+jR4/OFltskSuvvDIbbLBBGjVqlKIoUlNTkyOOOCLt2rVLy5Yts9NOO+Whhx5Kkjz55JOpqqrKE088UetYF1xwQbp27ZqiKJIk//73v7PbbrulefPmad++fYYNG5ZXX321sr5fv34ZMWJEjjvuuLRp0yY777xzunbtmiTZe++9U1VVVfn+0yDOAwAAAMBK9L3vfS9jx47NJZdcksceeyzHHntsvv71r+eee+7J/vvvn2uvvbbW+uuuuy59+vTJBhtsUNl2xhln5MADD8zUqVOz8cYbZ+jQoRk+fHhOPvnkSlgfMWLEcs1zwAEHZL311svkyZMzZcqUnHTSSWnQoEFl/9tvv50f//jH+fWvf51//OMfee6553L88cdX9r/55ps56KCDcs8992TixInp3r17dtttt7z55pu1nuf73/9+vvzlL+ehhx7K17/+9Xzta1/L448/niT56U9/mptuuim/+93v8uSTT+aaa65ZKnqedtpp2W+//fLwww9nt912ywEHHJDXX389SfLiiy9mt912y7bbbpuHHnool1xySa644oqceeaZSZKf/OQn6dOnTw4//PDMmDEjM2bMSOfOnZfr9VnTrGrvzyR5+umn87vf/S5/+MMfMnXq1CTJ7rvvnpkzZ+aWW27JlClTstVWW2XAgAF5/fXX07Nnz2y99dbLnHXo0KGpqqrKjBkzsuOOO2aLLbbIAw88kHHjxuXll1/OfvvtV+sxV199derXr59//vOf+cUvfpHJkycnScaOHZsZM2ZUvv80VBVLfo3AR5ozZ06qq6tTU1OTli1b1vU4AAAAAKu1+fPnZ9q0aenWrVsaN25ca9+q/IGwb731Vtq0aZPx48enT58+le3f+MY38vbbb+c73/lOtt5660ybNi1dunTJ4sWLs/766+e73/1ujjrqqCTvXZn8ve99L2eccUaSZOLEienTp0+uuOKKHHrooUmS66+/PoccckjmzZv3sTO1bNkyP/vZz3LQQQctte+qq67KIYcckqeffjobbrhhkuTiiy/O6aefnpkzZy7zeIsWLco666yT6667LkOGDKnM/M1vfjOXXHJJZd3222+frbbaKhdffHFGjhyZxx57LHfccUeqqqqWOuYHz/mtt95KixYtcsstt2TXXXfNKaeckj/84Q95/PHHK4+/+OKLc+KJJ6ampiZrrbVW+vXrly222CIXXXTRx74mn5pV/ANhV8X35+jRo3P22WfnxRdfTNu2bZMk48ePz957751Zs2alUaNGlbUbbbRRTjjhhBxxxBG58MILM2bMmMoV+k899VR69uyZxx57LL17984PfvCDTJo0Kbfeemvl8S+88EI6d+6cJ598Mj169Ei/fv1SU1OTf/3rX7VmWp4PKP6ov6OWtyW7ch4AAAAAVpJ///vfmT9/fnbeeec0b9688vWrX/0qzzzzTLbccstsvPHG+c1vfpPkvVu1zJo1a6mreTfbbLPKf7dv3z5Jsummm9baNn/+/MyZM+djZzruuOPyjW98IwMHDswPf/jDpW430rRp00qYT5KOHTtm1qxZle9nzZqVb37zm+nRo0eqq6tTXV2duXPn5rnnnqt1nPfH3iXfL7ly/uCDD87UqVPTs2fPjBw5MrfddttSc77/nJs1a5YWLVpU5nj88cfTp0+fWmF/hx12yNy5c/PCCy987GvAe1bF92eSdOnSpRLmk2TKlCmZO3duWrduXWvOadOmVd6/+++/f5599tlMnDgxSXLttddmiy22SO/evSvH+Pvf/17r8RtvvHGS1PoZ2GabbZbvxfsU1K+zZwYAAACA1czixYuTJDfffHPWXXfdWvuWXAF8wAEH5LrrrstJJ52U6667LrvsskvatGlTa+37bzuzJEgva9uS5/soo0ePztChQ3PzzTfnb3/7W0499dRcf/312XvvvZc67pJjv/9mGwcffHBeeeWVXHTRRenSpUsaNWqUPn36LNeHZy6Zc6uttsq0adPyt7/9LXfccUf222+/DBw4ML///e+Xec5LHrvk/IqiWOqK+yUzLutKfJZtVXx/Ju/9MuaDc3bs2DF33XXXUmvXXnvtJO/9Eql///657rrrsv322+c3v/lNhg8fXusYe+yxR84999yljtGxY8cPfe4yuXKez4xzzjknVVVVGTVqVGXbwQcfXPmQjyVf22+/fa3HXXbZZenXr19atmyZqqqqvPHGG7X233XXXUsdY8nXp3lPKQAAAGD107t37zRq1CjPPfdcNtpoo1pfS+6BPnTo0DzyyCOZMmVKfv/73+eAAw741Ofq0aNHjj322Nx2223ZZ599Mnbs2OV+7D333JORI0dmt912y+c+97k0atSo1odqLrHkCub3f7/kSuXkvdvrfPWrX83ll1+e3/72t/nDH/5Quaf8x+ndu3fuu+++Wr80uO+++9KiRYtKZG7YsGEWLVq03Oe1JlpV358ftNVWW2XmzJmpX7/+UnO+/xcFBxxwQH77299mwoQJeeaZZ7L//vvXOsZjjz2Wrl27LnWMjwvyDRo0KOW9JM7zmTB58uRcdtlltf7JzBJLPkF8ydctt9xSa//bb7+dXXfdNd/97neXeey+ffvWevyMGTPyjW98I127dq3Tf9YCAAAAfPa0aNEixx9/fI499thcffXVeeaZZ/Kvf/0rP//5z3P11VcnSbp165a+ffvmsMMOy7vvvpsvfelLn9o88+bNy4gRI3LXXXfl2WefzT//+c9Mnjw5vXr1Wu5jbLTRRvn1r3+dxx9/PJMmTcoBBxyQJk2aLLXuhhtuyJVXXpmnnnoqp556au6///7Kh4JeeOGFuf766/PEE0/kqaeeyg033JAOHTpUroL+OEcddVSef/75HHPMMXniiSfy5z//OaeeemqOO+64rLXWe4mza9eumTRpUqZPn55XX311ua/aXpOsau/PDzNw4MD06dMne+21V2699dZMnz499913X773ve9VPnA2SfbZZ5/MmTMnRx55ZPr371/rXwMcffTRef311/O1r30t999/f/773//mtttuy6GHHvqx4b1r16658847M3PmzMyePftTO0+3tWGVN3fu3BxwwAG5/PLLK5/A/X6NGjVKhw4dPvTxS660X9Y/g0ne+63q+x//zjvv5KabbsqIESP8sygAAABYBX2SD2itC2eccUbatWuXc845J//973+z9tprZ6uttqp14eABBxyQo48+OgceeOAyQ/fKUq9evbz22ms58MAD8/LLL6dNmzbZZ599ctpppy33Ma688socccQR2XLLLbP++uvn7LPPzvHHH7/UutNOOy3XX399jjrqqHTo0CHXXntt5f7fzZs3z7nnnpv//Oc/qVevXrbddtvccsstlbD+cdZdd93ccsst+c53vpPNN988rVq1ymGHHZbvfe97lTXHH398DjrooPTu3Tvz5s3LtGnT0rVr1+U+z5XiE35Aa11Yld6fH6aqqiq33HJLTjnllBx66KF55ZVX0qFDh3zxi1+s3OM+ee9fY+yxxx6VXwy9X6dOnfLPf/4zJ554YnbZZZcsWLAgXbp0ya677vqx77vzzz8/xx13XC6//PKsu+66mT59+qdxmqkq3v9vQfhQy/sJu6x8Bx10UFq1apULL7xwqU/dPvjgg/OnP/0pDRs2zNprr50dd9wxZ511Vtq1a7fUce666670798/s2fP/sjfyv7hD3/Ifvvtl+nTp1f+OQ8AAABQrvnz52fatGnp1q1bGjduXNfj8DGqqqpy4403Zq+99qrrUaAUH/V31PK2ZFfOs0q7/vrr8+CDD37ovd8HDx6cfffdN126dMm0adPy/e9/PzvttFOmTJlS+RCLT+qKK67ILrvsIswDAAAAAJ8acZ5V1vPPP59vfetbue222z70N+Rf/epXK/+9ySabZJtttkmXLl1y8803Z5999vnEz/nCCy/k1ltvze9+97sVnhsAAACgTJ/73Ofy7LPPLnPfL37xizr5QE9Ywvvzw4nzrLKmTJmSWbNmZeutt65sW7RoUf7xj39kzJgxWbBgQerVq1frMR07dkyXLl3yn//8Z4Wec+zYsWndunX23HPP/2l2AAAAgLLccssteeedd5a57/335/40uXM2H2ZVeH+uqsR5VlkDBgzII488UmvbIYccko033jgnnnjiUmE+SV577bU8//zz6dix4yd+vqIoMnbs2Bx44IFp0KDBCs8NAAAAUKYuXbrU9Qjwobw/P5w4zyqrRYsW2WSTTWpta9asWVq3bp1NNtkkc+fOzejRo/PlL385HTt2zPTp0/Pd7343bdq0yd577115zMyZMzNz5sw8/fTTSZJHHnkkLVq0yPrrr59WrVpV1o0fPz7Tpk3LYYcdVs4JAgAAAB/LFdnAqmhl/N201kqYA+pEvXr18sgjj+RLX/pSevTokYMOOig9evTIhAkT0qJFi8q6Sy+9NFtuuWUOP/zwJMkXv/jFbLnllrnppptqHe+KK65I375906tXr1LPAwAAAFjakn/V/vbbb9fxJABLW/J30/9yB46qwq8fl8ucOXNSXV2dmpqatGzZsq7HAQAAAFjtzZgxI2+88UbatWuXpk2bpqqqqq5HAtZwRVHk7bffzqxZs7L22msv8/bay9uS3dYGAAAAgFVShw4dkiSzZs2q40kAalt77bUrf0etKHEeAAAAgFVSVVVVOnbsmHbt2uWdd96p63EAkrx3K5t69er9z8cR5wEAAABYpdWrV2+lhDCAVYkPhAUAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASuae83wiXU+6ua5HWO1N/+HudT0CAAAAAPApc+U8AAAAAACUTJwHAAAAAICSifMAAAAAAFAycR4AAAAAAEomzgMAAAAAQMnEeQAAAAAAKJk4DwAAAAAAJRPnAQAAAACgZOI8AAAAAACUTJwHAAAAAICSifMAAAAAAFAycR4AAAAAAEomzgMAAAAAQMnEeQAAAAAAKJk4DwAAAAAAJRPngVrOOeecVFVVZdSoUZVto0ePzsYbb5xmzZplnXXWycCBAzNp0qTK/tdffz3HHHNMevbsmaZNm2b99dfPyJEjU1NTU+vYXbt2TVVVVa2vk046qaxTAwAAAIBVRv26HgBYdUyePDmXXXZZNttss1rbe/TokTFjxmSDDTbIvHnzcuGFF2bQoEF5+umn07Zt27z00kt56aWX8uMf/zi9e/fOs88+m29+85t56aWX8vvf/77WsU4//fQcfvjhle+bN29eyrkBAAAAwKpEnAeSJHPnzs0BBxyQyy+/PGeeeWatfUOHDq31/QUXXJArrrgiDz/8cAYMGJBNNtkkf/jDHyr7N9xww5x11ln5+te/nnfffTf16///f9W0aNEiHTp0+HRPBgAAAABWcW5rAyRJjj766Oy+++4ZOHDgR65buHBhLrvsslRXV2fzzTf/0HU1NTVp2bJlrTCfJOeee25at26dLbbYImeddVYWLly4UuYHAAAAgM8SV84Duf766/Pggw9m8uTJH7rmr3/9a/bff/+8/fbb6dixY26//fa0adNmmWtfe+21nHHGGRk+fHit7d/61rey1VZbZZ111sn999+fk08+OdOmTcsvf/nLlXo+AAAAALCqE+dhDff888/nW9/6Vm677bY0btz4Q9f1798/U6dOzauvvprLL788++23XyZNmpR27drVWjdnzpzsvvvu6d27d0499dRa+4499tjKf2+22WZZZ5118pWvfKVyNT0AAAAArCnc1gbWcFOmTMmsWbOy9dZbp379+qlfv37uvvvu/PSnP039+vWzaNGiJEmzZs2y0UYbZfvtt88VV1yR+vXr54orrqh1rDfffDO77rprmjdvnhtvvDENGjT4yOfefvvtkyRPP/30p3NyAAAAALCKcuU8rOEGDBiQRx55pNa2Qw45JBtvvHFOPPHE1KtXb5mPK4oiCxYsqHw/Z86c7LLLLmnUqFFuuummj7wKf4l//etfSZKOHTv+D2cAAAAAAJ894jys4Vq0aJFNNtmk1rZmzZqldevW2WSTTfLWW2/lrLPOyp577pmOHTvmtddey8UXX5wXXngh++67b5L3rpgfNGhQ3n777VxzzTWZM2dO5syZkyRp27Zt6tWrlwkTJmTixInp379/qqurM3ny5Bx77LHZc889s/7665d+3gAAAABQl8R54CPVq1cvTzzxRK6++uq8+uqrad26dbbddtvcc889+dznPpfkvVvjTJo0KUmy0UYb1Xr8tGnT0rVr1zRq1Ci//e1vc9ppp2XBggXp0qVLDj/88JxwwgmlnxMAAAAA1LWqoiiKuh7is2DOnDmprq5OTU1NWrZsWdfj1JmuJ91c1yOs9qb/cPe6HgEAAAAAWEHL25J9ICwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAyerX9QDAB4yurusJ1gyja+p6AgAAAADWYK6cBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQslUmzp9zzjmpqqrKqFGjKtuKosjo0aPTqVOnNGnSJP369ctjjz1W63ELFizIMccckzZt2qRZs2bZc88988ILL9RaM3v27AwbNizV1dWprq7OsGHD8sYbb5RwVgAAAAAAsLRVIs5Pnjw5l112WTbbbLNa288777xccMEFGTNmTCZPnpwOHTpk5513zptvvllZM2rUqNx44425/vrrc++992bu3LkZMmRIFi1aVFkzdOjQTJ06NePGjcu4ceMyderUDBs2rLTzAwAAAACA96vzOD937twccMABufzyy7POOutUthdFkYsuuiinnHJK9tlnn2yyySa5+uqr8/bbb+e6665LktTU1OSKK67I+eefn4EDB2bLLbfMNddck0ceeSR33HFHkuTxxx/PuHHj8stf/jJ9+vRJnz59cvnll+evf/1rnnzyyTo5ZwAAAAAA1mx1HuePPvro7L777hk4cGCt7dOmTcvMmTMzaNCgyrZGjRplxx13zH333ZckmTJlSt55551aazp16pRNNtmksmbChAmprq7OdtttV1mz/fbbp7q6urJmWRYsWJA5c+bU+gIAAAAAgJWhfl0++fXXX58HH3wwkydPXmrfzJkzkyTt27evtb19+/Z59tlnK2saNmxY64r7JWuWPH7mzJlp167dUsdv165dZc2ynHPOOTnttNM+2QkBAAAAAMByqLMr559//vl861vfyjXXXJPGjRt/6Lqqqqpa3xdFsdS2D/rgmmWt/7jjnHzyyampqal8Pf/88x/5nAAAAAAAsLzqLM5PmTIls2bNytZbb5369eunfv36ufvuu/PTn/409evXr1wx/8Gr22fNmlXZ16FDhyxcuDCzZ8/+yDUvv/zyUs//yiuvLHVV/vs1atQoLVu2rPUFAAAAAAArQ53F+QEDBuSRRx7J1KlTK1/bbLNNDjjggEydOjUbbLBBOnTokNtvv73ymIULF+buu+9O3759kyRbb711GjRoUGvNjBkz8uijj1bW9OnTJzU1Nbn//vsrayZNmpSamprKGgAAAAAAKFOd3XO+RYsW2WSTTWpta9asWVq3bl3ZPmrUqJx99tnp3r17unfvnrPPPjtNmzbN0KFDkyTV1dU57LDD8u1vfzutW7dOq1atcvzxx2fTTTetfMBsr169suuuu+bwww/PL37xiyTJEUcckSFDhqRnz54lnjEAAAAAALynTj8Q9uOccMIJmTdvXo466qjMnj072223XW677ba0aNGisubCCy9M/fr1s99++2XevHkZMGBArrrqqtSrV6+y5tprr83IkSMzaNCgJMmee+6ZMWPGlH4+AAAAAACQJFVFURR1PcRnwZw5c1JdXZ2ampo1+v7zXU+6ua5HWO1Nbzy0rkdYM4yuqesJAAAAAFgNLW9LrrN7zgMAAAAAwJpKnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAyeo0zl9yySXZbLPN0rJly7Rs2TJ9+vTJ3/72t8r+oigyevTodOrUKU2aNEm/fv3y2GOP1TrGggULcswxx6RNmzZp1qxZ9txzz7zwwgu11syePTvDhg1LdXV1qqurM2zYsLzxxhtlnCIAAAAAACylTuP8euutlx/+8Id54IEH8sADD2SnnXbKl770pUqAP++883LBBRdkzJgxmTx5cjp06JCdd945b775ZuUYo0aNyo033pjrr78+9957b+bOnZshQ4Zk0aJFlTVDhw7N1KlTM27cuIwbNy5Tp07NsGHDSj9fAAAAAABIkqqiKIq6HuL9WrVqlR/96Ec59NBD06lTp4waNSonnnhikveukm/fvn3OPffcDB8+PDU1NWnbtm1+/etf56tf/WqS5KWXXkrnzp1zyy23ZJdddsnjjz+e3r17Z+LEidluu+2SJBMnTkyfPn3yxBNPpGfPnss115w5c1JdXZ2ampq0bNny0zn5z4CuJ91c1yOs9qY3HlrXI6wZRtfU9QQAAAAArIaWtyWvMvecX7RoUa6//vq89dZb6dOnT6ZNm5aZM2dm0KBBlTWNGjXKjjvumPvuuy9JMmXKlLzzzju11nTq1CmbbLJJZc2ECRNSXV1dCfNJsv3226e6urqyZlkWLFiQOXPm1PoCAAAAAICVoc7j/COPPJLmzZunUaNG+eY3v5kbb7wxvXv3zsyZM5Mk7du3r7W+ffv2lX0zZ85Mw4YNs84663zkmnbt2i31vO3atausWZZzzjmnco/66urqdO7c+X86TwAAAAAAWKLO43zPnj0zderUTJw4MUceeWQOOuig/Pvf/67sr6qqqrW+KIqltn3QB9csa/3HHefkk09OTU1N5ev5559f3lMCAAAAAICPVOdxvmHDhtloo42yzTbb5Jxzzsnmm2+en/zkJ+nQoUOSLHV1+6xZsypX03fo0CELFy7M7NmzP3LNyy+/vNTzvvLKK0tdlf9+jRo1SsuWLWt9AQAAAADAylDncf6DiqLIggUL0q1bt3To0CG33357Zd/ChQtz9913p2/fvkmSrbfeOg0aNKi1ZsaMGXn00Ucra/r06ZOamprcf//9lTWTJk1KTU1NZQ0AAAAAAJSpfl0++Xe/+90MHjw4nTt3zptvvpnrr78+d911V8aNG5eqqqqMGjUqZ599drp3757u3bvn7LPPTtOmTTN06NAkSXV1dQ477LB8+9vfTuvWrdOqVascf/zx2XTTTTNw4MAkSa9evbLrrrvm8MMPzy9+8YskyRFHHJEhQ4akZ8+edXbuAAAAAACsueo0zr/88ssZNmxYZsyYkerq6my22WYZN25cdt555yTJCSeckHnz5uWoo47K7Nmzs9122+W2225LixYtKse48MILU79+/ey3336ZN29eBgwYkKuuuir16tWrrLn22mszcuTIDBo0KEmy5557ZsyYMeWeLAAAAAAA/D9VRVEUdT3EZ8GcOXNSXV2dmpqaNfr+811PurmuR1jtTW88tK5HWDOMrqnrCQAAAABYDS1vS17l7jkPAAAAAACrO3EeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGQrFOcffPDBPPLII5Xv//znP2evvfbKd7/73SxcuHClDQcAAAAAAKujFYrzw4cPz1NPPZUk+e9//5v9998/TZs2zQ033JATTjhhpQ4IAAAAAACrmxWK80899VS22GKLJMkNN9yQL37xi7nuuuty1VVX5Q9/+MPKnA8AAAAAAFY7KxTni6LI4sWLkyR33HFHdttttyRJ586d8+qrr6686QAAAAAAYDW0QnF+m222yZlnnplf//rXufvuu7P77rsnSaZNm5b27duv1AEBAAAAAGB1s0Jx/sILL8yDDz6YESNG5JRTTslGG22UJPn973+fvn37rtQBAQAAAABgdVN/RR60+eab55FHHllq+49+9KPUr79ChwQAAAAAgDXGCl05v8EGG+S1115bavv8+fPTo0eP/3koAAAAAABYna1QnJ8+fXoWLVq01PYFCxbkhRde+J+HAgAAAACA1dknugfNTTfdVPnvW2+9NdXV1ZXvFy1alDvvvDPdunVbedMBAAAAAMBq6BPF+b322itJUlVVlYMOOqjWvgYNGqRr1645//zzV9pwAAAAAACwOvpEcX7x4sVJkm7dumXy5Mlp06bNpzIUAAAAAACszj5RnF9i2rRpK3sOAAAAAABYY6xQnE+SO++8M3feeWdmzZpVuaJ+iSuvvPJ/HgwAAAAAAFZXKxTnTzvttJx++unZZptt0rFjx1RVVa3suQAAAAAAYLW1QnH+0ksvzVVXXZVhw4at7HkAAAAAAGC1t9aKPGjhwoXp27fvyp4FAAAAAADWCCsU57/xjW/kuuuuW9mzAAAAAADAGmGFbmszf/78XHbZZbnjjjuy2WabpUGDBrX2X3DBBStlOAAAAAAAWB2tUJx/+OGHs8UWWyRJHn300Vr7fDgsAAAAAAB8tBWK83//+99X9hwAAAAAALDGWKF7zgMAAAAAACtuha6c79+//0fevmb8+PErPBAAAAAAAKzuVijOL7nf/BLvvPNOpk6dmkcffTQHHXTQypgLAAAAAABWWysU5y+88MJlbh89enTmzp37Pw0EAAAAAACru5V6z/mvf/3rufLKK1fmIQEAAAAAYLWzUuP8hAkT0rhx45V5SAAAAAAAWO2s0G1t9tlnn1rfF0WRGTNm5IEHHsj3v//9lTIYAAAAAACsrlYozldXV9f6fq211krPnj1z+umnZ9CgQStlMAAAAAAAWF2tUJwfO3bsyp4DAAAAAADWGCsU55eYMmVKHn/88VRVVaV3797ZcsstV9ZcAAAAAACw2lqhOD9r1qzsv//+ueuuu7L22munKIrU1NSkf//+uf7669O2bduVPScAAAAAAKw21lqRBx1zzDGZM2dOHnvssbz++uuZPXt2Hn300cyZMycjR45c2TMCAAAAAMBqZYWunB83blzuuOOO9OrVq7Ktd+/e+fnPf+4DYQEAAAAA4GOs0JXzixcvToMGDZba3qBBgyxevPh/HgoAAAAAAFZnKxTnd9ppp3zrW9/KSy+9VNn24osv5thjj82AAQNW2nAAAAAAALA6WqE4P2bMmLz55pvp2rVrNtxww2y00Ubp1q1b3nzzzfzsZz9b2TMCAAAAAMBqZYXuOd+5c+c8+OCDuf322/PEE0+kKIr07t07AwcOXNnzAQAAAADAaucTXTk/fvz49O7dO3PmzEmS7LzzzjnmmGMycuTIbLvttvnc5z6Xe+6551MZFAAAAAAAVhefKM5fdNFFOfzww9OyZcul9lVXV2f48OG54IILVtpwAAAAAACwOvpEcf6hhx7Krrvu+qH7Bw0alClTpvzPQwEAAAAAwOrsE8X5l19+OQ0aNPjQ/fXr188rr7zyPw8FAAAAAACrs08U59ddd9088sgjH7r/4YcfTseOHf/noQAAAAAAYHX2ieL8brvtlh/84AeZP3/+UvvmzZuXU089NUOGDFlpwwEAAAAAwOqo/idZ/L3vfS9//OMf06NHj4wYMSI9e/ZMVVVVHn/88fz85z/PokWLcsopp3xaswIAAAAAwGrhE8X59u3b57777suRRx6Zk08+OUVRJEmqqqqyyy675OKLL0779u0/lUEBAAAAAGB18YnifJJ06dIlt9xyS2bPnp2nn346RVGke/fuWWeddT6N+QAAAAAAYLXzieP8Euuss0623XbblTkLAAAAAACsET7RB8ICAAAAAAD/O3EeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAktVpnD/nnHOy7bbbpkWLFmnXrl322muvPPnkk7XWFEWR0aNHp1OnTmnSpEn69euXxx57rNaaBQsW5JhjjkmbNm3SrFmz7LnnnnnhhRdqrZk9e3aGDRuW6urqVFdXZ9iwYXnjjTc+7VMEAAAAAICl1Gmcv/vuu3P00Udn4sSJuf322/Puu+9m0KBBeeuttyprzjvvvFxwwQUZM2ZMJk+enA4dOmTnnXfOm2++WVkzatSo3Hjjjbn++utz7733Zu7cuRkyZEgWLVpUWTN06NBMnTo148aNy7hx4zJ16tQMGzas1PMFAAAAAIAkqSqKoqjrIZZ45ZVX0q5du9x999354he/mKIo0qlTp4waNSonnnhikveukm/fvn3OPffcDB8+PDU1NWnbtm1+/etf56tf/WqS5KWXXkrnzp1zyy23ZJdddsnjjz+e3r17Z+LEidluu+2SJBMnTkyfPn3yxBNPpGfPnkvNsmDBgixYsKDy/Zw5c9K5c+fU1NSkZcuWJbwaq6auJ91c1yOs9qY3HlrXI6wZRtfU9QQAAAAArIbmzJmT6urqj23Jq9Q952tq3otlrVq1SpJMmzYtM2fOzKBBgyprGjVqlB133DH33XdfkmTKlCl55513aq3p1KlTNtlkk8qaCRMmpLq6uhLmk2T77bdPdXV1Zc0HnXPOOZVb4FRXV6dz584r92QBAAAAAFhjrTJxviiKHHfccfn85z+fTTbZJEkyc+bMJEn79u1rrW3fvn1l38yZM9OwYcOss846H7mmXbt2Sz1nu3btKms+6OSTT05NTU3l6/nnn//fThAAAAAAAP6f+nU9wBIjRozIww8/nHvvvXepfVVVVbW+L4piqW0f9ME1y1r/Ucdp1KhRGjVqtDyjAwAAAADAJ7JKXDl/zDHH5Kabbsrf//73rLfeepXtHTp0SJKlrm6fNWtW5Wr6Dh06ZOHChZk9e/ZHrnn55ZeXet5XXnllqavyAQAAAADg01ancb4oiowYMSJ//OMfM378+HTr1q3W/m7duqVDhw65/fbbK9sWLlyYu+++O3379k2SbL311mnQoEGtNTNmzMijjz5aWdOnT5/U1NTk/vvvr6yZNGlSampqKmsAAAAAAKAsdXpbm6OPPjrXXXdd/vznP6dFixaVK+Srq6vTpEmTVFVVZdSoUTn77LPTvXv3dO/ePWeffXaaNm2aoUOHVtYedthh+fa3v53WrVunVatWOf7447Pppptm4MCBSZJevXpl1113zeGHH55f/OIXSZIjjjgiQ4YMSc+ePevm5AEAAAAAWGPVaZy/5JJLkiT9+vWrtX3s2LE5+OCDkyQnnHBC5s2bl6OOOiqzZ8/Odtttl9tuuy0tWrSorL/wwgtTv3797Lfffpk3b14GDBiQq666KvXq1ausufbaazNy5MgMGjQoSbLnnntmzJgxn+4JAgAAAADAMlQVRVHU9RCfBXPmzEl1dXVqamrSsmXLuh6nznQ96ea6HmG1N73x0LoeYc0wuqauJwAAAABgNbS8LXmV+EBYAAAAAABYk4jzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEegGX6xz/+kT322COdOnVKVVVV/vSnP9Xaf/DBB6eqqqrW1/bbb7/UcSZMmJCddtopzZo1y9prr51+/fpl3rx5lf1nnXVW+vbtm6ZNm2bttdf+lM9q1eI1BgAAgDWXOA/AMr311lvZfPPNM2bMmA9ds+uuu2bGjBmVr1tuuaXW/gkTJmTXXXfNoEGDcv/992fy5MkZMWJE1lrr//8/PwsXLsy+++6bI4888lM7l1WV1xgAAADWXPXregAAVk2DBw/O4MGDP3JNo0aN0qFDhw/df+yxx2bkyJE56aSTKtu6d+9ea81pp52WJLnqqqtWfNjPKK8xAAAArLlcOQ/ACrvrrrvSrl279OjRI4cffnhmzZpV2Tdr1qxMmjQp7dq1S9++fdO+ffvsuOOOuffee+tw4s8erzEAAACsnsR5AFbI4MGDc+2112b8+PE5//zzM3ny5Oy0005ZsGBBkuS///1vkmT06NE5/PDDM27cuGy11VYZMGBA/vOf/9Tl6J8ZXmMAAABYfbmtDQAr5Ktf/WrlvzfZZJNss8026dKlS26++ebss88+Wbx4cZJk+PDhOeSQQ5IkW265Ze68885ceeWVOeecc+pk7s8SrzEAAACsvlw5D8BK0bFjx3Tp0qVyxXbHjh2TJL179661rlevXnnuuedKn2914DUGAACA1Yc4D8BK8dprr+X555+vBOOuXbumU6dOefLJJ2ute+qpp9KlS5e6GPEzz2sMAAAAqw+3tQFgmebOnZunn3668v20adMyderUtGrVKq1atcro0aPz5S9/OR07dsz06dPz3e9+N23atMnee++dJKmqqsp3vvOdnHrqqdl8882zxRZb5Oqrr84TTzyR3//+95XjPvfcc3n99dfz3HPPZdGiRZk6dWqSZKONNkrz5s1LPeeyeY0BAABgzSXOA7BMDzzwQPr371/5/rjjjkuSHHTQQbnkkkvyyCOP5Fe/+lXeeOONdOzYMf37989vf/vbtGjRovKYUaNGZf78+Tn22GPz+uuvZ/PNN8/tt9+eDTfcsLLmBz/4Qa6++urK91tuuWWS5O9//3v69ev3KZ9l3fIaAwAAwJqrqiiKoq6H+CyYM2dOqqurU1NTk5YtW9b1OHWm60k31/UIq73pjYfW9QhrhtE1dT0BAAAAAKuh5W3J7jkPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAULL6dT0AAB+v60k31/UIa4TpjYfW9Qirv9E1dT0BAAAArBJcOQ8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGTiPAAAAAAAlEycBwAAAACAkonzAAAAAABQMnEeAAAAAABKJs4DAAAAAEDJxHkAAAAAACiZOA8AAAAAACUT5wEAAAAAoGR1Guf/8Y9/ZI899kinTp1SVVWVP/3pT7X2F0WR0aNHp1OnTmnSpEn69euXxx57rNaaBQsW5JhjjkmbNm3SrFmz7LnnnnnhhRdqrZk9e3aGDRuW6urqVFdXZ9iwYXnjjTc+5bMDAAAAAIBlq9M4/9Zbb2XzzTfPmDFjlrn/vPPOywUXXJAxY8Zk8uTJ6dChQ3beeee8+eablTWjRo3KjTfemOuvvz733ntv5s6dmyFDhmTRokWVNUOHDs3UqVMzbty4jBs3LlOnTs2wYcM+9fMDAAAAAIBlqV+XTz548OAMHjx4mfuKoshFF12UU045Jfvss0+S5Oqrr0779u1z3XXXZfjw4ampqckVV1yRX//61xk4cGCS5Jprrknnzp1zxx13ZJdddsnjjz+ecePGZeLEidluu+2SJJdffnn69OmTJ598Mj179iznZAEAAAAA4P9ZZe85P23atMycOTODBg2qbGvUqFF23HHH3HfffUmSKVOm5J133qm1plOnTtlkk00qayZMmJDq6upKmE+S7bffPtXV1ZU1y7JgwYLMmTOn1hcAAAAAAKwMq2ycnzlzZpKkffv2tba3b9++sm/mzJlp2LBh1llnnY9c065du6WO365du8qaZTnnnHMq96ivrq5O586d/6fzAQAAAACAJVbZOL9EVVVVre+Lolhq2wd9cM2y1n/ccU4++eTU1NRUvp5//vlPODkAAAAAACzbKhvnO3TokCRLXd0+a9asytX0HTp0yMKFCzN79uyPXPPyyy8vdfxXXnllqavy369Ro0Zp2bJlrS8AAAAAAFgZVtk4361bt3To0CG33357ZdvChQtz9913p2/fvkmSrbfeOg0aNKi1ZsaMGXn00Ucra/r06ZOamprcf//9lTWTJk1KTU1NZQ0AAAAAAJSpfl0++dy5c/P0009Xvp82bVqmTp2aVq1aZf3118+oUaNy9tlnp3v37unevXvOPvvsNG3aNEOHDk2SVFdX57DDDsu3v/3ttG7dOq1atcrxxx+fTTfdNAMHDkyS9OrVK7vuumsOP/zw/OIXv0iSHHHEERkyZEh69uxZ/kkDAAAAALDGq9M4/8ADD6R///6V74877rgkyUEHHZSrrroqJ5xwQubNm5ejjjoqs2fPznbbbZfbbrstLVq0qDzmwgsvTP369bPffvtl3rx5GTBgQK666qrUq1evsubaa6/NyJEjM2jQoCTJnnvumTFjxpR0lgAAAAAAUFtVURRFXQ/xWTBnzpxUV1enpqZmjb7/fNeTbq7rEVZ70xsPresR1gyja+p6gk/Ez145/PyV4DP2swcAAACf1PK25FX2nvMAAAAAALC6EucBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPAAAAAAAlE+cBAAAAAKBk4jwAAAAAAJRMnAcAAAAAgJKJ8wAAAAAAUDJxHgAAAAAASibOAwAAAABAycR5AAAAAAAomTgPALCKe/HFF/P1r389rVu3TtOmTbPFFltkypQptdY8/vjj2XPPPVNdXZ0WLVpk++23z3PPPVfZ/8wzz2TvvfdO27Zt07Jly+y33355+eWXyz4VAAAA/h9xHgBgFTZ79uzssMMOadCgQf72t7/l3//+d84///ysvfbalTXPPPNMPv/5z2fjjTfOXXfdlYceeijf//7307hx4yTJW2+9lUGDBqWqqirjx4/PP//5zyxcuDB77LFHFi9eXEdnBgAAsGarX9cDAADw4c4999x07tw5Y8eOrWzr2rVrrTWnnHJKdtttt5x33nmVbRtssEHlv//5z39m+vTp+de//pWWLVsmScaOHZtWrVpl/PjxGThw4Kd7EgAAACzFlfMAAKuwm266Kdtss0323XfftGvXLltuuWUuv/zyyv7Fixfn5ptvTo8ePbLLLrukXbt22W677fKnP/2psmbBggWpqqpKo0aNKtsaN26ctdZaK/fee2+ZpwMAAMD/I84DAKzC/vvf/+aSSy5J9+7dc+utt+ab3/xmRo4cmV/96ldJklmzZmXu3Ln54Q9/mF133TW33XZb9t577+yzzz65++67kyTbb799mjVrlhNPPDFvv/123nrrrXznO9/J4sWLM2PGjLo8PQAAgDWWOA8AsApbvHhxttpqq5x99tnZcsstM3z48Bx++OG55JJLKvuT5Etf+lKOPfbYbLHFFjnppJMyZMiQXHrppUmStm3b5oYbbshf/vKXNG/ePNXV1ampqclWW22VevXq1dm5AQAArMnEeQCAVVjHjh3Tu3fvWtt69eqV5557LknSpk2b1K9f/yPXJMmgQYPyzDPPZNasWXn11Vfz61//Oi+++GK6dev26Z/EZ8SLL76Yr3/962ndunWaNm2aLbbYIlOmTKnsHz16dDbeeOM0a9Ys66yzTgYOHJhJkyYt81hFUWTw4MGpqqqqdYshAACAJXwgLADAKmyHHXbIk08+WWvbU089lS5duiRJGjZsmG233fYj17xfmzZtkiTjx4/PrFmzsueee35Kk3+2zJ49OzvssEP69++fv/3tb2nXrl2eeeaZrL322pU1PXr0yJgxY7LBBhtk3rx5ufDCCzNo0KA8/fTTadu2ba3jXXTRRamqqir5LAAAgM8ScR4AYBV27LHHpm/fvjn77LOz33775f77789ll12Wyy67rLLmO9/5Tr761a/mi1/8Yvr3759x48blL3/5S+66667KmrFjx6ZXr15p27ZtJkyYkG9961s59thj07Nnzzo4q1XPueeem86dO2fs2LGVbV27dq21ZujQobW+v+CCC3LFFVfk4YcfzoABAyrbH3rooVxwwQWZPHlyOnbs+KnODQAAfHa5rQ0AwCps2223zY033pjf/OY32WSTTXLGGWfkoosuygEHHFBZs/fee+fSSy/Neeedl0033TS//OUv84c//CGf//znK2uefPLJ7LXXXunVq1dOP/30nHLKKfnxj39cF6e0SrrpppuyzTbbZN999027du2y5ZZb5vLLL//Q9QsXLsxll12W6urqbL755pXtb7/9dr72ta9lzJgx6dChQxmjAwAAn1FVRVEUdT3EZ8GcOXMqH57WsmXLuh6nznQ96ea6HmG1N73x0I9fxP9udE1dT/CJ+Nkrh5+/EnzGfvZYczRu3DhJctxxx2XffffN/fffn1GjRuUXv/hFDjzwwMq6v/71r9l///3z9ttvp2PHjvnTn/6UbbfdtrJ/+PDhWbRoUX75y18mSaqqqnLjjTdmr732KvV8AACAurO8LdltbQAAWOMtXrw422yzTc4+++wkyZZbbpnHHnssl1xySa04379//0ydOjWvvvpqLr/88uy3336ZNGlS2rVrl5tuuinjx4/Pv/71r7o6DQAA4DPEbW0AAFjjdezYMb179661rVevXnnuuedqbWvWrFk22mijbL/99rniiitSv379XHHFFUne+5DdJR8iW79+/dSv/951MF/+8pfTr1+/Us4DAAD47HDlPAAAa7wddtghTz75ZK1tTz31VLp06fKRjyuKIgsWLEiSnHTSSfnGN75Ra/+mm26aCy+8MHvsscfKHRgAAPjME+cBAFjjHXvssenbt2/OPvvs7Lfffrn//vtz2WWX5bLLLkuSvPXWWznrrLOy5557pmPHjnnttddy8cUX54UXXsi+++6bJOnQocMyPwR2/fXXT7du3Uo9HwAAYNUnzgMAsMbbdtttc+ONN+bkk0/O6aefnm7duuX/a+/e43uuG/+PPz9jY3Zy2pjTNsawNueaQ1IJcTH0K+FSkkoKIUUuDIn6hlWuULlEqVyOuSJUbDkzMyOnzGG4NjNnNqft8/vDzedq1+hwtX1e9v487reb222f1/u9z+35Xnvf9ur5eb9f79jYWPXs2VOSVKxYMe3bt09z5sxRZmamypUrpyZNmmjdunUKDw83nB4AAABAUUQ5DwAAAEj6y1/+or/85S+33VayZEktXrz4D7+n3W7/s7EAAAAAWBTlPAAAwK8IHr7cdATLOzKpg+kIAAAAAOB0bqYDAAAAAAAAAADgaijnAQAAAAAAAABwMsp5AAAAAAAAAACcjHIeAAAAAAAAAAAn44GwAAAAMCvGz3QC1xBz3nQCAAAAAL/AlfMAAAAAAAAAADgZ5TwAAAAAAAAAAE5GOQ8AAAAAAAAAgJNRzgMAAAAAAAAA4GSU8wAAAAAAAAAAOBnlPAAAAAAAAAAATkY5DwAAAAAAAACAk1HOAwAAAAAAAADgZJTzAAAAAAAAAAA4GeU8AAAAAAAAAABORjkPAAAAAAAAAICTUc4DAAAAAAAAAOBklPMAAAAAAAAAADgZ5TwAAAAAAAAAAE5GOQ8AAAAAAAAAgJNRzgMAAAAAAAAA4GSU8wAAAAAAAAAAOBnlPAAAAAAAAAAATkY5DwAAAAAAAACAk1HOAwAAAAAAAADgZJTzAAAAAAAAAAA4GeU8AAAAAAAAAABORjkPAAAAAAAAAICTUc4DAAAAAAAAAOBklPMAAAAAcBvTp09XZGSkfH195evrq6ZNm+rbb791bL906ZJefvllValSRZ6enqpTp46mT5+e5z1SUlLUpUsX+fv7y9fXV0888YROnjzp7EMBAADAXYhyHgAAAABuo0qVKpo0aZISEhKUkJCghx56SNHR0frpp58kSYMHD9bKlSv1+eefa+/evRo8eLAGDBigr7/+WpJ0+fJltWnTRjabTWvWrNGGDRt07do1dezYUbm5uSYPDQAAAHeB4qYDAAAAAMDdqGPHjnleT5gwQdOnT9fmzZsVHh6uTZs26emnn1arVq0kSc8//7xmzpyphIQERUdHa8OGDTpy5Ih27NghX19fSdLs2bNVtmxZrVmzRq1bt3b2IQEAAOAuwpXzAAAAAPAbcnJy9NVXX+ny5ctq2rSpJKlFixZatmyZTpw4IbvdrrVr1+rAgQNq27atJOnq1auy2WwqUaKE431KliwpNzc3rV+/3shxAAAA4O5BOQ8AAAAAd7Br1y55e3urRIkS6tevn5YsWaK6detKkt5//33VrVtXVapUkYeHh9q1a6cPP/xQLVq0kCRFRUXJy8tLr7/+urKysnT58mUNGzZMubm5SktLM3lYAAAAuAtQzgMAAADAHYSFhSkpKUmbN2/Wiy++qKefflp79uyRdLOc37x5s5YtW6bt27dr8uTJ6t+/v77//ntJkr+/vxYsWKB//etf8vb2lp+fn86fP6+GDRuqWLFiJg/rrvJbD97t3bu3bDZbnn9RUVF53iM9PV29evVSxYoV5eXlpYYNG2rhwoXOPhQAAIA/hDXnAQAAAOAOPDw8FBoaKklq3Lixtm3bpvfee0+xsbF64403tGTJEnXo0EGSFBkZqaSkJL377ruO9eTbtGmjlJQUZWZmqnjx4ipdurQqVqyokJAQY8d0t7n14N1bP+c5c+YoOjpaO3bsUHh4uCSpXbt2mj17tuN7PDw88rxHr169dP78eS1btkzly5fXF198oW7duikhIUENGjRw3sEAAAD8AVw5DwAAAAC/k91u19WrV3X9+nVdv35dbm55/5eqWLFiys3Nzfd95cuXV+nSpbVmzRplZGSoU6dOzop81+vYsaPat2+vWrVqqVatWpowYYK8vb21efNmxz4lSpRQxYoVHf/Kli2b5z02bdqkAQMG6N5771X16tX1t7/9TaVLl1ZiYqKzDwcAAOB3o5wHAAAAgNt44403tG7dOh05ckS7du3SyJEjFRcXp549e8rX11cPPPCAhg0bpri4OB0+fFiffvqp5s6dqy5dujjeY/bs2dq8ebNSUlL0+eef6/HHH9fgwYMVFhZm8MjuXrd78K4kxcXFKSAgQLVq1dJzzz2njIyMPN/XokULzZ8/X2fOnFFubq6++uorXb16Va1atXLyEaCg/NZyR7/0wgsvyGazKTY2Ns/4Rx99pFatWsnX11c2m03nzp0r/OAAAPwBlPMAAAAAcBsnT55Ur169FBYWpocfflhbtmzRypUr9cgjj0iSvvrqKzVp0kQ9e/ZU3bp1NWnSJE2YMEH9+vVzvMf+/fvVuXNn1alTR+PGjdPIkSP17rvvmjqku9avPXj30Ucf1bx587RmzRpNnjxZ27Zt00MPPaSrV686vn/+/Pm6ceOGypUrpxIlSuiFF17QkiVLVKNGDVOHhD/p1nJHCQkJSkhI0EMPPaTo6Gj99NNPefZbunSptmzZokqVKuV7j6ysLLVr105vvPGGs2IXKb/1AUhMTIxq164tLy8vlSlTRq1bt9aWLVtu+152u12PPvqobDabli5d6qQjAICijzXnAQAAAOA2Zs2a9avbK1asmGcd9NuZNGmSJk2aVJCxLOnWg3fPnTunRYsW6emnn1Z8fLzq1q2rbt26Ofa755571LhxYwUFBWn58uXq2rWrJOlvf/ubzp49q++//17ly5fX0qVL9fjjj2vdunWKiIgwdVj4Ezp27Jjn9YQJEzR9+nRt3rzZ8SyCEydO6OWXX9aqVascz374pVdeeUXSzTsvkN9vPe+hVq1amjZtmqpXr67s7GxNnTpVbdq00cGDB+Xv75/nvWJjY2Wz2UwcBgAUaZTzAAAAAACj7vTg3ZkzZ+bbNzAwUEFBQfr5558lSSkpKZo2bZp2797tKG3r1aundevW6e9//7tmzJjhvANBocjJydGCBQvyLHeUm5urXr16adiwYY7/7vhjfusDkB49euTZPmXKFM2aNUvJycl6+OGHHeM7d+7UlClTtG3bNgUGBjolOwBYBeU8AAAAAOCucuvBu7dz+vRpHTt2zFECZmVlSdLvfjgvio5du3apadOmunLliry9vfMsd/T222+rePHiGjhwoOGU1nC7D0B+6dq1a/roo4/k5+enevXqOcazsrLUvXt3TZs2TRUrVnRmZACwBMp5AAAAAIAxb7zxhh599FFVrVpVFy9e1FdffaW4uDitXLlSly5dUkxMjB577DEFBgbqyJEjeuONN1S+fHnHg3dr166t0NBQvfDCC3r33XdVrlw5LV26VN99952++eYbw0eHP+NOyx1lZ2frvffeU2JiIkup/Em/9gGIJH3zzTd68sknlZWVpcDAQH333XcqX768Y/vgwYPVrFkzRUdHm4gPAEUe5TwAAAAAwJhbD95NS0uTn5+fIiMjHQ/ezc7O1q5duzR37lydO3dOgYGBevDBBzV//nz5+PhIktzd3bVixQoNHz5cHTt21KVLlxQaGqo5c+aoffv2ho8Of8adljuqU6eOMjIyVK1aNce+OTk5Gjp0qGJjY3XkyBFDiYueX3vegyQ9+OCDSkpKUmZmpj7++GM98cQT2rJliwICArRs2TKtWbNGO3bsMHwUAFB0Uc4DAAAAAIz5tQfvenp6atWqVb/5HjVr1tSiRYsKMhbuQreWO+rVq5dat26dZ1vbtm3Vq1cvPfPMM4bSFU2/9bwHLy8vhYaGKjQ0VFFRUapZs6ZmzZqlESNGaM2aNUpJSVHp0qXzvOdjjz2m+++/nwfxAsDv4PbbuwAAAAAAADjPG2+8oXXr1unIkSPatWuXRo4cqbi4OPXs2VPlypXTPffck+efu7u7KlasqLCwMMd7pKenKykpSQcPHpR0cwmXpKQknTlzxtRh3fV+7XkP/719+PDhSk5OVlJSkuOfJE2dOlWzZ892RlwUgokTJ6pJkyby8fFRQECAOnfurP379+fZ5+TJk+rdu7cqVaqkUqVKqV27do6HdP83u92uRx99VDabTUuXLnXCERQNBfVzfuGFF1SjRg15enrK399f0dHR2rdvnzMPBX8SV84DAAAAuCsFD19uOoLlHZnUwXQE4LZ+bbmj32vGjBkaO3as43XLli0lSbNnz1bv3r0LOnKR82vPe7h8+bImTJigTp06KTAwUKdPn9aHH36o48eP6/HHH5ckVaxY8bYPga1WrZpCQkKcfTgoIPHx8XrppZfUpEkT3bhxQyNHjlSbNm20Z88eeXl5yW63q3PnznJ3d9fXX38tX19fTZkyRa1bt3bs80uxsbE8G+I2Curn3KhRI/Xs2VPVqlXTmTNnFBMTozZt2ujw4cMqVqyY4aPE70E5DwAAAAAA7iq/ttzR7dxunfmYmBjFxMQUTCAL+rUPQK5cuaJ9+/Zpzpw5yszMVLly5dSkSROtW7dO4eHhpqOjEK1cuTLP69mzZysgIEDbt29Xy5Yt9fPPP2vz5s3avXu343fhww8/VEBAgL788kv17dvX8b07d+7UlClTtG3bNgUGBjr1OO52BfVzfv755x3vERwcrDfffFP16tXTkSNHVKNGDecdEP5nlPMAAAAAAAAu5tc+AClZsqQWL178h9/Tbrf/mUi4C50/f16SVLZsWUlyLGtUsmRJxz7FihWTh4eH1q9f7yiNs7Ky1L17d02bNu22d1ggr//15/xLly9f1uzZsxUSEqKqVas6ITUKAmvOAwAAAAAAAMjDbrdryJAhatGihe655x5JUu3atRUUFKQRI0bo7NmzunbtmiZNmqT09HSlpaU5vnfw4MFq1qyZoqOjTcUvMv7Mz1m6eUW9t7e3vL29tXLlSn333Xfy8PAwcSj4H1DOAwAAAAAAAMjj5ZdfVnJysr788kvHmLu7uxYtWqQDBw6obNmyKlWqlOLi4vToo4861jhftmyZ1qxZo9jYWEPJi5b/9ed8S8+ePbVjxw7Fx8erZs2aeuKJJ3TlyhVnHwb+RyxrAwAAAACuKsbPdALXEHPedAIA+EMGDBigZcuW6ccff1SVKlXybGvUqJGSkpJ0/vx5Xbt2Tf7+/rrvvvvUuHFjSdKaNWuUkpKi0qVL5/m+xx57TPfff7/i4uKcdBR3vz/zc77Fz89Pfn5+qlmzpqKiolSmTBktWbJE3bt3d+ah4H9EOQ8AAAAAAABAdrtdAwYM0JIlSxQXF6eQkJA77uvnd/MD3p9//lkJCQkaP368JGn48OH51kSPiIjQ1KlT1bFjx8ILX4QUxM/519771pr1uPtRzgMAAAAAAADQSy+9pC+++EJff/21fHx8lJ6eLulmQezp6SlJWrBggfz9/VWtWjXt2rVLgwYNUufOndWmTRtJUsWKFW/7ENhq1ar9agntSgri53zo0CHNnz9fbdq0kb+/v06cOKG3335bnp6eat++vbFjwx9DOQ8AAAAAAByChy83HcElHJnUwXQEIJ/p06dLklq1apVnfPbs2erdu7ckKS0tTUOGDNHJkycVGBiop556SqNGjXJy0qKtIH7OJUuW1Lp16xQbG6uzZ8+qQoUKatmypTZu3KiAgABnHQr+JMp5AAAAAAAAZ+OZD4WP5z38YXa7/Tf3GThwoAYOHFjg7+tKCuLnXKlSJa1YsaIgY8EAN9MBAAAAAAAAAABwNZTzAAAAAAAAAAA4GeU8AAAAAAAAAABORjkPAAAAAAAAAICTUc4DAAAAAAAAAOBklPMAAAAAAAAAADhZcdMBAAAAAAAAAEjBw5ebjmB5R0r2MB3BNcScN52gSODKeQAAAAAAAAAAnIxyHgAAAAAAAAAAJ6OcBwAAAAAAAADAySjnAQAAAAAAAABwMsp5AAAAAAAAAACcjHIeAAAAAAAAAAAno5wHAAAAAAAAAMDJKOcBAAAAAAAAAHAyynkAAAAAAAAAAJyMch4AAAAAAAAAACejnAcAAAAAAAAAwMko5wEAAAAAAAAAcDLKeQAAAAAAAAAAnIxyHgAAAAAAAAAAJ6OcBwAAAAAAAADAySjnAQAAAAAAAABwMsp5AAAAAAAAAACcjHIeAAAAAAAAAAAno5wHAAAAAAAAAMDJKOcBAAAAAAAAAHAyynkAAAAAAAAAAJyMch4AAAAAAAAAACejnAcAAAAAAAAAwMko5wEAAAAAAAAAcDLKeQAAAAAAAAAAnIxyHgAAAAAAAAAAJ6OcBwAAAAAAAADAySjnAQAAAAAAAABwMsp5AAAAAAAAAACcjHIeAAAAAAAAAAAno5wHAAAAAAAAAMDJKOcBAAAAAAAAAHAyynkAAAAAAAAAAJyMch4AAAAAAAAAACejnAcAAAAAAAAAwMko5wEAAAAAAAAAcDLKeQAAAAAAAAAAnIxyHgAAAAAAAAAAJ6OcBwAAAAAAAADAySjnAQAAAAAAAABwMsp5AAAAAAAAAACcjHIeAAAAAAAAAAAno5wHAAAAAAAAAMDJKOcBAAAAAAAAAHAylyrnP/zwQ4WEhKhkyZJq1KiR1q1bZzoSAAAAAAAAAMAFuUw5P3/+fL3yyisaOXKkduzYofvvv1+PPvqoUlNTTUcDAAAAAAAAALgYlynnp0yZomeffVZ9+/ZVnTp1FBsbq6pVq2r69OmmowEAAAAAAAAAXExx0wGc4dq1a9q+fbuGDx+eZ7xNmzbauHHjbb/n6tWrunr1quP1+fPnJUkXLlwovKBFQO7VLNMRLO+CzW46gmsoYucy555zcP45QRE79yTOP2fg3HMSzj/cBuefkxSx849zzzk4/5ygiJ17EuefM3DuOUkRPP8K0q0O2W7/9d83lyjnMzMzlZOTowoVKuQZr1ChgtLT02/7PRMnTtTYsWPzjVetWrVQMgK3+JkO4Com8ZNGfvxWOAHnHm6D3won4fzDbfBb4SScf7gNfiucgHMPt8FvhZNw/kmSLl68KD+/O/8sXKKcv8Vms+V5bbfb843dMmLECA0ZMsTxOjc3V2fOnFG5cuXu+D24u1y4cEFVq1bVsWPH5OvrazoO4FI4/wBzOP8AMzj3AHM4/wBzOP+A27Pb7bp48aIqVar0q/u5RDlfvnx5FStWLN9V8hkZGfmupr+lRIkSKlGiRJ6x0qVLF1ZEFCJfX1/+QACGcP4B5nD+AWZw7gHmcP4B5nD+Afn92hXzt7jEA2E9PDzUqFEjfffdd3nGv/vuOzVr1sxQKgAAAAAAAACAq3KJK+claciQIerVq5caN26spk2b6qOPPlJqaqr69etnOhoAAAAAAAAAwMW4TDnfrVs3nT59WuPGjVNaWpruuecerVixQkFBQaajoZCUKFFCY8aMybc8EYDCx/kHmMP5B5jBuQeYw/kHmMP5B/w5NrvdbjcdAgAAAAAAAAAAV+ISa84DAAAAAAAAAHA3oZwHAAAAAAAAAMDJKOcBAAAAAAAAAHAyynkAAAAAAAAAAJyMch4AAAAAAAAAACejnAcAAAAAAEXKuHHjlJWVlW88Oztb48aNM5AIAIA/jnIelpKdnZ1ngnb06FHFxsZq9erVBlMBrmHUqFHKycnJN37+/Hl1797dQCIAAAoXc0/AnLFjx+rSpUv5xrOysjR27FgDiQAA+OMo52Ep0dHRmjt3riTp3Llzuu+++zR58mRFR0dr+vTphtMB1jZ37lw1b95cKSkpjrG4uDhFREToyJEj5oIBLuTgwYNatWqVsrOzJUl2u91wIsDamHsC5tjtdtlstnzjO3fuVNmyZQ0kAgDgjytuOgBQkBITEzV16lRJ0sKFC1WhQgXt2LFDixYt0ujRo/Xiiy8aTghYV3Jysl544QXVr19fU6ZM0YEDB/Tee+9p+PDhGjNmjOl4gKWdPn1a3bp105o1a2Sz2fTzzz+revXq6tu3r0qXLq3JkyebjghYEnNPwPnKlCkjm80mm82mWrVq5Snoc3JydOnSJfXr189gQsCaunbt+rv3Xbx4cSEmAayFch6WkpWVJR8fH0nS6tWr1bVrV7m5uSkqKkpHjx41nA6wNj8/P3311VcaOXKkXnjhBRUvXlzffvutHn74YdPRAMsbPHiwihcvrtTUVNWpU8cx3q1bNw0ePJhyHigkzD0B54uNjZXdblefPn00duxY+fn5ObZ5eHgoODhYTZs2NZgQsKZfnmsACg7lPCwlNDRUS5cuVZcuXbRq1SoNHjxYkpSRkSFfX1/D6QDr++CDDzR16lR1795d27dv18CBA/XFF1+oXr16pqMBlrZ69WqtWrVKVapUyTNes2ZNCkKgEDH3BJzv6aef1o0bNyRJrVu3zve3D0DhmD17tukIgCWx5jwsZfTo0Xr11VcVHBys++67z3HFxOrVq9WgQQPD6QBre/TRRzV27FjNnTtX8+bN044dO9SyZUtFRUXpnXfeMR0PsLTLly+rVKlS+cYzMzNVokQJA4kA18DcEzCjePHi6t+/v3JyckxHAVzaqVOntH79em3YsEGnTp0yHQcokmx2nhQGi0lPT1daWprq1asnN7ebnz9t3bpVfn5+CgsLM5wOsK5HHnlEc+bMUaVKlfKML1++XH379lVaWpqhZID1dejQQQ0bNtT48ePl4+Oj5ORkBQUF6cknn1Rubq4WLlxoOiJgWcw9ATMefPBBDRo0SJ07dzYdBXA5ly9f1oABAzR37lzl5uZKkooVK6annnpKH3zwwW0vGgFwe5TzsJQ+ffrovffec6z9ecutPxz/+Mc/DCUDXFtmZqbKly9vOgZgWXv27FGrVq3UqFEjrVmzRp06ddJPP/2kM2fOaMOGDapRo4bpiIAlMfcEzFmwYIGGDx+uwYMHq1GjRvLy8sqzPTIy0lAywPpeeOEFff/995o2bZqaN28uSVq/fr0GDhyoRx55RNOnTzecECg6KOdhKcWKFVNaWpoCAgLyjGdmZqpixYqOtQkBALCa9PR0TZ8+Xdu3b1dubq4aNmyol156SYGBgaajAZbF3BMw59adKr9ks9lkt9tls9lY8gYoROXLl9fChQvVqlWrPONr167VE088wRI3wB/AA2FhCRcuXJDdbpfdbtfFixdVsmRJx7acnBytWLEi3/80AfjzypYtqwMHDqh8+fIqU6aMbDbbHfc9c+aME5MBruP69etq06aNZs6cqbFjx5qOA7gE5p6AeYcPHzYdAXBZWVlZqlChQr7xgIAAZWVlGUgEFF2U87CE0qVLy2azyWazqVatWvm222w2CgugEEydOtVxK//UqVN/tZwHUDjc3d21e/duzj/AiZh7AuYFBQWZjgC4rKZNm2rMmDGaO3eu4wPq7OxsjR071vFwdAC/D8vawBLi4+Nlt9v10EMPadGiRSpbtqxjm4eHh4KCgvI9pBIAAKsYOnSo3N3dNWnSJNNRAJfA3BO4O6SkpCg2NlZ79+6VzWZTnTp1NGjQIJ61AhSy3bt3q127drpy5Yrq1asnm82mpKQklSxZUqtWrVJ4eLjpiECRQTkPSzl69KiqVavG1YOAAXdad/f06dMKCAhg3U+gEA0YMEBz585VaGioGjdunO+heFOmTDGUDLA25p6AOatWrVKnTp1Uv359NW/eXHa7XRs3btTOnTv1r3/9S4888ojpiIClZWdn6/PPP9e+fftkt9tVt25d9ezZU56enqajAUUK5TwsZfbs2fL29tbjjz+eZ3zBggXKysrS008/bSgZYH1ubm5KT0/PV87/+9//Vo0aNZSdnW0oGWB9Dz744B232Ww2rVmzxolpANfB3BMwp0GDBmrbtm2+u8aGDx+u1atXKzEx0VAyAAB+P8p5WEpYWJhmzJiRr6SIj4/X888/r/379xtKBljX+++/L0kaPHiwxo8fL29vb8e2nJwc/fjjjzpy5Ih27NhhKiIAAIWCuSdgTsmSJbVr1y7VrFkzz/iBAwcUGRmpK1euGEoGuAaWlQIKBg+EhaUcPXpUISEh+caDgoKUmppqIBFgfVOnTpUk2e12zZgxQ8WKFXNs8/DwUHBwsGbMmGEqHuByjh8/LpvNpsqVK5uOAlgec0/AHH9/fyUlJeUr55OSkvLdyQmgYN1pWanw8HCWlQL+IMp5WEpAQICSk5MVHBycZ3znzp0qV66cmVCAxR0+fFjSzWU1Fi9erDJlyhhOBLie3Nxcvfnmm5o8ebIuXbokSfLx8dHQoUM1cuRIubm5GU4IWBNzT8Cc5557Ts8//7wOHTqkZs2ayWazaf369Xr77bc1dOhQ0/EASxs+fLgGDx5822WlXn/9dcp54A+gnIelPPnkkxo4cKB8fHzUsmVLSTdvKx40aJCefPJJw+kAa1u7dq0k6dq1azp8+LBq1Kih4sX5MwM4w8iRIzVr1ixNmjTJcfXShg0bFBMToytXrmjChAmmIwKWxNwTMGfUqFHy8fHR5MmTNWLECElSpUqVFBMTo4EDBxpOB1jb3r179c9//jPfeJ8+fRQbG+v8QEARxprzsJRr166pV69eWrBggaMUzM3N1VNPPaUZM2bIw8PDcELAurKzs/Xyyy9rzpw5km6u91m9enUNHDhQlSpV0vDhww0nBKyrUqVKmjFjhjp16pRn/Ouvv1b//v114sQJQ8kAa2PuCdwdLl68KOnmXWMACl/VqlU1ZcqUfA9E/+c//6lXX32Vpd2AP4BLGmEpHh4emj9/vsaPH6+dO3fK09NTERERCgoKMh0NsLzhw4dr586diouLU7t27RzjrVu31pgxYyjngUJ05swZ1a5dO9947dq1debMGQOJANfA3BMwLyMjQ/v375fNZlNYWJj8/f1NRwIsj2WlgILDlfMAgAIRFBSk+fPnKyoqSj4+Ptq5c6eqV6+ugwcPqmHDhrpw4YLpiIBl3Xfffbrvvvv0/vvv5xkfMGCAtm3bps2bNxtKBgBA4bhw4YJeeuklffnll8rNzZUkFStWTN26ddPf//53+fn5GU4IWJfdbldsbKwmT56sf//735Ju3sk5bNgwDRw4UDabzXBCoOignIflHD9+XMuWLVNqaqquXbuWZ9uUKVMMpQKsr1SpUtq9e7eqV6+ep5zfuXOnWrZsqfPnz5uOCFhWfHy8OnTooGrVqqlp06ay2WzauHGjjh07phUrVuj+++83HRGwLOaegBlPPPGEkpKS9MEHH+T52zdo0CBFRkbedj1sAAWPZaWAP4dlbWApP/zwgzp16qSQkBDt379f99xzj44cOSK73a6GDRuajgdYWpMmTbR8+XINGDBAkhxXS3z88cdq2rSpyWiA5T3wwAPav3+/PvzwQ+3bt092u11du3ZV//79ValSJdPxAMti7gmYs3z5cq1atUotWrRwjLVt21Yff/xxniUWARQelpUC/jzKeVjKiBEjNHToUI0bN04+Pj5atGiRAgIC1LNnTyZoQCGbOHGi2rVrpz179ujGjRt677339NNPP2nTpk2Kj483HQ+wvMqVK2vChAmmYwAuhbknYE65cuVuu3SNn5+fypQpYyAR4DpYVgooOG6mAwAFae/evXr66aclScWLF1d2dra8vb01btw4vf3224bTAdbWrFkzbdiwQVlZWapRo4ZWr16tChUqaNOmTWrUqJHpeIClzZ49WwsWLMg3vmDBAs2ZM8dAIsA1MPcEzPnb3/6mIUOGKC0tzTGWnp6uYcOGadSoUQaTAdbXt29fbdmyRcuXL9e5c+d0/vx5ffPNN0pISNBzzz1nOh5QpHDlPCzFy8tLV69elXTzYSQpKSkKDw+XJGVmZpqMBriEiIgIikDAgEmTJmnGjBn5xgMCAvT88887ykMABYu5J2DO9OnTdfDgQQUFBalatWqSpNTUVJUoUUKnTp3SzJkzHfsmJiaaiglYEstKAQWHch6WEhUVpQ0bNqhu3brq0KGDhg4dql27dmnx4sWKiooyHQ+wvNzcXB08eFAZGRmO2xtvadmypaFUgPUdPXpUISEh+caDgoKUmppqIBHgGph7AuZ07tzZdATAZbGsFFBwKOdhKVOmTNGlS5ckSTExMbp06ZLmz5+v0NBQTZ061XA6wNo2b96sHj166OjRo7Lb7Xm22Ww25eTkGEoGWF9AQICSk5MVHBycZ3znzp0qV66cmVCAC2DuCZgzZswY0xEAl3VrWam5c+cqMDBQEstKAf8rm/2/GxSgiMrJydH69esVGRnJJ7WAAfXr11etWrU0duxYBQYGymaz5dnOQ4GAwvPaa6/pn//8p2bPnu24SyU+Pl59+vTR//t//0/vvvuu4YSA9TD3BAC4qgYNGujgwYO6evVqvmWlatasmWdflpUCfh3lPCylZMmS2rt3721v7QdQuLy8vLRz506FhoaajgK4nGvXrqlXr15asGCBihe/eWNkbm6unnrqKc2YMUMeHh6GEwLWxNwTMCcnJ0dTp07VP//5T6WmpuratWt5tp85c8ZQMsD6YmJi8l2MdSfc5QL8Opa1gaVERETo0KFD/A8SYMB9992ngwcPUs4DBnh4eGj+/Pl68803lZSUJE9PT0VERCgoKMh0NMDSmHsC5owdO1affPKJhgwZolGjRmnkyJE6cuSIli5dqtGjR5uOB1haTEyM6QiAZXDlPCxl9erVev311zV+/Hg1atRIXl5eebb7+voaSgZYU3JysuPrlJQU/e1vf9OwYcMUEREhd3f3PPtGRkY6Ox7gkjZs2KDGjRurRIkSpqMAlsfcEzCnRo0aev/999WhQwf5+PgoKSnJMbZ582Z98cUXpiMCllW9enVt27Yt37ONzp07p4YNG+rQoUOGkgFFD+U8LMXNzc3x9S9vsbLb7TyQEigEbm5ustls+R4Ae8utbZx/gPP4+voqKSlJ1atXNx0FsDzmnoA5Xl5e2rt3r6pVq6bAwEAtX77cUQo2aNBA58+fNx0RsCw3Nzelp6crICAgz/jJkydVtWrVfMtMAbgzlrWBpaxdu9Z0BMClHD582HQEAP+F6y4A52HuCZhTpUoVpaWlqVq1agoNDdXq1avVsGFDbdu2jbvHgEKybNkyx9erVq2Sn5+f43VOTo5++OEHlnoD/iDKeVhKSEiIqlatmu/BJHa7XceOHTOUCrCuX65n/eOPP6pZs2aOh1HecuPGDW3cuJG1rwEAlsPcEzCnS5cu+uGHH3Tfffdp0KBB6t69u2bNmqXU1FQNHjzYdDzAkjp37izp5t1iTz/9dJ5t7u7uCg4O1uTJkw0kA4oulrWBpRQrVkxpaWn5bq06ffq0AgICuLUYKEScf8Dd4YsvvlB0dHS+ta8BFDz+9gF3j82bN2vjxo0KDQ1Vp06dTMcBLC0kJETbtm1T+fLlTUcBijyunIel3Frf879dunRJJUuWNJAIcB13Ov9Onz5NSQg4UY8ePUxHAFwGc0/g7hEVFaWoqCjTMQCX8MvlTa9cucLfPOBPoJyHJQwZMkTSzVurRo0apVKlSjm25eTkaMuWLapfv76hdIC1de3aVdLN869379551vjMyclRcnKymjVrZioeYHnfffed1q9frwceeEAPPfSQfvzxR02cOFFXr15Vr1699Mwzz5iOCFgOc0/g7vDZZ59pxowZOnz4sDZt2qSgoCDFxsYqJCRE0dHRpuMBlpWbm6sJEyZoxowZOnnypA4cOKDq1atr1KhRCg4O1rPPPms6IlBkuJkOABSEHTt2aMeOHbLb7dq1a5fj9Y4dO7Rv3z7Vq1dPn376qemYgCX5+fnJz89PdrtdPj4+jtd+fn6qWLGinn/+eX3++eemYwKW9Pnnn6t9+/b65ptvFB0drU8//VTR0dGqUqWKqlevrn79+mnhwoWmYwKWw9wTMG/69OkaMmSI2rdvr3PnzjmWkSpdurRiY2PNhgMs7s0339Snn36qd955Rx4eHo7xiIgIffLJJwaTAUUPa87DUp555hm999578vX1NR0FcDljx47Vq6++yhI2gBM1aNBAzzzzjAYOHKgffvhBHTt21IQJExwPwpsyZYoWL16s9evXG04KWBNzT8CcunXr6q233lLnzp3l4+OjnTt3qnr16tq9e7datWqlzMxM0xEBywoNDdXMmTP18MMP5zn/9u3bp6ZNm+rs2bOmIwJFBuU8AABAEeXt7a1du3YpJCREkuTh4aGEhARFRkZKkvbv36/mzZtTUAAALMfT01P79u1TUFBQnnLw559/VmRkpLKzs01HBCzrTuffnj17dO+99+rSpUumIwJFBmvOw1IuX76sSZMm6YcfflBGRoZyc3PzbD906JChZID1nTx5Uq+++qrj/Pvvz35v3WoMoOC4u7vr2rVrjtclSpSQt7e347WHhwflBFCImHsC5oSEhCgpKUlBQUF5xr/99lvVrVvXUCrANYSHh2vdunX5zr8FCxaoQYMGhlIBRRPlPCylb9++io+PV69evRQYGCibzWY6EuAyevfurdTUVI0aNYrzD3CS0NBQ7du3T2FhYZKkEydOyMfHx7E9JSVFVapUMRUPsDzmnoA5w4YN00svvaQrV67Ibrdr69at+vLLLzVx4kTWvAYK2ZgxY9SrVy+dOHFCubm5Wrx4sfbv36+5c+fqm2++MR0PKFJY1gaWUrp0aS1fvlzNmzc3HQVwOT4+Plq3bp3q169vOgrgMpYsWaJy5cqpZcuWt90+adIkXb58WePHj3dyMsA1MPcEzPr444/15ptv6tixY5KkKlWqaMyYMXr22WcNJwOsb9WqVXrrrbe0fft25ebmqmHDhho9erTatGljOhpQpFDOw1JCQkK0YsUK1alTx3QUwOXUrVtX8+bN4zZGAIDLYO4JmJOdnS273a5SpUopMzNThw4d0oYNG1S3bl21bdvWdDzA0o4dO6aqVavedtvmzZsVFRXl5ERA0eVmOgBQkMaPH6/Ro0crKyvLdBTA5cTGxmr48OE6cuSI6SiAyxk7dqxSUlJMxwBcDnNPwJzo6GjNnTtXklS8eHF16tRJU6ZMUefOnTV9+nTD6QBre+SRR3T69Ol84xs2bFC7du0MJAKKLq6ch6U0aNBAKSkpstvtCg4Olru7e57tiYmJhpIB1lemTBllZWXpxo0bKlWqVL7z78yZM4aSAdYXGRmpn376SU2aNNFf//pXdevWTf7+/qZjAZbH3BMwp3z58oqPj1d4eLg++eQTffDBB9qxY4cWLVqk0aNHa+/evaYjApb13HPPKTExUXFxcY7nHf3444/q2LGjYmJiNHjwYMMJgaKDB8LCUjp37mw6AuCypk6dyoPwAEOSk5P1008/ad68eZoyZYqGDBmi1q1b669//as6d+6sUqVKmY4IWBJzT8CcrKwsRym4evVqde3aVW5uboqKitLRo0cNpwOs7aOPPtLjjz+uDh06aPXq1dq0aZM6deqkN998U4MGDTIdDyhSuHIeAADAYjZs2KAvvvhCCxYs0JUrV3ThwgXTkQAAKFCRkZHq27evunTponvuuUcrV65U06ZNtX37dnXo0EHp6emmIwKWdv36dXXo0EGXL19WcnKyJk6cqJdfftl0LKDI4cp5WNL27du1d+9e2Ww21a1blwdUAk7QqlUr9enTR48//rg8PT1NxwFcmpeXlzw9PeXh4aGLFy+ajgNYHnNPwPlGjx6tHj16aPDgwXr44YfVtGlTSTevouccBApecnJyvrExY8aoe/fu+utf/6qWLVs69omMjHR2PKDI4sp5WEpGRoaefPJJxcXFqXTp0rLb7Tp//rwefPBBffXVV6y/CxSioUOHat68ecrOztYTTzyhZ599VlFRUaZjAS7j8OHD+uKLLzRv3jwdOHBALVu2VI8ePfT444/Lz8/PdDzAkph7Amalp6crLS1N9erVk5ubmyRp69at8vX1Ve3atQ2nA6zFzc1NNptNv6wRf/n61tc2m005OTmmYgJFDuU8LKVbt25KSUnRZ599pjp16kiS9uzZo6efflqhoaH68ssvDScErC0nJ0fffPONZs+erRUrVig0NFR9+vRRr169VKFCBdPxAMtq2rSptm7dqoiICPXs2VM9evRQ5cqVTccCLI+5JwDAVfyRZzkEBQUVYhLAWijnYSl+fn76/vvv1aRJkzzjW7duVZs2bXTu3DkzwQAXdOrUKc2cOVMTJkxQTk6O2rdvr4EDB+qhhx4yHQ2wnDfeeEM9e/ZUeHi46SiAS2HuCQAAgD/DzXQAoCDl5ubK3d0937i7u7tyc3MNJAJc09atWzV69Gi9++67CggI0IgRIxQQEKCOHTvq1VdfNR0PsJy33nrLUcz3799fmZmZhhMBroG5JwDAFU2cOFH/+Mc/8o3/4x//0Ntvv20gEVB0ceU8LCU6Olrnzp3Tl19+qUqVKkmSTpw4oZ49e6pMmTJasmSJ4YSAdWVkZOizzz7T7Nmz9fPPP6tjx47q27ev2rZtK5vNJkn6/vvv1blzZ126dMlwWsC6fH19lZSUpOrVq5uOAlgec08AgCsKDg7WF198oWbNmuUZ37Jli5588kkdPnzYUDKg6CluOgBQkKZNm6bo6GgFBweratWqstlsSk1NVUREhD7//HPT8QBLq1KlimrUqKE+ffqod+/et30I3r333pvv1n8ABYvrLgDnYe4JAHBF6enpCgwMzDfu7++vtLQ0A4mAootyHpZStWpVJSYm6rvvvtO+fftkt9tVt25dtW7d2nQ0wPK+//57NWrUSF5eXpJuPjBoyZIlqlOnjtq2bSvp5hW9a9euNRkTAIACw9wTAOCKqlatqg0bNigkJCTP+IYNGxx3kgH4fVjWBgBQINq0aaOuXbuqX79+OnfunMLCwuTh4aHMzExNmTJFL774oumIAAAAAIA/6e2339b//d//6f/+7//00EMPSZJ++OEHvfbaaxo6dKhGjBhhOCFQdFDOw1IGDhyo0NBQDRw4MM/4tGnTdPDgQcXGxpoJBriA8uXLKz4+XuHh4frkk0/0wQcfaMeOHVq0aJFGjx6tvXv3mo4IWFpOTo6WLFmivXv3ymazqXbt2urcubOKF+dGSaCwMPcEALgiu92u4cOH6/3339e1a9ckSSVLltTrr7+u0aNHG04HFC2U87CUypUra9myZWrUqFGe8cTERHXq1EnHjx83lAywvlKlSmnfvn2qVq2annjiCYWHh2vMmDE6duyYwsLClJWVZToiYFm7d+9WdHS00tPTFRYWJkk6cOCA/P39tWzZMkVERBhOCFgTc08AgCu7dOmS9u7dK09PT9WsWVMlSpQwHQkoctxMBwAK0unTp+Xn55dv3NfXV5mZmQYSAa4jNDRUS5cu1bFjx7Rq1Sq1adNGkpSRkSFfX1/D6QBr69u3r8LDw3X8+HElJiYqMTFRx44dU2RkpJ5//nnT8QDLYu4JAHBl3t7eCgwMVJkyZSjmgf8R5TwsJTQ0VCtXrsw3/u2336p69eoGEgGuY/To0Xr11VcVHBys++67T02bNpUkrV69Wg0aNDCcDrC2nTt3auLEiSpTpoxjrEyZMpowYYKSkpLMBQMsjrknAMAV5ebmaty4cfLz81NQUJCqVaum0qVLa/z48crNzTUdDyhSWIQUljJkyBC9/PLLOnXqVJ6HkkyePJk1P4FC9v/+3/9TixYtlJaWpnr16jnGH374YXXp0sVgMsD6wsLCdPLkSYWHh+cZz8jIUGhoqKFUgPUx9wQAuKKRI0dq1qxZmjRpkpo3by673a4NGzYoJiZGV65c0YQJE0xHBIoM1pyH5UyfPl0TJkzQv//9b0lScHCwYmJi9NRTTxlOBgBA4VixYoVee+01xcTEKCoqSpK0efNmjRs3TpMmTVKLFi0c+7LMFFCwmHsCAFxNpUqVNGPGDHXq1CnP+Ndff63+/fvrxIkThpIBRQ/lPCzr1KlT8vT0lLe3t+koAAAUKje3/6xUaLPZJEm3pni/fG2z2ZSTk+P8gIALYO4JAHAVJUuWVHJysmrVqpVnfP/+/apfv76ys7MNJQOKHpa1gWXNmjVL/fr1Mx0DAIBCt3btWtMRAJfH3BMA4Crq1aunadOm6f33388zPm3atDxLnAL4bVw5D8vy9fVVUlISD+MCAABAoWPuCQBwFT/++KPat2+vatWqqWnTprLZbNq4caOOHTumFStW6P777zcdESgyuHIelsXnTgAAV5OVlaXU1FRdu3Ytz3hkZKShRIDrYO4JAHAF169f15gxY7R69WotX75c+/btk91uV9euXdW/f39VqlTJdESgSKGcBwAAKOJOnTqlZ555Rt9+++1tt7POPAAAAAqCu7u7du/eLX9/f02YMMF0HKDIc/vtXYCiac+ePQoKCjIdAwCAQvfKK6/o7Nmz2rx5szw9PbVy5UrNmTNHNWvW1LJly0zHA1zCnj17FBwcbDoGAACF7qmnntKsWbNMxwAsgSvnYUnXrl2TzWbTiRMn8oxXq1bNUCIAAArPmjVr9PXXX6tJkyZyc3NTUFCQHnnkEfn6+mrixInq0KGD6YiAZZ07d04LFy5USkqKhg0bprJlyyoxMVEVKlRQ5cqVTccDAKDAXbt2TZ988om+++47NW7cWF5eXnm2T5kyxVAyoOihnIel/Pzzz+rTp482btyYZ9xut8tms3FbPwDAki5fvqyAgABJUtmyZXXq1CnVqlVLERERSkxMNJwOsK7k5GS1bt1afn5+OnLkiJ577jmVLVtWS5Ys0dGjRzV37lzTEQEAKHC7d+9Ww4YNJUkHDhzIs81ms5mIBBRZlPOwlN69e6t48eL65ptvFBgYyB8FAIBLCAsL0/79+xUcHKz69etr5syZCg4O1owZMxQYGGg6HmBZQ4YMUe/evfXOO+/Ix8fHMf7oo4+qR48eBpMBAFB41q5dazoCYBmU87CUpKQkbd++XbVr1zYdBQAAp3nllVeUlpYmSRozZozatm2refPmycPDQ59++qnZcICFbdu2TTNnzsw3XrlyZaWnpxtIBAAAgKKEch6WUrduXWVmZpqOAQCAU/Xs2dPxdYMGDXTkyBHt27dP1apVU/ny5Q0mA6ytZMmSunDhQr7x/fv3y9/f30AiAAAAFCVupgMABentt9/Wa6+9pri4OJ0+fVoXLlzI8w8AACv6+eef87wuVaqUGjZsSDEPFLLo6GiNGzdO169fl3Rznd3U1FQNHz5cjz32mOF0AAAAuNvZ7Ha73XQIoKC4ud38vOm/15rngbAAACtzc3NTYGCgHnjgAT3wwANq1aqVwsLCTMcCLO/ChQtq3769fvrpJ128eFGVKlVSenq6mjZtqhUrVsjLy8t0RAAAANzFKOdhKfHx8b+6/YEHHnBSEgAAnOfkyZNas2aN4uPjFRcXpwMHDqhChQqOor5fv36mIwKWtmbNGiUmJio3N1cNGzZU69atTUcCAABAEUA5DwAAYDEHDx7Um2++qXnz5ik3N5c7x4ACVLZsWR04cEDly5dXnz599N5778nHx8d0LAAAABRBlPMo8pKTk3XPPffIzc1NycnJv7pvZGSkk1IBAOA8ly5d0vr16xUXF6f4+HglJSWpTp06atWqlR544AFFR0ebjghYhre3t5KTk1W9enUVK1ZM6enpPPwVAAAA/xPKeRR5bm5uSk9PV0BAgNzc3GSz2XS7X2vWnAcAWJW7u7vKli2rXr166cEHH1SLFi3k5+dnOhZgSY888ohOnjypRo0aac6cOerWrZs8PT1vu+8//vEPJ6cDAABAUVLcdADgzzp8+LDjaqXDhw8bTgMAgPN16NBB69ev12effaZjx44pNTVVrVq1Up06dUxHAyzn888/19SpU5WSkiKbzabz58/rypUrpmMBAACgCOLKeQAAAItITk5WfHy84uPjtW7dOtlsNrVq1UpfffWV6WiAJYWEhCghIUHlypUzHQUAAABFEFfOo8hbtmzZ7963U6dOhZgEAACzIiMjlZOTo+vXr+vq1atauXKlFi9ebDoWYFnctQkAAIA/gyvnUeS5ubn9rv1Ycx4AYFVTp05VXFyc1q1bp4sXL6p+/fp64IEH1KpVK7Vs2VK+vr6mIwKWdfnyZcXHxys1NVXXrl3Ls23gwIGGUgEAAKAooJwHAAAo4ho3bqxWrVpRxgNOtmPHDrVv315ZWVm6fPmyypYtq8zMTJUqVUoBAQE6dOiQ6YgAAAC4i1HOw7KuXLmikiVLmo4BAAAAi2rVqpVq1aql6dOnq3Tp0tq5c6fc3d3117/+VYMGDVLXrl1NRwQAAMBd7PetBwIUETk5ORo/frwqV64sb29vx9VKo0aN0qxZswynAwCgcKxcuVLr1693vP773/+u+vXrq0ePHjp79qzBZIC1JSUlaejQoSpWrJiKFSumq1evqmrVqnrnnXf0xhtvmI4HAACAuxzlPCxlwoQJ+vTTT/XOO+/Iw8PDMR4REaFPPvnEYDIAAArPsGHDdOHCBUnSrl27NHToULVv316HDh3SkCFDDKcDrMvd3V02m02SVKFCBaWmpkqS/Pz8HF8DAAAAd1LcdACgIM2dO1cfffSRHn74YfXr188xHhkZqX379hlMBgBA4Tl8+LDq1q0rSVq0aJH+8pe/6K233lJiYqLat29vOB1gXQ0aNFBCQoJq1aqlBx98UKNHj1ZmZqY+++wzRUREmI4HAACAuxxXzsNSTpw4odDQ0Hzjubm5un79uoFEAAAUPg8PD2VlZUmSvv/+e7Vp00aSVLZsWccV9QAK3ltvvaXAwEBJ0vjx41WuXDm9+OKLOnXqlGbOnGk4HQAAAO52XDkPSwkPD9e6desUFBSUZ3zBggVq0KCBoVQAABSuFi1aaMiQIWrevLm2bt2q+fPnS5IOHDigKlWqGE4HWFd4eLjsdrskyd/fXx9++KGWLFmiunXrqn79+mbDAQAA4K5HOQ9LGTNmjHr16qUTJ04oNzdXixcv1v79+zV37lx98803puMBAFAopk2bpv79+2vhwoWaPn26KleuLEn69ttv1a5dO8PpAOuKjo5W165d1a9fP507d05RUVFyd3dXZmampkyZohdffNF0RAAAANzFbPZbl3oAFrFq1Sq99dZb2r59u3Jzc9WwYUONHj3acYs/AAAAUBDKly+v+Ph4hYeH65NPPtEHH3ygHTt2aNGiRRo9erT27t1rOiIAAADuYlw5D8tp27at2rZtazoGAACF6sKFC/L19XV8/Wtu7QegYGVlZcnHx0eStHr1anXt2lVubm6KiorS0aNHDacDAADA3Y5yHpaUkJCgvXv3ymazqU6dOmrUqJHpSAAAFKgyZcooLS1NAQEBKl26tGw2W7597Ha7bDabcnJyDCQErC80NFRLly5Vly5dtGrVKg0ePFiSlJGRwYdiAAAA+E2U87CU48ePq3v37tqwYYNKly4tSTp37pyaNWumL7/8UlWrVjUbEACAArJmzRqVLVtWkrR27VrDaQDXNHr0aPXo0UODBw/Www8/rKZNm0q6eRV9gwYNDKcDAADA3Y4152Epbdq00YULFzRnzhyFhYVJkvbv368+ffrIy8tLq1evNpwQAAAAVpKenq60tDTVq1dPbm5ukqStW7fK19dXtWvXNpwOAAAAdzPKeViKp6enNm7cmO9KpcTERDVv3lzZ2dmGkgEAULjOnTunrVu3KiMjQ7m5uXm2PfXUU4ZSAQAAAADuhGVtYCnVqlXT9evX843fuHFDlStXNpAIAIDC969//Us9e/bU5cuX5ePjk2f9eZvNRjkPAAAAAHchN9MBgIL0zjvvaMCAAUpISNCtm0ISEhI0aNAgvfvuu4bTAQBQOIYOHao+ffro4sWLOnfunM6ePev4d+bMGdPxAAAAAAC3wbI2sJQyZcooKytLN27cUPHiN28MufW1l5dXnn0pKwAAVuHl5aVdu3apevXqpqMAAAAAAH4nlrWBpcTGxpqOAACA07Vt21YJCQmU8wAAAABQhHDlPAAAQBE3a9YsjRs3Ts8884wiIiLk7u6eZ3unTp0MJQMAAAAA3AnlPCwnJydHS5Ys0d69e2Wz2VSnTh1FR0c7lrkBAMBq3Nzu/Bghm82mnJwcJ6YBAAAAAPwelPOwlN27dys6Olrp6ekKCwuTJB04cED+/v5atmyZIiIiDCcEAAAAAAAAAMp5WExUVJQCAgI0Z84clSlTRpJ09uxZ9e7dWxkZGdq0aZPhhAAAFLxx48bdcZvNZtOoUaOcmAYAAAAA8HtQzsNSPD09lZCQoPDw8Dzju3fvVpMmTZSdnW0oGQAAhadBgwZ5Xl+/fl2HDx9W8eLFVaNGDSUmJhpKBgAAAAC4ExbhhqWEhYXp5MmT+cr5jIwMhYaGGkoFAEDh2rFjR76xCxcuqHfv3urSpYuBRAAAAACA38KV87CUFStW6LXXXlNMTIyioqIkSZs3b9a4ceM0adIktWjRwrGvr6+vqZgAADjF7t279Ze//EVHjhwxHQUAAAAA8F8o52Epbm5ujq9tNpsk6dav+C9f22w25eTkOD8gAABOtH79enXs2FFnz541HQUAAAAA8F9Y1gaWsnbtWtMRAABwuvfffz/Pa7vdrrS0NH322Wdq166doVQAAAAAgF/DlfMAAABFXEhISJ7Xbm5u8vf310MPPaQRI0bIx8fHUDIAAAAAwJ1QzsNy1q1bp5kzZ+rQoUNasGCBKleurM8++0whISF51pwHAAAAAAAAAFPcfnsXoOhYtGiR2rZtK09PTyUmJurq1auSpIsXL+qtt94ynA4AAAAAAAAAbqKch6W8+eabmjFjhj7++GO5u7s7xps1a6bExESDyQAAAAAAAADgPyjnYSn79+9Xy5Yt8437+vrq3Llzzg8EAAAAAAAAALdBOQ9LCQwM1MGDB/ONr1+/XtWrVzeQCAAAAAAAAADyo5yHpbzwwgsaNGiQtmzZIpvNpn//+9+aN2+eXn31VfXv3990PAAAAAAAAACQJNnsdrvddAigII0cOVJTp07VlStXJEklSpTQq6++qvHjxxtOBgAAAAAAAAA3Uc7DkrKysrRnzx7l5uaqbt268vb2Nh0JAAAAAAAAABxY1gaWMnfuXO3du1elSpVS48aNde+998rb21tXrlzR3LlzTccDAAAAAAAAAElcOQ+LcXNzk5eXlz799FM99thjjvGTJ0+qUqVKysnJMZgOAAAAAAAAAG7iynlYztixY9WrVy/FxMSYjgIAAAAAAAAAt8WV87AUNzc3paen69ChQ+rSpYuaN2+uzz77TBcuXODKeQAAAAAAAAB3Da6ch6XYbDZJUlRUlLZs2aKDBw+qWbNmOnLkiNlgAAAAAAAAAPALlPOwlF/eCFKtWjVt3LhRwcHBeuSRRwymAgAAAAAAAIC8KOdhKWPGjJG3t7fjdalSpbRkyRINHjxYLVu2NJgMAAAAAAAAAP6DNecBAAAAAAAAAHCy4qYDAAXtwIEDiouLU0ZGhnJzcx3jNptNo0aNMpgMAAAAAAAAAG7iynlYyscff6wXX3xR5cuXV8WKFR0PiJVulvOJiYkG0wEAAAAAAADATZTzsJSgoCD1799fr7/+uukoAAAAAAAAAHBHlPOwFF9fXyUlJal69eqmowAAAAAAAADAHbmZDgAUpMcff1yrV682HQMAAAAAAAAAfhUPhIWlhIaGatSoUdq8ebMiIiLk7u6eZ/vAgQMNJQMAAAAAAACA/2BZG1hKSEjIHbfZbDYdOnTIiWkAAAAAAAAA4PYo5wEAAAAAAAAAcDLWnIclXbt2Tfv379eNGzdMRwEAAAAAAACAfCjnYSlZWVl69tlnVapUKYWHhys1NVXSzbXmJ02aZDgdAAAAAAAAANxEOQ9LGTFihHbu3Km4uDiVLFnSMd66dWvNnz/fYDIAAAAAAAAA+I/ipgMABWnp0qWaP3++oqKiZLPZHON169ZVSkqKwWQAAAAAAAAA8B9cOQ9LOXXqlAICAvKNX758OU9ZDwAAAAAAAAAmUc7DUpo0aaLly5c7Xt8q5D/++GM1bdrUVCwAAAAAAAAAyINlbWApEydOVLt27bRnzx7duHFD7733nn766Sdt2rRJ8fHxpuMBAAAAAAAAgCSunIfFNGvWTBs2bFBWVpZq1Kih1atXq0KFCtq0aZMaNWpkOh4AAAAAAAAASJJsdrvdbjoEAAAAAAAAAACuhGVtYDk5OTlasmSJ9u7dK5vNpjp16ig6OlrFi/PrDgAAAAAAAODuQFsJS9m9e7eio6OVnp6usLAwSdKBAwfk7++vZcuWKSIiwnBCAAAAAAAAAGBZG1hMVFSUAgICNGfOHJUpU0aSdPbsWfXu3VsZGRnatGmT4YQAAAAAAAAAQDkPi/H09FRCQoLCw8PzjO/evVtNmjRRdna2oWQAAAAAAAAA8B9upgMABSksLEwnT57MN56RkaHQ0FADiQAAAAAAAAAgP8p5WMpbb72lgQMHauHChTp+/LiOHz+uhQsX6pVXXtHbb7+tCxcuOP4BAAAAAAAAgCksawNLcXP7z+dNNptNknTrV/yXr202m3JycpwfEAAAAAAAAAAkFTcdAChIa9euNR0BAAAAAAAAAH4TV87Dcs6dO6dZs2Zp7969stlsqlOnjp599ln5+fmZjgYAAAAAAAAAkijnYTEJCQlq166dSpYsqXvvvVd2u10JCQnKzs7W6tWr1bBhQ9MRAQAAAAAAAIByHtZy//33KzQ0VB9//LGKF7+5atONGzfUt29fHTp0SD/++KPhhAAAAAAAAABAOQ+L8fT01I4dO1S7du0843v27FHjxo2VlZVlKBkAAAAAAAAA/Ieb6QBAQfL19VVqamq+8WPHjsnHx8dAIgAAAAAAAADIj3IeltKtWzc9++yzmj9/vo4dO6bjx4/rq6++Ut++fdW9e3fT8QAAAAAAAABAklTcdACgIL377ruy2Wx66qmndOPGDUmSu7u7XnzxRU2aNMlwOgAAAAAAAAC4iTXnYUlZWVlKSUmR3W5XaGioSpUqZToSAAAAAAAAADhQzgMAAAAAAAAA4GSsOQ8AAAAAAAAAgJNRzgMAAAAAAAAA4GSU8wAAAAAAAAAAOBnlPAAAAAAAAAAATkY5DwAAAAAAAACAk1HOAwAAAAAAAADgZJTzAAAAAAAAAAA42f8HDm7RleFjYDIAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "revert_methods = [\"evm_snapshot\", \"evm_revert\"]\n", - "\n", - "snapshots_and_reverts = defaultdict(lambda: defaultdict(int))\n", - "for scenario, calls in rpc_calls.items():\n", - " for item in calls:\n", - " method = item[\"method\"]\n", - " if method in revert_methods:\n", - " snapshots_and_reverts[scenario][method] += 1\n", - "\n", - "scenarios_by_snapshots = list(map(lambda item: item[0], sorted(snapshots_and_reverts.items(), key=lambda item: item[1][\"evm_snapshot\"], reverse=True)))\n", - "\n", - "fig, ax = plt.subplots(layout='constrained', figsize=(15, 10))\n", - "\n", - "x = np.arange(len(snapshots_and_reverts))\n", - "width = 0.4\n", - "multiplier = 1\n", - "for method in revert_methods:\n", - " offset = width * multiplier\n", - " bars = [snapshots_and_reverts[s][method] for s in scenarios_by_snapshots]\n", - " rects = ax.bar(x + offset, bars, width, label=method)\n", - " ax.bar_label(rects, padding=3)\n", - " multiplier += 1\n", - "\n", - "# Add some text for labels, title and custom x-axis tick labels, etc.\n", - "ax.set_ylabel('Counts')\n", - "ax.set_title('Snapshots and reverts by scenario')\n", - "ax.set_xticks(x + width, scenarios_by_snapshots, rotation='vertical')\n", - "ax.legend(loc='upper right', ncols=3)\n", - "\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "ed4f8b6d-da3c-414d-a6d5-2890e0a09129", - "metadata": {}, - "source": [ - "It's interesting to see that while `synthetix` has almost 3 times as many transactions as `openzeppelin`, the latter does more than 10x snapshots. Note that `neptune-mutual-blue-protocol` creates no snapshots." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "80ba987c-adb9-4584-a4ea-a04f57e794d7", - "metadata": {}, - "outputs": [ - { - "data": { - "text/markdown": [ - "### Revert depths by scenario" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "The revert depth is the difference between the latest snapshot id and the snapshot id that was reverted to (`seaport` is excluded from the plot since it's an outlier)." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
revert_depth
countmeanstdmin25%50%75%max
scenario
openzeppelin-contracts4325.02.7581502.9334680.01.02.05.066.0
rocketpool293.09.80887429.8632330.01.03.06.0351.0
safe-contracts358.03.87709512.4079350.01.01.02.0146.0
seaport334.0983.934132799.3278833.08.0959.51569.03136.0
synthetix1561.014.95067326.3430180.03.08.019.0329.0
uniswap-v3-core634.05.2949534.1393280.04.04.07.054.0
\n", - "
" - ], - "text/plain": [ - " revert_depth \\\n", - " count mean std min 25% 50% \n", - "scenario \n", - "openzeppelin-contracts 4325.0 2.758150 2.933468 0.0 1.0 2.0 \n", - "rocketpool 293.0 9.808874 29.863233 0.0 1.0 3.0 \n", - "safe-contracts 358.0 3.877095 12.407935 0.0 1.0 1.0 \n", - "seaport 334.0 983.934132 799.327883 3.0 8.0 959.5 \n", - "synthetix 1561.0 14.950673 26.343018 0.0 3.0 8.0 \n", - "uniswap-v3-core 634.0 5.294953 4.139328 0.0 4.0 4.0 \n", - "\n", - " \n", - " 75% max \n", - "scenario \n", - "openzeppelin-contracts 5.0 66.0 \n", - "rocketpool 6.0 351.0 \n", - "safe-contracts 2.0 146.0 \n", - "seaport 1569.0 3136.0 \n", - "synthetix 19.0 329.0 \n", - "uniswap-v3-core 7.0 54.0 " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjMAAAJaCAYAAADaqcZQAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAABf5UlEQVR4nO3dd1QUZ+M98Dv0XhUFpYoiIvauscReUV8TW2xoYosaW9TX2AtqbIm+lhijYmyx19gFa1TELmrEAhoRKyAoAvv8/vDHfrMBFQnszLD3c86e4zwzu3thGbxMlYQQAkREREQqZSR3ACIiIqJ/g2WGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYYKhJUrV0KSJEiShLCwsCzzhRDw9fWFJEmoX7++3vMVVCkpKZg4cWK23/OPERYW9s7PLi8tWrQIK1eufOf7b9q0KVevO3HiREiShCdPnvzLhIbNy8sLPXv2lDsGqZCJ3AGI8pKtrS2WL1+epbCEh4cjOjoatra28gQroFJSUjBp0iQAUEVJXLRoEQoVKsT/MBVq69atsLOzkzsGqRC3zFCB0rFjR2zevBmJiYk648uXL0fNmjXh4eEhU7J/59WrV3JH0CGEUFwmUq/Mn6WKFSuiRIkSMqchNWKZoQKlc+fOAIB169ZpxxISErB582YEBwdn+5w3b95g6tSpKF26NMzNzVG4cGH06tULjx8/1lluw4YNaNKkCVxdXWFpaQl/f3+MHj0aycnJOsv17NkTNjY2uHXrFlq0aAEbGxu4u7tj+PDhSE1N/eDX4OXlhVatWmHLli2oWLEiLCwstFs/4uLi0LdvXxQvXhxmZmbw9vbGpEmTkJ6eDgBIS0uDi4sLunXrluV1X7x4AUtLSwwbNkw7lpiYiBEjRsDb2xtmZmYoVqwYvvnmmyxfkyRJ+Prrr7FkyRL4+/vD3Nwcq1atQuHChQEAkyZN0u7m+9BWj+vXr6NZs2awsrJCoUKF0K9fPyQlJWW77MGDB9GwYUPY2dnBysoKtWvXxqFDh3SWydzFc/78ebRv3x52dnawt7fHF198ofMZenl54erVqwgPD9dm9fLy0nmttLQ0jB07Fm5ubrCzs0OjRo1w48aN9349fxcbG/veDL1794aTkxNSUlKyPPfTTz9FQEDAe1///PnzaNWqFVxcXGBubg43Nze0bNkS9+/f1y6j0WiwYMECVKhQAZaWlnBwcECNGjWwY8cOndfasGEDatasCWtra9jY2KBp06Y4f/68zjIf87M8adIkVK9eHU5OTrCzs0OlSpWwfPly/PNexu/7+c5uN1NMTAy++OIL7dfs7++POXPmQKPRvPd7RQZGEBUAK1asEADE2bNnRbdu3US1atW08xYvXiysra1FYmKiCAgIEPXq1dPOy8jIEM2aNRPW1tZi0qRJ4sCBA+Lnn38WxYoVE2XKlBEpKSnaZadMmSLmzZsndu/eLcLCwsSSJUuEt7e3aNCggU6WHj16CDMzM+Hv7y9mz54tDh48KMaPHy8kSRKTJk364Nfi6ekpXF1dhY+Pj/jll1/EkSNHxJkzZ8TDhw+Fu7u78PT0FEuXLhUHDx4UU6ZMEebm5qJnz57a5w8dOlRYWlqKhIQEndddtGiRACAuXbokhBAiOTlZVKhQQRQqVEjMnTtXHDx4UPzwww/C3t5efPrpp0Kj0WifC0AUK1ZMlCtXTqxdu1YcPnxYXLhwQezdu1cAEL179xanTp0Sp06dErdu3Xrn1xYXFydcXFxEsWLFxIoVK8SePXtE165dhYeHhwAgjhw5ol129erVQpIk0bZtW7Flyxaxc+dO0apVK2FsbCwOHjyoXW7ChAkCgPD09BQjR44U+/btE3PnzhXW1taiYsWK4s2bN0IIISIjI4WPj4+oWLGiNmtkZKQQQogjR44IAMLLy0t07dpV7N69W6xbt054eHiIkiVLivT09Pd+ZjnNcPHiRQFALFu2TOf5V69eFQDE//73v3e+x8uXL4Wzs7OoUqWK+O2330R4eLjYsGGD6Nevn7h27Zp2uW7duglJkkSfPn3E9u3bxe+//y6mTZsmfvjhB+0y06ZNE5IkieDgYLFr1y6xZcsWUbNmTWFtbS2uXr2qXe5jfpZ79uwpli9fLg4cOCAOHDggpkyZIiwtLbMs966f78x5PXr00C4bHx8vihUrJgoXLiyWLFki9u7dK77++msBQPTv3/+9nwkZFpYZKhD+XmYy/2O6cuWKEEKIqlWrav+z/2eZWbdunQAgNm/erPN6Z8+eFQDEokWLsn0/jUYj0tLSRHh4uAAgLl68qJ3Xo0cPAUD89ttvOs9p0aKF8PPz++DX4unpKYyNjcWNGzd0xvv27StsbGzEvXv3dMZnz54tAGj/E7p06ZIAIH766Sed5apVqyYqV66snQ4JCRFGRkbi7NmzOstt2rRJABB79uzRjgEQ9vb24tmzZzrLPn78WAAQEyZM+ODXJYQQo0aNEpIkiQsXLuiMN27cWKfMJCcnCycnJ9G6dWud5TIyMkT58uV1ympmkRg6dKjOsmvWrBEAxK+//qod++fnnynzZ6ZFixY647/99psAIE6dOvXer+tjMtSrV09UqFBBZ7n+/fsLOzs7kZSU9M73iIiIEADEtm3b3rnM0aNHBQAxduzYdy4TExMjTExMxKBBg3TGk5KSRNGiRcXnn3+uHcvtz3JGRoZIS0sTkydPFs7OzjrF+F0/35nz/l5mRo8eLQCI06dP6yzXv39/IUlStq9Bhom7majAqVevHkqUKIFffvkFly9fxtmzZ9+5i2nXrl1wcHBA69atkZ6ern1UqFABRYsW1Tm75vbt2+jSpQuKFi0KY2NjmJqaol69egCAqKgondeVJAmtW7fWGStXrhzu3buXo6+hXLlyKFWqVJasDRo0gJubm07W5s2bA3h7kDMABAYGonLlylixYoX2uVFRUThz5ozO92HXrl0oW7YsKlSooPN6TZs2zfbMok8//RSOjo45yv8uR44cQUBAAMqXL68z3qVLF53pkydP4tmzZ+jRo4dONo1Gg2bNmuHs2bNZdoV17dpVZ/rzzz+HiYkJjhw5kuN8bdq00ZkuV64cAOT4c8tJhiFDhuDChQs4ceIEgLe7+lavXo0ePXrAxsbmna/t6+sLR0dHjBo1CkuWLMG1a9eyLPP7778DAAYOHPjO19m3bx/S09PRvXt3ne+thYUF6tWrl+Vzz+nP8uHDh9GoUSPY29tr14/x48fj6dOniI+Pz/L8f/58Z+fw4cMoU6YMqlWrpjPes2dPCCFw+PDhD74GGQaezUQFjiRJ6NWrF3788Ue8fv0apUqVwieffJLtso8ePcKLFy9gZmaW7fzMU21fvnyJTz75BBYWFpg6dSpKlSoFKysr7TES/zwY1srKChYWFjpj5ubmeP36dY6+BldX12yz7ty5E6ampu/NCgDBwcEYOHAgrl+/jtKlS2PFihUwNzfXHlOU+Xq3bt3K0eu9K9PHevr0Kby9vbOMFy1aVGf60aNHAIAOHTq887WePXsGa2vrd76GiYkJnJ2d8fTp0xznc3Z21pk2NzcHkPMDsHOSISgoCF5eXvjf//6H2rVrY+XKlUhOTn5vAQEAe3t7hIeHY9q0afjvf/+L58+fw9XVFV9++SW+++47mJqa4vHjxzA2Ns6S4+8yv7dVq1bNdr6Rke7fuDn5WT5z5gyaNGmC+vXrY9myZdpjurZt24Zp06Zl+f7l9Gfp6dOnWY5rAgA3NzftfCKAZYYKqJ49e2L8+PFYsmQJpk2b9s7lChUqBGdnZ+zduzfb+Zmnch8+fBh//fUXwsLCtFtjgLcH1eYHSZKyzVquXLl3fj2Zv+CBtwdCDxs2DCtXrsS0adOwevVqtG3bVmfLSqFChWBpaYlffvkl29crVKjQBzN9LGdnZ8TFxWUZ/+dY5nsvWLAANWrUyPa1ihQpkuU1ihUrpp1OT0/H06dPsxSU/JSTDEZGRhg4cCD++9//Ys6cOVi0aBEaNmwIPz+/D75+YGAg1q9fDyEELl26hJUrV2Ly5MmwtLTE6NGjUbhwYWRkZCAuLu6dhSHze7tp0yZ4enr+y6/4rfXr18PU1BS7du3SKT7btm3Ldvmc/iw5Ozvj4cOHWcb/+usvAFl/RslwscxQgVSsWDGMHDkS169fR48ePd65XKtWrbB+/XpkZGSgevXq71wu85dv5l/qmZYuXZo3gXOgVatW2LNnD0qUKPHB3T2Ojo5o27YtQkNDUbNmTcTFxWXZ1daqVStMnz4dzs7O2W4tyYmP3XLRoEEDzJo1CxcvXtTZ1bR27Vqd5WrXrg0HBwdcu3YNX3/9dY5ee82aNahcubJ2+rfffkN6errO9W/Mzc3z9ZTynGQAgD59+mDixIno2rUrbty4gZkzZ37U+0iShPLly2PevHlYuXIlIiMjAQDNmzdHSEgIFi9ejMmTJ2f73KZNm8LExATR0dH4z3/+83Ff4HvymJiYwNjYWDv26tUrrF69+l+9bsOGDRESEoLIyEhUqlRJOx4aGgpJktCgQYN/9fpUcLDMUIE1Y8aMDy7TqVMnrFmzBi1atMCQIUNQrVo1mJqa4v79+zhy5AiCgoLQrl071KpVC46OjujXrx8mTJgAU1NTrFmzBhcvXtTDV/LW5MmTceDAAdSqVQuDBw+Gn58fXr9+jbt372LPnj1YsmQJihcvrl0+ODgYGzZswNdff43ixYujUaNGOq/3zTffYPPmzahbty6GDh2KcuXKQaPRICYmBvv378fw4cPfW/CAt1uuPD09sX37djRs2BBOTk4oVKhQtrsGMt/zl19+QcuWLTF16lQUKVIEa9aswfXr13WWs7GxwYIFC9CjRw88e/YMHTp0gIuLCx4/foyLFy/i8ePHWLx4sc5ztmzZAhMTEzRu3BhXr17FuHHjUL58eXz++efaZTK3bGzYsAE+Pj6wsLBAYGBgTr79OZKTDADg4OCA7t27Y/HixfD09MxyTEp2du3ahUWLFqFt27bw8fGBEAJbtmzBixcv0LhxYwDAJ598gm7dumHq1Kl49OgRWrVqBXNzc5w/fx5WVlYYNGgQvLy8MHnyZIwdOxa3b99Gs2bN4OjoiEePHuHMmTOwtrbWniqdUy1btsTcuXPRpUsXfPXVV3j69Clmz56dpfx/rKFDhyI0NBQtW7bE5MmT4enpid27d2PRokXo379/jo67IQMh8wHIRHni72czvU92Z7OkpaWJ2bNni/LlywsLCwthY2MjSpcuLfr27Sv+/PNP7XInT54UNWvWFFZWVqJw4cKiT58+IjIyUgAQK1as0C7Xo0cPYW1tneW9M894+RBPT0/RsmXLbOc9fvxYDB48WHh7ewtTU1Ph5OQkKleuLMaOHStevnyps2xGRoZwd3d/79ktL1++FN99953w8/MTZmZmwt7eXgQGBoqhQ4eKuLg47XIAxMCBA7N9jYMHD4qKFSsKc3NzAUDnbJTsXLt2TTRu3FhYWFgIJycn0bt3b7F9+/Ysp2YLIUR4eLho2bKlcHJyEqampqJYsWKiZcuWYuPGjdplMr+v586dE61btxY2NjbC1tZWdO7cWTx69Ejn9e7evSuaNGkibG1ttadSC/F/ZzP9/XWFEOLOnTtZPt/sfEyGTGFhYQKAmDFjxntfO9P169dF586dRYkSJYSlpaWwt7cX1apVEytXrtRZLiMjQ8ybN0+ULVtW+5nWrFlT7Ny5U2e5bdu2iQYNGgg7Ozthbm4uPD09RYcOHXROe/+Yn+VffvlF+Pn5CXNzc+Hj4yNCQkLE8uXLBQBx584d7XLv+/n+59lMQghx79490aVLF+Hs7CxMTU2Fn5+f+P7770VGRkZOvm1kICQh/nFFIyIiFZk4cSImTZqEx48fq+oYiuHDh2Px4sWIjY3V63E9RAURdzMREenRH3/8gZs3b2LRokXo27cviwxRHmCZISLSo5o1a8LKygqtWrXC1KlT5Y5DVCBwNxMRERGpGq8ATERERKrGMkNERESqxjJDREREqlbgDwDWaDT466+/YGtrmyeXYyciIqL8J4RAUlIS3Nzcstwz7J8KfJn566+/4O7uLncMIiIiyoXY2Fidq5tnp8CXmcwbBcbGxsLOzk7mNERERJQTiYmJcHd31/4//j4Fvsxk7lqys7NjmSEiIlKZnBwiwgOAiYiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNUK/F2zifKSEALJycnaaWtr6xzd0ZWIiPIPywzRR0hOTkZQUJB2evv27bCxsZExERERcTcTERERqRrLDBEREamarGXm6NGjaN26Ndzc3CBJErZt25ZlmaioKLRp0wb29vawtbVFjRo1EBMTo/+wREREpEiylpnk5GSUL18eCxcuzHZ+dHQ06tSpg9KlSyMsLAwXL17EuHHjYGFhoeekREREpFSyHgDcvHlzNG/e/J3zx44dixYtWmDWrFnaMR8fH31EIyIiIpVQ7DEzGo0Gu3fvRqlSpdC0aVO4uLigevXq2e6K+rvU1FQkJibqPIiIiKjgUmyZiY+Px8uXLzFjxgw0a9YM+/fvR7t27dC+fXuEh4e/83khISGwt7fXPtzd3fWYmoiIiPRNsWVGo9EAAIKCgjB06FBUqFABo0ePRqtWrbBkyZJ3Pm/MmDFISEjQPmJjY/UVmYiIiGSg2IvmFSpUCCYmJihTpozOuL+/P44fP/7O55mbm8Pc3Dy/4xEREZFCKHbLjJmZGapWrYobN27ojN+8eROenp4ypSIiIiKlkXXLzMuXL3Hr1i3t9J07d3DhwgU4OTnBw8MDI0eORMeOHVG3bl00aNAAe/fuxc6dOxEWFiZfaCIiIlIUWctMREQEGjRooJ0eNmwYAKBHjx5YuXIl2rVrhyVLliAkJASDBw+Gn58fNm/ejDp16sgVmYiIiBRG1jJTv359CCHeu0xwcDCCg4P1lIiIiIjURrHHzBARERHlBMsMERERqRrLDBEREakaywwRERGpGssMERERqRrLDBEREakaywwRERGpGssMERERqRrLDBEREakaywwRERGpGssMERERqRrLDBEREakaywwRERGpGssMERERqRrLDBEREakaywwRERGpmoncAYiyU3lkqNwRsiWlv4H936brj1sPYWImW553Ofd9d7kjEBHpDbfMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqslaZo4ePYrWrVvDzc0NkiRh27Zt71y2b9++kCQJ8+fP11s+IiIiUj5Zy0xycjLKly+PhQsXvne5bdu24fTp03Bzc9NTMiIiIlILEznfvHnz5mjevPl7l3nw4AG+/vpr7Nu3Dy1bttRTMiIiIlILWcvMh2g0GnTr1g0jR45EQEBAjp6TmpqK1NRU7XRiYmJ+xSMiIiIFUPQBwDNnzoSJiQkGDx6c4+eEhITA3t5e+3B3d8/HhERERCQ3xZaZc+fO4YcffsDKlSshSVKOnzdmzBgkJCRoH7GxsfmYkoiIiOSm2DJz7NgxxMfHw8PDAyYmJjAxMcG9e/cwfPhweHl5vfN55ubmsLOz03kQERFRwaXYY2a6deuGRo0a6Yw1bdoU3bp1Q69evWRKRUREREoja5l5+fIlbt26pZ2+c+cOLly4ACcnJ3h4eMDZ2VlneVNTUxQtWhR+fn76jkpEREQKJWuZiYiIQIMGDbTTw4YNAwD06NEDK1eulCkVERERqYmsZaZ+/foQQuR4+bt37+ZfGCIiIlIlxR4ATERERJQTLDNERESkaoo9m4lIiYSxKRLKddaZJiIiebHMEH0MSYIwMZM7BRER/Q13MxEREZGqccsMERFRASKEQHJysnba2tr6o24LpEYsM0RERAVIcnIygoKCtNPbt2+HjY2NjInyH3czERERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkarJWmaOHj2K1q1bw83NDZIkYdu2bdp5aWlpGDVqFAIDA2FtbQ03Nzd0794df/31l3yBiYiISHFkLTPJyckoX748Fi5cmGVeSkoKIiMjMW7cOERGRmLLli24efMm2rRpI0NSIiIiUioTOd+8efPmaN68ebbz7O3tceDAAZ2xBQsWoFq1aoiJiYGHh4c+IhIREZHCqeqYmYSEBEiSBAcHB7mjEBERkULIumXmY7x+/RqjR49Gly5dYGdn987lUlNTkZqaqp1OTEzURzwiIiKSiSq2zKSlpaFTp07QaDRYtGjRe5cNCQmBvb299uHu7q6nlERERCQHxZeZtLQ0fP7557hz5w4OHDjw3q0yADBmzBgkJCRoH7GxsXpKSkRERHJQ9G6mzCLz559/4siRI3B2dv7gc8zNzWFubq6HdERERKQEspaZly9f4tatW9rpO3fu4MKFC3BycoKbmxs6dOiAyMhI7Nq1CxkZGYiLiwMAODk5wczMTK7YREREpCCylpmIiAg0aNBAOz1s2DAAQI8ePTBx4kTs2LEDAFChQgWd5x05cgT169fXV0wiIiJSMFnLTP369SGEeOf8980jIiIiAlRwADARERHR+7DMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqmeT2iS9evMCZM2cQHx8PjUajM6979+7/OhgRERFRTuSqzOzcuRNdu3ZFcnIybG1tIUmSdp4kSSwzREREpDe52s00fPhwBAcHIykpCS9evMDz58+1j2fPnuV1RiIiIqJ3ylWZefDgAQYPHgwrK6u8zkNERET0UXJVZpo2bYqIiIi8zkJERET00XJ8zMyOHTu0/27ZsiVGjhyJa9euITAwEKampjrLtmnTJu8SEhEREb1HjstM27Zts4xNnjw5y5gkScjIyMjRax49ehTff/89zp07h4cPH2Lr1q067yOEwKRJk/DTTz/h+fPnqF69Ov73v/8hICAgp7GJiIiogMvxbiaNRpOjR06LDAAkJyejfPnyWLhwYbbzZ82ahblz52LhwoU4e/YsihYtisaNGyMpKSnH70FEREQFW66OmQkNDUVqamqW8Tdv3iA0NDTHr9O8eXNMnToV7du3zzJPCIH58+dj7NixaN++PcqWLYtVq1YhJSUFa9euzU1sIiIiKoByVWZ69eqFhISELONJSUno1avXvw4FAHfu3EFcXByaNGmiHTM3N0e9evVw8uTJdz4vNTUViYmJOg8iIiIquHJVZoQQOhfKy3T//n3Y29v/61AAEBcXBwAoUqSIzniRIkW087ITEhICe3t77cPd3T1P8hAREZEyfdQVgCtWrAhJkiBJEho2bAgTk/97ekZGBu7cuYNmzZrlacB/lqZ3FalMY8aMwbBhw7TTiYmJLDREREQF2EeVmcwzjS5cuICmTZvCxsZGO8/MzAxeXl74z3/+kyfBihYtCuDtFhpXV1fteHx8fJatNX9nbm4Oc3PzPMlAREREyvdRZWbChAkAAC8vL3Ts2BEWFhb5EgoAvL29UbRoURw4cAAVK1YE8PYA4/DwcMycOTPf3peIiIjUJVc3muzRowcAICIiAlFRUZAkCf7+/qhcufJHvc7Lly9x69Yt7fSdO3dw4cIFODk5wcPDA9988w2mT5+OkiVLomTJkpg+fTqsrKzQpUuX3MQmIiLKM5VH5vzsXX2S0t/g70ev1h+3HsLETLY82Tn3fd7ekDpXZebBgwfo1KkTTpw4AQcHBwDAixcvUKtWLaxbty7Hx6hERESgQYMG2unMY1169OiBlStX4ttvv8WrV68wYMAA7UXz9u/fD1tb29zEJiIiogIo16dmp6WlISoqCs+ePcOzZ88QFRUFIQR69+6d49epX78+hBBZHitXrgTw9uDfiRMn4uHDh3j9+jXCw8NRtmzZ3EQmIiKiAipXW2aOHTuGkydPws/PTzvm5+eHBQsWoHbt2nkWjoiIiOhDcrVlxsPDA2lpaVnG09PTUaxYsX8dioiIiCinclVmZs2ahUGDBiEiIgJCCABvj38ZMmQIZs+enacBiYiIiN4nV7uZevbsiZSUFFSvXl174bz09HSYmJggODgYwcHB2mWfPXuWN0mJiIiIspGrMjN//vw8jkFERESUO//qOjNEREREcsvVMTMAEB0dje+++w6dO3dGfHw8AGDv3r24evVqnoUjIiIi+pBclZnw8HAEBgbi9OnT2LJlC16+fAkAuHTpkvaWB0RERET6kKsyM3r0aEydOhUHDhyAmdn/XSK5QYMGOHXqVJ6FIyIiIvqQXJWZy5cvo127dlnGCxcujKdPn/7rUEREREQ5lasy4+DggIcPH2YZP3/+PC+aR0RERHqVqzLTpUsXjBo1CnFxcZAkCRqNBidOnMCIESPQvXve3gmTiIiI6H1yVWamTZsGDw8PFCtWDC9fvkSZMmVQt25d1KpVC999911eZyQiIiJ6p1xdZ8bU1BRr1qzB5MmTcf78eWg0GlSsWBElS5bM63xERERE75WrMpOpRIkSKFGiRF5lISIiIvpoOS4zw4YNy/GLzp07N1dhiIiIiD5WjsvM+fPndabPnTuHjIwM+Pn5AQBu3rwJY2NjVK5cOW8TEhEREb1HjsvMkSNHtP+eO3cubG1tsWrVKjg6OgIAnj9/jl69euGTTz7J+5RERERE75Crs5nmzJmDkJAQbZEBAEdHR0ydOhVz5szJs3BEREREH5KrMpOYmIhHjx5lGY+Pj0dSUtK/DkVERESUU7kqM+3atUOvXr2wadMm3L9/H/fv38emTZvQu3dvtG/fPq8zEhEREb1Trk7NXrJkCUaMGIEvvvgCaWlpb1/IxAS9e/fG999/n6cBiYiIiN4nV2XGysoKixYtwvfff4/o6GgIIeDr6wtra2ud5e7fvw83NzcYGeVqAxARERHRB/2ri+ZZW1ujXLly75xfpkwZXLhwAT4+Pv/mbYiIiIjeKV83mQgh8vPliYiIiPK3zBARERHlN5YZIiIiUjWWGSIiIlK1fC0zkiTl58sTERER8QBgIiIiUrdclZng4OBsb1uQnJyM4OBg7fS1a9fg6emZ+3REREREH5CrMrNq1Sq8evUqy/irV68QGhqqnXZ3d4exsXHu0xERERF9wEeVmcTERCQkJEAIgaSkJCQmJmofz58/x549e+Di4pKnAdPT0/Hdd9/B29sblpaW8PHxweTJk6HRaPL0fYiIiEidPuoKwA4ODpAkCZIkoVSpUlnmS5KESZMm5Vk4AJg5cyaWLFmCVatWISAgABEREejVqxfs7e0xZMiQPH0vIiIiUp+PKjNHjhyBEAKffvopNm/eDCcnJ+08MzMzeHp6ws3NLU8Dnjp1CkFBQWjZsiUAwMvLC+vWrUNERESevg8RERGp00eVmXr16iE9PR3du3dHlSpV4O7unl+5tOrUqYMlS5bg5s2bKFWqFC5evIjjx49j/vz52S6fmpqK1NRU7XRiYmK+ZyQiIiL5fPQBwCYmJti8eTMyMjLyI08Wo0aNQufOnVG6dGmYmpqiYsWK+Oabb9C5c+dslw8JCYG9vb32oY/CRURERPLJ1dlMDRs2RFhYWB5Hyd6GDRvw66+/Yu3atYiMjMSqVaswe/ZsrFq1Ktvlx4wZg4SEBO0jNjZWLzmJiIhIHh+1mylT8+bNMWbMGFy5cgWVK1eGtbW1zvw2bdrkSTgAGDlyJEaPHo1OnToBAAIDA3Hv3j2EhISgR48eWZY3NzeHubl5nr0/ERERKVuuykz//v0BAHPnzs0yT5KkPN0FlZKSAiMj3Q1IxsbGPDWbiIiIAOSyzOizSLRu3RrTpk2Dh4cHAgICcP78ecydO1fnSsNERERkuHJVZv7u9evXsLCwyIss2VqwYAHGjRuHAQMGID4+Hm5ubujbty/Gjx+fb+9JRERE6pGrA4AzMjIwZcoUFCtWDDY2Nrh9+zYAYNy4cVi+fHmeBrS1tcX8+fNx7949vHr1CtHR0Zg6dSrMzMzy9H2IiIhInXJVZqZNm4aVK1di1qxZOqUiMDAQP//8c56FIyIiIvqQXJWZ0NBQ/PTTT+jatavOjSTLlSuH69ev51k4IiIiog/JVZl58OABfH19s4xrNBqkpaX961BEREREOZWrMhMQEIBjx45lGd+4cSMqVqz4r0MRERER5VSuzmaaMGECunXrhgcPHkCj0WDLli24ceMGQkNDsWvXrrzOSERERPROudoy07p1a2zYsAF79uyBJEkYP348oqKisHPnTjRu3DivMxIRERG9U66vM9O0aVM0bdo0L7MQERERfbRcbZnp1asXDh06BCFEXuchIiIi+ii5KjNPnz5Fy5YtUbx4cQwfPhznz5/P61xEREREOZKrMrNjxw7ExcVhwoQJOHfuHKpUqYIyZcpg+vTpuHv3bh5HJCIiInq3XJUZAHBwcMBXX32FsLAw3Lt3D7169cLq1auzvf4MERERUX7JdZnJlJaWhoiICJw+fRp3795FkSJF8iIXERERUY7kuswcOXIEX375JYoUKYIePXrA1tYWO3fuRGxsbF7mIyIiInqvXJ2aXbx4cTx9+hRNmzbF0qVL0bp1a1hYWOR1NiIiIqIPylWZGT9+PD777DM4OjrmdR4iIiKij5Kr3UxfffUVHB0dcevWLezbtw+vXr0CAF53hoiIiPQu19eZadiwIUqVKoUWLVrg4cOHAIA+ffpg+PDheRqQiIiI6H1yVWaGDh0KU1NTxMTEwMrKSjvesWNH7N27N8/CEREREX1Iro6Z2b9/P/bt24fixYvrjJcsWRL37t3Lk2BEREREOZGrLTPJyck6W2QyPXnyBObm5v86FBEREVFO5arM1K1bF6GhodppSZKg0Wjw/fffo0GDBnkWjoiIiD6OMDZFQrnO2ocwNpU7Ur7L1W6m2bNno169eoiIiMCbN2/w7bff4urVq3j27BlOnDiR1xmJiIgopyQJwsRM7hR69dFbZtLS0jBgwADs2LED1apVQ+PGjZGcnIz27dvj/PnzKFGiRH7kJCIiIsrWR2+ZMTU1xZUrV+Ds7IxJkyblRyYiIiKiHMvVMTPdu3fH8uXL8zoLERER0UfL1TEzb968wc8//4wDBw6gSpUqsLa21pk/d+7cPAlHRERE9CG5KjNXrlxBpUqVAAA3b97UmSdJ0r9PRURERJRDuSozR44cyescRERERLmSq2NmiIiIiJSCZYaIiIhUjWWGiIiIVI1lhoiIiFRNFWXmwYMH+OKLL+Ds7AwrKytUqFAB586dkzsWERERKUCuzmbSp+fPn6N27dpo0KABfv/9d7i4uCA6OhoODg5yRyMiIiIFUHyZmTlzJtzd3bFixQrtmJeXl3yBiIiISFEUv5tpx44dqFKlCj777DO4uLigYsWKWLZs2TuXT01NRWJios6DiIiICi7Fl5nbt29j8eLFKFmyJPbt24d+/fph8ODBCA0NzXb5kJAQ2Nvbax/u7u56TkxERET6pPgyo9FoUKlSJUyfPh0VK1ZE37598eWXX2Lx4sXZLj9mzBgkJCRoH7GxsXpOTERERPqk+DLj6uqKMmXK6Iz5+/sjJiYm2+XNzc1hZ2en8yAiIqKCS/Flpnbt2rhx44bO2M2bN+Hp6SlTIiIiIlISxZeZoUOH4o8//sD06dNx69YtrF27Fj/99BMGDhwodzQiIiJSAMWXmapVq2Lr1q1Yt24dypYtiylTpmD+/Pno2rWr3NGIiIhIARR/nRkAaNWqFVq1aiV3DCIiyoYQAsnJydppa2trSJIkYyIyNKooM0REpFzJyckICgrSTm/fvh02NjYyJiJDo/jdTERERETvwzJDREREqsYyQ0RERKrGMkNERESqxjJDREREqsazmVSApz0SERG9G8uMCvC0RyIiondjmSEiUpHKI0PljpCFlP4G9n+brj9uPYSJmWx53uXc993ljkD5hMfMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGq8aJ5RET0rwhjUySU66wzTaRPLDNERPTvSJIir/hLhoO7mYiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVWGaIiIhI1VhmiIiISNVYZoiIiEjVVFVmQkJCIEkSvvnmG7mjEBERkUKopsycPXsWP/30E8qVKyd3FCIiIlIQVZSZly9fomvXrli2bBkcHR3ljkNEREQKoooyM3DgQLRs2RKNGjX64LKpqalITEzUeRAREVHBZSJ3gA9Zv349IiMjcfbs2RwtHxISgkmTJuVzKiIiIlIKRW+ZiY2NxZAhQ/Drr7/CwsIiR88ZM2YMEhIStI/Y2Nh8TklERERyUvSWmXPnziE+Ph6VK1fWjmVkZODo0aNYuHAhUlNTYWxsrPMcc3NzmJub6zsqERERyUTRZaZhw4a4fPmyzlivXr1QunRpjBo1KkuR+bcqjwzN09fLK1L6G9j/bbr+uPUQJmay5cnOue+7yx2BiIgMlKLLjK2tLcqWLaszZm1tDWdn5yzjREREZJgUfcwMERER0YcoestMdsLCwuSOQERERArCLTNERESkaiwzREREpGosM0RERKRqLDNERESkaiwzREREpGosM0RERKRqLDNERESkaiwzREREpGosM0RERKRqLDNERESkaiwzREREpGosM0RERKRqLDNERESkaiwzREREpGosM0RERKRqLDNERESkaiZyByAiyg0hBJKTk7XT1tbWkCRJxkREJBeWGSJSpeTkZAQFBWmnt2/fDhsbGxkTEZFcuJuJiIiIVI1lhoiIiFSNu5mI6L0qjwyVO0K2pPQ3sP/bdP1x6yFMzGTL8y7nvu8udwSiAo9bZoiIiEjVWGaIiIhI1bibSQWEsSkSynXWmSYiIqK3WGbUQJIUeSwAkZxY8okoE8sMEakTSz4R/X88ZoaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFRN8WUmJCQEVatWha2tLVxcXNC2bVvcuHFD7lhERESkEIovM+Hh4Rg4cCD++OMPHDhwAOnp6WjSpAmSk5PljkZEREQKoPiL5u3du1dnesWKFXBxccG5c+dQt25dmVIRERGRUii+zPxTQkICAMDJySnb+ampqUhNTdVOJyYm6iUXERERyUPxu5n+TgiBYcOGoU6dOihbtmy2y4SEhMDe3l77cHd313NKIiIi0idVlZmvv/4aly5dwrp16965zJgxY5CQkKB9xMbG6jEhERER6ZtqdjMNGjQIO3bswNGjR1G8ePF3Lmdubg5zc3M9JiMiIiI5Kb7MCCEwaNAgbN26FWFhYfD29pY7EhERESmI4svMwIEDsXbtWmzfvh22traIi4sDANjb28PS0lLmdERERCQ3xR8zs3jxYiQkJKB+/fpwdXXVPjZs2CB3NCIiIlIAxW+ZEULIHYGIiIgUTPFbZoiIiIjeh2WGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVE0VZWbRokXw9vaGhYUFKleujGPHjskdiYiIiBRC8WVmw4YN+OabbzB27FicP38en3zyCZo3b46YmBi5oxEREZECKL7MzJ07F71790afPn3g7++P+fPnw93dHYsXL5Y7GhERESmAosvMmzdvcO7cOTRp0kRnvEmTJjh58qRMqYiIiEhJTOQO8D5PnjxBRkYGihQpojNepEgRxMXFZfuc1NRUpKamaqcTEhIAAImJiR98v4zUV/8irWHLyff3Y/Cz+Hfy8vPgZ/HvcN1QDn4WypGTzyJzGSHEh19QKNiDBw8EAHHy5Emd8alTpwo/P79snzNhwgQBgA8++OCDDz74KACP2NjYD/YFRW+ZKVSoEIyNjbNshYmPj8+ytSbTmDFjMGzYMO20RqPBs2fP4OzsDEmS8jVvfkpMTIS7uztiY2NhZ2cndxyDxs9COfhZKAc/C2UpCJ+HEAJJSUlwc3P74LKKLjNmZmaoXLkyDhw4gHbt2mnHDxw4gKCgoGyfY25uDnNzc50xBweH/IypV3Z2dqr9wSxo+FkoBz8L5eBnoSxq/zzs7e1ztJyiywwADBs2DN26dUOVKlVQs2ZN/PTTT4iJiUG/fv3kjkZEREQKoPgy07FjRzx9+hSTJ0/Gw4cPUbZsWezZsweenp5yRyMiIiIFUHyZAYABAwZgwIABcseQlbm5OSZMmJBlFxrpHz8L5eBnoRz8LJTF0D4PSYicnPNEREREpEyKvmgeERER0YewzBAREZGqscwQERGRqrHMEBERkaqxzBAREZGqscwo1KtXr5CSkqKdvnfvHubPn4/9+/fLmMpwjRs3DhkZGVnGExIS0LlzZxkSGS6uG0T0TywzChUUFITQ0FAAwIsXL1C9enXMmTMHQUFBWLx4sczpDE9oaChq166N6Oho7VhYWBgCAwNx9+5d+YIZIK4bynPr1i3s27cPr169vYs0r/hB+qaKi+YZosjISMybNw8AsGnTJhQpUgTnz5/H5s2bMX78ePTv31/mhIbl0qVL6Nu3LypUqIC5c+fi5s2b+OGHHzB69GhMmDBB7ngGheuGcjx9+hQdO3bE4cOHIUkS/vzzT/j4+KBPnz5wcHDAnDlz5I5Y4LVv3z7Hy27ZsiUfk8iLZUahUlJSYGtrCwDYv38/2rdvDyMjI9SoUQP37t2TOZ3hsbe3x/r16zF27Fj07dsXJiYm+P3339GwYUO5oxkcrhvKMXToUJiYmCAmJgb+/v7a8Y4dO2Lo0KEsM3qQ0xsxFnQsMwrl6+uLbdu2oV27dti3bx+GDh0KAIiPj1f1HVDVbMGCBZg3bx46d+6Mc+fOYfDgwVi7di3Kly8vdzSDwnVDOfbv3499+/ahePHiOuMlS5ZksdSTFStWyB1BEXjMjEKNHz8eI0aMgJeXF6pXr46aNWsCePvLo2LFijKnMzzNmzfHpEmTEBoaijVr1uD8+fOoW7cuatSogVmzZskdz6Bw3VCO5ORkWFlZZRl/8uSJwdwTSIkeP36M48eP48SJE3j8+LHccfSC92ZSsLi4ODx8+BDly5eHkdHb3nnmzBnY29vDz89P5nSGpXHjxli1ahXc3Nx0xnfv3o0+ffrg4cOHMiUzTFw3lKFly5aoVKkSpkyZAltbW1y6dAmenp7o1KkTNBoNNm3aJHdEg5KcnIxBgwYhNDQUGo0GAGBsbIzu3btjwYIF2RbPAkOQIvXq1UskJiZmGX/58qXo1auXDInoXR4/fix3BIPCdUM5rl69KgoXLiyaNWsmzMzMRIcOHYS/v78oUqSIuHXrltzxDM5XX30lfHx8xJ49e0RCQoJISEgQu3fvFiVKlBD9+vWTO16+4pYZhTI2NsbDhw/h4uKiM/7kyRMULVoU6enpMiUjkhfXDWWJi4vD4sWLce7cOWg0GlSqVAkDBw6Eq6ur3NEMTqFChbBp0ybUr19fZ/zIkSP4/PPPC/QuJx4ArDCJiYkQQkAIgaSkJFhYWGjnZWRkYM+ePVl+iVP+cHJyws2bN1GoUCE4OjpCkqR3Lvvs2TM9JjNMXDeUJS0tDU2aNMHSpUsxadIkueMQ3p7pV6RIkSzjLi4uOheaLIhYZhTGwcEBkiRBkiSUKlUqy3xJkviLQ0/mzZunPQV43rx57y0zlP+4biiLqakprly5wvVCQWrWrIkJEyYgNDRUW/ZfvXqFSZMmaQ+UL6i4m0lhwsPDIYTAp59+is2bN8PJyUk7z8zMDJ6enlkOQiUyBFw3lGf48OEwNTXFjBkz5I5CAK5cuYJmzZrh9evXKF++PCRJwoULF2BhYYF9+/YhICBA7oj5hmVGoe7duwcPDw/+1aMQ7zpO4+nTp3Bxccn2vk2UP7huKEfmmTO+vr6oUqUKrK2tdebPnTtXpmSG69WrV/j1119x/fp1CCFQpkwZdO3aFZaWlnJHy1fczaRQhw8fho2NDT777DOd8Y0bNyIlJQU9evSQKZlhelfnT01NhZmZmZ7TGDauG8px5coVVKpUCQBw8+ZNnXksm/KwtLTEl19+KXcMvWOZUagZM2ZgyZIlWcZdXFzw1Vdf8Re2nvz4448A3v5i/vnnn2FjY6Odl5GRgaNHj6J06dJyxTNIXDeU48iRI3JHoH+Ijo7G/PnzERUVBUmS4O/vjyFDhqBEiRJyR8tXLDMKde/ePXh7e2cZ9/T0RExMjAyJDFPmDQ2FEFiyZAmMjY2188zMzODl5ZXtf6yUf7huKNP9+/chSRKKFSsmdxSDtW/fPrRp0wYVKlRA7dq1IYTAyZMnERAQgJ07d6Jx48ZyR8w3LDMK5eLigkuXLsHLy0tn/OLFi3B2dpYnlAG6c+cOAKBBgwbYsmULHB0dZU5EXDeUQ6PRYOrUqZgzZw5evnwJALC1tcXw4cMxduxY7dWZST9Gjx6NoUOHZjkge/To0Rg1ahTLDOlfp06dMHjwYNja2qJu3boA3p7NMWTIEHTq1EnmdIYnc3P6mzdvcOfOHZQoUQImJlx95MB1QznGjh2L5cuXY8aMGdotASdOnMDEiRPx+vVrTJs2Te6IBiUqKgq//fZblvHg4GDMnz9f/4H0Se/XHKYcSU1NFZ9//rmQJEmYmpoKU1NTYWxsLHr16iVSU1PljmdwUlJSRHBwsDA2NhbGxsYiOjpaCCHEoEGDREhIiMzpDAvXDeVwdXUV27dvzzK+bds24ebmJkMiw1a8eHHx22+/ZRnfsGGDcHd3lyGR/vBPS4UyMzPDhg0bMGXKFFy8eBGWlpYIDAyEp6en3NEM0ujRo3Hx4kWEhYWhWbNm2vFGjRphwoQJGD16tIzpDAvXDeV49uxZtgfAly5dmlfFlsGXX36Jr776Crdv30atWrUgSRKOHz+OmTNnYvjw4XLHy1e8zgxRDnh6emLDhg2oUaMGbG1tcfHiRfj4+ODWrVuoVKkSEhMT5Y5IpHfVq1dH9erVtWf9ZRo0aBDOnj2LP/74Q6ZkhkkIgfnz52POnDn466+/AABubm4YOXIkBg8eXKBPl2eZUbD79+9jx44diImJwZs3b3Tm8WJU+mVlZYUrV67Ax8dHp8xcvHgRdevWRUJCgtwRDQrXDWUIDw9Hy5Yt4eHhgZo1a0KSJJw8eRKxsbHYs2cPPvnkE7kjGqykpCQA0N6SpaDjbiaFOnToENq0aQNvb2/cuHEDZcuWxd27dyGE0F6kivSnatWq2L17NwYNGgTg/y4ItmzZsgJ/zxOl4bqhHPXq1cONGzewaNEi7RVn27dvjwEDBvDWEjKKj4/HjRs3IEkS/Pz8ULhwYbkj5T/5Dteh96lataoYN26cEEIIGxsbER0dLZKSkkSbNm3EokWLZE5neE6cOCFsbW1Fv379hIWFhRgyZIho1KiRsLa2FhEREXLHMyhcN4iyl5CQIL744gthbGwsJEkSkiQJExMT0bVrV/HixQu54+UrXgRAoaKiorRXMjUxMcGrV69gY2ODyZMnY+bMmTKnMzy1atXCiRMnkJKSghIlSmD//v0oUqQITp06hcqVK8sdz6Bw3VCOFStWYOPGjVnGN27ciFWrVsmQyLD16dMHp0+fxu7du/HixQskJCRg165diIiIKPC3OOBuJoWytrZGamoqgLcHcEVHR2vvePrkyRM5oxmswMBA/oJWAK4bysFbSyjL7t27sW/fPtSpU0c71rRpUyxbtkznLMyCiGVGoWrUqIETJ06gTJkyaNmyJYYPH47Lly9jy5YtqFGjhtzxDJJGo8GtW7cQHx8PjUajMy/z4m2U/7huKAdvLaEszs7OsLe3zzJub29f4K9ezjKjUHPnztVeHnzixIl4+fIlNmzYAF9fX+39gkh//vjjD3Tp0gX37t3LcgdtSZKQkZEhUzLDw3VDOXhrCWX57rvvMGzYMISGhsLV1RUAEBcXh5EjR2LcuHEyp8tfPDVbgTIyMnD8+HGUK1euwLdptahQoQJKlSqFSZMmwdXVNcv1GrL7a4jyHtcNZfn222/x22+/YcWKFTq3lggODkaHDh0we/ZsmRMalooVK+LWrVtITU2Fh4cHACAmJgbm5uYoWbKkzrKRkZFyRMw3LDMKZWFhgaioqGw34ZL+WVtb4+LFi/D19ZU7isHjuqEcb968Qbdu3bBx40btvco0Gg26d++OJUuWwMzMTOaEhmXixIk5vjDehAkT8jmNfnE3k0IFBgbi9u3b/IWtENWrV8etW7dYZhSA64ZyZN5aYurUqbhw4QJvLSGziRMnyh1BNtwyo1D79+/HqFGjMGXKFFSuXBnW1tY68+3s7GRKZjguXbqk/Xd0dDS+++47jBw5EoGBgTA1NdVZtly5cvqOZ7C4bijTiRMnUKVKFZibm8sdxWD5+Pjg7NmzWY5XevHiBSpVqoTbt2/LlCz/scwolJHR/10C6O+bDYUQPOBUT4yMjCBJUpYDfjNlzuPnoV9cN5TJzs4OFy5cgI+Pj9xRDJaRkRHi4uLg4uKiM/7o0SO4u7tnufVHQcLdTAp15MgRuSMYvDt37sgdgbLBdUOZ+HexfHbs2KH99759+3ROSMjIyMChQ4cK/G5ZlhmF8vb2hru7e5aDuYQQiI2NlSmVYfn7fv+jR4+iVq1a2oMcM6Wnp+PkyZM8RkCPuG4Q6Wrbti2At1sq/3mhQlNTU3h5eWHOnDkyJNMf7mZSKGNjYzx8+DDL5sKnT5/CxcWFm9L1jJ+HcvCzUKa1a9ciKCgoyzFMpD/e3t44e/YsChUqJHcUveOWGYXK3P//Ty9fvoSFhYUMiQzbuz6Pp0+f8pe3nnHdUKYuXbrIHcHg/X3X+OvXrw1qfWCZUZhhw4YBeLu5cNy4cbCystLOy8jIwOnTp1GhQgWZ0hme9u3bA3j7efTs2VPnTI2MjAxcunQJtWrVkiueQeG6oSwHDhzA8ePHUa9ePXz66ac4evQoQkJCkJqaim7duqFXr15yRzQ4Go0G06ZNw5IlS/Do0SPcvHkTPj4+GDduHLy8vNC7d2+5I+YblhmFOX/+PIC3f31evnxZ56JTZmZmKF++PEaMGCFXPIOTeSCdEAK2trawtLTUzjMzM0ONGjUK/N1olYLrhnL8+uuv6NWrF8qVK4e5c+diwYIFGDp0KDp06AAhBPr16wdbW1t06NBB7qgGZerUqVi1ahVmzZql83spMDAQ8+bNK9BlBoIUqWfPniIhIUHuGPT/TZw4Ubx8+VLuGCS4bihBhQoVxA8//CCEEOLgwYPC0tJSzJ07Vzt/zpw5onbt2nLFM1glSpQQBw8eFEIIYWNjI6Kjo4UQQkRFRQkHBwc5o+U7HgBMREQfxcbGBpcvX9ae7mtmZoaIiAjtxSNv3LiB2rVr48mTJ3LGNDiWlpa4fv06PD09YWtri4sXL8LHxwfXrl1DtWrVtDdoLYi4m0mhkpOTMWPGDBw6dAjx8fHQaDQ68wvylRyV6NGjRxgxYoT28/jn3wA8g0Z/uG7Iz9TUVOcCbObm5rCxsdFOm5mZ4dWrV3JEM2gBAQE4duxYlktFbNy4ERUrVpQplX6wzChUnz59EB4ejm7dumV7l2bSr549eyImJgbjxo3j5yEzrhvy8/X1xfXr1+Hn5wcAePDgAWxtbbXzo6OjUbx4cbniGawJEyagW7duePDgATQaDbZs2YIbN24gNDQUu3btkjtevuJuJoVycHDA7t27Ubt2bbmjEABbW1scO3aMZ8soANcN+W3duhXOzs6oW7dutvNnzJiB5ORkTJkyRc/JaN++fZg+fTrOnTsHjUaDSpUqYfz48WjSpInc0fIVt8wolKOjI5ycnOSOQf+fu7s7L9euEFw35NeuXbv3zh89erSektDfxcbGomnTpmjatGmWeX/88Qdq1KghQyr9MPrwIiSHKVOmYPz48UhJSZE7CgGYP38+Ro8ejbt378odxeBx3VCOSZMmITo6Wu4Y9P81btwYT58+zTJ+4sQJNGvWTIZE+sPdTApVsWJFREdHQwgBLy8vmJqa6syPjIyUKZlhcnR0REpKCtLT02FlZZXl83j27JlMyQwP1w3lKFeuHK5evYqqVaviiy++QMeOHVG4cGG5YxmsL7/8EpGRkQgLC9Mew3T06FG0bt0aEydOxNChQ2VOmH+4m0mhMm8cRsowb948HmiqEFw3lOPSpUu4evUq1qxZg7lz52LYsGFo1KgRvvjiC7Rt21bnKs2U/3766Sd89tlnaNmyJfbv349Tp06hTZs2mDp1KoYMGSJ3vHzFLTNERJQnTpw4gbVr12Ljxo14/fo1EhMT5Y5kcNLS0tCyZUskJyfj0qVLCAkJwddffy13rHzHLTMKd+7cOURFRUGSJJQpU6bAXytAqerXr4/g4GB89tlnOrc0IPlw3VAea2trWFpawszMDElJSXLHMQiXLl3KMjZhwgR07twZX3zxBerWratdJvOihgURt8woVHx8PDp16oSwsDA4ODhACIGEhAQ0aNAA69ev535pPRs+fDjWrFmDV69e4fPPP0fv3r0L9JkBSsZ1Q1nu3LmDtWvXYs2aNbh58ybq1q2LLl264LPPPtPe24zyj5GRESRJ0jnb8u/Tmf+WJKlAX9yTZUahOnbsiOjoaKxevRr+/v4AgGvXrqFHjx7w9fXFunXrZE5oeDIyMrBr1y6sWLECe/bsga+vL4KDg9GtWzcUKVJE7ngGg+uGctSsWRNnzpxBYGAgunbtii5duqBYsWJyxzIo9+7dy/Gy/7wycEHCMqNQ9vb2OHjwIKpWraozfubMGTRp0gQvXryQJxgBAB4/foylS5di2rRpyMjIQIsWLTB48GB8+umnckcr8LhuKMd///tfdO3aFQEBAXJHIQPH68wolEajyXLKKfD2nij/vBcN6deZM2cwfvx4zJ49Gy4uLhgzZgxcXFzQunVrjBgxQu54BR7XDeWYPn26tsgMGDCAN5aUWUhICH755Zcs47/88gtmzpwpQyL94ZYZhQoKCsKLFy+wbt06uLm5AXh7/5OuXbvC0dERW7dulTmhYYmPj8fq1auxYsUK/Pnnn2jdujX69OmDpk2bak/ZPnjwINq2bVug70yrBFw3lMnOzg4XLlyAj4+P3FEMlpeXF9auXYtatWrpjJ8+fRqdOnXCnTt3ZEqW/3g2k0ItXLgQQUFB8PLygru7OyRJQkxMDAIDA/Hrr7/KHc/gFC9eHCVKlEBwcDB69uyZ7UGm1apVy7Lrg/Ie1w1l4t/F8ouLi4Orq2uW8cKFC+Phw4cyJNIflhmFcnd3R2RkJA4cOIDr169DCIEyZcqgUaNGckczSAcPHkTlypVhbW0N4O1Bd1u3boW/v7/2Pih2dnY4cuSInDENAtcNouy5u7vjxIkT8Pb21hk/ceKEditmQcXdTEQ50KRJE7Rv3x79+vXDixcv4OfnBzMzMzx58gRz585F//795Y5IRAZu5syZ+P777/H9999rT0Y4dOgQvv32WwwfPhxjxoyROWH+YZlRqMGDB8PX1xeDBw/WGV+4cCFu3bqF+fPnyxPMQBUqVAjh4eEICAjAzz//jAULFuD8+fPYvHkzxo8fj6ioKLkjGgyuG8qSkZGBrVu3ai9gWLp0abRt2xYmJtzwr29CCIwePRo//vgj3rx5AwCwsLDAqFGjMH78eJnT5S+WGYUqVqwYduzYgcqVK+uMR0ZGok2bNrh//75MyQyTlZUVrl+/Dg8PD3z++ecICAjAhAkTEBsbCz8/P97BWY+4bijHlStXEBQUhLi4OPj5+QEAbt68icKFC2PHjh0IDAyUOaFhevnyJaKiomBpaYmSJUvC3Nxc7kj5jqdmK9TTp0+zvXqmnZ0dT3+Uga+vL7Zt24bY2Fjs27cPTZo0AfD2LCc7OzuZ0xkWrhvK0adPHwQEBOD+/fuIjIxEZGQkYmNjUa5cOXz11VdyxzNYNjY2cHV1haOjo0EUGYBlRrF8fX2xd+/eLOO///47T32Uwfjx4zFixAh4eXmhevXqqFmzJgBg//79vCeQnnHdUI6LFy8iJCQEjo6O2jFHR0dMmzYNFy5ckC+YgdJoNJg8eTLs7e3h6ekJDw8PODg4YMqUKQX+GkzcqalQw4YNw9dff43Hjx/rHMg1Z84cHhMggw4dOqBOnTp4+PAhypcvrx1v2LAh2rVrJ2Myw8N1Qzn8/Pzw6NGjLFcAjo+Ph6+vr0ypDNfYsWOxfPlyzJgxA7Vr14YQAidOnMDEiRPx+vVrTJs2Te6I+UeQYi1atEgUK1ZMSJIkJEkS3t7eYtWqVXLHIpId1w1l2L17twgICBAbN24UsbGxIjY2VmzcuFEEBgaK3bt3i4SEBO2D8p+rq6vYvn17lvFt27YJNzc3GRLpDw8AVoHHjx/D0tISNjY2ckchUhSuG/IyMvq/IxUyr4Qt/na35szpgn7HZqWwsLDApUuXUKpUKZ3xGzduoEKFCnj16pVMyfIfdzOpwPLly9GvXz+5YxApDtcNefEikcpSvnx5LFy4ED/++KPO+MKFC3V2jxdE3DKjArznCVH2uG4Q/Z+jR4+iRYsW8PDwQM2aNSFJEk6ePInY2Fjs2bMHn3zyidwR8w23zKgA+yZR9rhuKENKSgpiYmK0F2rLVK5cOZkSGZ60tDRMmDAB+/fvx+7du7W3+mjfvj0GDBhQ4G9nwDJDRES58vjxY/Tq1Qu///57tvN5nIz+mJqa4sqVKyhcuHDBPmvpHXidGRW4du0avLy85I5BpDjXrl2Dp6en3DEM1jfffIPnz5/jjz/+gKWlJfbu3YtVq1ahZMmS2LFjh9zxDE737t2xfPlyuWPIgltmFOzFixfYtGkToqOjMXLkSDg5OSEyMhJFihRBsWLF5I5HJKs3b95AkiQ8ePBAZ9zDw0OmRIbn8OHD2L59O6pWrQojIyN4enqicePGsLOzQ0hICFq2bCl3RIPy5s0b/Pzzzzhw4ACqVKkCa2trnflz586VKVn+Y5lRqEuXLqFRo0awt7fH3bt38eWXX8LJyQlbt27FvXv3EBoaKndEIln8+eefCA4OxsmTJ3XGeQqw/iUnJ8PFxQUA4OTkhMePH6NUqVIIDAxEZGSkzOkMz5UrV1CpUiUAb++R9XeZp8oXVCwzCjVs2DD07NkTs2bNgq2trXa8efPm6NKli4zJiOTVs2dPmJiYYNeuXXB1dS3wv6SVzM/PDzdu3ICXlxcqVKiApUuXwsvLC0uWLIGrq6vc8QyOIZ8qzzKjUGfPnsXSpUuzjBcrVgxxcXEyJCJShgsXLuDcuXMoXbq03FEM3jfffIOHDx8CACZMmICmTZtizZo1MDMzw8qVK+UNRwaFZUahLCwskJiYmGX8xo0bKFy4sAyJiJShTJkyvDu2QnTt2lX774oVK+Lu3bu4fv06PDw8UKhQIRmTkaHh2UwKFRQUhMmTJyMtLQ3A2/2dMTExGD16NP7zn//InI5IPjNnzsS3336LsLAwPH36FImJiToP0p8///xTZ9rKygqVKlVikSG94xWAFSoxMREtWrTA1atXkZSUBDc3N8TFxaFmzZrYs2dPlqPUiQxF5v2A/nmsDA8A1j8jIyO4urqiXr16qFevHurXrw8/Pz+5Y5EBYplRuMOHDyMyMhIajQaVKlVCo0aN5I5EJKvw8PD3zq9Xr56ektCjR49w+PBhhIeHIywsDDdv3kSRIkW0xYb3zSJ9YZlRECcnJ9y8eROFChVCcHAwfvjhB50zmYiIlOzWrVuYOnUq1qxZA41Gw61kpDcsMwpiY2ODS5cuwcfHB8bGxoiLi+PBvkR4e92lsmXLwsjICJcuXXrvsrwfkP68fPkSx48fR1hYGMLDw3HhwgX4+/ujfv36qFevHoKCguSOSAaCZUZBGjdujEePHqFy5cpYtWoVOnbsCEtLy2yX/eWXX/Scjkg+RkZGiIuLg4uLC4yMjCBJUrY3meQxM/plamoKJycndOvWDQ0aNECdOnVgb28vdywyQDw1W0F+/fVXzJs3D9HR0ZAkCQkJCXj9+rXcsYhkd+fOHe1Wyjt37sichjK1bNkSx48fx+rVqxEbG4uYmBjUr18f/v7+ckcjA8MtMwrl7e2NiIgIODs7yx2FiOi9Ll26hPDwcISHh+PYsWOQJAn169fH+vXr5Y5GBoJbZhSKf30S/Z+PuQNzmzZt8jEJZadcuXLIyMhAWloaUlNTsXfvXmzZskXuWGRAuGVGwZKTkxEeHo6YmBi8efNGZ97gwYNlSkWkf5nXlvkQHjOjX/PmzUNYWBiOHTuGpKQkVKhQQXtadt26dWFnZyd3RDIQLDMKdf78ebRo0QIpKSlITk6Gk5MTnjx5AisrK7i4uOD27dtyRyQiA1elShXUr1+f5YVkxzKjUPXr10epUqWwePFiODg44OLFizA1NcUXX3yBIUOGoH379nJHJJLd69evYWFhIXcMIpIZ782kUBcuXMDw4cNhbGwMY2NjpKamwt3dHbNmzcJ///tfueMRySYjIwNTpkxBsWLFYGNjo91KOW7cOCxfvlzmdIZl7969OH78uHb6f//7HypUqIAuXbrg+fPnMiYjQ8Myo1Cmpqbae88UKVIEMTExAAB7e3vtv4kM0bRp07By5UrMmjULZmZm2vHAwED8/PPPMiYzPCNHjtTe3PPy5csYPnw4WrRogdu3b2PYsGEypyNDwrOZFKpixYqIiIhAqVKl0KBBA4wfPx5PnjzB6tWrERgYKHc8ItmEhobip59+QsOGDXXu/VOuXDlcv35dxmSG586dOyhTpgwAYPPmzWjVqhWmT5+OyMhItGjRQuZ0ZEi4ZUahpk+fDldXVwDAlClT4OzsjP79++Px48dYunSpzOmI5PPgwQP4+vpmGddoNEhLS5MhkeEyMzNDSkoKAODgwYNo0qQJgLf3mcvcYkOkD9wyo1ABAQHay7UXLlwYixYtwtatW1GmTBlUqFBB3nBEMgoICMCxY8fg6empM75x40ZUrFhRplSGqU6dOhg2bBhq166NM2fOYMOGDQCAmzdvonjx4jKnI0PCMqNQQUFBaN++Pfr164cXL16gRo0aMDU1xZMnTzB37lz0799f7ohEspgwYQK6deuGBw8eQKPRYMuWLbhx4wZCQ0Oxa9cuueMZlIULF2LAgAHYtGkTFi9ejGLFigEAfv/9dzRr1kzmdGRIeGq2QhUqVAjh4eEICAjAzz//jAULFuD8+fPYvHkzxo8fj6ioKLkjEslm3759mD59Os6dOweNRoNKlSph/Pjx2t0cRGRYuGVGoVJSUmBrawsA2L9/P9q3bw8jIyPUqFED9+7dkzkdkbyaNm2Kpk2byh3DICUmJmovjveh42J4ET3SF5YZhfL19cW2bdvQrl077Nu3D0OHDgUAxMfH8xcEEYCIiAhERUVBkiT4+/ujcuXKckcyCI6Ojnj48CFcXFzg4OCgvYTE3wkheGsJ0iuWGYUaP348unTpgqFDh6Jhw4aoWbMmgLdbaXiQIxmy+/fvo3Pnzjhx4gQcHBwAAC9evECtWrWwbt06uLu7yxuwgDt8+DCcnJwAAEeOHJE5DdFbPGZGweLi4vDw4UOUL19ee6O9M2fOwM7ODqVLl5Y5HZE8mjRpgsTERKxatQp+fn4AgBs3biA4OBjW1tbYv3+/zAmJSN9YZohIVSwtLXHy5MksWygjIyNRu3ZtvHr1SqZkhunFixc4c+YM4uPjodFodOZ1795dplRkaLibiYhUxcPDI9uL46Wnp2tPDSb92LlzJ7p27Yrk5GTY2trqHD8jSRLLDOkNrwBMRKoya9YsDBo0CBEREdoLS0ZERGDIkCGYPXu2zOkMy/DhwxEcHIykpCS8ePECz58/1z6ePXsmdzwyINzNRESq4ujoiJSUFKSnp8PE5O3G5cx/W1tb6yzL/1Dzl7W1NS5fvgwfHx+5o5CB424mIlKV+fPnyx2B/r+mTZsiIiKCZYZkxy0zRESUK8uXL8fkyZPRq1cvBAYGwtTUVGd+mzZtZEpGhoZlhohUJyMjA1u3btW5aF5QUJB2txPpR+YlI7LDi+aRPrHMEJGqXLlyBUFBQYiLi9NeZ+bmzZsoXLgwduzYgcDAQJkTEpG+scwQkarUqFEDLi4uWLVqFRwdHQEAz58/R8+ePREfH49Tp07JnNBwTJ48+Z3zJEnCuHHj9JiGDBnLDBGpiqWlJSIiIhAQEKAzfuXKFVStWpUXzdOjf164MC0tDXfu3IGJiQlKlCiByMhImZKRoeEOZiJSFT8/Pzx69ChLmYmPj4evr69MqQzT+fPns4wlJiaiZ8+eaNeunQyJyFBxywwRqcqePXvw7bffYuLEiahRowYA4I8//sDkyZMxY8YM1KlTR7ss7zAvjytXrqBVq1a4e/eu3FHIQLDMEJGq/P0MmszL52f+Gvv7NM+mkc/x48fRunVrPH/+XO4oZCC4m4mIVOXIkSNyR6D/78cff9SZFkLg4cOHWL16NZo1ayZTKjJE3DJDRES54u3trTNtZGSEwoUL49NPP8WYMWNga2srUzIyNCwzRKQ6x44dw9KlS3H79m1s3LgRxYoVw+rVq+Ht7a1zzAwRGQbeNZuIVGXz5s1o2rQpLC0tERkZidTUVABAUlISpk+fLnM6IpIDywwRqcrUqVOxZMkSLFu2TOdeQLVq1eJ1TYgMFMsMEanKjRs3ULdu3SzjdnZ2ePHihf4DEZHsWGaISFVcXV1x69atLOPHjx+Hj4+PDImISG4sM0SkKn379sWQIUNw+vRpSJKEv/76C2vWrMGIESMwYMAAueMRkQx4NhMRqc7YsWMxb948vH79GgBgbm6OESNGYMqUKTInIyI5sMwQkSqlpKTg2rVr0Gg0KFOmDGxsbOSOREQy4W4mIlKV0NBQREVFwcrKClWqVEG1atVgY2OD169fIzQ0VO54RCQDbpkhIlUxMjKCtbU1Vq5cif/85z/a8UePHsHNzY33YyIyQNwyQ0SqM2nSJHTr1g0TJ06UOwoRKQC3zBCRqhgZGSEuLg63b99Gu3btULt2baxevRqJiYncMkNkoLhlhohURZIkAECNGjVw+vRp3Lp1C7Vq1cLdu3flDUZEsmGZISJV+fvGZA8PD5w8eRJeXl5o3LixjKmISE4sM0SkKhMmTNA5DdvKygpbt27F0KFDs73NAREVfDxmhoiIiFTNRO4AREQf6+bNmwgLC0N8fDw0Go12XJIkjBs3TsZkRCQHbpkhIlVZtmwZ+vfvj0KFCqFo0aLaA4KBt2UmMjJSxnREJAeWGSJSFU9PTwwYMACjRo2SOwoRKQTLDBGpip2dHS5cuAAfHx+5oxCRQvBsJiJSlc8++wz79++XOwYRKQgPACYiVfH19cW4cePwxx9/IDAwEKampjrzBw8eLFMyIpILdzMRkap4e3u/c54kSbh9+7Ye0xCRErDMEBERkarxmBkiUqU3b97gxo0bSE9PlzsKEcmMZYaIVCUlJQW9e/eGlZUVAgICEBMTA+DtsTIzZsyQOR0RyYFlhohUZcyYMbh48SLCwsJgYWGhHW/UqBE2bNggYzIikgvPZiIiVdm2bRs2bNiAGjVq6Fz9t0yZMoiOjpYxGRHJhVtmiEhVHj9+DBcXlyzjycnJOuWGiAwHywwRqUrVqlWxe/du7XRmgVm2bBlq1qwpVywikhF3MxGRqoSEhKBZs2a4du0a0tPT8cMPP+Dq1as4deoUwsPD5Y5HRDLglhkiUpVatWrhxIkTSElJQYkSJbB//34UKVIEp06dQuXKleWOR0Qy4EXziIiISNW4m4mIVCcjIwNbt25FVFQUJEmCv78/goKCYGLCX2lEhohrPhGpypUrVxAUFIS4uDj4+fkBAG7evInChQtjx44dCAwMlDkhEekbdzMRkarUqFEDLi4uWLVqFRwdHQEAz58/R8+ePREfH49Tp07JnJCI9I1lhohUxdLSEhEREQgICNAZv3LlCqpWrYpXr17JlIyI5MKzmYhIVfz8/PDo0aMs4/Hx8fD19ZUhERHJjWWGiFRl+vTpGDx4MDZt2oT79+/j/v372LRpE7755hvMnDkTiYmJ2gcRGQbuZiIiVTEy+r+/wTKv/pv5a+zv05IkISMjQ/8BiUjveDYTEanKkSNH5I5ARArDLTNEpDovXrzA8uXLda4z07t3b9jb28sdjYhkwDJDRKoSERGBZs2awcLCAtWqVYMQAhEREXj16hX279+PSpUqyR2RiPSMZYaIVOWTTz6Br68vli1bpr3ib3p6Ovr06YPbt2/j6NGjMickIn1jmSEiVbG0tMT58+dRunRpnfFr166hSpUqSElJkSkZEcmFp2YTkarY2dkhJiYmy3hsbCxsbW1lSEREcmOZISJV6dixI3r37o0NGzYgNjYW9+/fx/r169GnTx907txZ7nhEJAOemk1EqjJ79mxIkoTu3bsjPT0dAGBqaor+/ftjxowZMqcjIjnwmBkiUqWUlBRER0dDCAFfX19YWVnJHYmIZMIyQ0RERKrGY2aIiIhI1VhmiIiISNVYZoiIiEjVWGaIyOCtXLkSDg4OcscgolziAcBEZPBevXqFpKQkuLi4yB2FiHKBZYaIDFpaWhpMTU3ljkFE/wJ3MxFRntq0aRMCAwNhaWkJZ2dnNGrUCMnJyQCAX375BQEBATA3N4erqyu+/vpr7fMSEhLw1VdfwcXFBXZ2dvj0009x8eJF7fyJEyeiQoUKWL16Nby8vGBvb49OnTohKSlJu8zevXtRp04dODg4wNnZGa1atUJ0dLR2/t27dyFJEn777TfUr18fFhYW+PXXX7PdzbR48WKUKFECZmZm8PPzw+rVq/PpO0ZE/xbLDBHlmYcPH6Jz584IDg5GVFQUwsLC0L59ewghsHjxYgwcOBBfffUVLl++jB07dsDX1xcAIIRAy5YtERcXhz179uDcuXOoVKkSGjZsiGfPnmlfPzo6Gtu2bcOuXbuwa9cuhIeH61z1Nzk5GcOGDcPZs2dx6NAhGBkZoV27dtBoNDo5R40ahcGDByMqKgpNmzbN8nVs3boVQ4YMwfDhw3HlyhX07dsXvXr1wpEjR/LpO0dE/4ogIsoj586dEwDE3bt3s8xzc3MTY8eOzfZ5hw4dEnZ2duL169c64yVKlBBLly4VQggxYcIEYWVlJRITE7XzR44cKapXr/7OPPHx8QKAuHz5shBCiDt37ggAYv78+TrLrVixQtjb22una9WqJb788kudZT777DPRokWLd74XEcmHW2aIKM+UL18eDRs2RGBgID777DMsW7YMz58/R3x8PP766y80bNgw2+edO3cOL1++hLOzM2xsbLSPO3fu6Owm8vLy0rkztqurK+Lj47XT0dHR6NKlC3x8fGBnZwdvb28AyHKX7SpVqrz364iKikLt2rV1xmrXro2oqKicfSOISK94o0kiyjPGxsY4cOAATp48if3792PBggUYO3YsDh069N7naTQauLq6IiwsLMu8vx/L8s8DdSVJ0tmF1Lp1a7i7u2PZsmVwc3ODRqNB2bJl8ebNG53nWVtbf/BrkSRJZ1oIkWWMiJSBW2aIKE9JkoTatWtj0qRJOH/+PMzMzHDgwAF4eXm9s9RUqlQJcXFxMDExga+vr86jUKFCOXrfp0+fIioqCt999x0aNmwIf39/PH/+PFdfg7+/P44fP64zdvLkSfj7++fq9Ygof3HLDBHlmdOnT+PQoUNo0qQJXFxccPr0aTx+/Bj+/v6YOHEi+vXrBxcXFzRv3hxJSUk4ceIEBg0ahEaNGqFmzZpo27YtZs6cCT8/P/z111/Ys2cP2rZt+8HdQgDg6OgIZ2dn/PTTT3B1dUVMTAxGjx6dq69j5MiR+Pzzz7UHIe/cuRNbtmzBwYMHc/V6RJS/WGaIKM/Y2dnh6NGjmD9/PhITE+Hp6Yk5c+agefPmAIDXr19j3rx5GDFiBAoVKoQOHToAeLs1Z8+ePRg7diyCg4Px+PFjFC1aFHXr1kWRIkVy9N5GRkZYv349Bg8ejLJly8LPzw8//vgj6tev/9FfR9u2bfHDDz/g+++/x+DBg+Ht7Y0VK1bk6rWIKP/xonlERESkajxmhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVI1lhoiIiFSNZYaIiIhUjWWGiIiIVO3/AUSZY6ea4MlhAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "reverts = defaultdict(list)\n", - "for scenario, calls in rpc_calls.items():\n", - " automining = scenario_configs[scenario][\"provider_config\"][\"mining\"][\"auto_mine\"]\n", - " # Snapshot ids start at one\n", - " snapshot_id = 0\n", - " automine_count = 0\n", - " for item in calls:\n", - " method = item[\"method\"]\n", - " if method == \"evm_setAutomine\":\n", - " automining = item[\"params\"][0]\n", - " elif automining and (\"sendTransaction\" in method or \"sendRaw\" in method):\n", - " # EDR currently automatically snapshots when automining\n", - " automine_count += 1\n", - " elif method == \"evm_snapshot\":\n", - " snapshot_id += 1\n", - " elif method == \"evm_revert\":\n", - " reverts[\"scenario\"].append(scenario)\n", - " revert_id = int(item[\"params\"][0], 0)\n", - " # Correct by removing the automine count from the snapshot id to revert to\n", - " reverts[\"revert_depth\"].append(snapshot_id - (revert_id - automine_count))\n", - "\n", - "display(Markdown(\"### Revert depths by scenario\"))\n", - "display(Markdown(\"The revert depth is the difference between the latest snapshot id and the snapshot id that was reverted to (`seaport` is excluded from the plot since it's an outlier).\"))\n", - "\n", - "df = pd.DataFrame(reverts)\n", - "display(df.groupby(\"scenario\").describe())\n", - "\n", - "ax = sns.barplot(x=\"scenario\", y=\"revert_depth\", data=df.drop(df.index[df[\"scenario\"] == \"seaport\"]))\n", - "ax.tick_params(axis='x', rotation=90)\n", - "_ = ax.set_title(\"Mean revert depth by scenario\")" - ] - }, - { - "cell_type": "markdown", - "id": "0a1a5818-e235-45ad-bef9-6db657c21f76", - "metadata": {}, - "source": [ - "The variations are too large to introduce optimizations based on a max assumed revert depth." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "e8364bda-6713-4197-aa14-8c1fa5af286a", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjMAAAHFCAYAAAAHcXhbAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA3UElEQVR4nO3deVyVdf7//+cR5QjJoiggLriEheWW5K7gqOQyZtnmFlpW9nXXcks/iVZgmsYnnWGymVBTa8YmJ8tccG0Kbcw19zIFpjRcwYUk4P37wx/n4xFRQPBw2eN+u53bzfO+3tf7ep3D+8DT93Wdc2zGGCMAAACLKufqAgAAAG4FYQYAAFgaYQYAAFgaYQYAAFgaYQYAAFgaYQYAAFgaYQYAAFgaYQYAAFgaYQYAAFgaYQYoIQsWLJDNZnO6VatWTREREfr888/z9bfZbIqOji6VWo4dOyabzaa33nqrVMa3grznYMGCBY626Oho2Wy2Io1z6dIlRUdHa9OmTUXa73rHqlOnjv74xz8WaZybWbp0qeLi4q67rTTnGFCWEGaAEpaQkKAtW7YoKSlJ8+fPl5ubm3r27KnPPvvM1aX97j333HPasmVLkfa5dOmSpk2bVuQwU5xjFceNwsyWLVv03HPPlXoNgKuVd3UBwJ3m/vvvV1hYmON+165dVblyZX344Yfq2bOnCytDzZo1VbNmzVI9xqVLl+Tp6XlbjnUzrVq1cunxgduFlRmglFWsWFHu7u6qUKHCTfvu3btXvXr1UuXKlVWxYkU1bdpUCxcuzNfv3Llzeumll1SvXj3Z7Xb5+/ure/fuOnjwYIFj//bbbxo4cKAqVap03dNeV4uPj1eTJk1UqVIleXl56d5779Urr7zi2J53Si0xMVHPPPOMqlSporvuuks9e/bUjz/+mG+8devWqVOnTvL29panp6fatm2r9evX5+t38OBB9e3bVwEBAbLb7apdu7aioqJ0+fLlG9b7888/68knn5SXl5d8fHz01FNP6cSJE/n6Xe/Uz4YNGxQRESE/Pz95eHiodu3aeuyxx3Tp0iUdO3ZM1apVkyRNmzbNcfpw0KBBTuPt2LFDjz/+uCpXrqz69esXeKw8y5cvV+PGjVWxYkXVq1dP77zzjtP2vOf32LFjTu2bNm2SzWZzrBJFRERo5cqVSk5Odjq9med6p5kKM8fyjvPhhx9q8uTJCgoKkre3tzp37qxDhw5d9zEBrsTKDFDCcnJylJ2dLWOMfvnlF82aNUsXL15Uv379brjfoUOH1KZNG/n7++udd96Rn5+fFi9erEGDBumXX37R+PHjJUnnz59Xu3btdOzYMU2YMEEtW7bUhQsX9OWXX+r48eO6995784197tw59e7dWwcOHNDmzZvVvHnzAuv46KOPNHToUI0YMUJvvfWWypUrpx9++EH79+/P13fw4MHq0qWLli5dqtTUVE2ZMkURERHas2ePfH19JUmLFy9WVFSUevXqpYULF6pChQp699139dBDD2nNmjXq1KmTJGn37t1q166dqlatqunTpyskJETHjx/XihUrlJWVJbvdft16MzMz1blzZ/3888+KjY1VgwYNtHLlSj311FM3fL6lK9fV9OjRQ+3bt9f7778vX19f/fTTT1q9erWysrJUvXp1rV69Wl27dtXgwYMdp2zyAk6e3r17q0+fPnrxxRd18eLFGx5z165dGj16tKKjoxUYGKglS5Zo1KhRysrK0ssvv3zTmq/25z//WS+88IKOHDmi5cuX37R/YedYnldeeUVt27bVX//6V2VkZGjChAnq2bOnDhw4IDc3tyLVCpQqA6BEJCQkGEn5bna73fz5z3/O11+SmTp1quN+nz59jN1uNykpKU79unXrZjw9Pc25c+eMMcZMnz7dSDKJiYkF1nL06FEjycyaNcscPXrUNGzY0DRs2NAcO3bspo9j+PDhxtfXt1CP9dFHH3Vq//rrr40k8/rrrxtjjLl48aKpUqWK6dmzp1O/nJwc06RJE9OiRQtH2x/+8Afj6+tr0tLSblrj1eLj440k8+mnnzq1P//880aSSUhIcLRNnTrVXP1r7+OPPzaSzK5duwoc/+TJk/l+VteO9+qrrxa47WrBwcHGZrPlO16XLl2Mt7e3uXjxojHm/57fo0ePOvXbuHGjkWQ2btzoaOvRo4cJDg6+bu3FnWN5x+nevbtTv3/84x9GktmyZct1jwe4CqeZgBK2aNEibdu2Tdu2bdOqVas0cOBADRs2TPPmzbvhfhs2bFCnTp1Uq1Ytp/ZBgwbp0qVLjotJV61apQYNGqhz5843rWXHjh1q1aqVAgIC9PXXXys4OPim+7Ro0ULnzp1T37599emnn+rUqVMF9u3fv7/T/TZt2ig4OFgbN26UJCUlJenMmTMaOHCgsrOzHbfc3Fx17dpV27Zt08WLF3Xp0iVt3rxZTz75ZL5Vj5vZuHGjvLy89PDDDzu132wlTJKaNm0qd3d3vfDCC1q4cOF1T5EVxmOPPVbovvfdd5+aNGni1NavXz9lZGRox44dxTp+YRV2juW59jlt3LixJCk5OblU6wSKijADlLDQ0FCFhYUpLCxMXbt21bvvvqvIyEiNHz9e586dK3C/06dPq3r16vnag4KCHNsl6eTJk4W+sDQxMVG//PKLnnvuOcdpn5t5+umn9f777ys5OVmPPfaY/P391bJlSyUmJubrGxgYeN22vFp/+eUXSdLjjz+uChUqON3efPNNGWN05swZnT17Vjk5OcW6YPb06dMKCAgoVG3Xql+/vtatWyd/f38NGzZM9evXV/369fW///u/Rarhej+3ghT0nEn/9zMuLYWdY3n8/Pyc7ued6svMzCylCoHiIcwAt0Hjxo2VmZmpw4cPF9jHz89Px48fz9f+888/S5KqVq0q6cr1Gv/9738Lddxx48bphRdeUFRUlBYtWlToep955hklJSUpPT1dK1eulDFGf/zjH/P9j/x6F9meOHHC8Ucwr+a5c+c6VquuvQUEBKhKlSpyc3Mr9OO6mp+fnyM03ay262nfvr0+++wzpaena+vWrWrdurVGjx6tjz76qNA1FOWzawp6zqT/Cw8VK1aUpHwXPt9olawwCjvHAKshzAC3wa5duyTlv3D0ap06ddKGDRscf1jyLFq0SJ6eno632Xbr1k2HDx/Whg0bbnrccuXK6d1339WoUaM0aNAgxcfHF6nuu+66S926ddPkyZOVlZWlffv2OW1fsmSJ0/2kpCQlJycrIiJCktS2bVv5+vpq//79jtWqa2/u7u7y8PBQeHi4li1bVuQ/2B07dtT58+e1YsUKp/alS5cWaRw3Nze1bNlSf/rTnyTJccqnpFcj9u3bp927dzu1LV26VF5eXnrggQckXflwPUnas2ePU79rH2NefYWtrbBzDLAa3s0ElLC9e/cqOztb0pVl+08++USJiYl69NFHVbdu3QL3mzp1qj7//HN17NhRr776qqpUqaIlS5Zo5cqVmjlzpnx8fCRJo0eP1t///nf16tVLEydOVIsWLZSZmanNmzfrj3/8ozp27Jhv7NmzZ8vLy0tDhw7VhQsXNG7cuALreP755+Xh4aG2bduqevXqOnHihGJjY+Xj46MHH3zQqe+3336r5557Tk888YRSU1M1efJk1ahRQ0OHDpUkVapUSXPnztXAgQN15swZPf744/L399fJkye1e/dunTx50hGw5syZo3bt2qlly5aaOHGi7r77bv3yyy9asWKF3n33XXl5eV233qioKL399tuKiorSG2+8oZCQEH3xxRdas2bNDX5KV/zlL3/Rhg0b1KNHD9WuXVu//vqr3n//fUlyXJPk5eWl4OBgffrpp+rUqZOqVKmiqlWrOgJHUQUFBenhhx9WdHS0qlevrsWLFysxMVFvvvmmPD09JUkPPvig7rnnHr388svKzs5W5cqVtXz5cn311Vf5xmvUqJE++eQTxcfHq3nz5ipXrpzT5xxdrbBzDLAcV1+BDNwprvduJh8fH9O0aVMzZ84c8+uvvzr113XeIfPdd9+Znj17Gh8fH+Pu7m6aNGni9G6cPGfPnjWjRo0ytWvXNhUqVDD+/v6mR48e5uDBg8YY53czXW3WrFkFvvsmz8KFC03Hjh1NQECAcXd3N0FBQebJJ580e/bsyfdY165da55++mnj6+trPDw8TPfu3c3333+fb8zNmzebHj16mCpVqpgKFSqYGjVqmB49ephly5Y59du/f7954oknjJ+fn3F3dze1a9c2gwYNyvfcXeu///2veeyxx0ylSpWMl5eXeeyxx0xSUtJN3820ZcsW8+ijj5rg4GBjt9uNn5+fCQ8PNytWrHAaf926daZZs2bGbrcbSWbgwIFO4508eTJfTQW9m6lHjx7m448/Nvfdd59xd3c3derUMXPmzMm3/+HDh01kZKTx9vY21apVMyNGjDArV67M926mM2fOmMcff9z4+voam83mdMzizrG8dzNd+/PJm1fXm5OAK9mMMeZ2BygA1rZgwQI988wz2rZtW4GrAABwu3DNDAAAsDTCDAAAsDROMwEAAEtjZQYAAFgaYQYAAFgaYQYAAFjaHf+hebm5ufr555/l5eVVpI8cBwAArmOM0fnz5xUUFKRy5W689nLHh5mff/453zfEAgAAa0hNTb3pl9De8WEm7yPQU1NT5e3t7eJqAABAYWRkZKhWrVoFfpXJ1e74MJN3asnb25swAwCAxRTmEhEuAAYAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZGmAEAAJZW3tUFWEXzcYtcXQLKkO2zolxdAgDg/8fKDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDTCDAAAsDSXhpns7GxNmTJFdevWlYeHh+rVq6fp06crNzfX0ccYo+joaAUFBcnDw0MRERHat2+fC6sGAABliUvDzJtvvqm//OUvmjdvng4cOKCZM2dq1qxZmjt3rqPPzJkzNWfOHM2bN0/btm1TYGCgunTpovPnz7uwcgAAUFa4NMxs2bJFvXr1Uo8ePVSnTh09/vjjioyM1LfffivpyqpMXFycJk+erN69e+v+++/XwoULdenSJS1dutSVpQMAgDLCpWGmXbt2Wr9+vQ4fPixJ2r17t7766it1795dknT06FGdOHFCkZGRjn3sdrvCw8OVlJR03TEvX76sjIwMpxsAALhzlXflwSdMmKD09HTde++9cnNzU05Ojt544w317dtXknTixAlJUkBAgNN+AQEBSk5Ovu6YsbGxmjZtWukWDgAAygyXrsz8/e9/1+LFi7V06VLt2LFDCxcu1FtvvaWFCxc69bPZbE73jTH52vJMmjRJ6enpjltqamqp1Q8AAFzPpSsz48aN08SJE9WnTx9JUqNGjZScnKzY2FgNHDhQgYGBkq6s0FSvXt2xX1paWr7Vmjx2u112u730iwcAAGWCS1dmLl26pHLlnEtwc3NzvDW7bt26CgwMVGJiomN7VlaWNm/erDZt2tzWWgEAQNnk0pWZnj176o033lDt2rV13333aefOnZozZ46effZZSVdOL40ePVoxMTEKCQlRSEiIYmJi5OnpqX79+rmydAAAUEa4NMzMnTtX//M//6OhQ4cqLS1NQUFBGjJkiF599VVHn/HjxyszM1NDhw7V2bNn1bJlS61du1ZeXl4urBwAAJQVNmOMcXURpSkjI0M+Pj5KT0+Xt7d3scdpPm5RCVYFq9s+K8rVJQDAHa0of7/5biYAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBpLg8zP/30kwYMGCA/Pz95enqqadOm2r59u2O7MUbR0dEKCgqSh4eHIiIitG/fPhdWDAAAyhKXhpmzZ8+qbdu2qlChglatWqX9+/dr9uzZ8vX1dfSZOXOm5syZo3nz5mnbtm0KDAxUly5ddP78edcVDgAAyozyrjz4m2++qVq1aikhIcHRVqdOHce/jTGKi4vT5MmT1bt3b0nSwoULFRAQoKVLl2rIkCG3u2QAAFDGuHRlZsWKFQoLC9MTTzwhf39/NWvWTO+9955j+9GjR3XixAlFRkY62ux2u8LDw5WUlHTdMS9fvqyMjAynGwAAuHO5NMz8+OOPio+PV0hIiNasWaMXX3xRI0eO1KJFiyRJJ06ckCQFBAQ47RcQEODYdq3Y2Fj5+Pg4brVq1SrdBwEAAFzKpWEmNzdXDzzwgGJiYtSsWTMNGTJEzz//vOLj45362Ww2p/vGmHxteSZNmqT09HTHLTU1tdTqBwAArufSMFO9enU1bNjQqS00NFQpKSmSpMDAQEnKtwqTlpaWb7Umj91ul7e3t9MNAADcuVwaZtq2batDhw45tR0+fFjBwcGSpLp16yowMFCJiYmO7VlZWdq8ebPatGlzW2sFAABlk0vfzTRmzBi1adNGMTExevLJJ/Wf//xH8+fP1/z58yVdOb00evRoxcTEKCQkRCEhIYqJiZGnp6f69evnytIBAEAZ4dIw8+CDD2r58uWaNGmSpk+frrp16youLk79+/d39Bk/frwyMzM1dOhQnT17Vi1bttTatWvl5eXlwsoBAEBZYTPGGFcXUZoyMjLk4+Oj9PT0W7p+pvm4RSVYFaxu+6woV5cAAHe0ovz9dvnXGQAAANwKwgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALA0wgwAALC0YoWZevXq6fTp0/naz507p3r16t1yUQAAAIVVrDBz7Ngx5eTk5Gu/fPmyfvrpp1suCgAAoLDKF6XzihUrHP9es2aNfHx8HPdzcnK0fv161alTp8SKAwAAuJkihZlHHnlEkmSz2TRw4ECnbRUqVFCdOnU0e/bsEisOAADgZooUZnJzcyVJdevW1bZt21S1atVSKQoAAKCwihRm8hw9erSk6wAAACiWYoUZSVq/fr3Wr1+vtLQ0x4pNnvfff/+WCwMAACiMYoWZadOmafr06QoLC1P16tVls9lKui4AAIBCKVaY+ctf/qIFCxbo6aefLul6AAAAiqRYnzOTlZWlNm3alHQtAAAARVasMPPcc89p6dKlJV0LAABAkRXrNNOvv/6q+fPna926dWrcuLEqVKjgtH3OnDklUhwAAMDNFCvM7NmzR02bNpUk7d2712kbFwMDAIDbqVhhZuPGjSVdBwAAQLEU65qZPD/88IPWrFmjzMxMSZIxpkSKAgAAKKxihZnTp0+rU6dOatCggbp3767jx49LunJh8EsvvVSiBQIAANxIscLMmDFjVKFCBaWkpMjT09PR/tRTT2n16tUlVhwAAMDNFOuambVr12rNmjWqWbOmU3tISIiSk5NLpDAAAIDCKNbKzMWLF51WZPKcOnVKdrv9losCAAAorGKFmQ4dOmjRokWO+zabTbm5uZo1a5Y6duxYYsUBAADcTLFOM82aNUsRERH69ttvlZWVpfHjx2vfvn06c+aMvv7665KuEQAAoEDFWplp2LCh9uzZoxYtWqhLly66ePGievfurZ07d6p+/folXSMAAECBirUyI0mBgYGaNm1aSdYCAABQZMVamUlISNCyZcvytS9btkwLFy685aIAAAAKq1hhZsaMGapatWq+dn9/f8XExNxyUQAAAIVVrDCTnJysunXr5msPDg5WSkrKLRcFAABQWMUKM/7+/tqzZ0++9t27d8vPz++WiwIAACisYoWZPn36aOTIkdq4caNycnKUk5OjDRs2aNSoUerTp09J1wgAAFCgYr2b6fXXX1dycrI6deqk8uWvDJGbm6uoqCiumQEAALdVkcOMMUbHjx9XQkKCXn/9de3atUseHh5q1KiRgoODS6NGAACAAhUrzISEhGjfvn0KCQlRSEhIadQFAABQKEW+ZqZcuXIKCQnR6dOnS6MeAACAIinWBcAzZ87UuHHjtHfv3pKuBwAAoEiKdQHwgAEDdOnSJTVp0kTu7u7y8PBw2n7mzJkSKQ4AAOBmihVm4uLiSrgMAACA4ilWmBk4cGBJ1wEAAFAsxbpmRpKOHDmiKVOmqG/fvkpLS5MkrV69Wvv27Sux4gAAAG6mWGFm8+bNatSokb755ht98sknunDhgiRpz549mjp1aokWCAAAcCPFCjMTJ07U66+/rsTERLm7uzvaO3bsqC1btpRYcQAAADdTrDDz3Xff6dFHH83XXq1aNT5/BgAA3FbFCjO+vr46fvx4vvadO3eqRo0at1wUAABAYRUrzPTr108TJkzQiRMnZLPZlJubq6+//lovv/yyoqKiilVIbGysbDabRo8e7Wgzxig6OlpBQUHy8PBQREQEFxgDAAAnxQozb7zxhmrXrq0aNWrowoULatiwodq3b682bdpoypQpRR5v27Ztmj9/vho3buzUPnPmTM2ZM0fz5s3Ttm3bFBgYqC5duuj8+fPFKRsAANyBihVmKlSooCVLluj777/XRx99pCVLlujw4cP64IMP5ObmVqSxLly4oP79++u9995T5cqVHe3GGMXFxWny5Mnq3bu37r//fi1cuFCXLl3S0qVLi1M2AAC4AxX7c2b+9re/6eGHH9bTTz+tAQMG6JFHHtFf//rXIo8zbNgw9ejRQ507d3ZqP3r0qE6cOKHIyEhHm91uV3h4uJKSkgoc7/Lly8rIyHC6AQCAO1exPgH4f/7nf/T2229rxIgRat26tSRpy5YtGjNmjI4dO6bXX3+9UON89NFH2rFjh7Zt25Zv24kTJyRJAQEBTu0BAQFKTk4ucMzY2FhNmzatsA8FAABYXLHCTHx8vN577z317dvX0fbwww+rcePGGjFiRKHCTGpqqkaNGqW1a9eqYsWKBfaz2WxO940x+dquNmnSJI0dO9ZxPyMjQ7Vq1bppPQAAwJqKFWZycnIUFhaWr7158+bKzs4u1Bjbt29XWlqamjdv7jTul19+qXnz5unQoUOSrqzQVK9e3dEnLS0t32rN1ex2u+x2e2EfCgAAsLhiXTMzYMAAxcfH52ufP3+++vfvX6gxOnXqpO+++067du1y3MLCwtS/f3/t2rVL9erVU2BgoBITEx37ZGVlafPmzWrTpk1xygYAAHegYq3MSFcuAF67dq1atWolSdq6datSU1MVFRXldJpnzpw5193fy8tL999/v1PbXXfdJT8/P0f76NGjFRMTo5CQEIWEhCgmJkaenp7q169fccsGAAB3mGKFmb179+qBBx6QdOXbs6UrX2VQrVo17d2719HvRte2FMb48eOVmZmpoUOH6uzZs2rZsqXWrl0rLy+vWxoXAADcOWzGGOPqIkpTRkaGfHx8lJ6eLm9v72KP03zcohKsCla3fVbxPukaAFA4Rfn7XezPmQEAACgLCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSCDMAAMDSXBpmYmNj9eCDD8rLy0v+/v565JFHdOjQIac+xhhFR0crKChIHh4eioiI0L59+1xUMQAAKGtcGmY2b96sYcOGaevWrUpMTFR2drYiIyN18eJFR5+ZM2dqzpw5mjdvnrZt26bAwEB16dJF58+fd2HlAACgrCjvyoOvXr3a6X5CQoL8/f21fft2dejQQcYYxcXFafLkyerdu7ckaeHChQoICNDSpUs1ZMgQV5QNAADKkDJ1zUx6erokqUqVKpKko0eP6sSJE4qMjHT0sdvtCg8PV1JS0nXHuHz5sjIyMpxuAADgzlVmwowxRmPHjlW7du10//33S5JOnDghSQoICHDqGxAQ4Nh2rdjYWPn4+DhutWrVKt3CAQCAS5WZMDN8+HDt2bNHH374Yb5tNpvN6b4xJl9bnkmTJik9Pd1xS01NLZV6AQBA2eDSa2byjBgxQitWrNCXX36pmjVrOtoDAwMlXVmhqV69uqM9LS0t32pNHrvdLrvdXroFAwCAMsOlKzPGGA0fPlyffPKJNmzYoLp16zptr1u3rgIDA5WYmOhoy8rK0ubNm9WmTZvbXS4AACiDXLoyM2zYMC1dulSffvqpvLy8HNfB+Pj4yMPDQzabTaNHj1ZMTIxCQkIUEhKimJgYeXp6ql+/fq4sHQAAlBEuDTPx8fGSpIiICKf2hIQEDRo0SJI0fvx4ZWZmaujQoTp79qxatmyptWvXysvL6zZXCwAAyiKXhhljzE372Gw2RUdHKzo6uvQLAgAAllNm3s0EAABQHIQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaYQZAABgaeVdXQCA4mk+bpGrS0AZsn1WlKtLAFyGlRkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBphBkAAGBp5V1dQGH8+c9/1qxZs3T8+HHdd999iouLU/v27V1dFgDgKs3HLXJ1CShDts+Kum3HKvMrM3//+981evRoTZ48WTt37lT79u3VrVs3paSkuLo0AABQBpT5MDNnzhwNHjxYzz33nEJDQxUXF6datWopPj7e1aUBAIAyoEyfZsrKytL27ds1ceJEp/bIyEglJSVdd5/Lly/r8uXLjvvp6emSpIyMjFuqJedy5i3tjzvLrc6nksCcxNWYkyhrbnVO5u1vjLlp3zIdZk6dOqWcnBwFBAQ4tQcEBOjEiRPX3Sc2NlbTpk3L116rVq1SqRG/Tz5zX3R1CYAT5iTKmpKak+fPn5ePj88N+5TpMJPHZrM53TfG5GvLM2nSJI0dO9ZxPzc3V2fOnJGfn1+B+6BwMjIyVKtWLaWmpsrb29vV5QDMSZQ5zMmSY4zR+fPnFRQUdNO+ZTrMVK1aVW5ubvlWYdLS0vKt1uSx2+2y2+1Obb6+vqVV4u+St7c3L1KUKcxJlDXMyZJxsxWZPGX6AmB3d3c1b95ciYmJTu2JiYlq06aNi6oCAABlSZlemZGksWPH6umnn1ZYWJhat26t+fPnKyUlRS++yPlhAABggTDz1FNP6fTp05o+fbqOHz+u+++/X1988YWCg4NdXdrvjt1u19SpU/OdxgNchTmJsoY56Ro2U5j3PAEAAJRRZfqaGQAAgJshzAAAAEsjzAAAAEsjzAAAAEsjzPwOREREaPTo0a4uAyh1gwYN0iOPPOK4z9zH1e6k+bBgwYJS/0DYOnXqKC4urlSPUVIIM3CyadMm2Ww2nTt3rsTGPHbsmGw2m3bt2lViYwKF8cknn+i1115zdRkASlmZ/5wZACiuKlWquLoE3OFycnJks9lUrlzJrg389ttvqlChQomOeSdjZeZ3ZvHixQoLC5OXl5cCAwPVr18/paWlSbqygtKxY0dJUuXKlWWz2TRo0CBJV77wa+bMmapXr548PDzUpEkTffzxx45xz549q/79+6tatWry8PBQSEiIEhISJEl169aVJDVr1kw2m00RERG37wHDJSIiIjR8+HANHz5cvr6+8vPz05QpU5T3sVZZWVkaP368atSoobvuukstW7bUpk2bHPvnLaGvWbNGoaGhqlSpkrp27arjx487+uTk5Gjs2LGO8cePH69rPzbr2tMKderUUUxMjJ599ll5eXmpdu3amj9/vtM+SUlJatq0qSpWrKiwsDD961//YmWxhEVERGjkyJEaP368qlSposDAQEVHR0u6/kruuXPnZLPZHHMkbwV5zZo1atasmTw8PPSHP/xBaWlpWrVqlUJDQ+Xt7a2+ffvq0qVLTsfOzs4ucF5KhZ+bn3/+uRo2bCi73a7k5OQbPt7c3FxNnz5dNWvWlN1uV9OmTbV69WrH9rzH/I9//EMRERGqWLGiFi9eXKjn8kavkW3btqlLly6qWrWqfHx8FB4erh07djjtHx0drdq1a8tutysoKEgjR4502n7p0qUbvl7KDIM7Xnh4uBk1apQxxpi//e1v5osvvjBHjhwxW7ZsMa1atTLdunUzxhiTnZ1t/vnPfxpJ5tChQ+b48ePm3LlzxhhjXnnlFXPvvfea1atXmyNHjpiEhARjt9vNpk2bjDHGDBs2zDRt2tRs27bNHD161CQmJpoVK1YYY4z5z3/+YySZdevWmePHj5vTp0/f/icBt1V4eLipVKmSGTVqlDl48KBZvHix8fT0NPPnzzfGGNOvXz/Tpk0b8+WXX5offvjBzJo1y9jtdnP48GFjjDEJCQmmQoUKpnPnzmbbtm1m+/btJjQ01PTr189xjDfffNP4+PiYjz/+2Ozfv98MHjzYeHl5mV69ejnVkTf3jTEmODjYVKlSxfzpT38y33//vYmNjTXlypUzBw4cMMYYk5GRYapUqWIGDBhg9u3bZ7744gvToEEDI8ns3Lmz1J+334vw8HDj7e1toqOjzeHDh83ChQuNzWYza9euNUePHs33fJ89e9ZIMhs3bjTGGLNx40YjybRq1cp89dVXZseOHebuu+824eHhJjIy0uzYscN8+eWXxs/Pz8yYMcPpuDeal8YUfm62adPGfP311+bgwYPmwoULN3y8c+bMMd7e3ubDDz80Bw8eNOPHjzcVKlRwjJn3mOvUqWP++c9/mh9//NH89NNPNxyzMK+R9evXmw8++MDs37/f8RoJCAgwGRkZxhhjli1bZry9vc0XX3xhkpOTzTfffOP0XNzs9VKWEGZ+B679hX61vKBx/vx5Y8z//ZI4e/aso8+FCxdMxYoVTVJSktO+gwcPNn379jXGGNOzZ0/zzDPPXPcY1/vlhDtbeHi4CQ0NNbm5uY62CRMmmNDQUPPDDz8Ym82W75d1p06dzKRJk4wxV35RSzI//PCDY/uf/vQnExAQ4LhfvXp1pz9Uv/32m6lZs+ZNw8yAAQMc93Nzc42/v7+Jj483xhgTHx9v/Pz8TGZmpqPPe++9x/wtYeHh4aZdu3ZObQ8++KCZMGFCkcLMunXrHH1iY2ONJHPkyBFH25AhQ8xDDz3kdNyC5qUxpkhzc9euXYV+vEFBQeaNN97I93iHDh1qjPm/35FxcXGFHrMwr5FrZWdnGy8vL/PZZ58ZY4yZPXu2adCggcnKyrpu/5u9XsoSTjP9zuzcuVO9evVScHCwvLy8HKd8UlJSCtxn//79+vXXX9WlSxdVqlTJcVu0aJGOHDkiSfp//+//6aOPPlLTpk01fvx4JSUl3Y6HgzKsVatWstlsjvutW7fW999/r2+//VbGGDVo0MBpPm3evNkxnyTJ09NT9evXd9yvXr2645Roenq6jh8/rtatWzu2ly9fXmFhYTetq3Hjxo5/22w2BQYGOsY9dOiQGjdurIoVKzr6tGjRohiPHjdz9c9Bcv75FmeMgIAAeXp6ql69ek5t145Z0LzMycnRjh07CjU33d3d89VfkIyMDP38889q27atU3vbtm114MABp7bCzN+r3eg1IklpaWl68cUX1aBBA/n4+MjHx0cXLlxw/L5/4oknlJmZqXr16un555/X8uXLlZ2d7XSMG71eyhIuAP4duXjxoiIjIxUZGanFixerWrVqSklJ0UMPPaSsrKwC98vNzZUkrVy5UjVq1HDalvdlat26dVNycrJWrlypdevWqVOnTho2bJjeeuut0ntAsCw3Nzdt375dbm5uTu2VKlVy/Pvaix9tNlu+a2KK43rj5s1xY4zTH7q8NpS8gn4OeRfSXv28//bbbzcdw2az3fBnWxi5ubmFmpseHh755snNXG9eXdt21113FWnMm71GBg0apJMnTyouLk7BwcGy2+1q3bq14/d9rVq1dOjQISUmJmrdunUaOnSoZs2apc2bNzvGvtXn9HZhZeZ35ODBgzp16pRmzJih9u3b6957782XsN3d3SVdubgyT95FbikpKbr77rudbrVq1XL0q1atmgYNGqTFixcrLi7OcaHY9cbEnW/r1q357oeEhKhZs2bKyclRWlpavvkUGBhYqLF9fHxUvXp1p2NkZ2dr+/btt1Tzvffeqz179ujy5cuOtm+//faWxkTRVKtWTZKcLmQtyYuvC5qXbm5uJTI3r+Xt7a2goCB99dVXTu1JSUkKDQ0t9uMojH//+98aOXKkunfvrvvuu092u12nTp1y6uPh4aGHH35Y77zzjjZt2qQtW7bou+++K9W6SgMrM78jtWvXlru7u+bOnasXX3xRe/fuzfcZHMHBwbLZbPr888/VvXt3eXh4yMvLSy+//LLGjBmj3NxctWvXThkZGUpKSlKlSpU0cOBAvfrqq2revLnuu+8+Xb58WZ9//rnjherv7y8PDw+tXr1aNWvWVMWKFeXj4+OKpwC3UWpqqsaOHashQ4Zox44dmjt3rmbPnq0GDRqof//+ioqK0uzZs9WsWTOdOnVKGzZsUKNGjdS9e/dCjT9q1CjNmDFDISEhCg0N1Zw5c27585H69eunyZMn64UXXtDEiROVkpLiWF0s6v/EUTweHh5q1aqVZsyYoTp16ujUqVOaMmVKiY1f0LyUVGJz81rjxo3T1KlTVb9+fTVt2lQJCQnatWuXlixZUmKP63ruvvtuffDBBwoLC1NGRobGjRsnDw8Px/YFCxYoJydHLVu2lKenpz744AN5eHgoODi4VOsqDazM/I5Uq1ZNCxYs0LJly9SwYUPNmDEj32mgGjVqaNq0aZo4caICAgI0fPhwSdJrr72mV199VbGxsQoNDdVDDz2kzz77zPG2a3d3d02aNEmNGzdWhw4d5Obmpo8++kjSlWsZ3nnnHb377rsKCgpSr169bu8Dh0tERUUpMzNTLVq00LBhwzRixAi98MILkqSEhARFRUXppZde0j333KOHH35Y33zzjdNK38289NJLioqK0qBBg9S6dWt5eXnp0UcfvaWavb299dlnn2nXrl1q2rSpJk+erFdffVWSnK6jQel6//339dtvvyksLEyjRo3S66+/XmJj32heSiUzN681cuRIvfTSS3rppZfUqFEjrV69WitWrFBISEhJPKQCvf/++zp79qyaNWump59+WiNHjpS/v79ju6+vr9577z21bdtWjRs31vr16/XZZ5/Jz8+vVOsqDTbDCWEAJSwiIkJNmza1zEeh38iSJUv0zDPPKD093el/tQDKDk4zAcBVFi1apHr16qlGjRravXu3JkyYoCeffJIgA5RhnGYCgKucOHFCAwYMUGhoqMaMGaMnnnii7H7qKcqEq9/Gfe3t3//+d7HG7NatW4FjxsTElPAjsD5OMwEAcAt++OGHArfVqFGjWKt6P/30kzIzM6+7rUqVKnzv2DUIMwAAwNI4zQQAACyNMAMAACyNMAMAACyNMAOg0CIiIjR69OgCt9epU6dEP1umpMcDcGcizAAAAEsjzAAAAEsjzAAokuzsbA0fPly+vr7y8/PTlClTVNAnPKSkpKhXr16qVKmSvL299eSTT+qXX35x6rNixQqFhYWpYsWKqlq1qnr37l3gsRMSEuTj46PExMSb1vnxxx+rUaNG8vDwkJ+fnzp37qyLFy9KkgYNGqRHHnlE06ZNk7+/v7y9vTVkyBBlZWU59jfGaObMmapXr548PDzUpEkTffzxx07H2Ldvn3r06CFvb295eXmpffv2OnLkyE1rA1CyCDMAimThwoUqX768vvnmG73zzjt6++239de//jVfP2OMHnnkEZ05c0abN29WYmKijhw5oqeeesrRZ+XKlerdu7d69OihnTt3av369QoLC7vucd966y29/PLLWrNmjbp06XLDGo8fP66+ffvq2Wef1YEDB7Rp0yb17t3bKXStX79eBw4c0MaNG/Xhhx9q+fLlmjZtmmP7lClTlJCQoPj4eO3bt09jxozRgAEDtHnzZklXPtSsQ4cOqlixojZs2KDt27fr2WefVXZ2dpGeTwAlwABAIYWHh5vQ0FCTm5vraJswYYIJDQ01xhgTHBxs3n77bWOMMWvXrjVubm4mJSXF0Xffvn1GkvnPf/5jjDGmdevWpn///gUeL2+8iRMnmurVq5s9e/YUqs7t27cbSebYsWPX3T5w4EBTpUoVc/HiRUdbfHy8qVSpksnJyTEXLlwwFStWNElJSU77DR482PTt29cYY8ykSZNM3bp1TVZWVqFqAlB6+KJJAEXSqlUr2Ww2x/3WrVtr9uzZysnJcep34MAB1apVS7Vq1XK0NWzYUL6+vjpw4IAefPBB7dq1S88///wNjzd79mxdvHhR3377rerVq1eoGps0aaJOnTqpUaNGeuihhxQZGanHH39clStXdurj6enp9DguXLig1NRUpaWl6ddff823ApSVlaVmzZpJknbt2qX27durQoUKhaoJQOnhNBOAUmGMcQo912svzHfWtG/fXjk5OfrHP/5R6GO7ubkpMTFRq1atUsOGDTV37lzdc889Onr06E33tdlsys3NlXTlNNiuXbsct/379zuum+FbtIGygzADoEi2bt2a735ISIjc3Nyc2hs2bKiUlBSlpqY62vbv36/09HSFhoZKkho3bqz169ff8HgtWrTQ6tWrFRMTo1mzZhW6TpvNprZt22ratGnauXOn3N3dtXz5csf23bt3O32R39atW1WpUiXVrFlTDRs2lN1uV0pKiu6++26nW95KU+PGjfXvf/9bv/32W6FrAlA6OM0EoEhSU1M1duxYDRkyRDt27NDcuXM1e/bsfP06d+6sxo0bq3///oqLi1N2draGDh2q8PBwx0W+U6dOVadOnVS/fn316dNH2dnZWrVqlcaPH+80VuvWrbVq1Sp17dpV5cuX15gxY25Y4zfffKP169crMjJS/v7++uabb3Ty5ElHiJKunDIaPHiwpkyZouTkZE2dOlXDhw9XuXLl5OXlpZdfflljxoxRbm6u2rVrp4yMDCUlJalSpUoaOHCghg8frrlz56pPnz6aNGmSfHx8tHXrVrVo0UL33HNPCTzTAAqLMAOgSKKiopSZmakWLVrIzc1NI0aM0AsvvJCvn81m07/+9S+NGDFCHTp0ULly5dS1a1fNnTvX0SciIkLLli3Ta6+9phkzZsjb21sdOnS47nHbtm2rlStXqnv37nJzc9PIkSMLrNHb21tffvml4uLilJGRoeDgYM2ePVvdunVz9OnUqZNCQkLUoUMHXb58WX369FF0dLRj+2uvvSZ/f3/Fxsbqxx9/lK+vrx544AG98sorkiQ/Pz9t2LBB48aNU3h4uNzc3NS0aVO1bdu2qE8pgFtkM6aAD4gAgDvUoEGDdO7cOf3rX/9ydSkASgDXzAAAAEsjzACwnJSUFFWqVKnAW0pKiqtLBHAbcZoJgOVkZ2fr2LFjBW6vU6eOypfnkkDg94IwAwAALI3TTAAAwNIIMwAAwNIIMwAAwNIIMwAAwNIIMwAAwNIIMwAAwNIIMwAAwNIIMwAAwNL+Pw6liOz7z6+pAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "block_specs = defaultdict(list)\n", - "\n", - "context_methods = {\"eth_getBalance\", \"eth_estimateGas\", \"eth_getCode\", \"eth_getStorageAt\", \"eth_getTransactionCount\"}\n", - "# The block spec argument is somewhat convoluted for these methods and they aren't used in the scenarios so these aren't support yet.\n", - "unsupported_context_methods = {\"debug_traceTransaction\", \"debug_traceCall\"}\n", - "\n", - "for scenario, calls in rpc_calls.items():\n", - " for item in calls:\n", - " method = item[\"method\"]\n", - " if method in context_methods:\n", - " block_spec = item[\"params\"][-1]\n", - " elif method == \"eth_call\":\n", - " block_spec = item[\"params\"][1]\n", - " elif method in unsupported_context_methods:\n", - " raise NotImplementedError\n", - " else:\n", - " continue\n", - "\n", - " if isinstance(block_spec, bool):\n", - " print(item)\n", - "\n", - " if block_spec is None:\n", - " block_spec = \"latest\"\n", - "\n", - " if block_spec.startswith(\"0x\"):\n", - " block_spec = \"number_or_hash\"\n", - "\n", - " block_specs[\"scenario\"].append(scenario)\n", - " block_specs[\"method\"].append(method)\n", - " block_specs[\"block_spec\"].append(block_spec)\n", - "\n", - "df = pd.DataFrame(block_specs)\n", - "ax = sns.countplot(df, x=\"block_spec\", stat=\"percent\")\n", - "_ = ax.set_title(\"Block spec distribution\")" - ] - }, - { - "cell_type": "markdown", - "id": "8895095e-35f3-4493-97dd-68abc678cc1c", - "metadata": {}, - "source": [ - "The block spec distribution heavily favors the latest block." - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "85ea7f88-191e-49f7-bc22-702572c84dfa", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAAJkCAYAAAAYzItHAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB2XklEQVR4nO3deVxOef8/8NdpL21CKZKSEGWLkb3sGesMMxgk69gi2W5jKYwZWw0ayxjrmBnGDMbYJiFjj2RfkohRCkNpo67z+8Ov6zvXFNLiXOf0ej4e1+Pu+pxznet9nbncvTrnswiiKIogIiIiUiAdqQsgIiIiKi0MOkRERKRYDDpERESkWAw6REREpFgMOkRERKRYDDpERESkWAw6REREpFgMOkRERKRYDDpERESkWAw6RKVsw4YNEARB41GpUiW0bdsWf/zxR779BUHAnDlzSqWWO3fuQBAELF68uFSOLzd5/23Onj0rdSklIiMjA3PmzMGRI0fybZszZw4EQcCjR49KvY7q1avD19e31N+HqDAYdIjek/Xr1+PkyZM4ceIE1qxZA11dXXTr1g27d++WujRSiIyMDAQFBRUYdIjKKj2pCyAqK+rVqwcPDw/1886dO6N8+fL46aef0K1bNwkrIyJSLl7RIZKIkZERDAwMoK+v/9Z9L1++jB49eqB8+fIwMjJCgwYNsHHjxnz7PX36FJMmTYKTkxMMDQ1hbW0NHx8fXL9+/bXHfvnyJQYPHgxTU9MCb6X928qVK1G/fn2YmprCzMwMtWvXxv/+9z/19rxbQeHh4RgyZAisrKxQrlw5dOvWDbdv3853vIMHD6Jdu3YwNzeHiYkJWrRogYiIiHz7Xb9+Hf369YONjQ0MDQ1RrVo1DBo0CNnZ2QBeXckIDAyEo6MjjIyMYGVlBQ8PD/z0009v/Dx5/vnnnzfWO3fuXOjp6eHevXv5Xuvn54cKFSogKyvrtcf39fWFqakprl+/jk6dOqFcuXKwtbXFV199BQA4deoUWrZsiXLlysHFxaXA/7ZJSUkYOXIkqlatCgMDAzg6OiIoKAg5OTkAXt2WrFSpEgAgKChIfZv0v7eQHj58iH79+sHCwgI2Njbw8/PDs2fPNPbJysrC9OnT4ejoCAMDA1SpUgVjxozB06dPNfZ7+fIlpkyZgsqVK8PExAQtW7bEmTNnXn+iiSTAoEP0nuTm5iInJwcvX77E/fv3MWHCBKSnp6N///5vfN2NGzfQvHlzXLlyBcuWLcNvv/0GV1dX+Pr6YuHCher90tLS0LJlS6xevRpDhgzB7t27sWrVKri4uCAxMbHAYz99+hSdOnXCn3/+icjISHz44YevrePnn3/G6NGj0aZNG+zYsQM7d+7ExIkTkZ6enm/foUOHQkdHBz/++CNCQ0Nx5swZtG3bVuMX5Q8//ICOHTvC3NwcGzduxLZt22BlZYVOnTpphJ0LFy6gSZMmOHXqFIKDg7Fv3z4sWLAA2dnZePHiBQAgICAAK1euxPjx47F//35s3rwZffr0wePHj994bgtb78iRI6Gnp4fVq1drvO7Jkyf4+eefMXToUBgZGb3xPV6+fInevXuja9eu2LVrF7p06YLp06fjf//7HwYPHgw/Pz/s2LEDtWrVgq+vL86dO6d+bVJSEpo2bYoDBw5g1qxZ2LdvH4YOHYoFCxZg+PDhAABbW1vs379f/XlOnjyJkydPYubMmRp1fPTRR3BxccGvv/6KadOm4ccff8TEiRPV20VRRM+ePbF48WIMHDgQe/bsQUBAADZu3Ahvb291uASA4cOHY/HixRg0aBB27dqFjz76CL1798Y///xTqPNO9F6IRFSq1q9fLwLI9zA0NBS//fbbfPsDEGfPnq1+/umnn4qGhoZiQkKCxn5dunQRTUxMxKdPn4qiKIrBwcEiADE8PPy1tcTHx4sAxEWLFonx8fGiq6ur6OrqKt65c+etn2Ps2LGipaVloT5rr169NNqPHz8uAhDnzZsniqIopqeni1ZWVmK3bt009svNzRXr168vNm3aVN3m7e0tWlpaisnJya9933r16ok9e/Z862coar2iKIqDBw8Wra2txezsbHXb119/Lero6Ijx8fFvfJ/BgweLAMRff/1V3fby5UuxUqVKIgAxOjpa3f748WNRV1dXDAgIULeNHDlSNDU1Fe/evatx3MWLF4sAxCtXroiiKIopKSn5vj95Zs+eLQIQFy5cqNE+evRo0cjISFSpVKIoiuL+/fsL3G/r1q0iAHHNmjWiKIritWvXRADixIkTNfbbsmWLCEAcPHjwG88J0fvCKzpE78mmTZsQFRWFqKgo7Nu3D4MHD8aYMWOwYsWKN77u0KFDaNeuHezt7TXafX19kZGRgZMnTwIA9u3bBxcXF7Rv3/6ttURHR6NZs2awsbHB8ePH4eDg8NbXNG3aFE+fPkW/fv2wa9euN47eGTBggMbz5s2bw8HBAYcPHwYAnDhxAk+ePMHgwYORk5OjfqhUKnTu3BlRUVFIT09HRkYGIiMj0bdvX/VtmdfVtm/fPkybNg1HjhxBZmbmWz/Pu9QLAP7+/khOTsYvv/wCAFCpVFi5ciW6du2K6tWrv/U9BEGAj4+P+rmenh6cnZ1ha2uLhg0bqtutrKxgbW2Nu3fvqtv++OMPeHl5wc7OTuN8denSBQAQGRlZ6M/avXt3jefu7u7IyspCcnIygFffNwD5bnn16dMH5cqVU19tyzs3/z13ffv2hZ4eu3+S9uC3keg9qVOnTr7OyHfv3sWUKVPw2WefwdLSssDXPX78GLa2tvna7ezs1NsBICUlBdWqVStULeHh4Xj06BGWLl362vf9r4EDByInJwffffcdPvroI6hUKjRp0gTz5s1Dhw4dNPatXLlyvtdXrlxZXevDhw8BAB9//PFr3+/JkyfQ0dFBbm4uqlat+sbali1bhqpVq2Lr1q34+uuvYWRkhE6dOmHRokWoWbPmWz/b2+oFgIYNG6JVq1YICwvDgAED8Mcff+DOnTv5bme9jomJSb7bWwYGBrCyssq3r4GBgUafn4cPH2L37t2v7c/1LkPGK1SooPHc0NAQANTh8PHjx9DT08sXLAVB0Dgnef/733Onp6eX7z2IpMSgQyQhd3d3HDhwADdv3kTTpk0L3KdChQoF9rF58OABAKBixYoAgEqVKuH+/fuFet/JkycjLi4OgwYNQk5ODgYNGlSo1w0ZMgRDhgxBeno6jh49itmzZ+PDDz/EzZs3Na4KJSUl5XttUlISnJ2dNWpevnw5mjVrVuB72djYIDc3F7q6um/9XOXKlUNQUBCCgoLw8OFD9dWdbt26vbEjdmHrzTN+/Hj06dMH0dHRWLFiBVxcXPKFvNJQsWJFuLu7Y/78+QVuzwu9JaFChQrIyclBSkqKRtgRRRFJSUlo0qSJej/g1XmqUqWKer+cnJxC940ieh9464pIQjExMQDwxtsy7dq1w6FDh9TBJs+mTZtgYmKiDgpdunTBzZs31bce3kRHRwerV6+Gv78/fH19sXLlynequ1y5cujSpQtmzJiBFy9e4MqVKxrbt2zZovH8xIkTuHv3Ltq2bQsAaNGiBSwtLXH16lV4eHgU+DAwMICxsTHatGmDX375pdBXLWxsbODr64t+/frhxo0byMjIeOtr3lZvnl69eqFatWqYNGkSDh48iNGjR0MQhELVVRwffvghLl++jBo1ahR4rvKCzn+vzhRFu3btALzqLP5vv/76K9LT09Xb887Nf8/dtm3b1CPBiLQBr+gQvSeXL19W/wJ4/PgxfvvtN4SHh6NXr15wdHR87etmz56t7qMxa9YsWFlZYcuWLdizZw8WLlwICwsLAMCECROwdetW9OjRA9OmTUPTpk2RmZmpHk3l5eWV79hLliyBmZkZRo8ejefPn2Py5MmvrWP48OEwNjZGixYtYGtri6SkJCxYsAAWFhbqv/LznD17FsOGDUOfPn1w7949zJgxA1WqVMHo0aMBAKampli+fDkGDx6MJ0+e4OOPP4a1tTVSUlJw4cIFpKSkqMPX0qVL0bJlS3zwwQeYNm0anJ2d8fDhQ/z+++9YvXo1zMzM8MEHH+DDDz+Eu7s7ypcvj2vXrmHz5s3w9PSEiYnJW//bvK3ePLq6uhgzZgymTp2KcuXKvbfZf4ODgxEeHo7mzZtj/PjxqFWrFrKysnDnzh3s3bsXq1atQtWqVWFmZgYHBwfs2rUL7dq1g5WVFSpWrFioPkR5OnTogE6dOmHq1KlITU1FixYtcPHiRcyePRsNGzbEwIEDAby6FfvZZ58hNDQU+vr6aN++PS5fvozFixfD3Ny8lM4EURFI3RuaSOkKGnVlYWEhNmjQQFy6dKmYlZWlsT8KGDVz6dIlsVu3bqKFhYVoYGAg1q9fX1y/fn2+9/rnn39Ef39/sVq1aqK+vr5obW0tdu3aVbx+/booipqjrv5t0aJFIgBx1qxZr/0cGzduFL28vEQbGxvRwMBAtLOzE/v27StevHgx32f9888/xYEDB4qWlpaisbGx6OPjI8bGxuY7ZmRkpNi1a1fRyspK1NfXF6tUqSJ27dpV/OWXXzT2u3r1qtinTx+xQoUKooGBgVitWjXR19dXfe6mTZsmenh4iOXLlxcNDQ1FJycnceLEieKjR49e+3mKUq8oiuKdO3dEAOKoUaPeeOx/Gzx4sFiuXLl87W3atBHr1q2br93BwUHs2rWrRltKSoo4fvx40dHRUdTX1xetrKzExo0bizNmzBCfP3+u3u/gwYNiw4YNRUNDQ43RT3mjrlJSUgo8B/8eOZaZmSlOnTpVdHBwEPX19UVbW1vx888/F//55x+N12ZnZ4uTJk0Sra2tRSMjI7FZs2biyZMnRQcHB466Iq0hiKIoSpKwiEhxNmzYgCFDhiAqKkqj47WSLF++HOPHj8fly5dRt25dqcshorfgrSsiokI4f/484uPjERwcjB49ejDkEMkEgw4RUSH06tULSUlJaNWqFVatWiV1OURUSLx1RURERIrF4eVERESkWAw6REREpFhlvo+OSqXCgwcPYGZm9l4m/iIiIqLiE0URaWlpsLOzg47O66/blPmg8+DBg3yLJRIREZE83Lt3743r4ZX5oGNmZgbg1YnibJ5ERETykJqaCnt7e/Xv8dcp80En73aVubk5gw4REZHMvK3bCTsjExERkWKV2aATFhYGV1fXfIsREhERkXKU+QkDU1NTYWFhgWfPnvHWFRERkUwU9vd3me+jQ0REmnJzc/Hy5Uupy6AyTl9fH7q6usU+DoMOEREBeDUvSVJSEp4+fSp1KUQAAEtLS1SuXLlY89wx6BAREQCoQ461tTVMTEw4iSpJRhRFZGRkIDk5GQBga2tb5GOV2aATFhaGsLAw5ObmSl0KEZHkcnNz1SGnQoUKUpdDBGNjYwBAcnIyrK2ti3wbq8yOuhozZgyuXr2KqKgoqUshIpJcXp8cExMTiSsh+j9538fi9Bkrs0GHiIjy4+0q0iYl8X1k0CEiIiLFYtAhIiIixWLQISIiWWvbti0mTJjw2u3Vq1dHaGhoib1fSR+PSheDDhERESlWmQ06XOuKiIhI+crsPDpjxozBmDFj1GtlEFHZ1HjyplI57rlFg0rluFSwnJwcjB07Fj/88AN0dXXx+eefY+7cuQWO2klISMC4ceMQEREBHR0ddO7cGcuXL4eNjY16n99//x3BwcG4fPkyTE1N0bp1a/z2228Fvvf69esxYcIEbN++HR06dHhjndu3b0dQUBBu3boFExMTNGzYELt27UK5cuXg6+uLp0+fomHDhggLC0NWVhb69euH5cuXw8DAAMCrifQWLVqEVatWITExES4uLpg5cyY+/vhj9XtcuXIFU6ZMwV9//QVRFNGgQQNs2LABNWrUKMqplb0ye0WHiIiUY+PGjdDT08Pp06exbNkyhISEYO3atfn2E0URPXv2xJMnTxAZGYnw8HDExcXhk08+Ue+zZ88e9O7dG127dsX58+cREREBDw+PAt938eLFCAwMxIEDB94achITE9GvXz/4+fnh2rVrOHLkCHr37o1/r60dERGBa9eu4fDhw/jpp5+wY8cOBAUFqbd/8cUXWL9+PVauXIkrV65g4sSJ+OyzzxAZGQkA+Pvvv9G6dWsYGRnh0KFDOHfuHPz8/JCTk/NO51NJyuwVHSIiUg57e3uEhIRAEATUqlULly5dQkhICIYPH66x38GDB3Hx4kXEx8fD3t4eALB582bUrVsXUVFRaNKkCebPn49PP/1UI2DUr18/33tOnz4dGzduxJEjR+Dm5vbWGhMTE5GTk4PevXvDwcEBAPK9zsDAAOvWrYOJiQnq1q2L4OBgTJ48GXPnzkVmZiaWLl2KQ4cOwdPTEwDg5OSEY8eOYfXq1WjTpg3CwsJgYWGBn3/+Gfr6+gAAFxeXdziTysOgQ0REstesWTON21Senp5YsmRJvmV+rl27Bnt7e3XIAQBXV1dYWlri2rVraNKkCWJiYvIFpP9asmQJ0tPTcfbsWTg5ORWqxvr166Ndu3Zwc3NDp06d0LFjR3z88ccoX768xj7/np3a09MTz58/x71795CcnIysrKx8V45evHiBhg0bAgBiYmLQqlUrdcgh3roiIqIyRBTFAvvt/Ls9b42lN2nVqhVyc3Oxbdu2Qr+3rq4uwsPDsW/fPri6umL58uWoVasW4uPj3/paQRCgUqkAvLq1FhMTo35cvXoV27dvL3TtZQ2DDhERyd6pU6fyPa9Zs2a+hSBdXV2RkJCAe/fuqduuXr2KZ8+eoU6dOgAAd3d3REREvPH9mjZtiv379+PLL7/EokWLCl2nIAho0aIFgoKCcP78eRgYGGDHjh3q7RcuXEBmZqbG5zA1NUXVqlXh6uoKQ0NDJCQkwNnZWeORd4XK3d0df/31V7HWhlKaMnvriquXExEpx7179xAQEICRI0ciOjoay5cvx5IlS/Lt1759e7i7u2PAgAEIDQ1FTk4ORo8ejTZt2qg7HM+ePRvt2rVDjRo18OmnnyInJwf79u3DlClTNI7l6emJffv2oXPnztDT08PEiRPfWOPp06cRERGBjh07wtraGqdPn0ZKSoo6YAGvbkMNHToUX3zxBe7evYvZs2dj7Nix0NHRgZmZGQIDAzFx4kSoVCq0bNkSqampOHHiBExNTTF48GCMHTsWy5cvx6efforp06fDwsICp06dQtOmTVGrVq0SONPyU2aDDoeXExEpx6BBg5CZmYmmTZtCV1cX48aNw4gRI/LtJwgCdu7ciXHjxqF169Yaw8vztG3bFr/88gvmzp2Lr776Cubm5mjdunWB79uiRQvs2bMHPj4+0NXVxfjx419bo7m5OY4ePYrQ0FCkpqbCwcEBS5YsQZcuXdT7tGvXDjVr1kTr1q2RnZ2NTz/9FHPmzFFvnzt3LqytrbFgwQLcvn0blpaWaNSoEf73v/8BACpUqIBDhw5h8uTJaNOmDXR1ddGgQQO0aNHiXU+pYgjiv8e1lUF5QefZs2cwNzeXuhwies84j84rWVlZiI+Ph6OjI4yMjKQup0zKm0dn586dUpeiNd70vSzs72/20SEiIiLFYtAhIiIqAQkJCTA1NX3tIyEhQeoSy6Qy20eHiIioJNnZ2SEmJuaN299kw4YNJVsQAWDQISIiKhF6enpwdnaWugz6D966IiIiIsVi0CEiIiLFYtAhIiIixSqzQScsLAyurq5o0qSJ1KUQERFRKSmzQWfMmDG4evUqoqKipC6FiIiISglHXRER0RuV1uzRBSnKjNJt27ZFgwYNEBoaWvIFkeyV2Ss6RERU9hw5cgSCIODp06cldsw7d+5AEIQ3zqFD0mHQISIiIsVi0CEiIsX44Ycf4OHhATMzM1SuXBn9+/dHcnIygFdXXry8vAAA5cuXhyAI8PX1BQCIooiFCxfCyckJxsbGqF+/PrZv364+7j///IMBAwagUqVKMDY2Rs2aNbF+/XoAgKOjIwCgYcOGEAQBbdu2fX8fmN6KfXSIiEgxXrx4gblz56JWrVpITk7GxIkT4evri71798Le3h6//vorPvroI9y4cQPm5uYwNjYGAHzxxRf47bffsHLlStSsWRNHjx7FZ599hkqVKqFNmzaYOXMmrl69in379qFixYq4desWMjMzAQBnzpxB06ZNcfDgQdStWxcGBgZSngL6DwYdIiJSDD8/P/XPTk5OWLZsGZo2bYrnz5/D1NQUVlZWAABra2tYWloCANLT07F06VIcOnQInp6e6tceO3YMq1evRps2bZCQkICGDRvCw8MDAFC9enX1+1SqVAkAUKFCBVSuXPk9fEp6Fww6RESkGOfPn8ecOXMQExODJ0+eQKVSAXi1srirq2uBr7l69SqysrLQoUMHjfYXL16gYcOGAIDPP/8cH330EaKjo9GxY0f07NkTzZs3L90PQyWCQYeIiBQhPT0dHTt2RMeOHfHDDz+gUqVKSEhIQKdOnfDixYvXvi4vDO3ZswdVqlTR2GZoaAgA6NKlC+7evYs9e/bg4MGDaNeuHcaMGYPFixeX3geiEsGgQ0REinD9+nU8evQIX331Fezt7QEAZ8+e1dgnr/9Mbm6uus3V1RWGhoZISEhAmzZtXnv8SpUqwdfXF76+vmjVqhUmT56MxYsXF3hM0h4MOkREpAjVqlWDgYEBli9fjlGjRuHy5cuYO3euxj4ODg4QBAF//PEHfHx8YGxsDDMzMwQGBmLixIlQqVRo2bIlUlNTceLECZiammLw4MGYNWsWGjdujLp16yI7Oxt//PEH6tSpA+BVfx9jY2Ps378fVatWhZGRESwsLKQ4BVSAMht0wsLCEBYWxgRORPQWRZmtWAqVKlXChg0b8L///Q/Lli1Do0aNsHjxYnTv3l29T5UqVRAUFIRp06ZhyJAhGDRoEDZs2IC5c+fC2toaCxYswO3bt2FpaYlGjRrhf//7H4BXV4KmT5+OO3fuwNjYGK1atcLPP/8MANDT08OyZcsQHByMWbNmoVWrVjhy5IgUp4AKIIiiKEpdhJRSU1NhYWGBZ8+ewdzcXOpyiOg9K63lDeQSDvJkZWUhPj4ejo6OMDIykrocIgBv/l4W9vc3JwwkIiIixWLQISIiIsVi0CEiIiLFYtAhIiIixWLQISIiIsVi0CEiIiLFYtAhIiIixSqzEwYSyRnnfiEiKhxe0SEiIiLF4hUdIiJ6o4Rgt/f2XtVmXXpv71Vcvr6+ePr0KXbu3AkAaNu2LRo0aIDQ0FBJ6yJNDDpEREQl4LfffoO+vr7UZdB/MOgQERGVACsrK6lLoAKwjw4REcla27ZtMXbsWIwdOxaWlpaoUKECvvjiC+StWf3ixQtMmTIFVapUQbly5fDBBx9orC6+YcMGWFpa4sCBA6hTpw5MTU3RuXNnJCYmqvfJzc1FQECA+vhTpkzBf9fEbtu2LSZMmKB+Xr16dXz55Zfw8/ODmZkZqlWrhjVr1mi85sSJE2jQoAGMjIzg4eGBnTt3QhAExMTElPh5KqsYdIiISPY2btwIPT09nD59GsuWLUNISAjWrl0LABgyZAiOHz+On3/+GRcvXkSfPn3QuXNnxMbGql+fkZGBxYsXY/PmzTh69CgSEhIQGBio3r5kyRKsW7cO33//PY4dO4YnT55gx44db61ryZIl8PDwwPnz5zF69Gh8/vnnuH79OgAgLS0N3bp1g5ubG6KjozF37lxMnTq1hM8MldlbV2FhYQgLC0Nubq7UpRARUTHZ29sjJCQEgiCgVq1auHTpEkJCQuDt7Y2ffvoJ9+/fh52dHQAgMDAQ+/fvx/r16/Hll18CAF6+fIlVq1ahRo0aAICxY8ciODhYffzQ0FBMnz4dH330EQBg1apVOHDgwFvr8vHxwejRowEAU6dORUhICI4cOYLatWtjy5YtEAQB3333HYyMjODq6oq///4bw4cPL9FzU9aV2Ss6Y8aMwdWrVxEVFSV1KUREVEzNmjWDIAjq556enoiNjcXZs2chiiJcXFxgamqqfkRGRiIuLk69v4mJiTrkAICtrS2Sk5MBAM+ePUNiYiI8PT3V2/X09ODh4fHWutzd3dU/C4KAypUrq49748YNuLu7w8jISL1P06ZNi/Dp6U3K7BUdIiIqG3R1dXHu3Dno6upqtJuamqp//u9oKUEQ8vXBKYqCjqtSqQAAoihqhLO8NipZZfaKDhERKcepU6fyPa9ZsyYaNmyI3NxcJCcnw9nZWeNRuXLlQh3bwsICtra2Gu+Rk5ODc+fOFavm2rVr4+LFi8jOzla3nT17tljHpPwYdIiISPbu3buHgIAA3LhxAz/99BOWL18Of39/uLi4YMCAARg0aBB+++03xMfHIyoqCl9//TX27t1b6OP7+/vjq6++wo4dO3D9+nWMHj0aT58+LVbN/fv3h0qlwogRI3Dt2jUcOHAAixcvBoB8V3qo6HjrioiI3kgOsxUPGjQImZmZaNq0KXR1dTFu3DiMGDECALB+/XrMmzcPkyZNwt9//40KFSrA09MTPj4+hT7+pEmTkJiYCF9fX+jo6MDPzw+9evXCs2fPilyzubk5du/ejc8//xwNGjSAm5sbZs2ahf79+2v026HiEcQyfkMwNTUVFhYWePbsGczNzaUuh6hQuKhnyeG5fCUrKwvx8fFwdHSU3S9ZJS29sGXLFgwZMgTPnj2DsbGx1OVI7k3fy8L+/uYVHSIiIols2rQJTk5OqFKlCi5cuICpU6eib9++DDkliEGHiIhIIklJSZg1axaSkpJga2uLPn36YP78+VKXpSgMOkREJGv/Xs5BbqZMmYIpU6ZIXYaicdQVERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoeXExHRG7VY3uK9vdfxccff23sVl5JmZN6wYQMmTJhQ7PW73qR69eqYMGECJkyYUGrvURBe0SEiIiLFYtAhIiLSErm5uVCpVCV+3JcvX5b4MeWCQYeIiGStbdu2GD9+PKZMmQIrKytUrlwZc+bMAQDcuXMHgiAgJiZGvf/Tp08hCIJ6RuUjR45AEAQcOHAADRs2hLGxMby9vZGcnIx9+/ahTp06MDc3R79+/ZCRkaHx3jk5ORg7diwsLS1RoUIFfPHFF/j3WtkvXrzAlClTUKVKFZQrVw4ffPCBxkzOGzZsgKWlJf744w+4urrC0NAQd+/efePnValUCA4ORtWqVWFoaIgGDRpg//796u15n3nbtm1o27YtjIyM8MMPPxTqXB44cAB16tSBqakpOnfujMTERPW2qKgodOjQARUrVoSFhQXatGmD6OhojdfPmTMH1apVg6GhIezs7DB+/HiN7RkZGfDz84OZmRmqVauGNWvWFKqu4mDQISIi2du4cSPKlSuH06dPY+HChQgODkZ4ePg7HWPOnDlYsWIFTpw4gXv37qFv374IDQ3Fjz/+iD179iA8PBzLly/P9756eno4ffo0li1bhpCQEKxdu1a9fciQITh+/Dh+/vlnXLx4EX369EHnzp0RGxur3icjIwMLFizA2rVrceXKFVhbW7+xzm+++QZLlizB4sWLcfHiRXTq1Andu3fXOCYATJ06FePHj8e1a9fQqVOnt37+jIwMLF68GJs3b8bRo0eRkJCAwMBA9fa0tDQMHjwYf/31F06dOoWaNWvCx8cHaWlpAIDt27cjJCQEq1evRmxsLHbu3Ak3NzeN91iyZAk8PDxw/vx5jB49Gp9//jmuX7/+1tqKg52RiYhI9tzd3TF79mwAQM2aNbFixQpERESgZs2ahT7GvHnz0KLFq47XQ4cOxfTp0xEXFwcnJycAwMcff4zDhw9j6tSp6tfY29sjJCQEgiCgVq1auHTpEkJCQjB8+HDExcXhp59+wv3792FnZwcACAwMxP79+7F+/Xp8+eWXAF7dVvr2229Rv379QtW5ePFiTJ06FZ9++ikA4Ouvv8bhw4cRGhqKsLAw9X4TJkxA7969C/35X758iVWrVqFGjRoAgLFjxyI4OFi93dvbW2P/1atXo3z58oiMjMSHH36IhIQEVK5cGe3bt4e+vj6qVauGpk2barzGx8cHo0ePBvAqiIWEhODIkSOoXbt2oet8V7yiQ0REsufu7q7x3NbWFsnJyUU+ho2NDUxMTNQhJ6/tv8ds1qwZBEFQP/f09ERsbCxyc3MRHR0NURTh4uICU1NT9SMyMhJxcXHq1xgYGOSr/3VSU1Px4MEDdSDL06JFC1y7dk2jzcPDo1DHzGNiYqIOOUD+c5icnIxRo0bBxcUFFhYWsLCwwPPnz5GQkAAA6NOnDzIzM+Hk5IThw4djx44dyMnJ0XiPf39OQRBQuXLld/7v9K54RYeIiGRPX19f47kgCFCpVNDRefX3/L/7zbyuY+6/jyEIwmuPWVgqlQq6uro4d+4cdHV1NbaZmpqqfzY2NtYIS4Xx3/1FUczXVq5cuXc6ZkGf99/nzdfXFykpKQgNDYWDgwMMDQ3h6emJFy9eAHh1devGjRsIDw/HwYMHMXr0aCxatAiRkZHqYxf3nBaFYq7oZGRkwMHBQeN+IhERlW2VKlUCAI1Otf/umFxcp06dyve8Zs2a0NXVRcOGDZGbm4vk5GQ4OztrPCpXrlyk9zM3N4ednR2OHTum0X7ixAnUqVOnyJ+jMP766y+MHz8ePj4+qFu3LgwNDfHo0SONfYyNjdG9e3csW7YMR44cwcmTJ3Hp0qVSrettFHNFZ/78+fjggw+kLoOIiLSIsbExmjVrhq+++grVq1fHo0eP8MUXX5TY8e/du4eAgACMHDkS0dHRWL58OZYsWQIAcHFxwYABAzBo0CAsWbIEDRs2xKNHj3Do0CG4ubnBx8enSO85efJkzJ49GzVq1ECDBg2wfv16xMTEYMuWLSX2uQri7OyMzZs3w8PDA6mpqZg8eTKMjY3V2zds2IDc3Fx88MEHMDExwebNm2FsbAwHB4dSrettFBF0YmNjcf36dXTr1g2XL1+WuhwiIkWR02zFBVm3bh38/Pzg4eGBWrVqYeHChejYsWOJHHvQoEHIzMxE06ZNoauri3HjxmHEiBHq7evXr8e8efMwadIk/P3336hQoQI8PT2LHHIAYPz48UhNTcWkSZOQnJwMV1dX/P777+/U8boo1q1bhxEjRqBhw4aoVq0avvzyS427KJaWlvjqq68QEBCA3NxcuLm5Yffu3ahQoUKp1vU2gvjvG3ASOHr0KBYtWoRz584hMTERO3bsQM+ePTX2+fbbb7Fo0SIkJiaibt26CA0NRatWrdTbe/TogUWLFuHEiRO4fPkyFi9eXOj3T01NhYWFBZ49ewZzc/OS+lhEparx5E2lctxziwaVynG1Gc/lK1lZWYiPj4ejoyOMjIykLocIwJu/l4X9/S15H5309HTUr18fK1asKHD71q1bMWHCBMyYMQPnz59Hq1at0KVLF3Uv7127dsHFxQUuLi6Fer/s7GykpqZqPIiIiEiZJA86Xbp0wbx581471n/p0qUYOnQohg0bhjp16iA0NBT29vZYuXIlgFcdv37++WdUr14dgYGB+O677zTG/f/XggUL1MPiLCwsYG9vXyqfi4iIqCj+PRT9v4+//vqrSMfs0qXLa4+ZN5+PUml1H50XL17g3LlzmDZtmkZ7x44dceLECQCvgsuCBQsAvOoIdfnyZcyaNeu1x5w+fToCAgLUz1NTUxl2iIhIa7xpVFiVKlWKdMy1a9ciMzOzwG1WVlZFOqZcaHXQefToEXJzc2FjY6PRbmNjg6SkpCId09DQEIaGhiVRHhERUYlzdnYu8WMWNSApgVYHnTyFmRgJeDWZERERFZ3E41OINJTE91HyPjpvUrFiRejq6ua7epOcnJzvKg8RERVd3oy1/12dm0hKed/H/86o/C60+oqOgYEBGjdujPDwcPTq1UvdHh4ejh49ehTr2GFhYQgLC0Nubm5xyyQtkBDs9vadiqDaLGln9CR6X3R1dWFpaaled8jExOSdlyUgKimiKCIjIwPJycmwtLTMt4TGu5A86Dx//hy3bt1SP4+Pj0dMTAysrKxQrVo1BAQEYODAgfDw8ICnpyfWrFmDhIQEjBo1qljvO2bMGIwZM0Y9Dp+IqKzLW5agtBdZJCosS0vLIi+XkUfyoHP27Fl4eXmpn+eNiBo8eDA2bNiATz75BI8fP0ZwcDASExNRr1497N27V/IppYmIlEYQBNja2sLa2vq1C18SvS/6+vrFupKTR/Kg07Zt27d2Nho9ejRGjx79nioiIirbdHV1S+QXDJE20OrOyERERETFUWaDTlhYGFxdXdGkSROpSyEiIqJSUmaDzpgxY3D16lVERUVJXQoRERGVkjIbdIiIiEj5GHSIiIhIsRh0iIiISLHKbNBhZ2QiIiLlK7NBh52RiYiIlK/MBh0iIiJSPgYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUqwyG3Q4vJyIiEj5ymzQ4fByIiIi5SuzQYeIiIiUj0GHiIiIFItBh4iIiBSLQYeIiIgUi0GHiIiIFKvMBh0OLyciIlK+Mht0OLyciIhI+cps0CEiIiLlY9AhIiIixWLQISIiIsVi0CEiIiLFYtAhIiIixWLQISIiIsVi0CEiIiLFKrNBhxMGEhERKV+ZDTqcMJCIiEj5ymzQISIiIuVj0CEiIiLFYtAhIiIixWLQISIiIsVi0CEiIiLFYtAhIiIixWLQISIiIsVi0CEiIiLFYtAhIiIixWLQISIiIsUqs0GHa10REREpX5kNOlzrioiISPnKbNAhIiIi5WPQISIiIsVi0CEiIiLF0pO6ACIiojdJCHYrleNWm3WpVI5L2oVXdIiIiEixGHSIiIhIsRh0iIiISLEYdIiIiEixGHSIiIhIsRh0iIiISLEYdIiIiEixGHSIiIhIsRh0iIiISLEYdIiIiEixGHSIiIhIscps0AkLC4OrqyuaNGkidSlERERUSsps0BkzZgyuXr2KqKgoqUshIiKiUlJmgw4REREpH4MOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpVpGCjre3N54+fZqvPTU1Fd7e3sWtiYiIiKhEFCnoHDlyBC9evMjXnpWVhb/++qvYRRERERGVBL132fnixYvqn69evYqkpCT189zcXOzfvx9VqlQpueqIiIiIiuGdgk6DBg0gCAIEQSjwFpWxsTGWL19eYsURERERFcc7BZ34+HiIoggnJyecOXMGlSpVUm8zMDCAtbU1dHV1S7xIIiIioqJ4p6Dj4OAAAFCpVKVSjLZqPHlTqRz33KJBpXJcIiIieuWdgs6/3bx5E0eOHEFycnK+4DNr1qxiF0ZERERUXEUKOt999x0+//xzVKxYEZUrV4YgCOptgiAw6BAREZFWKFLQmTdvHubPn4+pU6eWdD1EREREJaZI8+j8888/6NOnT0nXQkRERFSiihR0+vTpgz///LOkayEiIiIqUUW6deXs7IyZM2fi1KlTcHNzg76+vsb28ePHl0hxRERERMVRpKCzZs0amJqaIjIyEpGRkRrbBEF4r0EnLS0N3t7eePnyJXJzczF+/HgMHz78vb0/ERERaa8iBZ34+PiSrqPITExMEBkZCRMTE2RkZKBevXro3bs3KlSoIHVpREREJLEi9dHRJrq6ujAxMQHwalHR3NxciKIocVVERESkDYp0RcfPz++N29etW1foYx09ehSLFi3CuXPnkJiYiB07dqBnz54a+3z77bdYtGgREhMTUbduXYSGhqJVq1bq7U+fPkWbNm0QGxuLRYsWoWLFiu/0eYiIiEiZijy8/N+P5ORkHDp0CL/99huePn36TsdKT09H/fr1sWLFigK3b926FRMmTMCMGTNw/vx5tGrVCl26dEFCQoJ6H0tLS1y4cAHx8fH48ccf8fDhw9e+X3Z2NlJTUzUeREREpExFuqKzY8eOfG0qlQqjR4+Gk5PTOx2rS5cu6NKly2u3L126FEOHDsWwYcMAAKGhoThw4ABWrlyJBQsWaOxrY2MDd3d3HD169LXz/CxYsABBQUHvVCMRERHJU4n10dHR0cHEiRMREhJSUofEixcvcO7cOXTs2FGjvWPHjjhx4gQA4OHDh+qrMqmpqTh69Chq1ar12mNOnz4dz549Uz/u3btXYvUSERGRdinyop4FiYuLQ05OTokd79GjR8jNzYWNjY1Gu42NDZKSkgAA9+/fx9ChQyGKIkRRxNixY+Hu7v7aYxoaGsLQ0LDEaiQiIiLtVaSgExAQoPFcFEUkJiZiz549GDx4cIkU9m//XjQ07/3y2ho3boyYmJgSf08iIiKSvyIFnfPnz2s819HRQaVKlbBkyZK3jsh6FxUrVoSurq766k2e5OTkfFd5iIiIiP6rSEHn8OHDJV1HgQwMDNC4cWOEh4ejV69e6vbw8HD06NGjWMcOCwtDWFgYcnNzi1smERERaali9dFJSUnBjRs3IAgCXFxcUKlSpXc+xvPnz3Hr1i318/j4eMTExMDKygrVqlVDQEAABg4cCA8PD3h6emLNmjVISEjAqFGjilM6xowZgzFjxiA1NRUWFhbFOhYRERFppyIFnfT0dIwbNw6bNm2CSqUC8GqG4kGDBmH58uXqmYoL4+zZs/Dy8lI/z+v/M3jwYGzYsAGffPIJHj9+jODgYCQmJqJevXrYu3cvHBwcilI6ERERlSFFGl4eEBCAyMhI7N69G0+fPsXTp0+xa9cuREZGYtKkSe90rLZt26pHTP37sWHDBvU+o0ePxp07d5CdnY1z586hdevWRSmbiIiIypgiXdH59ddfsX37drRt21bd5uPjA2NjY/Tt2xcrV64sqfpKDfvoEBERKV+RruhkZGQUOOrJ2toaGRkZxS7qfRgzZgyuXr2KqKgoqUshIiKiUlKkoOPp6YnZs2cjKytL3ZaZmYmgoCB4enqWWHFERERExVGkW1ehoaHo0qULqlativr160MQBMTExMDQ0BB//vlnSddIREREVCRFCjpubm6IjY3FDz/8gOvXr0MURXz66acYMGAAjI2NS7pGIiIioiIpUtBZsGABbGxsMHz4cI32devWISUlBVOnTi2R4oiISFOL5S1K5bjHxx0vleMSSa1IfXRWr16N2rVr52uvW7cuVq1aVeyi3oewsDC4urqiSZMmUpdCREREpaRIQScpKQm2trb52itVqoTExMRiF/U+cNQVERGR8hUp6Njb2+P48fyXOY8fPw47O7tiF0VERERUEorUR2fYsGGYMGECXr58CW9vbwBAREQEpkyZ8s4zIxMRERGVliIFnSlTpuDJkycYPXo0Xrx4AQAwMjLC1KlTMX369BItkIiIiKioihR0BEHA119/jZkzZ+LatWswNjZGzZo1YWhoWNL1ERERERVZkYJOHlNTU9mOWuJaV0RERMpXpM7ISsBRV0RERMpXZoMOERERKR+DDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpVpkNOly9nIiISPnKbNDhPDpERETKV2aDDhERESkfgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESlWmQ06nDCQiIhI+cps0OGEgURERMpXZoMOERERKR+DDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKVaZDTpc64qIiEj59KQuQCpjxozBmDFjkJqaCgsLC6nLKVEtlrcoleMeH3e8VI5LRERUWsrsFR0iIiJSPgYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlKsMht0wsLC4OrqiiZNmkhdChEREZWSMht0xowZg6tXryIqKkrqUoiIiKiUlNmgQ0RERMrHoENERESKxaBDREREisWgQ0RERIqlJ3UBRERE9H8aT95UKsc9t2hQqRxX2/GKDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpluyDzr1799C2bVu4urrC3d0dv/zyi9QlERERkZbQk7qA4tLT00NoaCgaNGiA5ORkNGrUCD4+PihXrpzUpREREZHEZB90bG1tYWtrCwCwtraGlZUVnjx5wqBDRERE0t+6Onr0KLp16wY7OzsIgoCdO3fm2+fbb7+Fo6MjjIyM0LhxY/z1118FHuvs2bNQqVSwt7cv5aqJiIhIDiQPOunp6ahfvz5WrFhR4PatW7diwoQJmDFjBs6fP49WrVqhS5cuSEhI0Njv8ePHGDRoENasWfPG98vOzkZqaqrGg4iIiJRJ8qDTpUsXzJs3D7179y5w+9KlSzF06FAMGzYMderUQWhoKOzt7bFy5Ur1PtnZ2ejVqxemT5+O5s2bv/H9FixYAAsLC/WDV3+IiIiUS/Kg8yYvXrzAuXPn0LFjR432jh074sSJEwAAURTh6+sLb29vDBw48K3HnD59Op49e6Z+3Lt3r1RqJyIiIulpdWfkR48eITc3FzY2NhrtNjY2SEpKAgAcP34cW7duhbu7u7p/z+bNm+Hm5lbgMQ0NDWFoaFiqdRMREZF20Oqgk0cQBI3noiiq21q2bAmVSiVFWURERKTltPrWVcWKFaGrq6u+epMnOTk531WedxUWFgZXV1c0adKkWMchIiIi7aXVQcfAwACNGzdGeHi4Rnt4ePhbOx2/zZgxY3D16lVERUUV6zhERESkvSS/dfX8+XPcunVL/Tw+Ph4xMTGwsrJCtWrVEBAQgIEDB8LDwwOenp5Ys2YNEhISMGrUKAmrJiIiIjmQPOicPXsWXl5e6ucBAQEAgMGDB2PDhg345JNP8PjxYwQHByMxMRH16tXD3r174eDgIFXJREREJBOSB522bdtCFMU37jN69GiMHj36PVVERERESqHVfXRKEzsjExERKV+ZDTrsjExERKR8ZTboEBERkfIx6BAREZFiMegQERGRYjHoEBERkWKV2aDDUVdERETKV2aDDkddERERKV+ZDTpERESkfAw6REREpFgMOkRERKRYDDpERESkWGU26HDUFRERkfKV2aDDUVdERETKV2aDDhERESkfgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKVaZDTqcR4eIiEj5ymzQ4Tw6REREyldmgw4REREpH4MOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpVpkNOpwwkIiISPnKbNDhhIFERETKV2aDDhERESkfgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESlWmQ06XOuKiIhI+cps0OFaV0RERMpXZoMOERERKR+DDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpFoMOERERKRaDDhERESkWgw4REREpVpkNOmFhYXB1dUWTJk2kLoWIiIhKSZkNOmPGjMHVq1cRFRUldSlERERUSsps0CEiIiLlY9AhIiIixdKTugAiIlKGxpM3lcpxd5iVymGpjOAVHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiw9qQuQmiiKAIDU1NTX7pObnVkq7/2m9yyOnMycUjluadVbEtKyckvluNr6meX2ndRmcjuX2vzvu7TOZZo+/32XBG39vEWV93nyfo+/jiC+bQ+Fu3//Puzt7aUug4iIiIrg3r17qFq16mu3l/mgo1Kp8ODBA5iZmUEQBKnLKVBqairs7e1x7949mJubS12OrPFclgyex5LDc1lyeC5LhlzOoyiKSEtLg52dHXR0Xt8Tp8zfutLR0XljEtQm5ubmWv2lkxOey5LB81hyeC5LDs9lyZDDebSwsHjrPuyMTERERIrFoENERESKxaAjA4aGhpg9ezYMDQ2lLkX2eC5LBs9jyeG5LDk8lyVDaeexzHdGJiIiIuXiFR0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIikqWjR48iJyf/Iqc5OTk4evSoBBWRNuLwci329OlTbN++HXFxcZg8eTKsrKwQHR0NGxsbVKlSReryZCE6Ohr6+vpwc3MDAOzatQvr16+Hq6sr5syZAwMDA4krlBd+J4tu2bJlhd53/PjxpViJcujq6iIxMRHW1tYa7Y8fP4a1tTVyc0tn1XMlCg4ORmBgIExMTDTaMzMzsWjRIsyaNUuiyoqPQUdLXbx4Ee3bt4eFhQXu3LmDGzduwMnJCTNnzsTdu3exadMmqUuUhSZNmmDatGn46KOPcPv2bdStWxe9evVCVFQUunbtitDQUKlLlA1+J4vH0dGxUPsJgoDbt2+XcjXKoKOjg4cPH6JSpUoa7Tdv3oSHhwdSU1Mlqkx+lBway/yintoqICAAvr6+WLhwIczMzNTtXbp0Qf/+/SWsTF5u3ryJBg0aAAB++eUXtG7dGj/++COOHz+OTz/9lEHnHfA7WTzx8fFSl6AYvXv3BvAqFPr6+mrM4Jubm4uLFy+iefPmUpUnS6IoQhCEfO0XLlyAlZWVBBWVHAYdLRUVFYXVq1fna69SpQqSkpIkqEieRFGESqUCABw8eBAffvghAMDe3h6PHj2SsjTZ4XeStEXeitWiKMLMzAzGxsbqbQYGBmjWrBmGDx8uVXmyUr58eQiCAEEQ4OLiohF2cnNz8fz5c4waNUrCCouPQUdLGRkZFXjZ9caNG/ku09LreXh4YN68eWjfvj0iIyOxcuVKAK/+uraxsZG4Onnhd7J4AgICCr3v0qVLS7ES+Vu/fj0AoHr16ggMDES5cuUkrki+QkNDIYoi/Pz8EBQUpA6RwKvQWL16dXh6ekpYYfGxj46WGjFiBFJSUrBt2zZYWVnh4sWL0NXVRc+ePdG6dWvecimkixcvYsCAAUhISEBAQABmz54NABg3bhweP36MH3/8UeIK5YPfyeLx8vIq1H6CIODQoUOlXA2RpsjISLRo0QJ6eprXP3Jzc7F792707NlTmsJKAIOOlkpNTYWPjw+uXLmCtLQ02NnZISkpCZ6enti7dy//gimmrKws6OrqQl9fX+pSZIPfSdI2Dx8+RGBgICIiIpCcnIz//jqTcwdaqV2/fh3r1q3Dxo0b8c8//+DFixdSl1RkDDpa7tChQ4iOjoZKpUKjRo3Qvn17qUuiMo7fSdIWXbp0QUJCAsaOHQtbW9t8nWl79OghUWXylJ6ejq1bt+L777/HqVOn4OXlhU8//RQ9e/ZExYoVpS6vyBh0SNFyc3MREhKCbdu2ISEhId9fJU+ePJGoMirroqKi8MsvvxT4vfztt98kqkpezMzM8Ndff6lHVlLRnDx5EmvXrsW2bdtQs2ZNDBgwAFOnTsXFixfh6uoqdXnFxs7IWmr8+PFwdnbON3HYihUrcOvWLfaHKKSgoCCsXbsWAQEBmDlzJmbMmIE7d+5g586dsp4A633hJHel4+eff8agQYPQsWNHhIeHo2PHjoiNjUVSUhJ69eoldXmyYW9vn+92Fb0bV1dXZGRkoH///jh9+rQ62EybNk3iykqQSFrJzs5OPHv2bL72c+fOiVWqVJGgInlycnIS//jjD1EURdHU1FS8deuWKIqi+M0334j9+vWTsjRZqF69usajXLlyoiAIYvny5cXy5cuLgiCI5cqVEx0dHaUuVVbc3NzEFStWiKL46nsZFxcnqlQqcfjw4eKsWbMkrk4+Dhw4IHbs2FGMj4+XuhTZ0tfXFwcOHCj++eefokqlUrfr6emJV65ckbCyksO1rrTU48ePNYb55TE3N+f8L+8gKSlJvfyDqakpnj17BgD48MMPsWfPHilLk4X4+Hj1Y/78+WjQoAGuXbuGJ0+e4MmTJ7h27RoaNWqEuXPnSl2qrMTFxaFr164AAENDQ6Snp0MQBEycOBFr1qyRuDr5+OSTT3DkyBHUqFEDZmZmsLKy0njQ28XHx6NWrVr4/PPPUbVqVQQGBuL8+fMFTh4oV7x1paWcnZ2xf/9+jB07VqN93759cHJykqgq+alatSoSExNRrVo1ODs7488//0SjRo0QFRWlMZsqvd3MmTOxfft21KpVS91Wq1YthISE4OOPP8aAAQMkrE5erKyskJaWBuDVhIuXL1+Gm5sbnj59ioyMDImrkw/ewi++KlWqYMaMGZgxYwYOHTqEdevWoUWLFsjJycGGDRswbNgwuLi4SF1msTDoaKmAgACMHTsWKSkp8Pb2BgBERERgyZIl/Mf9Dnr16oWIiAh88MEH8Pf3R79+/fD9998jISEBEydOlLo8WUlMTMTLly/ztefm5uLhw4cSVCRfrVq1Qnh4ONzc3NC3b1/4+/vj0KFDCA8PR7t27aQuTzYGDx4sdQmK4u3tDW9vbzx79gxbtmzBunXrsHjxYtSrVw8XL16Uurwi46grLbZy5UrMnz8fDx48APBqFtA5c+Zg0KBBElcmX6dOncKJEyfg7OyM7t27S12OrHTr1g0JCQn4/vvv0bhxYwiCgLNnz2L48OGwt7fH77//LnWJsvHkyRNkZWXBzs4OKpUKixcvxrFjx+Ds7IyZM2eifPnyUpcoCwkJCW/cXq1atfdUiXLFxMRg3bp17zQwQdsw6MhASkoKjI2NYWpqKnUpVIalpKRg8ODB2L9/v3qixZycHHTq1AkbNmzIt+oxUWnT0dF5Y18SThj4bnJycnDkyBHExcWhf//+MDMzw4MHD2Bubi7r3z8MOqRIKpUKV65cUXdEXrVqlcZcJbq6uvj888+ho8P++O/q5s2buHbtGgCgTp06sr9/L4W9e/dCV1cXnTp10mj/888/kZubiy5dukhUmbxcuHBB4/nLly9x/vx5LF26FPPnz1evck5vd/fuXXTu3BkJCQnIzs7GzZs34eTkhAkTJiA7O1u9TqAsSTnki14vKSlJ/Oyzz0RbW1tRV1dX1NHR0XjQm23ZskVs3bq1+rmpqalYtWpV9TBpU1NTce3atRJWKG8qlUpjKCq9Gzc3N3HPnj352vft2ye6u7tLUJGy/PHHH2KbNm2kLkNWevToIX722Wdidna2esoDURTFI0eOiM7OzhJXVzzsjKylfH19kZCQgJkzZxY4tTm92fr16zFq1CiNtsjISPWItVWrVuGHH37A0KFDpShPtjZt2oRFixYhNjYWAODi4oLJkydj4MCBElcmL7GxsQXOOFu7dm3cunVLgoqUxcXFBVFRUVKXISvHjh3D8ePHYWBgoNHu4OCAv//+W6KqSgaDjpY6duwYpzYvhmvXrr1x6vI2bdrgf//733usSP6WLl2KmTNnYuzYsWjRogVEUcTx48cxatQoPHr0iKPY3oGFhQVu376N6tWra7TfunWLi6O+g9TUVI3noigiMTERc+bMQc2aNSWqSp5UKlWBfZru378PMzMzCSoqOQw6WopTmxfPo0ePNDrP3b59GxUqVFA/19fXR3p6uhSlydby5cuxcuVKjVF/PXr0QN26dTFnzhwGnXfQvXt3TJgwATt27ECNGjUAvAo5kyZN4mjAd2BpaZnvarcoirC3t8fPP/8sUVXy1KFDB4SGhqonrBQEAc+fP8fs2bPh4+MjcXXFw87IWurPP//EkiVLsHr16nx/9dHbOTg4YOXKla/9B7p7926MHTsWd+/efc+VyZeRkREuX74MZ2dnjfbY2Fi4ubkhKytLosrk59mzZ+jcuTPOnj2LqlWrAnj1l3OrVq3w22+/wdLSUtoCZSIyMlLjuY6ODipVqgRnZ2fo6fHv+Hfx4MEDeHl5QVdXF7GxsfDw8EBsbCwqVqyIo0ePynpUJYOOlipfvjwyMjKQk5MDExMT9XDePFx1+838/Pxw48YNHD9+PN82URTRokUL1K5dG+vWrZOgOnmqV68e+vfvn++W37x587B161ZcunRJosrkSRRFhIeH48KFCzA2Noa7uztat24tdVlUhmVmZuKnn35CdHQ0VCoVGjVqhAEDBsDY2Fjq0oqFQUdLbdy48Y3bOSPom8XFxaFRo0aoXbs2AgMD4eLiAkEQcP36dSxevBg3btzAuXPn8l2doNf79ddf8cknn6B9+/Zo0aIFBEHAsWPHEBERgW3btnHV7VLg5uaGvXv3wt7eXupStFZcXBxCQ0Nx7do1CIKAOnXqwN/fX31LkIhBhxTrzJkz8PX1xfXr19X38UVRRO3atbF+/Xp88MEHElcoP+fOnUNISAiuXbsGURTh6uqKSZMmoWHDhlKXpkhmZma4cOEC17d7jQMHDqB79+5o0KCBuoP8iRMncOHCBezevRsdOnSQukTZeN3M5oIgwMjICM7OznB0dHzPVZUMBh0ZyMzMzLfGkLm5uUTVyM/58+fVw6Fr1qzJX8okGww6b9awYUN06tQJX331lUb7tGnT8OeffyI6OlqiyuQnb5bp/0aCvDZBENCyZUvs3LlTdkuUcFpYLZWeno6xY8fC2toapqamKF++vMaDCq9hw4bo2bMn6tevr54pmQrvwYMHCAwMzDeUF3jVqXby5Mlc1JMkce3atQLnwvLz88PVq1clqEi+wsPD0aRJE4SHh+PZs2d49uwZwsPD0bRpU/zxxx84evQoHj9+jMDAQKlLfWcMOlpqypQpOHToEL799lsYGhpi7dq1CAoKgp2dHTZt2iR1ebKRkZGBoUOHwsTEBHXr1lUvAjh+/Ph8fwVSwZYuXYrU1NQCryJaWFggLS0NS5culaAyKusqVaqEmJiYfO0xMTGyHiUkBX9/fyxduhTt2rWDmZkZzMzM0K5dOyxevBiTJ09GixYtEBoaivDwcKlLfWcMOlpq9+7d+Pbbb/Hxxx9DT08PrVq1whdffIEvv/wSW7Zskbo82Zg+fTouXLiAI0eOwMjISN3evn17bN26VcLK5GP//v0ac+f816BBg/DHH3+8x4qIXhk+fDhGjBiBr7/+Gn/99ReOHTuGr776CiNHjsSIESOkLk9W4uLiCvxjxtzcHLdv3wbw6tb/o0eP3ndpxcaJBrTUkydP1B2/zM3N1cPJW7Zsic8//1zK0mRl586d2Lp1K5o1a6YxsZirqyvi4uIkrEw+4uPjUa1atddur1q1Ku7cufP+CiL6/2bOnAkzMzMsWbIE06dPBwDY2dlhzpw5GD9+vMTVyUvjxo0xefJkbNq0CZUqVQIApKSkYMqUKWjSpAmAV3Nm5c37JCe8oqOlnJyc1L88XF1dsW3bNgCvrvRwMrHCS0lJKfASdnp6OtcPKyRjY+M3Bpk7d+7Ifp4NbbV69WrY2NhIXYbWEgQBEydOxP3799X9Su7fvw9/f3/++35H33//PeLj41G1alU4OzujZs2a6j9i1q5dCwB4/vw5Zs6cKXGl746jrrRUSEgIdHV1MX78eBw+fBhdu3ZFbm4ucnJysHTpUvj7+0tdoiy0adMGH3/8McaNGwczMzNcvHgRjo6OGDt2LG7duoX9+/dLXaLW69q1K+zs7PDdd98VuH3YsGF48OAB9u7d+54rk7eIiAhEREQgOTkZKpVKYxsnsnyzzMxMhIeHw8vLK986TKmpqThy5Ag6deoEQ0NDiSqUJ1EUceDAAdy8eVM9FUeHDh2goyPvayIMOjKRkJCAs2fPokaNGqhfv77U5cjGiRMn0LlzZwwYMAAbNmzAyJEjceXKFZw8eRKRkZFo3Lix1CVqvcOHD6NDhw6YMGECJk+erL7C8PDhQyxcuBDffPMN/vzzT3h7e0tcqXwEBQUhODgYHh4esLW1zXf1YceOHRJVJg/ffPMNfv/9d0RERBS4vX379ujVqxfGjBnznisjbcSgQ4p36dIlLF68GOfOnVNPaz516lQONX8Hq1evhr+/P16+fAlzc3MIgoBnz55BX18fISEh7Df2jmxtbbFw4UIMHDhQ6lJkqWnTppg5cya6detW4PY//vgDwcHBOHPmzHuuTN7S09MRGRmJhIQEvHjxQmObnPs8MehokWXLlhV6Xzl/6Uie/v77b2zbtg23bt2CKIpwcXHBxx9/LMvOiVKrUKECzpw5w2UKiqh8+fK4cOHCazvJJyQkoH79+vjnn3/ec2Xydf78efj4+CAjIwPp6emwsrLCo0ePYGJiAmtra/XIKzli0NEihZ1eWxAEWX/p3iddXV0kJibm65D8+PFjWFtbIzc3V6LK5Ofo0aNo3rx5vlWhc3JycOLECS5I+Q6mTp0KU1NTWXbs1AZmZmY4cuTIa289nzt3Dm3btkVaWtp7rky+2rZtCxcXF6xcuRKWlpa4cOEC9PX18dlnn8Hf3x+9e/eWusQi4/ByLRIfHy91CYrzuhyfnZ0NAwOD91yNvHl5eRUYGp89ewYvLy+GxrcICAhQ/6xSqbBmzRocPHgQ7u7u0NfX19iXEzC+Wd26dXHw4MHXBp3w8HDUrVv3PVclbzExMVi9ejV0dXWhq6uL7OxsODk5YeHChRg8eDCDDpG2ybsNKAgC1q5dC1NTU/W23NxcHD16FLVr15aqPFnKW+/mvx4/foxy5cpJUJG8nD9/XuN5gwYNAACXL1+WoBp58/PzQ0BAAOrWrYsPP/xQY9vu3bsxb948hsV3pK+vr/73bWNjg4SEBNSpUwcWFhbqGeXlikFHi92/fx+///57gR3D+I/4zUJCQgC8+uW8atUq6OrqqrcZGBigevXqWLVqlVTlyUreX3KCIMDX11djyG5ubi4uXryI5s2bS1WebBw+fFjqEhRjxIgROHr0KLp3747atWujVq1aEAQB165dw82bN9G3b1/OjPyOGjZsiLNnz8LFxQVeXl6YNWsWHj16hM2bN8t+4AaDjpaKiIhA9+7d4ejoiBs3bqBevXq4c+cORFFEo0aNpC5P6+XdBvTy8sJvv/3GhVCLwcLCAsCr0GhmZqYxOaCBgQGaNWuG4cOHS1WeLPn5+eGbb77JNwdMeno6xo0bx3l0CuGHH35A9+7d8eOPP6rnfalVqxaCgoLQt29fqcuTnS+//FLdp2nu3LkYPHgwPv/8czg7O2P9+vUSV1c87IyspZo2bYrOnTsjODgYZmZmuHDhAqytrTFgwAB07tyZw3npvQsKCkJgYCBvU5WA13WSf/ToESpXroycnByJKqOySBRFJCQkwNraWpGznDPoaCkzMzPExMSgRo0aKF++PI4dO4a6deviwoUL6NGjB9cWege8BVhycnJycOTIEcTFxaF///4wMzPDgwcPYG5urtEPigqWmpoKURRRvnx5xMbGqtcUAl7dBty9ezemTZuGBw8eSFilvKhUKty6davAGaY5ErBwVCoVjIyMcOXKFdSsWVPqckocb11pqXLlyiE7OxvAq0Xq4uLi1KMI5Lh6rFR4C7Dk3L17F507d0ZCQgKys7PRoUMHmJmZYeHChcjKymKfp0KwtLSEIAgQBAEuLi75tguCgKCgIAkqk6dTp06hf//+uHv3br4RloIgcCRgIeno6KBmzZp4/Pgxgw69P82aNcPx48fh6uqKrl27YtKkSbh06RJ+++03NGvWTOryZGP69OmYNGmS+hbgr7/+qnELkArP398fHh4euHDhAipUqKBu79WrF4YNGyZhZfJx+PBhiKIIb29v/Prrr7CyslJvMzAwgIODA+zs7CSsUF5GjRoFDw8P7Nmzp8ClNKjwFi5ciMmTJ2PlypWoV6+e1OWUKN660lK3b9/G8+fP4e7ujoyMDAQGBuLYsWNwdnZGSEgIHBwcpC5RFngLsORUrFgRx48fR61atdT9xpycnHDnzh24uroiIyND6hJl4+7du0hISMDq1asRFxeH7du3o0qVKti8eTMcHR3RsmVLqUuUhXLlyuHChQtwdnaWuhTZK1++PDIyMpCTkwMDA4N8fXWePHkiUWXFxys6WsrJyUn9s4mJCb799lsJq5Ev3gIsOSqVqsBbAffv3883eoje7OzZsxg4cCAGDBiA8+fPq7+jaWlp+PLLL7kSfCF98MEHuHXrFoNOCQgNDZW6hFLDoCMTt2/fRmZmJurUqQMdHR2py5EN3gIsOR06dEBoaCjWrFkD4FUfiOfPn2P27Nnw8fGRuDp5mTdvHlatWoVBgwbh559/Vrc3b94cwcHBElYmL+PGjcOkSZOQlJQENze3fDNMu7u7S1SZ/AwePFjqEkoNb11pmZcvX2LevHmIjo5Gs2bNMG3aNHz22WfYtm0bAKBWrVrYu3cvqlevLm2hMsFbgCXnwYMH8PLygq6uLmJjY+Hh4YHY2FhUrFgRR48ezTdUml7PxMQEV69eRfXq1TVuA96+fRuurq7IysqSukRZKOiPPkEQ1LN4szPyu8nNzcXOnTtx7do1CIIAV1dXdO/eXWPCVTniFR0tM23aNGzevBndu3fHunXrcObMGdy4cQM//vgjdHR0MHfuXMyYMQNbtmyRulRZ4C3AkmNnZ4eYmBj89NNPiI6OhkqlwtChQzFgwABFzr1RmmxtbXHr1q18f7AcO3ZM4ztLb8b1AUvOrVu34OPjg7///hu1atWCKIq4efMm7O3tsWfPHtSoUUPqEouMV3S0jIODA1auXAkfHx/cvHkTtWvXxp49e9ClSxcAQGRkJAYMGID79+9LXKn8PH/+PN88G+bm5hJVQ2XZwoULsXHjRqxbtw4dOnTA3r17cffuXUycOBGzZs3C2LFjpS6RyhgfHx+IoogtW7aoRwM+fvwYn332GXR0dLBnzx6JKyw6Bh0to6+vjzt37qBKlSoAAGNjY1y8eFE9t0FiYiLs7e05c2ohxcfHY+zYsThy5IjG7QBe2n53v//+e4HtgiDAyMgIzs7OcHR0fM9VydeMGTMQEhKi/l4aGhoiMDAQc+fOlbgyeYmLi0NoaKj6dkudOnXg7+8v6ysQUihXrhxOnTqVb12rCxcuoEWLFnj+/LlElRUfb11pmdzcXI0OdXp6ehr3R3V0dPJNjEWvN2DAAADAunXrYGNjw3k2iqFnz57q/g//9u8+ES1btsTOnTu5tlghzJ8/HzNmzMDVq1ehUqng6urK2aXf0YEDB9C9e3c0aNAALVq0gCiKOHHiBOrWrYvdu3ejQ4cOUpcoG4aGhuq1rv7t+fPnMDAwkKCiksMrOlpGR0cHGzduVC+k2K9fP4SGhsLGxgYA8PTpUwwZMoRXIgrJ1NQU586dQ61ataQuRfYiIiIwY8YMzJ8/H02bNgUAnDlzBl988QVmzpwJCwsLjBw5Eh988AG+//57iaulsqBhw4bo1KkTvvrqK432adOm4c8//0R0dLRElcnPoEGDEB0dje+//1797/v06dMYPnw4GjdujA0bNkhbYDEw6GiZwg4d/29fEyqYl5cXZsyYgfbt20tdiuzVq1cPa9asQfPmzTXajx8/jhEjRuDKlSs4ePAg/Pz8kJCQIFGVVJYYGRnh0qVL+ZYtuHnzJtzd3Tl67R08ffoUgwcPxu7du9V3FXJyctC9e3esX78elpaW0hZYDLx1pWUYYErW2rVrMWrUKPz999+oV68e59kohri4uAI7b5ubm+P27dsAgJo1a3IiRnpvKlWqhJiYmHxBJyYmhtMdvCNLS0vs2rULt27dwrVr1yCKIlxdXRUxGSODjpY6evQomjdvDj09zf9Eubm5OH78OFflLaSUlBTExcVhyJAh6jbOs1E0jRs3xuTJk7Fp0yb1qtspKSmYMmUKmjRpAgCIjY1F1apVpSyTypDhw4djxIgRuH37Npo3bw5BEHDs2DF8/fXXmDRpktTlyUpwcDACAwPh7OysEW4yMzOxaNEizJo1S8Lqioe3rrSUrq4uEhMT8/1V8vjxY1hbW/MXdCG5urqiTp06mDJlSoGdkTlhYOHduHEDPXr0QHx8POzt7SEIAhISEuDk5IRdu3bBxcUFO3fuRFpaGgYOHCh1uVQGiKKI0NBQLFmyBA8ePADwar6nyZMnY/z48Rx88A6U/DuHQUdL6ejo4OHDh+q/nPPcvHkTHh4eSE1NlagyeeGifyVLFEUcOHAAN2/ehCiKqF27Njp06MBlSUhyeSOGuO5a0bzud86hQ4fwySefICUlRaLKio+3rrRM7969Aby6veLr6wtDQ0P1ttzcXFy8eDFfZ1B6PW9vbwadEiQIAjp37ozOnTu/dh83Nzfs3bsX9vb277EyKusYcIqmfPnyEAQBgiDAxcVF4ypYbm4unj9/jlGjRklYYfEx6GiZvGHloijCzMxMY2p9AwMDNGvWDMOHD5eqPNnp1q0bJk6ciEuXLhW46F/37t0lqky57ty5g5cvX0pdBilUo0aNEBERgfLly6Nhw4ZvvD3F4eVvFxoaClEU4efnh6CgIPXvIODV75zq1avD09NTwgqLj0FHy6xfvx4AUL16dQQGBqJcuXISVyRveX+JFLQiNDsjE8lPjx491Fe6e/TowX44xZS3armjoyNatGiRbwCMErCPjhbLycnBkSNHEBcXh/79+8PMzAwPHjyAubk5Z1AlrfXv1biJSLupVCqoVCqNgPPw4UOsWrUK6enp6N69O1q2bClhhcXHHoRa6u7du3Bzc0OPHj0wZswYdUewhQsXIjAwUOLqiIik5+TkhMePH+drf/r0KYN2IQ0dOhSjR49WP09LS0OTJk0QFhaGAwcOwMvLC3v37pWwwuJT3jUqhfD394eHhwcuXLiAChUqqNt79eqFYcOGSViZ9lu2bBlGjBgBIyMjLFu27I37jh8//j1VRUQl7c6dOwXefs7Ozsb9+/clqEh+jh8/jhUrVqifb9q0CTk5OYiNjYWFhQWmTp2KRYsWwcfHR8Iqi4dBR0sdO3YMx48fz7eYmoODA/7++2+JqpKHkJAQDBgwAEZGRggJCXntfoIgMOgQydDvv/+u/vnAgQMaHWhzc3MREREBR0dHKUqTnb///ltjZumIiAh89NFH6nM6ePBgdd9RuWLQ0VIqlarAv1Tu37/PYZRvER8fX+DP9H6sXr1avQgtUWno2bMngFd/rOR1ps2jr6+P6tWrY8mSJRJUJj9GRkbIzMxUPz916hQWLVqksf358+dSlFZiGHS0VIcOHRAaGoo1a9YAePUP+vnz55g9e7asLyG+b3nTmpuYmGi0K2FacylEREQgIiICycnJ+dZlW7duHQCgf//+UpRGZUjed8/R0RFRUVGoWLGixBXJV/369bF582YsWLAAf/31Fx4+fAhvb2/19ri4ONjZ2UlYYfFx1JWWevDgAby8vKCrq4vY2Fh4eHggNjYWFStWxNGjR7lgXSEpeVrz9y0oKAjBwcHw8PCAra1tvmG9O3bskKgyIiqqw4cPw8fHB3Z2dkhMTES/fv3w/fffq7ePHj0a6enp2Lhxo4RVFg+v6GgpOzs7xMTE4KeffkJ0dDRUKhWGDh2KAQMGaEwiSG+Wt3jnf124cAFWVlYSVCRfq1atwoYNG7iOFWmN8ePHw9nZOV9fuxUrVuDWrVsIDQ2VpjAZ8fLywrlz5xAeHo7KlSujT58+GtsbNGiApk2bSlRdyeAVHVKkvGnNnz17BnNz89dOax4WFiZhlfJSoUIFnDlzBjVq1JC6FCIAQJUqVfD777+jcePGGu3R0dHo3r07R169g6NHj6J58+b5JgzMycnBiRMn0Lp1a4kqKz4GHS3171EF/yYIAoyMjODs7MxRBW+wceNG9bTmoaGhipzW/H2bOnUqTE1NMXPmTKlLIQLwqqPs5cuX861ld+vWLdSrVw9ZWVkSVSY/Sr7Nz1tXWqpnz54QBAH/zaF5bYIgoGXLlti5cyfKly8vUZXaqyxMa/4+BAQEqH9WqVRYs2YNDh48CHd393zrhi1duvR9l0dlnLOzM/bv34+xY8dqtO/bt48TBr6j193mf/z4seyXIuL/+2up8PBwzJgxA/Pnz1ffHz1z5gy++OILzJw5ExYWFhg5ciQCAwM1Oo6RJjMzM1y7dg1ubm4AgF27dmH9+vVwdXXFnDlz8s1TRJrOnz+v8bxBgwYAgMuXL0tQDZGmgIAAjB07FikpKeqRQhEREViyZAn75xRS7969Abz6I9rX11e9jhjw6jb/xYsX0bx5c6nKKxG8daWl6tWrhzVr1uT7gh0/fhwjRozAlStXcPDgQfj5+SEhIUGiKrVfkyZNMG3aNHz00Ue4ffs2XF1d0bt3b0RFRaFr1678P0MimVu5ciXmz5+PBw8eAHi1IPKcOXMwaNAgiSuThyFDhgB4dbu/b9++GoNd8m7zDx8+XNZD+Bl0tJSxsTGioqJQr149jfZLly6hadOmyMzMxN27d1GnTh1kZGRIVKX2s7CwQHR0NGrUqIGvv/4ahw4dwoEDB3D8+HF8+umnuHfvntQlyoafnx+++eabfBNWpqenY9y4cep5dIikkJKSAmNjYy54XERBQUEIDAyU/W2qgnBRTy3VuHFjTJ48Wb2YJ/DqH/KUKVPQpEkTAEBsbCyqVq0qVYmyIIqienKxgwcPqidbtLe3x6NHj6QsTXY2btyoMYNqnszMTGzatEmCioj+T6VKlRhyimH27NkwNDTEwYMHsXr1aqSlpQF4NacbZ0amUvH999+jR48eqFq1Kuzt7SEIAhISEuDk5IRdu3YBAJ4/f84RMG/h4eGBefPmoX379oiMjMTKlSsBvFoagssUFE5qaipEUYQoikhLS4ORkZF6W25uLvbu3csJLEky27dvx7Zt25CQkIAXL15obIuOjpaoKvm5e/cuOnfujISEBGRnZ6NDhw4wMzPDwoULkZWVhVWrVkldYpEx6GipWrVq4dq1azhw4ABu3rwJURRRu3ZtdOjQATo6ry7E5a33Qq8XGhqKAQMGYOfOnZgxY4Z6GOr27dtl38HufbG0tIQgCBAEAS4uLvm2C4KAoKAgCSqjsm7ZsmWYMWMGBg8ejF27dmHIkCGIi4tDVFQUxowZI3V5suLv7w8PDw9cuHABFSpUULf36tULw4YNk7Cy4mMfHZlzc3PD3r17YW9vL3UpspKVlQVdXd18Q6Qpv8jISIiiCG9vb/z6668aM0obGBjAwcFB9mvhkDzVrl0bs2fPRr9+/WBmZoYLFy7AyckJs2bNwpMnT7BixQqpS5SNihUr4vjx46hVq5bGubxz5w5cXV1l3ReUfXRk7s6dO3j58qXUZWi1p0+fYu3atZg+fTqePHkCALh69SqSk5Mlrkwe2rRpg7Zt2yI+Ph4VK1bEd999h2nTpsHZ2Rmenp6IiIjAsWPHpC6TyqCEhAT1lVljY2N1v5KBAwfip59+krI02VGpVAVOCnj//v18AxDkhkGHFO3ixYuoWbMmvv76ayxevBhPnz4F8GoByunTp0tbnMycPXsWnTp1grGxMc6fP4/s7GwAQFpaGr788kuJq6OyqHLlynj8+DEAwMHBAadOnQLwqg8eb1a8mw4dOmhMtyEIAp4/f47Zs2erB3HIFYMOKVpAQACGDBmC2NhYjU60Xbp0wdGjRyWsTH7mzZuHVatW4bvvvtO45de8eXN2+iRJeHt7Y/fu3QCAoUOHYuLEiejQoQM++eQT9OrVS+Lq5CUkJASRkZFwdXVFVlYW+vfvj+rVq+Pvv//G119/LXV5xcLOyKRoUVFRWL16db72KlWqICkpSYKK5OvGjRsFLuxnbm6uvlJG9D6tWbNGPX3EqFGjYGVlhWPHjqFbt24YNWqUxNXJi52dHWJiYvDTTz8hOjoaKpUKQ4cOxYABAzQmEZQjBh1SNCMjI6SmpuZrv3HjBipVqiRBRfJla2uLW7duoXr16hrtx44d47pCJAkdHR31KFQA6Nu3L/r27SthRfJmbGwMPz8/+Pn5SV1KiWLQIUXr0aMHgoODsW3bNgBQz0eUtywEFd7IkSPh7++PdevWQRAEPHjwACdPnkRgYCBmzZoldXlUBu3fvx+mpqZo2bIlACAsLAzfffcdXF1dERYWxgWP38Hvv/9eYLsgCDAyMoKzszMcHR3fc1Ulg8PLZe7HH39Ejx49FDltd0lITU2Fj48Prly5grS0NNjZ2SEpKQmenp7Yu3cvz9s7mjFjBkJCQpCVlQUAMDQ0RGBgIObOnStxZVQWubm54euvv4aPjw8uXboEDw8PTJo0CYcOHUKdOnWwfv16qUuUDR0dHQiCkK8Td16bIAho2bIldu7cKbsAyaCjxSIiIhAREYHk5GT1feg8XFfo3Rw6dEh937lRo0Zo37691CXJVkZGBq5evQqVSgVXV1dOu0+SMTU1xeXLl9ULeV6+fBnbt29HdHQ0fHx82A/vHURERGDGjBmYP38+mjZtCgA4c+YMvvjiC8ycORMWFhYYOXIkPvjgA3z//fcSV/tueOtKSwUFBSE4OBgeHh6wtbWFIAhSlyRr3t7e8Pb2fu12TrxYeCYmJvDw8JC6DCIYGBioJ7I7ePCgesVyKyurAvvm0ev5+/tjzZo1GjPGt2vXDkZGRhgxYgSuXLmC0NBQWfbfYdDRUqtWrcKGDRswcOBAqUspEzjxIpH8tGzZEgEBAWjRogXOnDmDrVu3AgBu3rzJBY/fUVxcHMzNzfO1m5ub4/bt2wCAmjVrynIxZM6jo6VevHjBtZiIiN5gxYoV0NPTw/bt27Fy5UpUqVIFALBv3z507txZ4urkpXHjxpg8eTJSUlLUbSkpKZgyZQqaNGkCAIiNjZVlgGQfHS01depUmJqacnXy9+Tfa7sQEZU1N27cQI8ePRAfHw97e3v1CFUnJyfs2rULLi4u2LlzJ9LS0mR3p4FBR4sEBASof1apVNi4cSPc3d3h7u6eb/HJpUuXvu/yFI1Bh0ieVCoVbt26VeCgjYImuKTXE0URBw4cwM2bNyGKImrXro0OHTpozFUkRww6WsTLy6vQ+x4+fLgUKyl7GHSI5OfUqVPo378/7t69W+Cw6IIWqaTikePADXZG1iIML0REhTdq1Ch4eHhgz549HJ36nshx4Ia8r0cpmJ+fH9LS0vK1p6eny3J4n7ZbvXo1bGxspC6DiN5BbGwsvvzyS9SpUweWlpawsLDQeBABvHWltXR1dZGYmAhra2uN9kePHqFy5crIycmRqDL54cSLRMrk7e2NKVOmcITVeyTH2/y8daVlUlNTIYoiRFFEWloajIyM1Ntyc3Oxd+/efOGHXo8TLxIp17hx4zBp0iQkJSXBzc0t36ANd3d3iSojbcIrOlomb72R1xEEAUFBQZgxY8Z7rEq+bG1tsXDhQtkNhySitytoNNC/12ZiZ+SSxys6VGyHDx+GKIrw9vbGr7/+CisrK/U2AwMDODg4wM7OTsIK5YUTLxIpV3x8vNQlkAzwio6Wunv3LhISErB69WrExcVh+/btqFKlCjZv3gxHR0e0bNlS6hJlgRMvEhGVnB9//BE9evRAuXLlpC6l0HhFR0udPXsWAwcOxIABA3D+/HlkZ2cDANLS0vDll19i7969Eleovf478eKaNWtw8OBBTrxIpFBXr15FQkICXrx4odHevXt3iSqSp8IM3Ojfv78UpRULr+hoqYYNG2LixIkYNGiQxj3RmJgYdO7cGUlJSVKXqLU48SJR2XD79m306tULly5dUvfNAaDu58g+OoX3toEbO3bskKiy4uMVHS1148aNAqcvNzc3x9OnT99/QTLC8EJUNvj7+8PR0REHDx6Ek5MTzpw5g8ePH2PSpElYvHix1OXJyqpVq7BhwwZFDtzghIFaytbWFrdu3crXfuzYMVn1dpcaJ14kUq6TJ08iODgYlSpVgo6ODnR0dNCyZUssWLAA48ePl7o8WVHywA0GHS01cuRI+Pv74/Tp0xAEAQ8ePMCWLVsQGBiI0aNHS12ebGzcuBGZmZn52jMzM7Fp0yYJKiKikpKbmwtTU1MAQMWKFfHgwQMAgIODA27cuCFlabIzbNgw/Pjjj1KXUSp460pLTZkyBc+ePYOXlxeysrLQunVrGBoaIjAwEGPHjpW6PK3HiReJlK9evXq4ePEinJyc8MEHH2DhwoUwMDDAmjVreOW7EMrKwA12RtZyGRkZuHr1KlQqFVxdXdV/vdCbceJFIuU7cOAA0tPT0bt3b9y+fRsffvghrl+/jgoVKmDr1q3w9vaWukStVlYGbjDokCJFRkZy4kWiMujJkycoX748l3shNfbRIUVq06YN2rZti/j4eFSsWBHfffcdpk2bBmdnZ3h6eiIiIgLHjh2TukwiKqKcnBzo6enh8uXLGu1WVlYMOUWg5IEbDDqkaGfPnkWnTp1gbGxc4MSLRCRPenp6cHBw4Fw5JUTJAzcYdEjR5s2bh1WrVuG7777T6FzXvHlzREdHS1gZERXXF198genTp+PJkydSlyJbqampePbsmXrgRmpqqvrxzz//KGLgBkddkaJx4kUi5Tl69Cg8PT2xbNky3Lp1C3Z2dnBwcMi3/hL/mHk7S0tLCIIAQRDg4uKSb3vewA05Y9AhRcubeLF69eoa7Zx4kUi+vLy8kJiYiJ49e0pdiuwdPnxY8QM3GHRI0fImXly3bp164sWTJ08iMDAQs2bNkro8IiqCvMHCs2fPlrgS+WvTpg0AID4+HgkJCVi9ejXi4uKwfft2VKlSBZs3b4ajoyNatmwpcaVFxz46pGhTpkxBz5494eXlhefPn6N169YYNmwYRo4cyYkXiWSMI6tKlpIHbnAeHSoTOPEikXLo6OhgxIgRMDExeeN+cp7N931r2LAhJk6ciEGDBsHMzAwXLlyAk5MTYmJi0LlzZyQlJUldYpHx1hWVCSYmJvDw8JC6DCIqIZcuXYKBgcFrt/OKz7tR8sANBh0iIpKdHTt2yH7YszZR8sAN9tEhIiJZ4dWakpc3cOP06dPqgRtbtmxBYGAgRo8eLXV5xcIrOkREJCvsWlrypkyZgmfPnsHLywtZWVlo3bo1DA0NERgYKPuBG+yMTEREsrJx40Z8+umnOH36NJo3bw49Pc2/2XNycnDixIkC+5zQmylx4AaDDhERyZKuri4SExPz9dV5/PgxrK2tuQ4WAWAfHSIikilRFAvsr/P48eN8y0FQ2cU+OkREJCu9e/cG8KpTsq+vLwwNDdXbcnNzcfHiRTRv3lyq8kjLMOgQEZGsWFhYAHh1RcfMzAzGxsbqbQYGBmjWrBmGDx8uVXmkZdhHh4iIZCkoKAiBgYG8TUVvxKBDRESylZOTgyNHjiAuLg79+/eHmZkZHjx4AHNzc0WMGKLiY9AhIiJZunv3Ljp37oyEhARkZ2fj5s2bcHJywoQJE5CVlYVVq1ZJXSJpAY66IiIiWfL394eHhwf++ecfjX46vXr1QkREhISVkTZhZ2QiIpKlY8eO4fjx4/kW93RwcMDff/8tUVWkbXhFh4iIZEmlUhU4KeD9+/dhZmYmQUWkjRh0iIhIljp06IDQ0FD1c0EQ8Pz5c8yePRs+Pj7SFUZahZ2RiYhIlh48eAAvLy/o6uoiNjYWHh4eiI2NRcWKFXH06NF8S0NQ2cSgQ0REspWZmYmffvoJ0dHRUKlUaNSoEQYMGKDROZnKNgYdIiIiUiyOuiIiIln6/fffC2wXBAFGRkZwdnaGo6Pje66KtA2v6BARkSzp6OhAEAT899dYXpsgCGjZsiV27tyJ8uXLS1QlSY2jroiISJbCw8PRpEkThIeH49mzZ3j27BnCw8PRtGlT/PHHHzh69CgeP36MwMBAqUslCfGKDhERyVK9evWwZs0aNG/eXKP9+PHjGDFiBK5cuYKDBw/Cz88PCQkJElVJUuMVHSIikqW4uDiYm5vnazc3N8ft27cBADVr1sSjR4/ed2mkRRh0iIhIlho3bozJkycjJSVF3ZaSkoIpU6agSZMmAIDY2FhUrVpVqhJJC3DUFRERydL333+PHj16oGrVqrC3t4cgCEhISICTkxN27doFAHj+/DlmzpwpcaUkJfbRISIi2RJFEQcOHMDNmzchiiJq166NDh06QEeHNyzoFQYdIiJSNDc3N+zduxf29vZSl0ISYOQlIiJFu3PnDl6+fCl1GSQRBh0iIiJSLAYdIiIiUiwGHSIiIlIsBh0iIiJSLAYdIiIiUiwGHSIiUrTVq1fDxsZG6jJIIpxHh4iIZCsiIgIRERFITk6GSqXS2LZu3TqJqiJtwiUgiIhIloKCghAcHAwPDw/Y2tpCEASpSyItxCs6REQkS7a2tli4cCEGDhwodSmkxdhHh4iIZOnFixdo3ry51GWQlmPQISIiWRo2bBh+/PFHqcsgLcdbV0REJBsBAQHqn1UqFTZu3Ah3d3e4u7tDX19fY9+lS5e+7/JICzHoEBGRbHh5eRV638OHD5diJSQXDDpERESkWOyjQ0REsuTn54e0tLR87enp6fDz85OgItJGvKJDRESypKuri8TERFhbW2u0P3r0CJUrV0ZOTo5ElZE24YSBREQkK6mpqRBFEaIoIi0tDUZGRuptubm52Lt3b77wQ2UXgw4REcmKpaUlBEGAIAhwcXHJt10QBAQFBUlQGWkj3roiIiJZiYyMhCiK8Pb2xq+//gorKyv1NgMDAzg4OMDOzk7CCkmbMOgQEZEs3b17FwkJCVi9ejXi4uKwfft2VKlSBZs3b4ajoyNatmwpdYmkBTjqioiIZOns2bPo1KkTjI2Ncf78eWRnZwMA0tLS8OWXX0pcHWkLBh0iIpKlefPmYdWqVfjuu+80ZkVu3rw5oqOjJayMtAmDDhERydKNGzfQunXrfO3m5uZ4+vTp+y+ItBKDDhERyZKtrS1u3bqVr/3YsWNwcnKSoCLSRgw6REQkSyNHjoS/vz9Onz4NQRDw4MEDbNmyBYGBgRg9erTU5ZGW4KgrIiKSrRkzZiAkJARZWVkAAENDQwQGBmLu3LkSV0bagkGHiIhkLSMjA1evXoVKpYKrqytMTU2lLom0CIMOERERKRb76BAREZFiMegQERGRYjHoEBERkWIx6BAREZFiMegQkaIdOXIEgiCUyky5giBg586dJX5cIio5DDpEpBht27bFhAkTpC6DiLQIgw4REREpFoMOEUmibdu2GDduHCZMmIDy5cvDxsYGa9asQXp6OoYMGQIzMzPUqFED+/btU7/m6tWr8PHxgampKWxsbDBw4EA8evQIAODr64vIyEh88803EAQBgiDgzp076teeO3cOHh4eMDExQfPmzXHjxg2NelauXIkaNWrAwMAAtWrVwubNmzW2x8bGonXr1jAyMoKrqyvCw8NL7+QQUYlh0CEiyWzcuBEVK1bEmTNnMG7cOHz++efo06cPmjdvjujoaHTq1AkDBw5ERkYGEhMT0aZNGzRo0ABnz57F/v378fDhQ/Tt2xcA8M0338DT0xPDhw9HYmIiEhMTYW9vr36vGTNmYMmSJTh79iz09PTg5+en3rZjxw74+/tj0qRJuHz5MkaOHIkhQ4bg8OHDAACVSoXevXtDV1cXp06dwqpVqzB16tT3e7KIqGhEIiIJtGnTRmzZsqX6eU5OjliuXDlx4MCB6rbExEQRgHjy5Elx5syZYseOHTWOce/ePRGAeOPGDfUx/f39NfY5fPiwCEA8ePCgum3Pnj0iADEzM1MURVFs3ry5OHz4cI3X9enTR/Tx8RFFURQPHDgg6urqivfu3VNv37dvnwhA3LFjR9FPAhGVOl7RISLJuLu7q3/W1dVFhQoV4Obmpm6zsbEBACQnJ+PcuXM4fPgwTE1N1Y/atWsDAOLi4t7pvWxtbdXHBYBr166hRYsWGvu3aNEC165dU2+vVq0aqlatqt7u6en5Tp+ViKShJ3UBRFR26evrazwXBEGjTRAEAK9uHalUKnTr1g1ff/11vuPkBZfCvte/j/vftjyiKKrbxAKWBPzv/kSknXhFh4hkoVGjRrhy5QqqV68OZ2dnjUe5cuUAAAYGBsjNzX3nY9epUwfHjh3TaDtx4gTq1KkDAHB1dUVCQgIePHig3n7y5MlifBoiel8YdIhIFsaMGYMnT56gX79+OHPmDG7fvo0///wTfn5+6nBTvXp1nD59Gnfu3MGjR480rti8yeTJk7FhwwasWrUKsbGxWLp0KX777TcEBgYCANq3b49atWph0KBBuHDhAv766y/MmDGj1D4rEZUcBh0ikgU7OzscP34cubm56NSpE+rVqwd/f39YWFhAR+fV/5UFBgZCV1cXrq6uqFSpEhISEgp17J49e+Kbb77BokWLULduXaxevRrr169H27ZtAQA6OjrYsWMHsrOz0bRpUwwbNgzz588vrY9KRCVIEAu6+UxERESkALyiQ0RERIrFoENERESKxaBDREREisWgQ0RERIrFoENERESKxaBDREREisWgQ0RERIrFoENERESKxaBDREREisWgQ0RERIrFoENERESK9f8AIfKE/Cg1/IAAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "ax = sns.countplot(df, x=\"method\", hue=\"block_spec\")\n", - "ax.set(yscale=\"log\")\n", - "ax.tick_params(axis='x', rotation=90)\n", - "_ = ax.set_title(\"Block specs by method\")" - ] - }, - { - "cell_type": "markdown", - "id": "510f5490-ce06-4f1e-bd58-1afff46686b4", - "metadata": {}, - "source": [ - "The `pending` block spec seems to be only used with `eth_estimateGas` and `eth_getTransactionCount`. It might be worth introducing specific optimizations for these methods with the `pending` block spec. " - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "6bb5bba0-bdb1-49ed-82d0-9eaec87a5674", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAAKHCAYAAACIHOJrAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB+vklEQVR4nO3dd1QU1/8+8GdBehcBAQFBFEVBVCxYscQaa9RYomKNASv22LuxQVRi+8SaYqJRY+wdewQRkWCJiEIMiA1QEBGY3x/+2G9WiqjoXWaf1zmc494ZZp8dR3lz5869CkmSJBARERHJkJboAEREREQfCgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdog9g06ZNUCgUKl9WVlbw9fXF3r178+2vUCgwa9asD5Llzp07UCgUWLp06Qc5fmmT93cTHh4uOkqp5uvrC19fX9ExiN6ojOgARHK2ceNGVK1aFZIkISkpCatWrULHjh2xZ88edOzYUXQ8onf23XffiY5AVCwsdIg+oBo1asDb21v5um3btrCwsMDPP//MQodKpYyMDBgaGsLd3V10FKJi4a0roo9IX18furq60NHReeO+0dHR6Ny5MywsLKCvrw8vLy9s3rw5334pKSkYN24cXFxcoKenB2tra7Rv3x7Xr18v9NgvX77EgAEDYGxsXOCttP9avXo1atasCWNjY5iYmKBq1ar4+uuvldvzbgUdOXIEAwcORNmyZWFkZISOHTvi9u3b+Y539OhRtGzZEqampjA0NESjRo1w7NixfPtdv34dvXv3ho2NDfT09ODo6Ij+/fvjxYsXAF79wB0/fjycnZ2hr6+PsmXLwtvbGz///HORnyfPkydPisw7d+5clClTBgkJCfm+d9CgQbC0tERmZmahx799+zZ69eoFOzs76OnpwcbGBi1btkRkZKTKfj/99BN8fHxgbGwMY2NjeHl54fvvv3/rczZr1iwoFAr89ddf6N27N8zMzGBjY4NBgwYhNTVVZd+QkBA0bdoU1tbWMDIygoeHBxYvXoyXL1+q7Ofr64saNWrg1KlTaNiwIQwNDTFo0CDlttdvXT1+/Bj+/v6wt7eHrq4uXFxcMHXqVOXfGZEI7NEh+oBycnKQnZ0NSZJw//59LFmyBOnp6ejTp0+R33fjxg00bNgQ1tbWWLFiBSwtLfHDDz/Az88P9+/fx8SJEwEAT58+RePGjXHnzh1MmjQJ9evXx7Nnz3Dq1CkkJiaiatWq+Y6dkpKCbt264dq1awgNDUWdOnUKzbFt2zb4+/tj5MiRWLp0KbS0tHDr1i3ExMTk23fw4MH45JNP8NNPPyEhIQHTpk2Dr68voqKiYG5uDgD44Ycf0L9/f3Tu3BmbN2+Gjo4O1q5dizZt2uDQoUNo2bIlAODKlSto3LgxypUrhzlz5qBy5cpITEzEnj17kJWVBT09PQQGBmLr1q2YN28eatWqhfT0dERHR+PRo0fF+rt5U94vv/wS8+fPx9q1azFv3jzl9z1+/Bjbtm3DiBEjoK+vX+jx27dvj5ycHCxevBiOjo54+PAhzp07h5SUFOU+M2bMwNy5c9GtWzeMGzcOZmZmiI6Oxt27d5X7FPec5fnss8/w+eefY/Dgwbh69SqmTJkCANiwYYNyn9jYWPTp0wfOzs7Q1dXFlStXMH/+fFy/fl1lPwBITEzEF198gYkTJ2LBggXQ0ir49+PMzEw0b94csbGxmD17Njw9PXH69GksXLgQkZGR2Ldv35v/Uog+BImIStzGjRslAPm+9PT0pO+++y7f/gCkmTNnKl/36tVL0tPTk+Lj41X2a9eunWRoaCilpKRIkiRJc+bMkQBIR44cKTRLXFycBEBasmSJFBcXJ7m7u0vu7u7SnTt33vg5RowYIZmbmxfrs3bt2lWl/ezZsxIAad68eZIkSVJ6erpUtmxZqWPHjir75eTkSDVr1pTq1aunbGvRooVkbm4uJScnF/q+NWrUkLp06fLGz/CueSVJkgYMGCBZW1tLL168ULZ98803kpaWlhQXF1foezx8+FACIAUHBxe6z+3btyVtbW2pb9++he7zNuds5syZEgBp8eLFKvv6+/tL+vr6Um5uboHvkZOTI718+VLasmWLpK2tLT1+/Fi5rVmzZhIA6dixY/m+r1mzZlKzZs2Ur9esWSMBkH799VeV/b755hsJgHT48OFCPyfRh8RbV0Qf0JYtWxAWFoawsDAcOHAAAwYMQEBAAFatWlXk9x0/fhwtW7aEg4ODSrufnx8yMjJw/vx5AMCBAwdQpUoVtGrV6o1ZIiIi0KBBA9jY2ODs2bNwcnJ64/fUq1cPKSkp6N27N37//Xc8fPiw0H379u2r8rphw4ZwcnLCiRMnAADnzp3D48ePMWDAAGRnZyu/cnNz0bZtW4SFhSE9PR0ZGRkIDQ1Fz549YWVlVWS2AwcOYPLkyTh58iSeP3/+xs/zNnkBYPTo0UhOTsb27dsBALm5uVi9ejU6dOiAihUrFnrssmXLolKlSliyZAmWL1+Oy5cvIzc3V2WfI0eOICcnBwEBAYUep7jn7L86deqk8trT0xOZmZlITk5Wtl2+fBmdOnWCpaUltLW1oaOjg/79+yMnJwc3b95U+X4LCwu0aNGi0Ix5jh8/DiMjI3Tv3l2l3c/PDwAKvD1J9DGw0CH6gKpVqwZvb294e3ujbdu2WLt2LVq3bo2JEyeq3MJ43aNHj2Bra5uv3c7OTrkdAB48eIAKFSoUK8uRI0dw//59DBkyRHkr6U369euHDRs24O7du/jss89gbW2N+vXr48iRI/n2LV++fIFteVnv378PAOjevTt0dHRUvr755htIkoTHjx/jyZMnyMnJeePnWrFiBSZNmoTdu3ejefPmKFu2LLp06YK///67WJ/tTXkBoFatWmjSpAlCQkIAAHv37sWdO3cwYsSIIo+tUChw7NgxtGnTBosXL0bt2rVhZWWFUaNG4enTpwBe/d0BKPJzFvec/ZelpaXKaz09PQBQFoLx8fFo0qQJ7t27h2+//RanT59GWFiY8jO+XjAWdB0W5NGjRyhfvjwUCoVKu7W1NcqUKVPsW4pEJY1jdIg+Mk9PTxw6dAg3b95EvXr1CtzH0tISiYmJ+dr//fdfAEC5cuUAAFZWVvjnn3+K9b4TJkxAbGws+vfvj+zsbPTv379Y3zdw4EAMHDgQ6enpOHXqFGbOnIlPP/0UN2/eVOkVSkpKyve9SUlJcHV1Vcm8cuVKNGjQoMD3srGxQU5ODrS1td/4uYyMjDB79mzMnj0b9+/fV/budOzYsciB2MXNm2fUqFHo0aMHIiIisGrVKlSpUgWffPLJG4/v5OSkHFR88+ZN/Prrr5g1axaysrKwZs0aZW/VP//8k6/nLk9xz9nb2L17N9LT07Fz506Vv7/XB0nneb1wKYylpSX+/PNPSJKk8j3JycnIzs5Wfhaij409OkQfWd4PlKJuy7Rs2RLHjx9XFjZ5tmzZAkNDQ+UPvXbt2uHmzZs4fvz4G99XS0sLa9euxejRo+Hn54fVq1e/VW4jIyO0a9cOU6dORVZWFv766y+V7T/++KPK63PnzuHu3bvKJ3MaNWoEc3NzxMTEKHu5Xv/S1dWFgYEBmjVrhu3btxd5q+y/bGxs4Ofnh969e+PGjRvIyMh44/e8KW+erl27wtHREePGjcPRo0fh7+9f7B/+eapUqYJp06bBw8MDERERAIDWrVtDW1u7yL+H4p6zt5GXPa+nBwAkScL69evf6jiva9myJZ49e4bdu3ertG/ZskW5nUgE9ugQfUDR0dHIzs4G8Kprf+fOnThy5Ai6du0KZ2fnQr9v5syZ2Lt3L5o3b44ZM2agbNmy+PHHH7Fv3z4sXrwYZmZmAIAxY8bgl19+QefOnTF58mTUq1cPz58/R2hoKD799FM0b94837GXLVsGExMT+Pv749mzZ5gwYUKhOYYOHQoDAwM0atQItra2SEpKwsKFC2FmZoa6deuq7BseHo4hQ4agR48eSEhIwNSpU2Fvbw9/f38AgLGxMVauXIkBAwbg8ePH6N69O6ytrfHgwQNcuXIFDx48UP7QX758ORo3boz69etj8uTJcHV1xf3797Fnzx6sXbsWJiYmqF+/Pj799FN4enrCwsIC165dw9atW+Hj4wNDQ8M3/t28KW8ebW1tBAQEYNKkSTAyMlKOOSlKVFQURowYgR49eqBy5crQ1dXF8ePHERUVhcmTJwMAKlasiK+//hpz587F8+fPlY+Ex8TE4OHDh5g9e/ZbnbPi+uSTT6Crq4vevXtj4sSJyMzMxOrVq/HkyZO3Os7r+vfvj5CQEAwYMAB37tyBh4cHzpw5gwULFqB9+/bFGkdG9EGIHQtNJE8FPXVlZmYmeXl5ScuXL5cyMzNV9sdrT11JkiRdvXpV6tixo2RmZibp6upKNWvWlDZu3JjvvZ48eSKNHj1acnR0lHR0dCRra2upQ4cO0vXr1yVJUn3q6r+WLFkiAZBmzJhR6OfYvHmz1Lx5c8nGxkbS1dWV7OzspJ49e0pRUVH5Puvhw4elfv36Sebm5pKBgYHUvn176e+//853zNDQUKlDhw5S2bJlJR0dHcne3l7q0KGDtH37dpX9YmJipB49ekiWlpaSrq6u5OjoKPn5+SnP3eTJkyVvb2/JwsJC0tPTk1xcXKSxY8dKDx8+LPTzvEteSZKkO3fuSACk4cOHF3nsPPfv35f8/PykqlWrSkZGRpKxsbHk6ekpBQUFSdnZ2Sr7btmyRapbt66kr68vGRsbS7Vq1cr391ycc5b31NWDBw8K/Lz/fUrsjz/+kGrWrCnp6+tL9vb20oQJE6QDBw5IAKQTJ04o92vWrJlUvXr1Aj/j609dSZIkPXr0SBo+fLhka2srlSlTRnJycpKmTJmS73on+pgUkiRJQiosIpKFTZs2YeDAgQgLC1OZBVpOVq5ciVGjRiE6OhrVq1cXHYeI3gJvXRERFeLy5cuIi4vDnDlz0LlzZxY5RKUQCx0iokJ07doVSUlJaNKkCdasWSM6DhG9A966IiIiItni4+VEREQkWyx0iIiISLZY6BAREZFsafxg5NzcXPz7778wMTF569lOiYiISAxJkvD06VPY2dlBS6vwfhuNL3T+/fffQteZISIiIvWWkJBQ5OK4GlvohISEICQkRDk9f0JCAkxNTQWnIiIiouJIS0uDg4MDTExMitxP4x8vT0tLg5mZGVJTU1noEBERlRLF/fnNwchEREQkWyx0iIiISLZY6BAREZFsaexgZCIiKlhOTg5evnwpOgZpOB0dHWhra7/3cVjoEBERgFfzkiQlJSElJUV0FCIAgLm5OcqXL/9e89yx0CEiIgBQFjnW1tYwNDTkJKokjCRJyMjIQHJyMgDA1tb2nY/FQoeIiJCTk6MsciwtLUXHIYKBgQEAIDk5GdbW1u98G0tjByOHhITA3d0ddevWFR2FiEi4vDE5hoaGgpMQ/Z+86/F9xoxpbKETEBCAmJgYhIWFiY5CRKQ2eLuK1ElJXI8aW+gQERGR/LHQISKiUs3X1xdjxowpdHvFihURHBxcYu9X0sejD4uFDhEREckWCx0iIiKSLRY6RERU6mVnZ2PEiBEwNzeHpaUlpk2bBkmSCtw3Pj4enTt3hrGxMUxNTdGzZ0/cv39fZZ89e/bA29sb+vr6KFeuHLp161boe2/cuBFmZmY4cuTIG3Pu2LEDHh4eMDAwgKWlJVq1aoX09HQAgJ+fH7p06YLZs2fD2toapqam+PLLL5GVlaX8fkmSsHjxYri4uMDAwAA1a9bEjh07VN7jr7/+QocOHWBqagoTExM0adIEsbGxb8wmV5xHh6iE1ZmwpcSOdWlJ/xI7FpGcbd68GYMHD8aff/6J8PBwDBs2DE5OThg6dKjKfpIkoUuXLjAyMkJoaCiys7Ph7++Pzz//HCdPngQA7Nu3D926dcPUqVOxdetWZGVlYd++fQW+79KlS7Fw4UIcOnQIDRo0KDJjYmIievfujcWLF6Nr1654+vQpTp8+rVKQHTt2DPr6+jhx4gTu3LmDgQMHoly5cpg/fz4AYNq0adi5cydWr16NypUr49SpU/jiiy9gZWWFZs2a4d69e2jatCl8fX1x/PhxmJqa4uzZs8jOzn6Ps1u6sdAhIqJSz8HBAUFBQVAoFHBzc8PVq1cRFBSUr9A5evQooqKiEBcXBwcHBwDA1q1bUb16dYSFhaFu3bqYP38+evXqhdmzZyu/r2bNmvnec8qUKdi8eTNOnjwJDw+PN2ZMTExEdnY2unXrBicnJwDI9326urrYsGEDDA0NUb16dcyZMwcTJkzA3Llz8fz5cyxfvhzHjx+Hj48PAMDFxQVnzpzB2rVr0axZM4SEhMDMzAzbtm2Djo4OAKBKlSpvcSblh4UOERGVeg0aNFCZc8XHxwfLli1DTk6Oyn7Xrl2Dg4ODssgBAHd3d5ibm+PatWuoW7cuIiMj8xVIr1u2bBnS09MRHh4OFxeXYmWsWbMmWrZsCQ8PD7Rp0watW7dG9+7dYWFhobLPfydt9PHxwbNnz5CQkIDk5GRkZmbik08+UTluVlYWatWqBQCIjIxEkyZNlEUOcYwOERFpEEmSCpyE7r/teUsPFKVJkybIycnBr7/+Wuz31tbWxpEjR3DgwAG4u7tj5cqVcHNzQ1xc3Bu/V6FQIDc3F8CrW2uRkZHKr5iYGOU4neJk1zQsdIiIqNS7cOFCvteVK1fOtz6Su7s74uPjkZCQoGyLiYlBamoqqlWrBgDw9PTEsWPHiny/evXq4eDBg1iwYAGWLFlS7JwKhQKNGjXC7NmzcfnyZejq6mLXrl3K7VeuXMHz589VPoexsTEqVKgAd3d36OnpIT4+Hq6uripfeT1Unp6eOH369HstmSA3GnvrKiQkBCEhIfm6NYmIqPRJSEhAYGAgvvzyS0RERGDlypVYtmxZvv1atWoFT09P9O3bF8HBwcrByM2aNYO3tzcAYObMmWjZsiUqVaqEXr16ITs7GwcOHMDEiRNVjuXj44MDBw6gbdu2KFOmDMaOHVtkxj///BPHjh1D69atYW1tjT///BMPHjxQFljAq9tQgwcPxrRp03D37l3MnDkTI0aMgJaWFkxMTDB+/HiMHTsWubm5aNy4MdLS0nDu3DkYGxtjwIABGDFiBFauXIlevXphypQpMDMzw4ULF1CvXj24ubmVwJkufTS20AkICEBAQADS0tJgZmYmOg4REb2H/v374/nz56hXrx60tbUxcuRIDBs2LN9+CoUCu3fvxsiRI9G0aVNoaWmhbdu2WLlypXIfX19fbN++HXPnzsWiRYtgamqKpk2bFvi+jRo1wr59+9C+fXtoa2tj1KhRhWY0NTXFqVOnEBwcjLS0NDg5OWHZsmVo166dcp+WLVuicuXKaNq0KV68eIFevXph1qxZyu1z586FtbU1Fi5ciNu3b8Pc3By1a9fG119/DQCwtLTE8ePHMWHCBDRr1gza2trw8vJCo0aN3vaUyoZCKmyiAQ2RV+ikpqbC1NRUdBySAT5eTqVRZmYm4uLi4OzsDH19fdFxNJKfnx9SUlKwe/du0VHURlHXZXF/fnOMDhEREckWCx0iIqISEB8fD2Nj40K/4uPjRUfUSBo7RoeIiKgk2dnZITIyssjtRdm0aVPJBiIALHSIiIhKRJkyZeDq6io6Br2Gt66IiIhItljoEBERkWzx1hUREVEpFZPwsMSO5e5QrsSOpU7Yo0NERESyxUKHiIiIZIuFDhERlWq+vr4YM2aM6BikpjhGh4iIilSSy5q8yYde9uTkyZNo3rw5njx5AnNz8xI55p07d+Ds7IzLly/Dy8urRI5JJYc9OkRERCRbLHSIiEg2fvjhB3h7e8PExATly5dHnz59kJycDOBVz0vz5s0BABYWFlAoFPDz8wMASJKExYsXw8XFBQYGBqhZsyZ27NihPO6TJ0/Qt29fWFlZwcDAAJUrV8bGjRsBAM7OzgCAWrVqQaFQwNfX9+N9YHoj3roiIiLZyMrKwty5c+Hm5obk5GSMHTsWfn5+2L9/PxwcHPDbb7/hs88+w40bN2BqagoDAwMAwLRp07Bz506sXr0alStXxqlTp/DFF1/AysoKzZo1w/Tp0xETE4MDBw6gXLlyuHXrFp4/fw4AuHjxIurVq4ejR4+ievXq0NXVFXkK6DUaW+iEhIQgJCQEOTk5oqMQEVEJGTRokPLPLi4uWLFiBerVq4dnz57B2NgYZcuWBQBYW1srx+ikp6dj+fLlOH78OHx8fJTfe+bMGaxduxbNmjVDfHw8atWqBW9vbwBAxYoVle9jZWUFALC0tET58uU/wqekt6Gxt64CAgIQExODsLAw0VGIiKiEXL58GZ07d4aTkxNMTEyUt5GKWjk8JiYGmZmZ+OSTT1RWG9+yZQtiY2MBAF999RW2bdsGLy8vTJw4EefOnfsYH4dKgMb26BARkbykp6ejdevWaN26NX744QdYWVkhPj4ebdq0QVZWVqHfl5ubCwDYt28f7O3tVbbp6ekBANq1a4e7d+9i3759OHr0KFq2bImAgAAsXbr0w30gKhEsdIiISBauX7+Ohw8fYtGiRXBwcAAAhIeHq+yTN37mv8MW3N3doaenh/j4eDRr1qzQ41tZWcHPzw9+fn5o0qQJJkyYgKVLlxZ4TFIfLHSIiEgWHB0doauri5UrV2L48OGIjo7G3LlzVfZxcnKCQqHA3r170b59exgYGMDExATjx4/H2LFjkZubi8aNGyMtLQ3nzp2DsbExBgwYgBkzZqBOnTqoXr06Xrx4gb1796JatWoAXo33MTAwwMGDB1GhQgXo6+vDzMxMxCmgAmjsGB0iIpIXKysrbNq0Cdu3b4e7uzsWLVqU79aSvb09Zs+ejcmTJ8PGxgYjRowAAMydOxczZszAwoULUa1aNbRp0wZ//PGH8tFxXV1dTJkyBZ6enmjatCm0tbWxbds2AECZMmWwYsUKrF27FnZ2dujcufPH/eBUJIUkSZLoECKlpaXBzMwMqampMDU1FR2HZKAkZ5H90LPEEuXJzMxEXFwcnJ2doa+vLzoOFZPcVy8v6ros7s9v9ugQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiegd+fn7o0qWL8rWvry/GjBkjLA8VjIt6EhFRkeLneHy093KccfWjvVdJ27lzJ3R0dETHoNew0CEiIioBZcuWFR2BCsBbV0REVKr5+vpixIgRGDFiBMzNzWFpaYlp06Yhb83qrKwsTJw4Efb29jAyMkL9+vVx8uRJ5fdv2rQJ5ubmOHToEKpVqwZjY2O0bdsWiYmJyn1ycnIQGBioPP7EiRPx+prYr9+6qlixIhYsWIBBgwbBxMQEjo6OWLduncr3nDt3Dl5eXtDX14e3tzd2794NhUKByMjIEj9PmoqFDhERlXqbN29GmTJl8Oeff2LFihUICgrC//73PwDAwIEDcfbsWWzbtg1RUVHo0aMH2rZti7///lv5/RkZGVi6dCm2bt2KU6dOIT4+HuPHj1duX7ZsGTZs2IDvv/8eZ86cwePHj7Fr16435lq2bBm8vb1x+fJl+Pv746uvvsL169cBAE+fPkXHjh3h4eGBiIgIzJ07F5MmTSrhM0O8dUVERKWeg4MDgoKCoFAo4ObmhqtXryIoKAgtWrTAzz//jH/++Qd2dnYAgPHjx+PgwYPYuHEjFixYAAB4+fIl1qxZg0qVKgEARowYgTlz5iiPHxwcjClTpuCzzz4DAKxZswaHDh16Y6727dvD398fADBp0iQEBQXh5MmTqFq1Kn788UcoFAqsX78e+vr6cHd3x7179zB06NASPTeajoUOERGVeg0aNIBCoVC+9vHxwbJlyxAeHg5JklClShWV/V+8eAFLS0vla0NDQ2WRAwC2trZITk4GAKSmpiIxMRE+Pj7K7WXKlIG3t3e+21ev8/T0VP5ZoVCgfPnyyuPeuHEDnp6e0NfXV+5Tr169t/nYVAwsdIiISNa0tbVx6dIlaGtrq7QbGxsr//z601IKheKNRUxxFHTc3NxcAIAkSSrFWV4blSzZjNHJyMiAk5OTyj1VIiLSDBcuXMj3unLlyqhVqxZycnKQnJwMV1dXla/y5csX69hmZmawtbVVeY/s7GxcunTpvTJXrVoVUVFRePHihbItPDz8vY5J+cmm0Jk/fz7q168vOgYREQmQkJCAwMBA3LhxAz///DNWrlyJ0aNHo0qVKujbty/69++PnTt3Ii4uDmFhYfjmm2+wf//+Yh9/9OjRWLRoEXbt2oXr16/D398fKSkp75W5T58+yM3NxbBhw3Dt2jUcOnQIS5cuBYB8PT307mRx6+rvv//G9evX0bFjR0RHR4uOQ0REH1n//v3x/Plz1KtXD9ra2hg5ciSGDRsGANi4cSPmzZuHcePG4d69e7C0tISPjw/at29f7OOPGzcOiYmJ8PPzg5aWFgYNGoSuXbsiNTX1nTObmprijz/+wFdffQUvLy94eHhgxowZ6NOnj8q4HXo/CknwDcFTp05hyZIluHTpEhITE7Fr1y6VKbUB4LvvvsOSJUuQmJiI6tWrIzg4GE2aNFFu79y5M5YsWYJz584hOjpaWREXR1paGszMzJCamgpTU9OS+likwepM2FJix7q0pH+JHYuoKJmZmYiLi4Ozs3Op+yHr6+sLLy8vBAcHi47y3n788UcMHDgQqampMDAweOP+MQkPS+y93R3KldixSkpR12Vxf34Lv3WVnp6OmjVrYtWqVQVu/+WXXzBmzBhMnToVly9fRpMmTdCuXTvEx8cDAH7//XdUqVIl34h6IiIidbdlyxacOXMGcXFx2L17NyZNmoSePXsWq8ih4hF+66pdu3Zo165doduXL1+OwYMHY8iQIQBezWVw6NAhrF69GgsXLsSFCxewbds2bN++Hc+ePcPLly9hamqKGTNmFHi8Fy9eqAz8SktLK9kPREREVExJSUmYMWMGkpKSYGtrix49emD+/PmiY8mK8EKnKFlZWbh06RImT56s0t66dWucO3cOALBw4UIsXLgQwKtpvKOjowstcvL2nz17drEz8DYEEZF6++9yDqXNxIkTMXHiRNExZE34rauiPHz4EDk5ObCxsVFpt7GxQVJS0jsdc8qUKUhNTVV+JSQklERUIiIiUkNq3aOTp6AJlQp69M7Pz++Nx9LT04Oenl5JRSMiIiI1ptY9OuXKlYO2tna+3pvk5OR8vTxEREREr1PrQkdXVxd16tTBkSNHVNqPHDmChg0bvtexQ0JC4O7ujrp1677XcYiIiEh9Cb919ezZM9y6dUv5Oi4uDpGRkShbtiwcHR0RGBiIfv36wdvbGz4+Pli3bh3i4+MxfPjw93rfgIAABAQEKJ/DJyIiIvkRXuiEh4ejefPmyteBgYEAgAEDBmDTpk34/PPP8ejRI8yZMweJiYmoUaMG9u/fDycnJ1GRiYiIqJQQfuvK19cXkiTl+9q0aZNyH39/f9y5cwcvXrzApUuX0LRpU3GBiYiI8Orn15gxY0THKBG7tv8Mc3PzD/oeFStWFDJ7tfAeHSIiUm+NVjb6aO91duTZj/ZepBmE9+iIwsHIRESkbnJycpCbm1vix3358mWJH7O00NhCJyAgADExMQgLCxMdhYiI3oOvry9GjRqFiRMnomzZsihfvjxmzZoFALhz5w4UCgUiIyOV+6ekpEChUChnVD558iQUCgUOHTqEWrVqwcDAAC1atEBycjIOHDiAatWqwdTUFL1790ZGRobKe2dnZ2PEiBEwNzeHpaUlpk2bhv+ulZ2VlYWJEyfC3t4eRkZGqF+/vspMzps2bYK5uTn27t0Ld3d36Onp4e7du0V+3tzcXMyZMwcVKlSAl6s9urX1xemTx5Tb7yXEo7qjFQ7+sRt+PTujVuUK2Ltre7HO5aFDh1CtWjUYGxujbdu2SExMVG4LCwvDJ598gnLlysHMzAzNmjVDRESEyvfPmjULjo6O0NPTg52dHUaNGqWyPSMjA4MGDYKJiQkcHR2xbt26YuV6H7x19RHFz/EosWM5zrhaYsciIirtNm/ejMDAQPz55584f/48/Pz80KhRI1SuXLnYx5g1axZWrVoFQ0ND9OzZEz179oSenh5++uknPHv2DF27dsXKlSsxadIklfcdPHgw/vzzT4SHh2PYsGFwcnLC0KFDAQADBw7EnTt3sG3bNtjZ2WHXrl1o27Ytrl69qsyWkZGBhQsX4n//+x8sLS1hbW1dZM5vv/0Wy5Ytw9q1a2FSviJ2/vITRgzuhz1HT8PJuZJyv+WL5mLCtNmYt3QFdHXfPFFuRkYGli5diq1bt0JLSwtffPEFxo8fjx9//BEA8PTpUwwYMAArVqwAACxbtgzt27fH33//DRMTE+zYsQNBQUHYtm0bqlevjqSkJFy5ckXlPZYtW4a5c+fi66+/xo4dO/DVV1+hadOmqFq1ajH+ht4NCx0iIir1PD09MXPmTABA5cqVsWrVKhw7duytCp158+ahUaNX45EGDx6MKVOmIDY2Fi4uLgCA7t2748SJEyqFjoODA4KCgqBQKODm5oarV68iKCgIQ4cORWxsLH7++Wf8888/sLOzAwCMHz8eBw8exMaNG7FgwQIAr24rfffdd6hZs2axci5duhSTJk1Cr169EJPwEOO+noGL589gy/drMX3eYuV+/QYNwyftPi3253/58iXWrFmDSpVeFUsjRozAnDlzlNtbtGihsv/atWthYWGB0NBQfPrpp4iPj0f58uXRqlUr6OjowNHREfXq1VP5nvbt28Pf3x8AMGnSJAQFBeHkyZMftNDR2FtXREQkH56eniqvbW1tkZyc/M7HsLGxgaGhobLIyWt7/ZgNGjRQWZLIx8cHf//9N3JychAREQFJklClShUYGxsrv0JDQxEbG6v8Hl1d3Xz5C5OWloZ///1XWZDlqeVdD7dv/a3SVt3Tq1jHzGNoaKgscoD85zA5ORnDhw9HlSpVYGZmBjMzMzx79gzx8fEAgB49euD58+dwcXHB0KFDsWvXLmRnZ6u8x38/p0KhQPny5d/67+ltsUeHiD6aOhO2lNixLi3pX2LHotJPR0dH5bVCoUBubi60tF79Pv/fcTOFDcz97zEUCkWhxyyu3NxcaGtr49KlS9DW1lbZZmxsrPyzgYFBges3FqXANSCh2mZgaPhWxyzo8/73vPn5+eHBgwcIDg6Gk5MT9PT04OPjg6ysLACverdu3LiBI0eO4OjRo/D398eSJUsQGhqqPPb7ntN3obE9OnzqiohI/qysrABAZVDtfwcmv68LFy7ke125cmVoa2ujVq1ayMnJQXJyMlxdXVW+ypcv/07vZ2pqCjs7O5w5c0alPfJSGFze4jbduzh9+jRGjRqF9u3bo3r16tDT08PDhw9V9jEwMECnTp2wYsUKnDx5EufPn8fVq2LHlGpsjw6XgCAikj8DAwM0aNAAixYtQsWKFfHw4UNMmzatxI6fkJCAwMBAfPnll4iIiMDKlSuxbNkyAECVKlXQt29f9O/fH8uWLUOtWrXw8OFDHD9+HB4eHmjfvv07veeECRMwc+ZMVKpUCcY2Ttj160+4HhONxStWl9jnKoirqyu2bt0Kb29vpKWlYcKECTAwMFBu37RpE3JyclC/fn0YGhpi69atMDAwEL6SgcYWOkREVDylfRK/DRs2YNCgQfD29oabmxsWL16M1q1bl8ix+/fvj+fPn6NevXrQ1tbGyJEjMWzYMOX2jRs3Yt68eRg3bhzu3bsHS0tL+Pj4vHORAwCjRo1CWloaxo0bh/vJyahUuQpWfb9V5YmrD2HDhg0YNmwYatWqBUdHRyxYsADjx49Xbjc3N8eiRYsQGBiInJwceHh44I8//oClpeUHzfUmCum/N+A0UF6PTmpqKkxNTfNtL8kxBbtMlpTYsfh4ufriOJTC8dyor8zMTMTFxcHZ2Rn6+vqi41AxxSQ8fPNOxeTuUK7EjlVSirou3/TzO4/GjtEhIiIi+eOtKyIiIjXy3yeyXnfgwAE0adLkrY/5Zf/PcenihQK3DRsxBsNGjH3rY5YWGlvohISEICQkBDk5OaKjEBERKRX1VJi9vf07HXPO4mBkZj4vcJuZucU7HbO00NhCh09dERGROnJ1dS3xY9qUty3xY5YWHKNDRERKGv58CqmZkrgeWegQEZFyxtrXV+cmEinvenx9RuW3obG3roiI6P9oa2vD3Nxcue6QoaHhWy9LQB9fbnbBy1m8i8zMzBI71vuSJAkZGRlITk6Gubl5viU03gYLHSIiAgDlsgQfepFFKjnJT56V2LG0M1NK7Fglxdzc/J2Xy8jDQoeIiAC8WmDR1tYW1tbWhS58Sepl/PbdJXas3yZ2KbFjlQQdHZ336snJw0KHiIhUaGtrl8gPGPrwkp5mldix5DojtsYORubq5URERPKnsYVOQEAAYmJiEBYWJjoKERERfSAaW+gQERGR/LHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFsaOzNySEgIQkJCkJOTIzoKEREVoc6ELSV2rEtL+pfYsah00NgeHU4YSEREJH8aW+gQERGR/LHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFsaO2EgERFpnvg5HiV2LMcZV0vsWPThsEeHiIiIZIuFDhEREckWb10REakBrudE9GFobI9OSEgI3N3dUbduXdFRiIiI6APR2EKHi3oSERHJn8YWOkRERCR/LHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJlsYWOiEhIXB3d0fdunVFRyEiIqIPRGMLnYCAAMTExCAsLEx0FCIiIvpANLbQISIiIvljoUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSrVJf6Dx9+hR169aFl5cXPDw8sH79etGRiIiISE2UER3gfRkaGiI0NBSGhobIyMhAjRo10K1bN1haWoqORkRERIKV+h4dbW1tGBoaAgAyMzORk5MDSZIEpyIiIiJ1ILzQOXXqFDp27Ag7OzsoFArs3r073z7fffcdnJ2doa+vjzp16uD06dMq21NSUlCzZk1UqFABEydORLly5T5SeiIiIlJnwgud9PR01KxZE6tWrSpw+y+//IIxY8Zg6tSpuHz5Mpo0aYJ27dohPj5euY+5uTmuXLmCuLg4/PTTT7h///7Hik9ERERqTPgYnXbt2qFdu3aFbl++fDkGDx6MIUOGAACCg4Nx6NAhrF69GgsXLlTZ18bGBp6enjh16hR69OhR4PFevHiBFy9eKF+npaWVwKcgotKs0cpGJXassyPPltixiOj9Ce/RKUpWVhYuXbqE1q1bq7S3bt0a586dAwDcv39fWaykpaXh1KlTcHNzK/SYCxcuhJmZmfLLwcHhw30AIiIiEkqtC52HDx8iJycHNjY2Ku02NjZISkoCAPzzzz9o2rQpatasicaNG2PEiBHw9PQs9JhTpkxBamqq8ishIeGDfgYiIiIS551uXbVo0QI7d+6Eubm5SntaWhq6dOmC48ePl0Q2JYVCofJakiRlW506dRAZGVnsY+np6UFPT68k4xEREZGaeqdC5+TJk8jKysrXnpmZme+JqPdRrlw5aGtrK3tv8iQnJ+fr5aGPr86ELSVynEtL+pfIcYiIiF73VoVOVFSU8s8xMTEqBUhOTg4OHjwIe3v7Egunq6uLOnXq4MiRI+jatauy/ciRI+jcufN7HTskJAQhISHIycl535hERESkpt6q0PHy8oJCoYBCoUCLFi3ybTcwMMDKlSvfKsCzZ89w69Yt5eu4uDhERkaibNmycHR0RGBgIPr16wdvb2/4+Phg3bp1iI+Px/Dhw9/qfV4XEBCAgIAApKWlwczM7L2ORUREROrprQqduLg4SJIEFxcXXLx4EVZWVspturq6sLa2hra29lsFCA8PR/PmzZWvAwMDAQADBgzApk2b8Pnnn+PRo0eYM2cOEhMTUaNGDezfvx9OTk5v9T5ERESked6q0MkrLnJzc0ssgK+v7xuXbPD394e/v3+JvScRERFphneeMPDmzZs4efIkkpOT8xU+M2bMeO9gRERERO/rnQqd9evX46uvvkK5cuVQvnx5lce/FQpFqSh0OBiZiIhI/t6p0Jk3bx7mz5+PSZMmlXSej4aDkYmIiOTvnWZGfvLkSaFrSRERERGpi3cqdHr06IHDhw+XdBYiIiKiEvVOt65cXV0xffp0XLhwAR4eHtDR0VHZPmrUqBIJR0RERPQ+3qnQWbduHYyNjREaGorQ0FCVbQqFgoUOERERqYV3KnTi4uJKOsdHx6euiIiI5O+dxujIQUBAAGJiYhAWFiY6ChEREX0g79SjM2jQoCK3b9iw4Z3CEBEREZWkdyp0njx5ovL65cuXiI6ORkpKSoGLfRIRERGJ8E6Fzq5du/K15ebmwt/fHy4uLu8dioiIiKgklNgYHS0tLYwdOxZBQUEldUgiIiKi91Kig5FjY2ORnZ1dkockIiIiemfvdOsqMDBQ5bUkSUhMTMS+ffswYMCAEgn2ofHxciIiIvl7p0Ln8uXLKq+1tLRgZWWFZcuWvfGJLHXBRT2JiIjk750KnRMnTpR0DiIiIqIS906FTp4HDx7gxo0bUCgUqFKlCqysrEoqFxEREdF7e6fByOnp6Rg0aBBsbW3RtGlTNGnSBHZ2dhg8eDAyMjJKOiMRERHRO3mnQicwMBChoaH4448/kJKSgpSUFPz+++8IDQ3FuHHjSjojERER0Tt5p1tXv/32G3bs2AFfX19lW/v27WFgYICePXti9erVJZWPiIiI6J29U6GTkZEBGxubfO3W1tal5tYVHy8nIrmKn+NRYsdynHG1xI5FJMI73bry8fHBzJkzkZmZqWx7/vw5Zs+eDR8fnxIL9yFx9XIiIiL5e6ceneDgYLRr1w4VKlRAzZo1oVAoEBkZCT09PRw+fLikMxIRERG9k3cqdDw8PPD333/jhx9+wPXr1yFJEnr16oW+ffvCwMCgpDMSERERvZN3KnQWLlwIGxsbDB06VKV9w4YNePDgASZNmlQi4YiIiIjexzuN0Vm7di2qVq2ar7169epYs2bNe4ciIiIiKgnvVOgkJSXB1tY2X7uVlRUSExPfOxQRERFRSXinQsfBwQFnz57N13727FnY2dm9dygiIiKikvBOY3SGDBmCMWPG4OXLl2jRogUA4NixY5g4cSJnRiYiIiK18U6FzsSJE/H48WP4+/sjKysLAKCvr49JkyZhypQpJRqQiIiI6F29U6GjUCjwzTffYPr06bh27RoMDAxQuXJl6OnplXS+D4YzIxMREcnfOxU6eYyNjVG3bt2SyvJRBQQEICAgAGlpaTAzMxMdh4iIiD6AdxqMTERERFQasNAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2dLYQickJATu7u6ldgkLIiIiejONLXQCAgIQExODsLAw0VGIiIjoA9HYQoeIiIjkj4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2dLYQickJATu7u6oW7eu6ChERET0gWhsoRMQEICYmBiEhYWJjkJEREQfiMYWOkRERCR/LHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREslXqC52EhAT4+vrC3d0dnp6e2L59u+hIREREpCbKiA7wvsqUKYPg4GB4eXkhOTkZtWvXRvv27WFkZCQ6GhEREQlW6gsdW1tb2NraAgCsra1RtmxZPH78mIUOERERib91derUKXTs2BF2dnZQKBTYvXt3vn2+++47ODs7Q19fH3Xq1MHp06cLPFZ4eDhyc3Ph4ODwgVMTERFRaSC80ElPT0fNmjWxatWqArf/8ssvGDNmDKZOnYrLly+jSZMmaNeuHeLj41X2e/ToEfr3749169Z9jNhERERUCgi/ddWuXTu0a9eu0O3Lly/H4MGDMWTIEABAcHAwDh06hNWrV2PhwoUAgBcvXqBr166YMmUKGjZsWOT7vXjxAi9evFC+TktLK4FPQUREROpIeI9OUbKysnDp0iW0bt1apb1169Y4d+4cAECSJPj5+aFFixbo16/fG4+5cOFCmJmZKb94m4uIiEi+1LrQefjwIXJycmBjY6PSbmNjg6SkJADA2bNn8csvv2D37t3w8vKCl5cXrl69Wugxp0yZgtTUVOVXQkLCB/0MREREJI7wW1fFoVAoVF5LkqRsa9y4MXJzc4t9LD09Pejp6ZVoPiIiIlJPal3olCtXDtra2sremzzJycn5enmI5Ch+jkeJHctxRuE9nUREcqXWt650dXVRp04dHDlyRKX9yJEjbxx0TERERCS8R+fZs2e4deuW8nVcXBwiIyNRtmxZODo6IjAwEP369YO3tzd8fHywbt06xMfHY/jw4e/1viEhIQgJCUFOTs77fgQiIiJSU8ILnfDwcDRv3lz5OjAwEAAwYMAAbNq0CZ9//jkePXqEOXPmIDExETVq1MD+/fvh5OT0Xu8bEBCAgIAApKWlwczM7L2ORUREROpJeKHj6+sLSZKK3Mff3x/+/v4fKRERERHJhVqP0SEiIiJ6Hyx0iIiISLY0ttAJCQmBu7s76tatKzoKERERfSAaW+gEBAQgJiYGYWFhoqMQERHRB6KxhQ4RERHJHwsdIiIiki0WOkRERCRbwufREYUzIxOVbiW5DhgsTEvuWESkVjS2R4eDkYmIiORPYwsdIiIikj8WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZ0thCh2tdERERyZ/GFjp8vJyIiEj+NLbQISIiIvljoUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFsaW+hwHh0iIiL509hCh/PoEBERyZ/GFjpEREQkfyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyZbGFjqcMJCIiEj+NLbQ4YSBRERE8qexhQ4RERHJHwsdIiIiki0WOkRERCRbLHSIiIhItljoEBERkWyx0CEiIiLZYqFDREREssVCh4iIiGSLhQ4RERHJFgsdIiIiki2NLXS41hUREZH8aWyhw7WuiIiI5E9jCx0iIiKSPxY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZEtjC52QkBC4u7ujbt26oqMQERHRB6KxhU5AQABiYmIQFhYmOgoRERF9IBpb6BAREZH8sdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhki4UOERERyRYLHSIiIpItFjpEREQkWyx0iIiISLZY6BAREZFssdAhIiIi2WKhQ0RERLLFQoeIiIhkq4zoAETxczxK7FiOM66W2LGIiKj0Y48OERERyZYsCp2uXbvCwsIC3bt3Fx2FiIiI1IgsCp1Ro0Zhy5YtomMQERGRmpFFodO8eXOYmJiIjkFERERqRnihc+rUKXTs2BF2dnZQKBTYvXt3vn2+++47ODs7Q19fH3Xq1MHp06c/flAiIiIqdYQXOunp6ahZsyZWrVpV4PZffvkFY8aMwdSpU3H58mU0adIE7dq1Q3x8/Du934sXL5CWlqbyRURERPIkvNBp164d5s2bh27duhW4ffny5Rg8eDCGDBmCatWqITg4GA4ODli9evU7vd/ChQthZmam/HJwcHif+ERERKTGhBc6RcnKysKlS5fQunVrlfbWrVvj3Llz73TMKVOmIDU1VfmVkJBQElGJiIhIDan1hIEPHz5ETk4ObGxsVNptbGyQlJSkfN2mTRtEREQgPT0dFSpUwK5du1C3bt0Cj6mnpwc9Pb0PmpuIiIjUg1oXOnkUCoXKa0mSVNoOHTr0sSMRERFRKaDWt67KlSsHbW1tld4bAEhOTs7Xy0NERET0OrUudHR1dVGnTh0cOXJEpf3IkSNo2LDhex07JCQE7u7uhd7iIiIiotJP+K2rZ8+e4datW8rXcXFxiIyMRNmyZeHo6IjAwED069cP3t7e8PHxwbp16xAfH4/hw4e/1/sGBAQgICAAaWlpMDMze9+PQURERGpIeKETHh6O5s2bK18HBgYCAAYMGIBNmzbh888/x6NHjzBnzhwkJiaiRo0a2L9/P5ycnERFJiIiolJCeKHj6+sLSZKK3Mff3x/+/v4fKRERERHJhfBCR7S8IquwGZJzXjwvsfd6qpNTYsdShxmdS+rc8LwUjuemcCV5brKfZ5fYsd71PKvrueF1Uzi5nRt1+DxvIy/vmzpLFNKb9pC5f/75h7MjExERlVIJCQmoUKFCods1vtDJzc3Fv//+CxMTk3zz9XxsaWlpcHBwQEJCAkxNTYVmUTc8N4XjuSkcz03heG4KxvNSOHU7N5Ik4enTp7Czs4OWVuEPkWv8rSstLa0iK0ERTE1N1eIiUkc8N4XjuSkcz03heG4KxvNSOHU6N8V5alqt59EhIiIieh8sdIiIiEi2WOioET09PcycOZOLjhaA56ZwPDeF47kpHM9NwXheCldaz43GD0YmIiIi+WKPDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQIbX1/PlzZGRkKF/fvXsXwcHBOHz4sMBU4k2fPh05OfkXJkxNTUXv3r0FJFIfvGboXcyZM0flusnz/PlzzJkzR0AiKkl8vJzUVuvWrdGtWzcMHz4cKSkpqFq1KnR0dPDw4UMsX74cX331leiIQjg5OcHW1hY//vgjKlWqBAA4efIk+vfvD3t7e5w/f15wQnF4zRTPrVu3EBsbi6ZNm8LAwACSJAlf608kbW1tJCYmwtraWqX90aNHsLa2LvAXCyo9NH6tKxFq1apV7P9UIiIiPnAa9RUREYGgoCAAwI4dO2BjY4PLly/jt99+w4wZMzT2h1ZUVBS+/PJLeHl5Yfny5bh58ya+/fZbTJ48GTNnzhQdTyheM0V79OgRPv/8cxw/fhwKhQJ///03XFxcMGTIEJibm2PZsmWiIwpRWKF35coVlC1bVkAisbp161bsfXfu3PkBk5QMFjoCdOnSRXSEUiEjIwMmJiYAgMOHD6Nbt27Q0tJCgwYNcPfuXcHpxDEzM8O2bdswdepUfPnllyhTpgwOHDiAli1bio4mHK+Zoo0dOxZlypRBfHw8qlWrpmz//PPPMXbsWI0rdCwsLKBQKKBQKFClShWVYicnJwfPnj3D8OHDBSYUozgLZZYmvHVFasvT0xNDhgxB165dUaNGDRw8eBA+Pj64dOkSOnTogKSkJNERhVm5ciUmTZqErl274tKlS9DW1sZPP/2EmjVrio4mFK+ZopUvXx6HDh1CzZo1YWJigitXrsDFxQVxcXHw8PDAs2fPREf8qDZv3gxJkjBo0CAEBwer/IDX1dVFxYoV4ePjIzAhlQT26KiJS5cu4dq1a1AoFHB3d0etWrVERxJuxowZ6NOnD8aOHYuWLVsq/8M5fPiwRp+fdu3aISwsDFu2bEH37t3x/PlzBAYGokGDBpg9ezYmTpwoOqIwvGaKlp6eDkNDw3ztDx8+LHXrF5WEAQMGIDs7GwDQqlUrVKhQQXAi9fXgwQPcuHFD2ftlZWUlOlLxSSTU/fv3pebNm0sKhUKysLCQzM3NJYVCIbVo0UJKTk4WHU+4xMREKSIiQsrJyVG2/fnnn9L169cFphKrVatW0r179/K17927VypfvryAROqF10zh2rdvL02bNk2SJEkyNjaWbt++LeXk5Eg9evSQPvvsM8HpxDEwMJDu3LkjOoZaevbsmTRw4EBJW1tbUigUkkKhkMqUKSMNGjRISk9PFx2vWFjoCNazZ0+pTp06UkxMjLLtr7/+kry9vaVevXoJTCbewIEDpbS0tHztef/wKL8HDx6IjiAUr5mi/fXXX5KVlZXUtm1bSVdXV+revbtUrVo1ycbGRrp165boeML4+vpKu3btEh1DLQ0bNkxycXGR9u/fL6WmpkqpqanSvn37pEqVKknDhw8XHa9YOEZHMDMzMxw9ehR169ZVab948SJat26NlJQUMcHUQGGPfD58+BDly5dXdjkT5eE182ZJSUlYvXo1Ll26hNzcXNSuXRsBAQGwtbUVHU2Y7du3Y/LkyRg7dizq1KkDIyMjle2enp6CkolXrlw57NixA76+virtJ06cQM+ePfHgwQMxwd4Cx+gIlpubCx0dnXztOjo6yM3NFZBIvLS0NEivehvx9OlT6OvrK7fl5ORg//79+X6QyV3ZsmVx8+ZNlCtXTvmkSGEeP378EZOpB14zb/by5Uu0bt0aa9euxezZs0XHUSuff/45AGDUqFHKNoVCoXzsXJPn0cnIyICNjU2+dmtr6wInWVRHLHQEa9GiBUaPHo2ff/4ZdnZ2AIB79+4pB1NqInNzc5VHPl+nUCg07j/qoKAg5WPTQUFBGj25W0F4zbyZjo4OoqOjee0UIC4uTnQEteXj44OZM2diy5Ytyl8gnj9/jtmzZ5eaJ9J460qwhIQEdO7cGdHR0XBwcIBCoUB8fDw8PDzw+++/a+RTAKGhoZAkCS1atMBvv/2mMmGXrq4unJyclEUhEcBrprjGjRsHHR0dLFq0SHQUKiWio6PRtm1bZGZmombNmlAoFIiMjIS+vj4OHTqE6tWri474Rix01MSRI0dw/fp1SJIEd3d3tGrVSnQk4e7evQtHR0f+BvoaTldfOF4zRRs5ciS2bNkCV1dXeHt75xuLsnz5ckHJxIuNjUVwcLBymo9q1aph9OjRymVWNNnz58/xww8/qPyM6tu3LwwMDERHKxYWOqS2Nm7cCGNjY/To0UOlffv27cjIyMCAAQMEJRNLS0sLSUlJ+Qqdf//9F5UqVcLz588FJROP10zRmjdvXug2hUKB48ePf8Q06uPQoUPo1KkTvLy80KhRI0iShHPnzuHKlSv4448/8Mknn4iOSO+BhY5go0aNgqurq8ogOABYtWoVbt26heDgYDHB1ICbmxvWrFmT7z/n0NBQDBs2DDdu3BCUTIwVK1YAeDWN/9y5c2FsbKzclpOTg1OnTuHOnTu4fPmyqIjC8Zqhd1GrVi20adMm3y29yZMn4/Dhwxq95iBQ+nu7WOgIZm9vjz179qBOnToq7REREejUqRP++ecfQcnE09fXx/Xr11GxYkWV9jt37qBatWoa13Ph7OwM4NXtmQoVKkBbW1u5LW+6+jlz5qB+/fqiIgrHa6b4/vnnHygUCtjb24uOIpy+vj6uXr2KypUrq7TfvHkTnp6eyMzMFJRMPDn0dvGpK8EePXpU4AJqpqamePjwoYBE6sPa2hpRUVH5fmhduXIFlpaWYkIJlPdkSPPmzbFz505YWFgITqR+eM0ULTc3F/PmzcOyZcuU61qZmJhg3LhxmDp1KrS0tAQnFMPKygqRkZH5Cp3IyEiNn5Ygb36hgnq7Jk2axEKH3szV1RUHDx7EiBEjVNoPHDgAFxcXQanUQ69evTBq1CiYmJigadOmAF7dghg9ejR69eolOJ04J06cAABkZWUhLi4OlSpVQpky/KcM8Jp5k6lTp+L777/HokWLlL+dnz17FrNmzUJmZibmz58vOqIQQ4cOxbBhw3D79m00bNgQCoUCZ86cwTfffINx48aJjifUtWvX8Ouvv+Zrz1sItVT4eJMwU0G+//57ycDAQJoxY4Z08uRJ6eTJk9L06dMlQ0NDad26daLjCfXixQupZ8+ekkKhkHR0dCQdHR1JW1tbGjhwoPTixQvR8YTJyMiQBg0aJGlra0va2tpSbGysJEmSNHLkSGnhwoWC04nFa6Zotra20u+//56vfffu3ZKdnZ2AROohNzdXWr58uWRvb69cz8ne3l4KDg6WcnNzRccTqkKFCtKvv/6ar/2XX36RHBwcBCR6exyjowZWr16N+fPn499//wUAVKxYEbNmzUL//v0FJ1MPN2/exJUrV2BgYAAPDw84OTmJjiTU6NGjcfbsWQQHB6Nt27aIioqCi4sL9uzZg5kzZ2r0YOQ8vGYKpq+vj6ioqHyTKt64cQNeXl4cwwTg6dOnAKCcoFPTzZkzB0FBQZg8eXKBvV3Tpk0THfGNWOiokQcPHsDAwEDlaRqi1zk5OeGXX35BgwYNYGJigitXrsDFxQW3bt1C7dq1kZaWJjoiqan69eujfv36yif48owcORJhYWG4cOGCoGTqITk5GTdu3IBCoYCbmxusrKxERxJOkiQEBwdj2bJlyl/G7ezsMGHCBIwaNapUzFnFQkdNPHjwQOUfWLly5URHUgv//PMP9uzZg/j4eGRlZals09TJzQwNDREdHQ0XFxeVQufKlSto2rQpUlNTRUcUitdM4UJDQ9GhQwc4OjrCx8cHCoUC586dQ0JCAvbv348mTZqIjihEWloaAgIC8PPPPyvXGNTW1sbnn3+OkJCQAh8Y0USltbeLIxgFS09PV85W+t9/YP3798fKlSthaGgoOKE4x44dQ6dOneDs7IwbN26gRo0auHPnDiRJQu3atUXHE6Zu3brYt28fRo4cCQDK36jWr19fatae+VB4zRStWbNmuHHjBr777jvlLLfdunWDv7+/Ri+RMWTIEERGRmLfvn0qBeDo0aMxdOjQAgfjappS3dslanAQvTJs2DDJxcVF2r9/v5SamiqlpqZK+/btkypVqiQNHz5cdDyh6tatK02fPl2SJEkyNjaWYmNjpadPn0qdOnWSvvvuO8HpxDl79qxkYmIiDR8+XNLX15dGjx4ttWrVSjIyMpLCw8NFxxOK1wy9C0NDQ+n06dP52k+dOiUZGhoKSKQ+UlNTpS+++ELS1tZWDtQuU6aM1LdvXyklJUV0vGJhoSOYpaWldOLEiXztx48fl8qVK/fxA6kRY2Nj6datW5IkSZK5ubkUHR0tSZIkRUZGSk5OTgKTiRcVFSX1799fql69ulStWjWpb9++UlRUlOhYwvGaKdqGDRsKfILm119/lTZt2iQgkXpwcHAo8N/PlStXJHt7ewGJ1EePHj2kypUrSwcPHpRSU1OltLQ06eDBg5Kbm5vUo0cP0fGKRTNnh1IjGRkZsLGxyddubW2NjIwMAYnUh5GREV68eAHg1eC32NhY5TZNn0zRw8MDmzdvRnR0NGJiYvDDDz/Aw8NDdCzheM0UbdGiRQWO/7O2tsaCBQsEJFIP06ZNQ2BgIBITE5VtSUlJmDBhAqZPny4wmXj79u3Dhg0b0KZNG5iamsLExARt2rTB+vXrsW/fPtHxioVjdATz8fHBzJkzsWXLFujr6wN4tVLs7NmzNX68RYMGDXD27Fm4u7ujQ4cOGDduHK5evYqdO3eiQYMGouMJlZubi1u3biE5OVk5titP3kR5mojXTNHu3r2rXErkv5ycnBAfHy8gkXpYvXo1bt26BScnJzg6OgIA4uPjoaenhwcPHmDt2rXKfTVt3StLS8sCB2ObmZmVmtnZWegIFhwcjHbt2qFChQqoWbMmFAoFIiMjoa+vj0OHDomOJ9Ty5cuV09TPmjULz549wy+//AJXV1cEBQUJTifOhQsX0KdPH9y9exfSaw9NKhQK5OTkCEomHq+ZonGJjIJ16dJFdAS1ldfbtWXLFtja2gIofb1dfLxcDTx//hw//PCD8ikId3d39O3bFwYGBqKjCZOTk4MzZ87A09Oz1PzW8LF4eXmhSpUqmD17NmxtbfPNY6Gpj8LymnmziRMn4tdff8XGjRtVlsgYNGgQunfvjqVLlwpOSOqmVq1auHXrFl68eJGvt+v1tcHUtbeLhY5gp06dQsOGDfOtVZSdnY1z585p9G0IfX19XLt2rcCudk1mZGSEK1euwNXVVXQUtcNrpmhZWVno168ftm/frvw/Jzc3F/3798eaNWugq6srOCGpm1mzZhV7UsCZM2d+4DTvhoWOYNra2khMTMy3Qu6jR49gbW2t0bch6tati0WLFqFly5aio6iVFi1aYOLEiWjbtq3oKGqH10zx/P3334iMjOQSGf9fTk4OgoKC8OuvvxY40eTjx48FJaOSwKeuBJMkqcBq+dGjRzAyMhKQSH3Mnz8f48ePx969e5GYmIi0tDSVL00SFRWl/Bo5ciTGjRuHTZs24dKlSyrboqKiREcVitdM8VSuXBl2dnb45JNPNL7IAYDZs2dj+fLl6NmzJ1JTUxEYGIhu3bpBS0sLs2bNEh1PKBcXFzx69Chfe0pKClxcXAQkenvs0RGkW7duAIDff/8dbdu2hZ6ennJbTk4OoqKi4ObmhoMHD4qKKJyW1v/V4f8tBvOKQ03q7dLS0oJCocg3+DhP3jZNOy+v4zVTfKampoiMjCw1P6w+pEqVKmHFihXo0KEDTExMEBkZqWy7cOECfvrpJ9ERhdHS0kJSUlK+uw7379+Hg4NDvt4vdcSnrgTJGzAqSRJMTExUBh7r6uqiQYMGGDp0qKh4auHEiROiI6iNuLg40RFKBV4zxcffcf9PUlKSch4qY2Nj5Xpxn376aal5sqik7dmzR/nnQ4cOqTzkkJOTg2PHjpWasXAsdATZuHEjAKBixYoYP368xt+mKoizszMcHBzy3dqTJAkJCQmCUonx39sLbxrArsm3InjN0LuoUKECEhMT4ejoCFdXVxw+fBi1a9dGWFiYSm+7Jsl75F6hUGDAgAEq23R0dFCxYkUsW7ZMQLK3x1tXauK/q5dXqVKldC2Y9oFwoHbBeF4Kx3NTfD/99BM6d+7MX7IATJ48Gaampvj666+xY8cO9O7dGxUrVkR8fDzGjh2LRYsWiY4ojLOzM8LCwgqcUbu0YI+OYBkZGRgxYgRXLy9AYQO1nz17ppxFWhNxAHvheM0UX58+fURHUBv/LWS6d++OChUq4Ny5c3B1dUWnTp0EJhPvv7fNMzMzS+W/IxY6go0dOxahoaH4448/0KhRIwDAmTNnMGrUKIwbNw6rV68WnPDjCwwMBPCqy3T69OkqxV5OTg7+/PNPeHl5CUonTt4AdoVCAT8/vwIHsDds2FBUPKF4zbzZkSNHcObMGTRr1gwtWrTAqVOnsHDhQrx48QL9+vXDwIEDRUdUGw0aNOCSIf9fbm4u5s+fjzVr1uD+/fu4efMmXFxcMH36dFSsWBGDBw8WHfGNWOgI9ttvv2HHjh3w9fVVtrVv3x4GBgbo2bOnRhY6ly9fBvDqt/OrV6+qTGKmq6uLmjVrYvz48aLiCcMB7IXjNVO0H374AQMHDoSnpyeWL1+OlStXYuzYsejevTskScLw4cNhYmKC7t27i44qzNatW7FmzRrExcXh/PnzcHJyQnBwMJydndG5c2fR8YSZN28eNm/ejMWLF6v8/+Lh4YGgoKBSUejg4yySToUxMDCQYmJi8rVHR0dLhoaGAhKpDz8/Pyk1NVV0DLUza9Ys6dmzZ6JjqCVeMwXz8vKSvv32W0mSJOno0aOSgYGBtHz5cuX2ZcuWSY0aNRIVT7jvvvtOKleunDRv3jzJwMBAio2NlSRJkjZu3Cj5+voKTidWpUqVpKNHj0qSJEnGxsbKc3Pt2jXJ3NxcZLRi42BkwVq2bAlLS8t8q5cPGDAAjx8/xtGjRwUnJKLSztjYGFevXlU+Dqyrq4vw8HB4enoCAG7cuIFGjRrh4cOHImMK4+7ujgULFqBLly4wMTHBlStX4OLigujoaPj6+mrseQEAAwMDXL9+HU5OTirnJiYmBvXq1VMuoqvOeOtKMK5eXrj09HQsWrQIx44dQ3JysnKwdp7bt28LSibW/fv3MX78eOV5ef13FU1+sojXTMF0dHRUJnbT09ODsbGx8rWuri6eP38uIppaiIuLQ61atfK16+npIT09XUAi9VG9enWcPn0637QV27dvL/CcqSMWOoJ5eHjg77//Vlm9vFevXhq/ejkADBkyBKGhoejXr1+Bq3RrKj8/P8THx2P69Ok8L6/hNVMwV1dXXL9+HW5ubgCAe/fuwcTERLk9NjYWFSpUEBVPOGdnZ0RGRub7YX7gwAG4u7sLSqUeZs6ciX79+uHevXvIzc3Fzp07cePGDWzZsgV79+4VHa94xN4502xZWVmSs7Oz9Ndff4mOopbMzMykM2fOiI6hdoyNjaXLly+LjqGWeM0UbOfOnVJoaGih2xcuXChNmzbtIyZSLxs2bJDs7e2lbdu2SUZGRtLPP/8szZs3T/lnTXfw4EGpadOmkpGRkWRgYCA1atRIOnTokOhYxcYeHYF0dHTw4sUL/tZZCAsLC5QtW1Z0DLXj4ODA6fsLwWumYF27di1y++TJkz9SEvU0cOBAZGdnY+LEicjIyECfPn1QoUIFfPvtt+jVq5foeEIlJCSgTZs2aNOmTb5tFy5cKBWP4XP1csFGjhyJb775BtnZ2aKjqJ25c+dixowZyMjIEB1FrQQHB2Py5Mm4c+eO6Chqh9dM0WbPno3Y2FjRMdTO8+fP0bdvX9y9exfJycm4cOECxo4dq9G38/J88sknBa5efvbsWbRt21ZAorfHp64E69q1K44dOwZjY2N4eHjkm9l2586dgpKJV6tWLcTGxkKSJFSsWBE6Ojoq2yMiIgQlE8vCwgIZGRnIzs6GoaFhvvPy+PFjQcnE4zVTNE9PT/z111+oW7cuvvjiC3z++edcbgZA69at0a1bNwwfPhwpKSmoWrUqdHR08PDhQyxfvhxfffWV6IjCDB06FBERETh58qRyXNepU6fQsWNHzJo1C2PHjhWc8M1460owc3NzfPbZZ6JjqKW8ReVIVVBQEG93FoLXTNGioqLw119/4ccff8Ty5csRGBiIVq1a4YsvvkCXLl00dsmZiIgIBAUFAQB27NgBGxsbXL58Gb/99htmzJih0YXOunXr0KNHD3To0AGHDx/G+fPn0alTJ8ybNw+jR48WHa9Y2KNDRKShzp49i59++gnbt29HZmYm0tLSREcSwtDQENevX4ejoyN69uyJ6tWrY+bMmUhISICbm5vG3wp9+fIlOnTogPT0dERFRWHhwoUYMWKE6FjFxh4dNZGcnKyyevnrqy9rskuXLuHatWtQKBRwd3cvNXM3fCi+vr4YNGgQevToofFTEBSG10zxGBkZwcDAALq6unj69KnoOMK4urpi9+7d6Nq1Kw4dOqS8HZOcnAxTU1PB6T6+qKiofG0zZ85E79698cUXX6Bp06bKffImnVRrAp/4IkmSUlNTpS+++EIqU6aMpFAoJIVCIZUpU0bq27evlJKSIjqeUPfv35eaN28uKRQKycLCQjI3N5cUCoXUokULKTk5WXQ8YQIDAyUbGxvJ1NRUGjJkiHT+/HnRkdQGr5k3u337tjRv3jypWrVqkra2ttS8eXNp/fr1Gv3/zfbt2yUdHR1JS0tL+uSTT5TtCxYskNq2bSswmRgKhULS0tJS/kx6/XXen7W0tERHLRbeuhKsZ8+eiIyMxMqVK+Hj4wOFQoFz585h9OjR8PT0xK+//io6ojCff/45YmNjsXXrVlSrVg0AEBMTgwEDBsDV1RU///yz4ITi5OTkYO/evdi4cSP2798PV1dXDBo0CP369YONjY3oeMLwmimaj48PLl68CA8PD/Tt2xd9+vSBvb296FhqISkpCYmJiahZsya0tF49kHzx4kWYmpqiatWqgtN9XHfv3i32vq9PsqiOWOgIZmRkhEOHDqFx48Yq7adPn0bbtm01evpxMzMzHD16FHXr1lVpv3jxIlq3bo2UlBQxwdTMgwcPsHbtWsyfPx85OTlo3749Ro0ahRYtWoiO9tHxmina119/jb59+6J69eqioxB9NJxHRzBLS0uYmZnlazczM4OFhYWAROojNzc33+PBwKuJFl9fw0hTXbx4ETNmzMDSpUthbW2NKVOmwNraGh07dsT48eNFx/voeM0UbcGCBcoix9/fX6MXq6TiWbhwITZs2JCvfcOGDfjmm28EJHoHYu+c0dq1a6VWrVpJ//77r7ItMTFRat26tbRmzRqBycTr1KmT1LRpU+nevXvKtn/++Udq1qyZ1KVLF4HJxLp//760dOlSqXr16pKurq702WefSQcOHJByc3OV+xw5ckQyMjISmFIMXjPFZ2JiIsXGxoqOQWrOyclJOnv2bL72CxcuSBUrVhSQ6O3x1pVgtWrVwq1bt/DixQs4OjoCAOLj46Gnp4fKlSur7Ktpk50lJCSgc+fOiI6OhoODAxQKBeLj4+Hh4YHff/9dY2ct1dXVRaVKlTBo0CD4+fkVOOFbWloaOnfujBMnTghIKA6vmeIzMTHBlStX4OLiIjoKqTF9fX1cu3YNzs7OKu23b9+Gu7s7MjMzBSUrPj5eLhgnOCucg4MDIiIicOTIEeXK7u7u7mjVqpXoaEIdPXoUderUUc6ifffuXezatQvVqlVTrkdjamqqcUUOwGuGqKQ5ODjg7Nmz+Qqds2fPws7OTlCqt8MeHaJS5vXp6t3c3KCrq8vp6omoxH3zzTdYsmQJlixZonzA4dixY5g4cSLGjRuHKVOmCE74ZhyMrEY4OFDVqFGjsGLFinztq1atwpgxYz5+IDURERGBJk2aAHg1XX358uVx9+5dbNmypcDzpUl4zbxZTk4OduzYgblz52LevHnYsWMHFxWmQk2cOBGDBw+Gv78/XFxc4OLigpEjR2LUqFGlosgB2KOjVkxNTREZGcl75v+fvb099uzZgzp16qi0R0REoFOnTvjnn38EJROL09UXjtdM0aKjo9G5c2ckJSXBzc0NAHDz5k1YWVlhz5498PDwEJyQ1NWzZ89w7do1GBgYoHLlytDT0xMdqdjYo6NGWHOqevToUYGP3puammp0z1fedPUJCQk4dOgQWrduDUBzp6v/L14zRRsyZAiqV6+Of/75BxEREYiIiEBCQgI8PT0xbNgw0fFIjRkbG8PW1hYWFhalqsgBWOiQGnN1dcXBgwfztR84cECje71mzJiB8ePHo2LFiqhfvz58fHwAAIcPH9b4NZ14zRTtypUrWLhwococXRYWFpg/fz4iIyPFBSO1lZubizlz5sDMzAxOTk5wdHSEubk55s6dW2rmpuJTV2pEkxfVK0hgYCBGjBiBBw8eqAyCW7ZsGYKDg8WGE6h79+5o3Lixcrr6PC1btkTXrl0FJhOP10zR3NzccP/+/XwzIycnJ8PV1VVQKlJnU6dOxffff49FixahUaNGkCQJZ8+exaxZs5CZmYn58+eLjvhmoibwof9z69YtaerUqVLv3r2l+/fvS5IkSQcOHJCio6MFJxPvu+++k+zt7ZWLyTk7O0ubN28WHYvUGK+Zwu3bt0+qXr26tH37dikhIUFKSEiQtm/fLnl4eEj79u2TUlNTlV9EkiRJtra20u+//56vfffu3ZKdnZ2ARG+Pg5EFCw0NRbt27dCoUSOcOnUK165dg4uLCxYvXoyLFy9ix44doiOqhQcPHsDAwADGxsaio1ApwWsmv7zFKgFAoVAA+L+xgf99rVAokJOT8/EDktrR19dHVFQUqlSpotJ+48YNeHl54fnz54KSFR9vXQk2efJkzJs3D4GBgTAxMVG2N2/eHN9++63AZOrl+++/x/Dhw0XHoFKE10x+mjiJJL2fmjVrYtWqVfmmbVi1apXKrXN1xh4dwYyNjXH16lU4OzurTMl+584dVK1atVRMr/0x8NF7elu8Zoje36lTp9C+fXs4OjrCx8cHCoUC586dQ0JCAvbv36+c00udsUdHMHNzcyQmJuabXvvy5cuwt7cXlEr9sB6nt8VrpnAZGRmIj49HVlaWSrunp6egRKSOXr58iZkzZ+Lw4cPYt2+fclmVbt26wd/fv9QsAcFCR7A+ffpg0qRJ2L59OxQKBXJzc3H27FmMHz8e/fv3Fx2PiGTkwYMHGDhwIA4cOFDgdo7Lof/S0dFBdHQ0rKysSsfTVYXgPDqCzZ8/H46OjrC3t8ezZ8/g7u6Opk2bomHDhpg2bZroeGojJiYGFStWFB2DSpGYmBg4OTmJjqFWxowZgydPnuDChQswMDDAwYMHsXnzZlSuXBl79uwRHY/UUP/+/fH999+LjvFeOEZHTcTGxuLy5cvIzc1FrVq1ULlyZdGR1EJKSgp27NiB2NhYTJgwAWXLlkVERARsbGx4a48KlZWVheTk5HwTmjk6OgpKpB5sbW3x+++/o169ejA1NUV4eDiqVKmCPXv2YPHixThz5ozoiKRmRo4ciS1btsDV1RXe3t4wMjJS2b58+XJByYqPt67URKVKlVCpUiXRMdRKVFQUWrVqBTMzM9y5cwdDhw5F2bJlsWvXLuUilkT/9ffff2PQoEE4d+6cSjsfmX4lPT0d1tbWAICyZcviwYMHqFKlCjw8PBARESE4Hamj6Oho1K5dG8CrddH+K29KAnXHQkewQYMGFbl9w4YNHymJ+gkMDISfnx8WL16s8uh9u3bt0KdPH4HJSF35+fmhTJky2Lt3L2xtbUvNf8Qfi5ubG27cuIGKFSvCy8sLa9euRcWKFbFmzRrY2tqKjkdqSA5TErDQEezJkycqr1++fIno6GikpKQop7DXVGFhYVi7dm2+dnt7eyQlJQlIROouMjISly5dQtWqVUVHUUtjxoxBYmIiAGDmzJlo06YNfvzxR+jq6mLTpk1iwxF9ICx0BNu1a1e+ttzcXPj7+2v8/B/6+vpIS0vL137jxg1YWVkJSETqzt3dnauUF6Fv377KP9eqVQt37tzB9evX4ejoiHLlyglMRvThcDCymrpx4wZ8fX2Vv31pomHDhuHBgwf49ddfUbZsWURFRUFbWxtdunRB06ZNuUgj5XP8+HFMmzYNCxYsgIeHB3R0dFS2m5qaCkqmHv7++28+6EAah4WOmtq/fz8GDBiABw8eiI4iTFpaGtq3b4+//voLT58+hZ2dHZKSkuDj44P9+/fnG/1PlLeW0+tjczgY+RUtLS3Y2tqiWbNmaNasGXx9feHm5iY6FtEHxUJHsMDAQJXXkiQhMTER+/btw4ABA7Bq1SpBydTH8ePHERERgdzcXNSuXRutWrUSHYnUVGhoaJHbmzVr9pGSqKf79+/j+PHjCA0NxcmTJ3Hz5k3Y2Ngoix6uDUZyxEJHsObNm6u81tLSgpWVFVq0aIFBgwahTBnNGkZVtmxZ3Lx5E+XKlcOgQYPw7bffqjxxRUQl59atW5g3bx5+/PFH5ObmanyPF8kTCx1SK8bGxoiKioKLiwu0tbWRlJTEgcdUpKioKNSoUQNaWlqIiooqcl9NX8vp2bNnOHPmDE6ePInQ0FBERkaiWrVq8PX1RbNmzdC5c2fREYlKHAsdUiuffPIJ7t+/jzp16mDz5s34/PPPYWBgUOC+mjzHEP0fLS0tJCUlwdraGlpaWlAoFAUu6MkxOq/WLipbtiz69euH5s2bo3HjxjAzMxMdi+iD0qz7ImqiVq1axZ7ITNNmK/3hhx8QFBSE2NhYKBQKpKamIjMzU3QsUmNxcXHKXr+4uDjBadRbhw4dcObMGWzduhUJCQmIj4+Hr68vqlWrJjoa0QfDHh0BZs+eXex9Z86c+QGTqDdnZ2eEh4fD0tJSdBQiWYmKikJoaChCQ0Nx+vRpKBQK+Pr6Ytu2baKjEZU4FjpEVKq9zarbnTp1+oBJSpfLly/jxIkTOHHiBA4ePAiFQoGsrCzRsYhKHAsdNREeHo5r165BoVCgWrVqqFOnjuhIaiE9PR2hoaGIj4/P95/wqFGjBKUidZI3d86bcIwOEBQUhJMnT+L06dN4+vQpvLy8lI+WN23aVOMnVCR5YqEj2D///IPevXvj7NmzMDc3BwCkpKSgYcOG+Pnnn+Hg4CA2oECXL19G+/btkZGRgfT0dJQtWxYPHz6EoaEhrK2tcfv2bdERiUoVb29v+Pr6srAhjcJCR7DWrVsjLS0NmzdvVs5QeuPGDQwaNAhGRkY4fPiw4ITi+Pr6okqVKli9ejXMzc1x5coV6Ojo4IsvvsDo0aPRrVs30RFJjWVmZkJfX190DCISrHh9vvTBnD59GqtXr1aZht3NzQ0rV67E6dOnBSYTLzIyEuPGjYO2tja0tbXx4sULODg4YPHixfj6669FxyM1lJOTg7lz58Le3h7GxsbKXr/p06fj+++/F5xOvIMHD+LMmTPK1yEhIfDy8kKfPn3w5MkTgcmIPhwWOoI5Ojri5cuX+dqzs7Nhb28vIJH60NHRUT6Gb2Njg/j4eACAmZmZ8s9E/zV//nxs2rQJixcvhq6urrLdw8MD//vf/wQmUw8TJkxAWloaAODq1asYN24c2rdvj9u3b+dbjoZILljoCLZ48WKMHDkS4eHhyknOwsPDMXr0aCxdulRwOrFq1aqF8PBwAK+WypgxYwZ+/PFHjBkzBh4eHoLTkTrasmUL1q1bh759+0JbW1vZ7unpievXrwtMph7i4uLg7u4OAPjtt9/w6aefYsGCBfjuu+9w4MABwemIPgxOGCiAhYWFyoSB6enpqF+/vnJdq+zsbJQpUwaDBg1Cly5dBKUUb8GCBXj69CkAYO7cuRgwYAC++uorVK5cmbchqED37t2Dq6trvvbc3NwCe041ja6uLjIyMgAAR48eRf/+/QG8WmMur6eHSG5Y6AgQHBwsOkKpUL16dWUvl5WVFb777jvs2rUL7u7u8PLyEhuO1FL16tVx+vRpODk5qbRv374dtWrVEpRKfTRu3BiBgYFo1KgRLl68iF9++QUAcPPmTVSoUEFwOqIPg4WOAAMGDBAdoVTo3LkzunXrhuHDhyMlJQUNGjSAjo4OHj58iOXLl+Orr74SHZHUzMyZM9GvXz/cu3cPubm52LlzJ27cuIEtW7Zg7969ouMJt2rVKvj7+2PHjh1YvXq1chzggQMH0LZtW8HpiD4MPl6uRjp06ID//e9/sLW1FR1FLZQrVw6hoaGoXr06/ve//2HlypW4fPkyfvvtN8yYMQPXrl0THZHU0KFDh7BgwQJcunQJubm5qF27NmbMmIHWrVuLjkZEArBHR42cOnUKz58/Fx1DbWRkZMDExAQAcPjwYXTr1g1aWlpo0KAB7t69Kzgdqas2bdqgTZs2omOojbS0NOXEgG8ah8MJBEmOWOiQ2nJ1dcXu3bvRtWtXHDp0CGPHjgUAJCcn8z9kKhKXVPk/FhYWSExMhLW1NczNzVUehMgjSRKXyCDZYqGjRpycnKCjoyM6htqYMWMG+vTpg7Fjx6Jly5bw8fEB8Kp3hwNLqSBcUiW/48ePo2zZsgCAEydOCE5D9PFxjA6ptaSkJCQmJqJmzZrKxRsvXrwIU1NTVK1aVXA6UjdcUoWIXsdCR4CoqKhi7+vp6fkBkxDJi4GBAc6dO5evxy8iIgKNGjXiGDi86uG6ePEikpOTkZubq7Itb14dIjnhrSsBvLy8oFAoUFiNmbeN98yJ3g6XVCnaH3/8gb59+yI9PR0mJiYq43UUCgULHZIl9ugI8DZPDL0+8RkRFe7333/HggULEBISgjp16kChUCA8PBwjR47EpEmTNHqmcQCoUqUK2rdvjwULFsDQ0FB0HKKPgoUOEcmGhYUFMjIylMuoAP+3pIqRkZHKvo8fPxYRUSgjIyNcvXoVLi4uoqMQfTS8daUmYmJiEB8fj6ysLJX2Tp06CUpEVPpweZWitWnTBuHh4Sx0SKOwR0ew27dvo2vXrrh69arKuJ28e+cco0NEJeX777/HnDlzMHDgQHh4eOSbzoK/WJEcsdARrGPHjtDW1sb69evh4uKCixcv4tGjRxg3bhyWLl2KJk2aiI5IVKrk5ORg165dKhMGdu7cWXkrS5PlTdFQED78QHLFQkewcuXK4fjx4/D09ISZmRkuXrwINzc3HD9+HOPGjcPly5dFRyQqNaKjo9G5c2ckJSUp59G5efMmrKyssGfPHnh4eAhOSEQfG3/FESwnJwfGxsYAXhU9//77L9zc3ODk5IQbN24ITkdUugwZMgTVq1dHeHg4LCwsAABPnjyBn58fhg0bhvPnzwtOKNacOXMK3aZQKDB9+vSPmIbo42ChI1iNGjUQFRUFFxcX1K9fH4sXL4auri7WrVvHAYNEb+nKlSsqRQ7w6kms+fPno27dugKTqYddu3apvH758iXi4uJQpkwZVKpUiYUOyRILHcGmTZuG9PR0AMC8efPw6aefokmTJrC0tMQvv/wiOB1R6eLm5ob79++jevXqKu3JyclwdXUVlEp9FHQrPC0tDX5+fujatauAREQfHsfoqKHHjx/DwsKiwFWGiahw+/fvx8SJEzFr1iw0aNAAAHDhwgXMmTMHixYtQuPGjZX7mpqaioqpdqKjo/Hpp5/izp07oqMQlTgWOkQkG/99qijvF4XXp2zg8ir5nTlzBh07dsSTJ09ERyEqcbx1JVjz5s2L7Lk5fvz4R0xDVLqdOHFCdAS1tmLFCpXXkiQhMTERW7duRdu2bQWlIvqwWOgI5uXlpfL65cuXiIyMRHR0NAYMGCAmFFEp1axZM9ER1FpQUJDKay0tLVhZWWHAgAGYMmWKoFREHxZvXampWbNm4dmzZ1i6dKnoKESlyunTp7F27Vrcvn0b27dvh729PbZu3QpnZ2eVMTpEpBkKnyaThPriiy+wYcMG0TGISpXffvsNbdq0gYGBASIiIvDixQsAwNOnT7FgwQLB6YhIBBY6aur8+fPQ19cXHYOoVJk3bx7WrFmD9evXq6zj1LBhQ0RERAhMRkSicIyOYN26dVN5nTc4MDw8nJN3Eb2lGzduoGnTpvnaTU1NkZKS8vEDEZFwLHQEMzU1VXnqSktLC25ubpgzZw5at24tMBlR6WNra4tbt26hYsWKKu1nzpzhTONEGoqFjmCbNm0SHYFINr788kuMHj0aGzZsgEKhwL///ovz589j/PjxmDFjhuh4RCQAn7oSzMXFBWFhYbC0tFRpT0lJQe3atXH79m1ByYhKp6lTpyIoKAiZmZkAAD09PYwfPx5z584VnIyIRGChI5iWlhaSkpJgbW2t0n7//n04OjoqnxohouLLyMhATEwMcnNz4e7uDmNjY9GRiEgQ3roSZM+ePco/Hzp0CGZmZsrXOTk5OHbsWL5xBkRUtC1btqBu3bqoVq0avL29le2ZmZn49ddf0b9/f4HpiEgE9ugIkrcmj0KhwOt/BTo6OqhYsSKWLVuGTz/9VEQ8olJJS0sLRkZG2LRpEz777DNl+/3792FnZ8f1rYg0EHt0BMnNzQUAODs7IywsDOXKlROciEgeZs+ejX79+uHq1auYNWuW6DhEJBh7dIhINvLGvN2+fRtdu3ZFo0aNsHXrVqSlpbFHh0hDsdARbM6cOUVu5yOxRMWnra2NxMREWFtbIz4+Hp06dYJCocCaNWvQsGFDFjpEGoiFjmC1atVSef3y5UvExcWhTJkyqFSpEqetJ3oLrz/FmJGRgb59++LYsWNIT09noUOkgThGR7DLly/na0tLS4Ofnx+6du0qIBFR6TVz5kyVR8kNDQ2xa9cuzJw5E6dOnRKYjIhEYY+OmoqOjsann36KO3fuiI5CRERUarFHR02lpKQgNTVVdAyiUufmzZs4efIkkpOTlU83Aq+mcuBCuUSah4WOYCtWrFB5nbd6+datW9G2bVtBqYhKp/Xr1+Orr75CuXLlUL58eZUFc1noEGkm3roSzNnZWeW1lpYWrKys0KJFC0yZMgUmJiaCkhGVPk5OTvD398ekSZNERyEiNcFCh4hkw9TUFJGRkXBxcREdhYjUhJboAEREJaVHjx44fPiw6BhEpEY4RkewzMxMrFy5EidOnMg3eBIA59Eheguurq6YPn06Lly4AA8PD+jo6KhsHzVqlKBkRCQKb10J1qdPHxw5cgTdu3eHjY2NyuBJ4NW8IERUPK+PefsvhUKB27dvf8Q0RKQOWOgIZmZmhv3796NRo0aioxAREckOx+gIZm9vzyeriEpYVlYWbty4gezsbNFRiEgwFjqCLVu2DJMmTcLdu3dFRyEq9TIyMjB48GAYGhqievXqiI+PB/BqbM6iRYsEpyMiEVjoCObt7Y3MzEy4uLjAxMQEZcuWVfkiouKbMmUKrly5gpMnT0JfX1/Z3qpVK/zyyy8CkxGRKHzqSrDevXvj3r17WLBgQYGDkYmo+Hbv3o1ffvkFDRo0UPm35O7ujtjYWIHJiEgUFjqCnTt3DufPn0fNmjVFRyEq9R48eABra+t87enp6fwlgkhD8daVYFWrVsXz589FxyCShbp162Lfvn3K13nFzfr16+Hj4yMqFhEJxB4dwRYtWoRx48Zh/vz5BU5wZmpqKigZUemzcOFCtG3bFjExMcjOzsa3336Lv/76C+fPn0doaKjoeEQkAOfREUxL61Wn2uvd6pIkQaFQICcnR0QsolLr6tWrWLp0KS5duoTc3FzUrl0bkyZNgoeHh+hoRCQACx3B3vRbZrNmzT5SEiIiIvlhoUNEspKTk4Ndu3bh2rVrUCgUqFatGjp37owyZXinnkgT8V++GvHw8MD+/fvh4OAgOgpRqRQdHY3OnTsjKSkJbm5uAICbN2/CysoKe/bs4e0rIg3EHh01YmJigitXrsDFxUV0FKJSqUGDBrC2tsbmzZthYWEBAHjy5An8/PyQnJyM8+fPC05IRB8bCx01wkKH6P0YGBggPDwc1atXV2mPjo5G3bp1OZUDkQbiPDpqpEmTJjAwMBAdg6jUcnNzw/379/O1Jycnw9XVVUAiIhKNPTpEJBv79+/HxIkTMWvWLDRo0AAAcOHCBcyZMweLFi1C48aNlftyjioizcBCRw1s3boVa9asQVxcHM6fPw8nJycEBwfD2dkZnTt3Fh2PqNTIm5cK+L+5qfL+i/vva85RRaQ5+NSVYKtXr8aMGTMwZswYzJs3T/mfr7m5OYKDg1noEL2FEydOiI5ARGqGPTqCubu7Y8GCBejSpYvKYOTo6Gj4+vri4cOHoiMSlSopKSn4/vvvVebRGTx4MMzMzERHIyIBOBhZsLi4ONSqVStfu56eHtLT0wUkIiq9wsPD4erqiqCgIDx+/BgPHz5EUFAQKlWqhIiICNHxiEgA3roSzNnZGZGRkXByclJpP3DgANzd3QWlIiqdxo4di44dO2L9+vXKmZCzs7MxZMgQjBkzBqdOnRKckIg+NhY6gk2YMAEBAQHIzMyEJEm4ePEifv75ZyxcuBD/+9//RMcjKlXCw8NVihwAKFOmDCZOnAhvb2+ByYhIFBY6gg0cOBDZ2dmYOHEiMjIy0KdPH9jb2+Pbb79Fr169RMcjKlVMTU0RHx+PqlWrqrQnJCTAxMREUCoiEomDkdXIw4cPkZubC2tra9FRiEqlUaNGYdeuXVi6dCkaNmwIhUKBM2fOYMKECfjss88QHBwsOiIRfWTs0VEj5cqVEx2BqFRbunQpFAoF+vfvj+zsbACAjo4OvvrqKyxatEhwOiISgT06gt2/fx/jx4/HsWPHkJycjNf/OjipGdHby8jIQGxsLCRJgqurKwwNDUVHIiJBWOgI1q5dO8THx2PEiBGwtbVVzt6ahxMGEhERvTsWOoKZmJjg9OnT8PLyEh2FiIhIdjhhoGAODg75blcRERFRyWChI1hwcDAmT56MO3fuiI5CREQkO7x1JZiFhQUyMjKQnZ0NQ0ND6OjoqGx//PixoGRERESlHx8vF4zzehAREX047NEhIiIi2WKPjmDx8fFFbnd0dPxISYiIiOSHPTqCaWlp5Zs75784YSAREdG7Y4+OYJcvX1Z5/fLlS1y+fBnLly/H/PnzBaUiIiKSB/boqKl9+/ZhyZIlOHnypOgoREREpRbn0VFTVapUQVhYmOgYREREpRpvXQmWlpam8lqSJCQmJmLWrFmoXLmyoFRERETywEJHMHNz83yDkSVJgoODA7Zt2yYoFRERkTxwjI5goaGhKq+1tLRgZWUFV1dXlCnDOpSIiOh98CepYAqFAg0bNsxX1GRnZ+PUqVNo2rSpoGRERESlH3t0BNPW1kZiYiKsra1V2h89egRra2vOo0NERPQe+NSVYJIkFThh4KNHj2BkZCQgERERkXzw1pUg3bp1A/Dq1pWfnx/09PSU23JychAVFYWGDRuKikdERCQLLHQEMTMzA/CqR8fExAQGBgbKbbq6umjQoAGGDh0qKh4REZEscIyOYLNnz8b48eN5m4qIiOgDYKGjJpKTk3Hjxg0oFApUqVIl3+BkIiIienscjCxYWloa+vXrB3t7ezRr1gxNmzaFvb09vvjiC6SmpoqOR0REVKqx0BFsyJAh+PPPP7F3716kpKQgNTUVe/fuRXh4OMfoEBERvSfeuhLMyMgIhw4dQuPGjVXaT58+jbZt2yI9PV1QMiIiotKPPTqCWVpaKp/A+i8zMzNYWFgISERERCQfLHQEmzZtGgIDA5GYmKhsS0pKwoQJEzB9+nSByYiIiEo/3roSrFatWrh16xZevHgBR0dHAEB8fDz09PRQuXJllX0jIiJERCQiIiq1OGGgYF26dBEdgYiISLbYo0NERESyxTE6aiAlJQX/+9//MGXKFDx+/BjAq9tU9+7dE5yMiIiodGOPjmBRUVFo1aoVzMzMcOfOHdy4cQMuLi6YPn067t69iy1btoiOSEREVGqxR0ewwMBA+Pn54e+//4a+vr6yvV27djh16pTAZERERKUfCx3BwsLC8OWXX+Zrt7e3R1JSkoBERERE8sFCRzB9fX2kpaXla79x4wasrKwEJCIiIpIPFjqCde7cGXPmzMHLly8BAAqFAvHx8Zg8eTI+++wzwemIiIhKNw5GFiwtLQ3t27fHX3/9hadPn8LOzg5JSUlo0KABDhw4ACMjI9ERiYiISi0WOmrixIkTuHTpEnJzc1G7dm20atVKdCQiIqJSj4WOGjh27BiOHTuG5ORk5ObmqmzbsGGDoFRERESlH5eAEGz27NmYM2cOvL29YWtrC4VCIToSERGRbLBHRzBbW1ssXrwY/fr1Ex2FiIhIdvjUlWBZWVlo2LCh6BhERESyxEJHsCFDhuCnn34SHYOIiEiWOEZHsMzMTKxbtw5Hjx6Fp6cndHR0VLYvX75cUDIiIqLSj2N0BGvevHmh2xQKBY4fP/4R0xAREckLCx0iIiKSLY7RISIiItlioUNERESyxUKHiIiIZIuFDhHRG2zatAnm5uaiYxDRO+BgZCKiN3j+/DmePn0Ka2tr0VGI6C2x0CEiKsLLly/zzW9FRKUHb10R0Ue1Y8cOeHh4wMDAAJaWlmjVqhXS09MBABs2bED16tWhp6cHW1tbjBgxQvl9qampGDZsGKytrWFqaooWLVrgypUryu2zZs2Cl5cXtm7diooVK8LMzAy9evXC06dPlfscPHgQjRs3hrm5OSwtLfHpp58iNjZWuf3OnTtQKBT49ddf4evrC319ffzwww8F3rpavXo1KlWqBF1dXbi5uWHr1q0f6IwR0ftgoUNEH01iYiJ69+6NQYMG4dq1azh58iS6desGSZKwevVqBAQEYNiwYbh69Sr27NkDV1dXAIAkSejQoQOSkpKwf/9+XLp0CbVr10bLli3x+PFj5fFjY2Oxe/du7N27F3v37kVoaCgWLVqk3J6eno7AwECEhYXh2LFj0NLSQteuXZGbm6uSc9KkSRg1ahSuXbuGNm3a5Pscu3btwujRozFu3DhER0fjyy+/xMCBA3HixIkPdOaI6J1JREQfyaVLlyQA0p07d/Jts7Ozk6ZOnVrg9x07dkwyNTWVMjMzVdorVaokrV27VpIkSZo5c6ZkaGgopaWlKbdPmDBBql+/fqF5kpOTJQDS1atXJUmSpLi4OAmAFBwcrLLfxo0bJTMzM+Xrhg0bSkOHDlXZp0ePHlL79u0LfS8iEoM9OkT00dSsWRMtW7aEh4cHevTogfXr1+PJkydITk7Gv//+i5YtWxb4fZcuXcKzZ89gaWkJY2Nj5VdcXJzKraeKFSvCxMRE+drW1hbJycnK17GxsejTpw9cXFxgamoKZ2dnAEB8fLzK+3l7exf5Oa5du4ZGjRqptDVq1AjXrl0r3okgoo+Gi3oS0Uejra2NI0eO4Ny5czh8+DBWrlyJqVOn4tixY0V+X25uLmxtbXHy5Ml82/47dub1QcMKhULltlTHjh3h4OCA9evXw87ODrm5uahRowaysrJUvs/IyOiNn0WhUKi8liQpXxsRicceHSL6qBQKBRo1aoTZs2fj8uXL0NXVxZEjR1CxYsVCC57atWsjKSkJZcqUgaurq8pXuXLlivW+jx49wrVr1zBt2jS0bNkS1apVw5MnT97pM1SrVg1nzpxRaTt37hyqVav2Tscjog+HPTpE9NH8+eefOHbsGFq3bg1ra2v8+eefePDgAapVq4ZZs2Zh+PDhsLa2Rrt27fD06VOcPXsWI0eORKtWreDj44MuXbrgm2++gZubG/7991/s378fXbp0eeOtJgCwsLCApaUl1q1bB1tbW8THx2Py5Mnv9DkmTJiAnj17KgdE//HHH9i5cyeOHj36Tscjog+HhQ4RfTSmpqY4deoUgoODkZaWBicnJyxbtgzt2rUDAGRmZiIoKAjjx49HuXLl0L17dwCveoH279+PqVOnYtCgQXjw4AHKly+Ppk2bwsbGpljvraWlhW3btmHUqFGoUaMG3NzcsGLFCvj6+r715+jSpQu+/fZbLFmyBKNGjYKzszM2btz4Tsciog+LEwYSERGRbHGMDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2WOgQERGRbLHQISIiItlioUNERESyxUKHiIiIZIuFDhEREckWCx0iIiKSLRY6REREJFssdIiIiEi2/h/UQiQjVDAzYgAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "ax = sns.countplot(df, x=\"scenario\", hue=\"block_spec\")\n", - "ax.set(yscale=\"log\")\n", - "ax.tick_params(axis='x', rotation=90)\n", - "_ = ax.set_title(\"Block specs by scenario\")" - ] - }, - { - "cell_type": "markdown", - "id": "86f5d1ca-6e30-40c4-a71e-fc117f17dab5", - "metadata": {}, - "source": [ - "It's interesting to see that we've seen the largest [performance gains](https://github.com/NomicFoundation/edr/issues/33) in `rocketpool` and `safe-contracts` which barely use the `pending` block spec." - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "1d53d0d1-b6c1-4628-96cf-5aa3f07544b8", - "metadata": {}, - "outputs": [ - { - "data": { - "text/markdown": [ - "## Patterns" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and the number of scenarios that they appear in." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "The following are method are ommited as they bring too much noise: `{'eth_accounts', 'eth_chainId', 'eth_getBlockByNumber', 'net_version'}`" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternscenario
137sendTx getTxReceipt3
6blockNumber sendTx getTxByHash3
102getTxReceipt gasPrice3
88getTxByHash sendTx getTxByHash3
17call call call call call call call call call call6
33call getCode3
69getTxByHash blockNumber sendTx3
124sendTx getTxByHash blockNumber3
79getTxByHash getCode4
74getTxByHash estimateGas sendTx4
31call gasPrice3
66getCode getTxReceipt3
44evm_snapshot blockNumber4
58getCode call call3
23call call getCode3
29call evm_revert evm_snapshot3
62getCode gasPrice3
7call blockNumber5
114getTxReceipt sendTx getTxByHash3
120sendTx evm_revert4
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### neptune-mutual-blue-protocol" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
556getTxReceipt getTxByHash getCode getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode6.730000
80estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash estimateGas sendTx getTxReceipt6.710000
185getCode getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash6.710000
318getTxByHash getCode getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt6.710000
783sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash6.710000
529getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash estimateGas6.470000
279getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash estimateGas sendTx6.460000
83estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash sendTx getTxReceipt getTxByHash2.760000
530getTxReceipt getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash sendTx2.720000
281getTxByHash estimateGas sendTx getTxReceipt getTxByHash getCode getTxReceipt getTxByHash sendTx getTxReceipt2.710000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### safe-contracts" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
100blockNumber sendTx getTxByHash getTxReceipt blockNumber blockNumber sendTx getTxByHash getTxReceipt blockNumber1.310000
145call blockNumber sendTx getTxByHash getTxReceipt blockNumber blockNumber sendTx getTxByHash getTxReceipt1.200000
227call signTypedData_v4 blockNumber sendTx evm_revert getBlockByHash evm_snapshot call signTypedData_v4 blockNumber0.970000
863signTypedData_v4 blockNumber sendTx evm_revert getBlockByHash evm_snapshot call signTypedData_v4 blockNumber sendTx0.970000
361evm_snapshot call blockNumber sendTx getTxByHash getTxReceipt blockNumber blockNumber sendTx getTxByHash0.860000
289evm_revert getBlockByHash evm_snapshot call blockNumber sendTx getTxByHash getTxReceipt blockNumber blockNumber0.840000
454getBlockByHash evm_snapshot call blockNumber sendTx getTxByHash getTxReceipt blockNumber blockNumber sendTx0.840000
477getBlockByHash evm_snapshot call signTypedData_v4 blockNumber sendTx evm_revert getBlockByHash evm_snapshot call0.800000
54blockNumber sendTx evm_revert getBlockByHash evm_snapshot call signTypedData_v4 blockNumber sendTx getTxByHash0.780000
814sendTx getTxByHash getTxReceipt blockNumber blockNumber sendTx getTxByHash getTxReceipt blockNumber call0.750000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### synthetix" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
364gasPrice sendTx getTxReceipt gasPrice sendTx getTxReceipt gasPrice sendTx getTxReceipt gasPrice7.470000
807sendTx getTxReceipt gasPrice sendTx getTxReceipt gasPrice sendTx getTxReceipt gasPrice sendTx7.460000
583getTxReceipt gasPrice sendTx getTxReceipt gasPrice sendTx getTxReceipt gasPrice sendTx getTxReceipt7.440000
11call call call call call call call call call call5.160000
292gasPrice sendTx call gasPrice sendTx call gasPrice sendTx call gasPrice2.140000
704sendTx call gasPrice sendTx call gasPrice sendTx call gasPrice sendTx2.140000
67call gasPrice sendTx call gasPrice sendTx call gasPrice sendTx call2.060000
656getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt getTxReceipt1.460000
252gasPrice gasPrice gasPrice gasPrice gasPrice gasPrice gasPrice gasPrice gasPrice gasPrice1.420000
882sendTx sendTx sendTx sendTx sendTx sendTx sendTx sendTx sendTx sendTx1.400000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### openzeppelin-contracts" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
66blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber5.120000
769sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx5.090000
487getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash4.770000
309evm_revert evm_snapshot blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx2.460000
397evm_snapshot blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash2.380000
246call evm_revert evm_snapshot blockNumber sendTx getTxByHash blockNumber sendTx getTxByHash blockNumber1.160000
202call call call call call call call call call call1.110000
264call evm_revert evm_snapshot call evm_revert evm_snapshot call evm_revert evm_snapshot call1.110000
430evm_snapshot call evm_revert evm_snapshot call evm_revert evm_snapshot call evm_revert evm_snapshot1.110000
335evm_revert evm_snapshot call evm_revert evm_snapshot call evm_revert evm_snapshot call evm_revert1.090000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### uniswap-v3-core" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
16call call call call call call call call call call4.960000
819sendTx getTxByHash sendTx getTxByHash sendTx getTxByHash sendTx getTxByHash sendTx getTxByHash4.480000
515getTxByHash sendTx getTxByHash sendTx getTxByHash sendTx getTxByHash sendTx getTxByHash sendTx3.130000
785sendTx getTxByHash sendTx getTxByHash evm_revert evm_snapshot call sendTx getTxByHash sendTx1.540000
20call call call call call call getTxReceipt getTxReceipt getTxReceipt sendTx1.310000
25call call call call call getTxReceipt getTxReceipt getTxReceipt sendTx getTxByHash1.310000
132call sendTx getTxByHash sendTx getTxByHash call call call call call1.310000
236evm_snapshot call sendTx getTxByHash sendTx getTxByHash call call call call1.300000
292getTxByHash call call call call call call getTxReceipt getTxReceipt getTxReceipt1.300000
438getTxByHash sendTx getTxByHash call call call call call call getTxReceipt1.300000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### seaport" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
31call call call call call call call call call call2.810000
846sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt2.120000
361gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount1.910000
676getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice1.790000
844sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount estimateGas sendRawTx1.320000
354gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount estimateGas sendRawTx getTxReceipt gasPrice1.310000
579getTxCount sendRawTx getTxReceipt gasPrice getTxCount estimateGas sendRawTx getTxReceipt gasPrice getTxCount1.310000
646getTxReceipt gasPrice getTxCount estimateGas sendRawTx getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt1.310000
671getTxReceipt gasPrice getTxCount sendRawTx getTxReceipt gasPrice getTxCount estimateGas sendRawTx getTxReceipt1.310000
829sendRawTx getTxReceipt gasPrice getTxCount estimateGas sendRawTx getTxReceipt gasPrice getTxCount sendRawTx1.310000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "### rocketpool" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Most frequent patterns and their percentage of the total." - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
indexpatternpercent
334call getCode call getCode getCode call call call call call2.320000
600getCode call getCode getCode call call call call call call2.320000
348call getCode getCode call call call call call call getCode2.040000
637getCode getCode call call call call call call getCode call2.040000
402evm_mine evm_mine evm_mine evm_mine evm_mine evm_mine evm_mine evm_mine evm_mine evm_mine2.020000
117call call call call getCode call getCode getCode call call2.010000
84call call call call call call getCode call getCode getCode1.980000
97call call call call call getCode call getCode getCode call1.970000
159call call call getCode call getCode getCode call call call1.970000
226call call getCode call getCode getCode call call call call1.970000
\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# These methods add a lot of noise\n", - "ignored_methods = {\"eth_getBlockByNumber\", \"eth_chainId\", \"net_version\", \"eth_accounts\"}\n", - "\n", - "rpc_methods = defaultdict(list)\n", - "for scenario, calls in rpc_calls.items():\n", - " for call in calls:\n", - " method = call[\"method\"]\n", - " if method not in ignored_methods:\n", - " rpc_methods[scenario].append(call[\"method\"])\n", - "\n", - "pattern_data = defaultdict(list)\n", - "for scenario, methods in rpc_methods.items():\n", - " for n in range(10, 1, -1):\n", - " ngrams = list(nltk.ngrams(methods, n))\n", - " most_common = Counter(ngrams).most_common(100)\n", - " for (pattern, count) in most_common:\n", - " pattern = \" \".join(pattern)\n", - " pattern = pattern.replace(\"eth_\", \"\")\n", - " pattern = pattern.replace(\"Transaction\", \"Tx\")\n", - " pattern_data[\"pattern\"].append(pattern)\n", - " pattern_data[\"percent\"].append(round(100 * count / len(ngrams), 2))\n", - " pattern_data[\"scenario\"].append(scenario)\n", - " i += 1\n", - "\n", - "def get_patterns(scenario=None):\n", - " df_original = pd.DataFrame(pattern_data)\n", - " if scenario is not None:\n", - " df_original = df_original.loc[df_original[\"scenario\"] == scenario]\n", - " df_grouped = df_original.groupby(\"pattern\").aggregate({\"percent\": \"sum\", \"scenario\": \"count\"})\n", - " # Only keep patterns that are present in at least two scenarios if we are calculating for all scenarios\n", - " if scenario is None:\n", - " df_grouped = df_grouped[df_grouped[\"scenario\"] > 2]\n", - " df_grouped = df_grouped.reset_index()\n", - " \n", - " trie = StringTrie(separator=\" \")\n", - " for p in sorted(df_grouped[\"pattern\"].to_list(), key=lambda p: p.count(\" \"), reverse=True):\n", - " if trie.has_subtrie(p):\n", - " continue\n", - " else:\n", - " trie[p] = p\n", - " \n", - " # Remove patterns that are prefixes of longer patterns\n", - " mask = df_grouped[\"pattern\"].apply(lambda p: trie.has_key(p))\n", - " df_grouped = df_grouped[mask]\n", - " df_grouped = df_grouped.reset_index()\n", - "\n", - " if scenario is None:\n", - " display(Markdown(\"## Patterns\"))\n", - " display(Markdown(\"Most frequent patterns and the number of scenarios that they appear in.\"))\n", - " display(Markdown(\"The following are method are ommited as they bring too much noise: `\" + str(ignored_methods) + \"`\"))\n", - " display(df_grouped.sort_values([\"percent\", \"scenario\"], ascending=[False, False])[:20].drop(\"percent\", axis=1).style.hide(axis=\"index\"))\n", - " else:\n", - " display(Markdown(\"### \" + scenario))\n", - " display(Markdown(\"Most frequent patterns and their percentage of the total.\"))\n", - " display(df_grouped.sort_values([\"percent\", \"scenario\"], ascending=[False, False])[:10].drop(\"scenario\", axis=1).style.hide(axis=\"index\"))\n", - "\n", - "\n", - "get_patterns()\n", - "for scenario in rpc_methods.keys():\n", - " get_patterns(scenario)\n" - ] - }, - { - "cell_type": "markdown", - "id": "bb775fb4-199b-4abc-8cd1-2900c52d37b9", - "metadata": {}, - "source": [ - "## Conclusion\n", - "\n", - "The dataset is not representative since no scenario uses fork mode or interval mining which questions the representativeness of the dataset.\n", - "\n", - "A cursory review of the scenario patterns suggest that sampling from them should be possible since there are a lot of repeating patterns. Yet the challenge with sampling remains that some performance problems only materialize with a large state, so it's best to use the scenarios as is.\n", - "\n", - "The highest impact optimization based on the data analysis seems to be avoiding state snapshot when automining since almost all transactions are executed in automine mode." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "eb88ea30-bcb1-449e-95e4-4cc18049af5a", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/crates/tools/scenarios/neptune-mutual-blue-protocol_8db6480.jsonl.gz b/crates/tools/scenarios/neptune-mutual-blue-protocol_8db6480.jsonl.gz deleted file mode 100644 index ce27abb73a..0000000000 Binary files a/crates/tools/scenarios/neptune-mutual-blue-protocol_8db6480.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/openzeppelin-contracts_0a5fba7a.jsonl.gz b/crates/tools/scenarios/openzeppelin-contracts_0a5fba7a.jsonl.gz deleted file mode 100644 index 2bc23443fd..0000000000 Binary files a/crates/tools/scenarios/openzeppelin-contracts_0a5fba7a.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/rocketpool_6a9dbfd8.jsonl.gz b/crates/tools/scenarios/rocketpool_6a9dbfd8.jsonl.gz deleted file mode 100644 index d17306f4e7..0000000000 Binary files a/crates/tools/scenarios/rocketpool_6a9dbfd8.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/safe-contracts_914d0f8.jsonl.gz b/crates/tools/scenarios/safe-contracts_914d0f8.jsonl.gz deleted file mode 100644 index f24825dbb0..0000000000 Binary files a/crates/tools/scenarios/safe-contracts_914d0f8.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/seaport_4f4e7c20.jsonl.gz b/crates/tools/scenarios/seaport_4f4e7c20.jsonl.gz deleted file mode 100644 index 2e9795e00c..0000000000 Binary files a/crates/tools/scenarios/seaport_4f4e7c20.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/snapshot.json b/crates/tools/scenarios/snapshot.json deleted file mode 100644 index 4052492128..0000000000 --- a/crates/tools/scenarios/snapshot.json +++ /dev/null @@ -1,13581 +0,0 @@ -{ - "neptune-mutual-blue-protocol_8db6480": { - "timeMs": 184336.37637495995, - "failures": [ - 2033, - 2044, - 2050, - 2072, - 2109, - 2146, - 2734, - 2738, - 2742, - 3899, - 4493, - 4499, - 4505, - 4522, - 4549, - 5736, - 6327, - 6908, - 7502, - 8110, - 8716, - 9074, - 10046, - 10052, - 10072, - 10404, - 10426, - 10438, - 10450, - 10467, - 10479, - 10501, - 10523, - 10545, - 10567, - 11133, - 12245, - 12793, - 14452, - 14460, - 17231, - 17779, - 18324, - 18868, - 19415, - 20891, - 20900, - 20909, - 20925, - 20946, - 20947, - 20956, - 20972, - 20981, - 20998, - 21003, - 21019, - 21038, - 21041, - 21050, - 21623, - 21628, - 21648, - 21667, - 21673, - 21674, - 21681, - 21686, - 22789, - 22800, - 22809, - 22825, - 22846, - 22847, - 22856, - 22872, - 22881, - 22898, - 22903, - 22921, - 22940, - 22943, - 22952, - 22968, - 22987, - 22990, - 22999, - 23554, - 23567, - 23577, - 23586, - 23591, - 23604, - 23614, - 23621, - 23624, - 23633, - 23638, - 24189, - 24198, - 24212, - 24221, - 24228, - 24229, - 24784, - 24793, - 25366, - 25380, - 25389, - 25398, - 25414, - 25433, - 25449, - 25450, - 25459, - 25475, - 25494, - 25500, - 25515, - 25520, - 25536, - 25555, - 25569, - 25572, - 25581, - 26155, - 26164, - 26174, - 26179, - 26184, - 26193, - 26203, - 26209, - 26752, - 26758, - 26769, - 28305, - 28316, - 28849, - 29392, - 29398, - 29405, - 29418, - 29429, - 29438, - 29445, - 29456, - 29467, - 29476, - 29485, - 29494, - 29504, - 29515, - 29518, - 29527, - 29537, - 29550, - 29559, - 29564, - 29570, - 29579, - 29584, - 29589, - 29594, - 29600, - 29612, - 29620, - 29629, - 29639, - 29648, - 29655, - 29660, - 29663, - 30210, - 30216, - 30227, - 30236, - 30246, - 30270, - 30276, - 30289, - 30296, - 30306, - 30330, - 30336, - 30345, - 30354, - 30361, - 30385, - 30395, - 30396, - 30404, - 30414, - 30438, - 30444, - 30453, - 30458, - 30468, - 30492, - 30498, - 30509, - 30516, - 30519, - 31052, - 31061, - 31066, - 31080, - 31091, - 31094, - 31103, - 31113, - 31122, - 31127, - 31132, - 31142, - 31151, - 31158, - 31161, - 31166, - 31172, - 31184, - 31192, - 31201, - 31211, - 31220, - 31229, - 31234, - 31239, - 31782, - 31788, - 31797, - 31806, - 31819, - 31843, - 31853, - 31854, - 31862, - 31872, - 31896, - 31904, - 31913, - 31918, - 31928, - 31952, - 31958, - 31967, - 31976, - 31983, - 32534, - 32547, - 32557, - 32566, - 32571, - 32576, - 32586, - 32593, - 32596, - 32605, - 32610, - 33143, - 33661, - 33667, - 33673, - 34185, - 34191, - 34197, - 34732, - 35267, - 35804, - 36339, - 36874, - 37411, - 37946, - 40967, - 40981, - 41027, - 41043, - 41044, - 41055, - 41076, - 41102, - 41108, - 41124, - 41135, - 41181, - 41190, - 41199, - 41222, - 41231, - 41240, - 41249, - 41255, - 41266, - 41282, - 41288, - 41299, - 41305, - 41311, - 41327, - 43513, - 44060, - 44607, - 46793, - 47340, - 47887, - 48985, - 49542, - 50087, - 50630, - 51161, - 51729, - 51760, - 51765, - 51768, - 51777, - 52353, - 52384, - 52389, - 52392, - 52401, - 52973, - 52979, - 52981, - 52988, - 52995, - 53543, - 53560, - 54080, - 54087, - 54093, - 54094, - 54095, - 54096, - 54097, - 54119, - 54130, - 54140, - 55734, - 56252, - 57406, - 58408, - 58912, - 59418, - 60422, - 60924, - 61430, - 62438, - 62944, - 63460, - 63471, - 64009, - 64021, - 64630, - 64682, - 64684, - 64699, - 65253, - 65264, - 65265, - 65266, - 65267, - 65273, - 65828, - 65834, - 65835, - 65841, - 66404, - 66417, - 66424, - 66433, - 68052, - 68058, - 68059, - 68065, - 69149, - 69165, - 69747, - 71690, - 71992, - 72298, - 73185, - 73491, - 73801, - 74111, - 74731, - 75352, - 75664, - 75940, - 75951, - 76224, - 76225, - 76231, - 76242, - 76522, - 76533, - 76534, - 76535, - 78848, - 79427, - 81772, - 84085, - 84662, - 84668, - 87013, - 87019, - 87582, - 87608, - 87619, - 88233, - 90956, - 90957, - 90958, - 90959, - 90965, - 90983, - 92603, - 92604, - 92607, - 93167, - 94859, - 95419, - 95984, - 96539, - 97229, - 97233, - 97240, - 97779, - 97780, - 98323, - 98324, - 98327, - 99879, - 99881, - 101016, - 101033, - 101040, - 101041, - 101053, - 101075, - 101646, - 102418, - 102831, - 102832, - 102833, - 102839, - 102845, - 103537, - 103556, - 103589, - 103951, - 103957, - 103970, - 103983, - 103989, - 103997, - 105414, - 105438, - 105878, - 105912, - 105939, - 105958, - 105977, - 105996, - 106015, - 106034, - 106058, - 106082, - 106106, - 106469, - 106480, - 106481, - 107152, - 107171, - 107205, - 107229, - 107604, - 108017, - 108033, - 108395, - 109044, - 109050, - 109066, - 109084, - 110068, - 110303, - 111115, - 111319, - 111520, - 111730, - 111939, - 112140, - 112392, - 112403, - 112653, - 113142, - 113156, - 113424, - 113665, - 113942, - 114240, - 114246, - 114538, - 114544, - 114649, - 114665, - 114754, - 114794, - 114837, - 114858, - 114901, - 114922, - 114965, - 114986, - 115029, - 115050, - 115093, - 115114, - 115157, - 115178, - 115221, - 115242, - 115274, - 115352, - 115505, - 115521, - 115552, - 115568, - 115599, - 115615, - 115646, - 115662, - 115693, - 115709, - 115760, - 115776, - 115807, - 115823, - 115854, - 115870, - 115904, - 115920, - 115951, - 115967, - 115998, - 116014, - 116091, - 116103, - 116119, - 116184, - 116186, - 116192, - 116212, - 116267, - 116285, - 116303, - 116321, - 116353, - 116407, - 116472, - 116478, - 116484, - 116504, - 116662, - 116664, - 116670, - 116671, - 116673, - 118154, - 118166, - 118178, - 118182, - 118186, - 119663, - 119666, - 124110 - ] - }, - "openzeppelin-contracts_0a5fba7a": { - "timeMs": 70185.17116701603, - "failures": [ - 39, - 75, - 110, - 172, - 183, - 195, - 201, - 243, - 257, - 261, - 272, - 312, - 331, - 350, - 354, - 358, - 362, - 366, - 398, - 434, - 469, - 531, - 542, - 554, - 560, - 744, - 851, - 889, - 937, - 954, - 1034, - 1284, - 1395, - 1431, - 1466, - 1528, - 1539, - 1551, - 1557, - 1674, - 1684, - 1698, - 1722, - 1726, - 1783, - 2361, - 2365, - 2379, - 2386, - 2398, - 2422, - 2496, - 2514, - 2538, - 2612, - 2630, - 2654, - 2728, - 2746, - 2802, - 2858, - 2870, - 2900, - 2912, - 2916, - 2930, - 2937, - 2949, - 2973, - 3047, - 3065, - 3089, - 3163, - 3181, - 3205, - 3279, - 3297, - 3353, - 3409, - 3421, - 3451, - 3463, - 3467, - 3481, - 3488, - 3500, - 3524, - 3598, - 3616, - 3640, - 3714, - 3732, - 3756, - 3830, - 3848, - 3904, - 3960, - 3972, - 4002, - 4006, - 4020, - 4027, - 4039, - 4063, - 4137, - 4155, - 4179, - 4253, - 4271, - 4295, - 4369, - 4387, - 4443, - 4499, - 4511, - 4541, - 4612, - 4619, - 4631, - 4655, - 4729, - 4747, - 4771, - 4845, - 4863, - 4887, - 4961, - 4979, - 5035, - 5091, - 5103, - 5133, - 5236, - 5251, - 5271, - 5300, - 5389, - 5412, - 5500, - 5580, - 5600, - 5654, - 5670, - 5684, - 5691, - 5703, - 5724, - 5789, - 5804, - 5860, - 5916, - 5928, - 5958, - 5993, - 6000, - 6012, - 6033, - 6098, - 6113, - 6169, - 6225, - 6237, - 6267, - 6280, - 6312, - 6328, - 6349, - 6379, - 6471, - 6495, - 6587, - 6670, - 6691, - 6748, - 7085, - 7123, - 7142, - 7166, - 7199, - 7300, - 7327, - 7431, - 7523, - 7547, - 7613, - 7696, - 7703, - 7725, - 7751, - 7797, - 7824, - 7907, - 7928, - 8008, - 8082, - 8100, - 8148, - 8234, - 8251, - 8263, - 8267, - 8279, - 8294, - 8311, - 8327, - 8391, - 8412, - 8453, - 8472, - 8560, - 8573, - 8605, - 8643, - 8673, - 8765, - 8789, - 8860, - 8943, - 8964, - 9001, - 9016, - 9039, - 9089, - 9106, - 9199, - 9249, - 9272, - 9286, - 9300, - 9313, - 9342, - 9355, - 9473, - 10469, - 10473, - 10477, - 10481, - 10485, - 10489, - 10493, - 10497, - 10501, - 10505, - 10509, - 10513, - 10517, - 10521, - 10525, - 10529, - 10533, - 10537, - 10541, - 10545, - 10549, - 10553, - 10557, - 10561, - 10565, - 10569, - 10573, - 10577, - 10581, - 10585, - 10589, - 10593, - 10597, - 10601, - 10605, - 10609, - 10613, - 10617, - 10621, - 10625, - 10629, - 10633, - 10637, - 10641, - 10645, - 10649, - 10653, - 10657, - 10661, - 10665, - 10669, - 10673, - 10677, - 10681, - 10685, - 10689, - 10693, - 10697, - 10701, - 10705, - 10709, - 10713, - 10717, - 10721, - 12034, - 12038, - 12042, - 12046, - 12050, - 12054, - 12058, - 12062, - 12066, - 12070, - 12074, - 12078, - 12082, - 12086, - 12090, - 12094, - 12098, - 12102, - 12106, - 12110, - 12114, - 12118, - 12122, - 12126, - 12130, - 12134, - 12138, - 12142, - 12146, - 12150, - 12154, - 12158, - 12162, - 12166, - 12170, - 12174, - 12178, - 12182, - 12186, - 12190, - 12194, - 12198, - 12202, - 12206, - 12210, - 12214, - 12218, - 12222, - 12226, - 12230, - 12234, - 12238, - 12242, - 12246, - 12250, - 12254, - 12258, - 12262, - 12266, - 12270, - 12274, - 12278, - 12282, - 12286, - 12306, - 13303, - 13307, - 13311, - 13315, - 13319, - 13323, - 13327, - 13331, - 13335, - 13339, - 13343, - 13347, - 13351, - 13355, - 13359, - 13363, - 13367, - 13371, - 13375, - 13379, - 13383, - 13387, - 13391, - 13395, - 13399, - 13403, - 13407, - 13411, - 13415, - 13419, - 13423, - 13427, - 13431, - 13435, - 13439, - 13443, - 13447, - 13451, - 13455, - 13459, - 13463, - 13467, - 13471, - 13475, - 13479, - 13483, - 13487, - 13491, - 13495, - 13499, - 13503, - 13507, - 13511, - 13515, - 13519, - 13523, - 13527, - 13531, - 13535, - 13539, - 13543, - 13547, - 13551, - 13555, - 14868, - 14872, - 14876, - 14880, - 14884, - 14888, - 14892, - 14896, - 14900, - 14904, - 14908, - 14912, - 14916, - 14920, - 14924, - 14928, - 14932, - 14936, - 14940, - 14944, - 14948, - 14952, - 14956, - 14960, - 14964, - 14968, - 14972, - 14976, - 14980, - 14984, - 14988, - 14992, - 14996, - 15000, - 15004, - 15008, - 15012, - 15016, - 15020, - 15024, - 15028, - 15032, - 15036, - 15040, - 15044, - 15048, - 15052, - 15056, - 15060, - 15064, - 15068, - 15072, - 15076, - 15080, - 15084, - 15088, - 15092, - 15096, - 15100, - 15104, - 15108, - 15112, - 15116, - 15120, - 15336, - 15343, - 15347, - 15354, - 15364, - 15377, - 15387, - 15403, - 15419, - 15435, - 15439, - 15452, - 15465, - 15478, - 15494, - 15510, - 15529, - 15532, - 15600, - 15614, - 15634, - 15654, - 15673, - 15677, - 15692, - 15702, - 15715, - 15731, - 15750, - 15754, - 15758, - 15762, - 15766, - 15818, - 15822, - 15826, - 15880, - 16152, - 16159, - 16163, - 16170, - 16180, - 16193, - 16203, - 16219, - 16235, - 16251, - 16255, - 16268, - 16281, - 16294, - 16310, - 16326, - 16345, - 16348, - 16416, - 16430, - 16450, - 16470, - 16489, - 16493, - 16508, - 16518, - 16531, - 16547, - 16566, - 16570, - 16574, - 16578, - 16582, - 16650, - 16654, - 16658, - 16712, - 16984, - 16991, - 16995, - 17002, - 17012, - 17025, - 17035, - 17051, - 17067, - 17083, - 17087, - 17100, - 17113, - 17126, - 17142, - 17158, - 17177, - 17180, - 17248, - 17262, - 17282, - 17302, - 17321, - 17325, - 17340, - 17350, - 17363, - 17379, - 17398, - 17402, - 17406, - 17410, - 17414, - 17466, - 17470, - 17474, - 17528, - 17664, - 17668, - 17672, - 17682, - 17689, - 17699, - 17721, - 17747, - 17784, - 17788, - 17792, - 17796, - 17800, - 17804, - 17814, - 17821, - 17831, - 17860, - 17870, - 17880, - 17890, - 17916, - 17939, - 17946, - 17950, - 17976, - 18015, - 18025, - 18035, - 18062, - 18076, - 18455, - 18596, - 18733, - 18734, - 18861, - 18862, - 18934, - 18955, - 19086, - 19135, - 19393, - 19444, - 19477, - 19503, - 19540, - 19545, - 19550, - 19604, - 19632, - 19780, - 19801, - 19932, - 19981, - 20239, - 20290, - 20323, - 20349, - 20386, - 20391, - 20396, - 20450, - 20478, - 20614, - 20684, - 20700, - 20702, - 20719, - 20739, - 20762, - 20787, - 20798, - 20809, - 20820, - 20841, - 20865, - 20904, - 20950, - 21030, - 21100, - 21116, - 21118, - 21135, - 21155, - 21178, - 21203, - 21214, - 21225, - 21236, - 21257, - 21281, - 21320, - 21366, - 21464, - 21561, - 21579, - 21600, - 21626, - 21652, - 21674, - 21699, - 21731, - 21819, - 21828, - 21870, - 21882, - 21894, - 21963, - 22060, - 22078, - 22099, - 22125, - 22151, - 22173, - 22198, - 22230, - 22318, - 22327, - 22369, - 22381, - 22393, - 22479, - 22483, - 22525, - 22578, - 22611, - 22615, - 22657, - 22812, - 22828, - 22983, - 22999, - 23101, - 23116, - 23123, - 23131, - 23181, - 23195, - 23259, - 23427, - 23442, - 23449, - 23457, - 23513, - 23527, - 23594, - 23824, - 23835, - 23857, - 23864, - 23871, - 23878, - 23885, - 23892, - 23902, - 23910, - 23917, - 23984, - 24000, - 24018, - 24034, - 24047, - 24060, - 24073, - 24086, - 24102, - 24119, - 24295, - 24324, - 24395, - 24445, - 24473, - 24502, - 24573, - 24625, - 24651, - 24677, - 24745, - 24792, - 24822, - 24827, - 24853, - 24887, - 24900, - 24913, - 24942, - 24959, - 24967, - 24976, - 25004, - 25008, - 25053, - 25070, - 25074, - 25098, - 25108, - 25112, - 25144, - 25202, - 25260, - 25408, - 25511, - 25680, - 25696, - 25882, - 25910, - 26001, - 26039, - 26136, - 26156, - 26191, - 26197, - 26242, - 26244, - 26246, - 26276, - 26285, - 26297, - 26370, - 26373, - 26429, - 26433, - 26441, - 26445, - 26456, - 26464, - 26497, - 26498, - 26550, - 26560, - 26570, - 26632, - 26835, - 26849, - 26863, - 26877, - 26891, - 26901, - 26911, - 26921, - 26923, - 26933, - 26943, - 26992, - 27195, - 27209, - 27223, - 27237, - 27251, - 27261, - 27283, - 27299, - 27303, - 27305, - 27321, - 27325, - 27332, - 27354, - 27358, - 27360, - 27364, - 27431, - 27452, - 27469, - 27482, - 27495, - 27508, - 27521, - 27534, - 27547, - 27560, - 27818, - 27822, - 27826, - 27830, - 27834, - 27838, - 27860, - 27864, - 27868, - 27872, - 27876, - 27880, - 27909, - 27913, - 27960, - 27967, - 27977, - 28029, - 28039, - 28061, - 28107, - 28111, - 28137, - 28141, - 28229, - 28245, - 28249, - 28253, - 28299, - 28303, - 28374, - 28378, - 28425, - 28432, - 28442, - 28495, - 28505, - 28527, - 28573, - 28577, - 28603, - 28607, - 28695, - 28711, - 28715, - 28719, - 28765, - 28769, - 28857, - 28861, - 28908, - 28915, - 28925, - 28977, - 28987, - 29009, - 29055, - 29076, - 29083, - 29090, - 29097, - 29104, - 29108, - 29112, - 29161, - 29191, - 29201, - 29211, - 29221, - 29231, - 29238, - 29245, - 29303, - 29324, - 29331, - 29338, - 29345, - 29352, - 29356, - 29408, - 29448, - 29455, - 29526, - 29542, - 29549, - 29568, - 29600, - 29608, - 29616, - 29624, - 29756, - 29808, - 29841, - 29874, - 29907, - 29913, - 29920, - 29934, - 30056, - 30071, - 30078, - 30086, - 30136, - 30150, - 30257, - 30278, - 30288, - 30484, - 30555, - 30632, - 30659, - 30699, - 30701, - 30724, - 30725, - 30727, - 30728, - 30746, - 30748, - 30757, - 30772, - 30779, - 30787, - 30842, - 30843, - 30857, - 30890, - 30925, - 30927, - 30954, - 30956, - 30968, - 30989, - 30999, - 31020, - 31021, - 31023, - 31024, - 31040, - 31041, - 31062, - 31063, - 31084, - 31085, - 31110, - 31111, - 31156, - 31157, - 31204, - 31223, - 31224, - 31238, - 31272, - 31273, - 31281, - 31300, - 31301, - 31315, - 31349, - 31350, - 31427, - 31436, - 31477, - 31489, - 31596, - 31676, - 31688, - 31774, - 31789, - 31807, - 31899, - 31917, - 31963, - 32131, - 32140, - 32149, - 32487, - 32500, - 32513, - 32526, - 33152, - 33233, - 33861, - 33942, - 34570, - 34651, - 34883, - 34885, - 34887, - 34889, - 34891, - 34893, - 34895, - 34897, - 34899, - 34901, - 34953, - 34986, - 35038, - 35071, - 35144, - 35177, - 35182, - 35229, - 35231, - 35233, - 35235, - 35237, - 35239, - 35241, - 35243, - 35245, - 35265, - 35312, - 35330, - 35800, - 35816, - 35832, - 35848, - 36318, - 36351, - 36367, - 36851, - 36867, - 36883, - 36899, - 37517, - 37537, - 37557, - 37577, - 37597, - 38081, - 38097, - 38113, - 38129, - 38747, - 38767, - 38787, - 38807, - 38827, - 38847, - 38867, - 38887, - 38907, - 38927, - 38947, - 39431, - 39464, - 39480, - 40098, - 40139, - 40159, - 40179, - 40663, - 40696, - 40712, - 41330, - 41371, - 41391, - 41411, - 41431, - 41451, - 41471, - 41491, - 41511, - 41531, - 41577, - 41591, - 41605, - 41619, - 41633, - 41647, - 41795, - 41808, - 41848, - 41957, - 41966, - 41991, - 42011, - 42015, - 42040, - 42053, - 42087, - 42149, - 42167, - 42659, - 42675, - 42691, - 42707, - 43199, - 43232, - 43248, - 43754, - 43770, - 43786, - 43802, - 44442, - 44462, - 44482, - 44502, - 44522, - 45028, - 45044, - 45060, - 45076, - 45716, - 45736, - 45756, - 45776, - 45796, - 45816, - 45836, - 45856, - 45876, - 45896, - 45916, - 46422, - 46455, - 46471, - 47111, - 47152, - 47172, - 47192, - 47698, - 47731, - 47747, - 48387, - 48428, - 48448, - 48468, - 48488, - 48508, - 48528, - 48548, - 48568, - 48588, - 48634, - 48648, - 48662, - 48676, - 48690, - 48704, - 48852, - 48865, - 48905, - 49014, - 49023, - 49048, - 49068, - 49072, - 49097, - 49110, - 49144, - 49202, - 49211, - 49244, - 49263, - 49309, - 49325, - 49365, - 49383, - 49399, - 49409, - 49419, - 49565, - 49569, - 49572, - 49581, - 49594, - 49602, - 49612, - 49763, - 49767, - 49770, - 49779, - 49792, - 49800, - 49810, - 49961, - 49965, - 49968, - 49977, - 49990, - 49998, - 50008, - 50017, - 50021, - 50025, - 50029, - 50043, - 50053, - 50063, - 50073, - 50083, - 50201, - 50203, - 50231, - 50233, - 50288, - 50373, - 50385, - 50397, - 50499, - 50514, - 50529, - 50579, - 50593, - 50886, - 50941, - 50979, - 50999, - 51042, - 51060, - 51530, - 51546, - 51562, - 51578, - 52048, - 52081, - 52097, - 52581, - 52597, - 52613, - 52629, - 53247, - 53267, - 53287, - 53307, - 53327, - 53811, - 53827, - 53843, - 53859, - 54477, - 54497, - 54517, - 54537, - 54557, - 54577, - 54597, - 54617, - 54637, - 54657, - 54677, - 55161, - 55194, - 55210, - 55828, - 55869, - 55889, - 55909, - 56393, - 56426, - 56442, - 57060, - 57101, - 57121, - 57141, - 57161, - 57181, - 57201, - 57221, - 57241, - 57261, - 57307, - 57321, - 57335, - 57349, - 57363, - 57377, - 57525, - 57538, - 57578, - 57687, - 57696, - 57721, - 57741, - 57745, - 57770, - 57783, - 57853, - 57857, - 57861, - 57865, - 57869, - 57873, - 57899, - 57946, - 57972, - 57989, - 57993, - 57997, - 58001, - 58005, - 58009, - 58020, - 58055, - 58061, - 58064, - 58067, - 58079, - 58083, - 59858, - 59862, - 59866, - 59902, - 59907, - 59952, - 59961, - 59967, - 59973, - 59979, - 59985, - 59991, - 59997, - 60003, - 60009, - 60015, - 60032, - 60048, - 60066, - 60111, - 60122, - 60140, - 60152, - 60156, - 60222, - 60230, - 60235, - 60243, - 60248, - 60256, - 60452, - 60469, - 60472, - 60475, - 60476, - 60491, - 60504, - 60505, - 60506, - 60507, - 60510, - 60523, - 60524, - 60525, - 60526, - 60529, - 60619, - 60620, - 60623, - 60624, - 60635, - 60636, - 61037, - 61055, - 61058, - 61520, - 61526, - 62026, - 62029, - 62041, - 62044, - 62056, - 62059, - 62071, - 62074, - 62086, - 62089, - 62101, - 62104, - 62116, - 62119, - 62131, - 62134, - 62146, - 62149, - 62161, - 62164, - 62176, - 62179, - 62191, - 62194, - 62206, - 62209, - 62221, - 62224, - 62236, - 62239, - 62251, - 62254, - 62266, - 62269, - 62281, - 62284, - 62296, - 62299, - 62311, - 62314, - 62326, - 62329, - 62341, - 62344, - 62356, - 62359, - 62371, - 62374, - 62386, - 62389, - 62401, - 62404, - 62416, - 62419, - 62431, - 62434, - 62446, - 62449, - 62461, - 62464, - 62476, - 62479, - 62491, - 62494, - 62512, - 62515, - 62518, - 62521, - 62539, - 62542, - 62545, - 62548, - 62566, - 62569, - 62572, - 62575, - 62593, - 62596, - 62599, - 62602, - 62620, - 62623, - 62626, - 62629, - 62647, - 62650, - 62653, - 62656, - 62674, - 62677, - 62680, - 62683, - 62701, - 62704, - 62707, - 62710, - 62728, - 62731, - 62734, - 62737, - 62755, - 62758, - 62761, - 62764, - 62782, - 62785, - 62788, - 62791, - 62809, - 62812, - 62815, - 62818, - 62836, - 62839, - 62842, - 62845, - 62863, - 62866, - 62869, - 62872, - 62890, - 62893, - 62896, - 62899, - 62917, - 62920, - 62923, - 62926, - 62944, - 62947, - 62950, - 62953, - 62971, - 62974, - 62977, - 62980, - 62998, - 63001, - 63004, - 63007, - 63025, - 63028, - 63031, - 63034, - 63052, - 63055, - 63058, - 63061, - 63079, - 63082, - 63085, - 63088, - 63106, - 63109, - 63112, - 63115, - 63133, - 63136, - 63139, - 63142, - 63160, - 63163, - 63166, - 63169, - 63187, - 63190, - 63193, - 63196, - 63214, - 63217, - 63220, - 63223, - 63241, - 63244, - 63247, - 63250, - 63268, - 63271, - 63274, - 63277, - 63295, - 63298, - 63301, - 63304, - 63322, - 63325, - 63328, - 63331, - 63343, - 63346, - 63680, - 63767, - 63954, - 64041, - 64228, - 64315, - 64507, - 64509, - 64510, - 64511, - 64542, - 64778, - 64933, - 65088, - 65243, - 65398, - 65553, - 65708, - 65863, - 66018, - 66079, - 66198, - 66317, - 66572 - ] - }, - "rocketpool_6a9dbfd8": { - "timeMs": 40719.06025004387, - "failures": [ - 2253, - 2256, - 2280, - 2284, - 2719, - 2722, - 2848, - 2856, - 3435, - 3447, - 3764, - 3765, - 4088, - 4103, - 4997, - 4998, - 5288, - 5291, - 5578, - 5595, - 5923, - 5932, - 8498, - 8553, - 8739, - 8764, - 9544, - 9559, - 9839, - 9840, - 11394, - 11403, - 12532, - 12550, - 13440, - 13467, - 15937, - 15974, - 16935, - 16938, - 17891, - 17908, - 17916, - 17957, - 18842, - 18845, - 18904, - 18915, - 18980, - 18981, - 19939, - 19970, - 20001, - 20006, - 20085, - 20086, - 21049, - 21050, - 21065, - 21066, - 21081, - 21112, - 21762, - 21763, - 21782, - 21793, - 23073, - 23075, - 24697, - 24698, - 25200, - 25204, - 25708, - 25709, - 26349, - 26356, - 26906, - 26909, - 26924, - 26941, - 26954, - 27115, - 27178, - 27179, - 27294, - 27319, - 28420, - 28421, - 28932, - 28975, - 29355, - 29458, - 29786, - 29805, - 31697, - 31740, - 32434, - 32493, - 32828, - 32829, - 33151, - 33168, - 33804, - 33823, - 34103, - 34146, - 34440, - 34481, - 34789, - 34790, - 36279, - 36280, - 36355, - 36460, - 38107, - 38108, - 38109, - 38110, - 38392, - 38393, - 38804, - 38805, - 39087, - 39088, - 39540, - 39541, - 40695, - 41080, - 41083, - 41420, - 41559, - 42331, - 42627, - 42628, - 43089, - 43090, - 43567, - 43578, - 44428, - 44429, - 44663, - 44666, - 44765, - 44902, - 45140, - 45169, - 47452, - 47453, - 49778, - 49779, - 52049, - 52050, - 52542, - 52557, - 53947, - 53948, - 54610, - 54611, - 54805, - 54806, - 55125, - 55132, - 58033, - 58044, - 58045, - 58657, - 58666, - 59806, - 59811, - 60897, - 61829, - 61830, - 62323, - 62324, - 63029, - 63032, - 64440, - 64441, - 65059, - 65060, - 65186, - 65187, - 66353, - 66354, - 66509, - 66656, - 67551, - 67558, - 67689, - 67690, - 68367, - 68368, - 69047, - 69048, - 74038, - 74039, - 74182, - 74183, - 75955, - 75956, - 75967, - 75968, - 75973, - 75974, - 79933, - 79934, - 80621, - 80624, - 81113, - 81116, - 81320, - 81321, - 82350, - 82356, - 82544, - 82545, - 83183, - 83192, - 83666, - 83667, - 83835, - 83838, - 83844, - 83847, - 84495, - 84512, - 84517, - 84518, - 84525, - 84526, - 84531, - 84532, - 92072, - 92075, - 93281, - 93282, - 93412, - 93574, - 99023, - 99027, - 100476, - 100477, - 101158, - 101161, - 104328, - 104329, - 105077, - 105088, - 105648, - 105649, - 105678, - 105679, - 105838, - 105839, - 106586, - 106588, - 108898, - 108901, - 111509, - 111512, - 112017, - 112020, - 112171, - 112180, - 112893, - 112902, - 113138, - 113139, - 116482, - 116483, - 117037, - 117040, - 117305, - 117318, - 117671, - 117775, - 118076, - 118077, - 118497, - 118648, - 121466, - 121469, - 123676, - 123723, - 123921, - 123938, - 124178, - 124209, - 124625, - 124626, - 125160, - 125216, - 125746, - 125773, - 126319, - 126320, - 126797, - 126806, - 126836, - 126837, - 130382, - 130383, - 131503, - 131504, - 132005, - 132006, - 132204, - 132205, - 133337, - 133338, - 133389, - 133390, - 134110, - 134112, - 134744, - 134745, - 135186, - 135189, - 135258, - 135259, - 135952, - 135953, - 136396, - 136397, - 139727, - 139728, - 140899, - 140900, - 141433, - 141436, - 142740, - 142746, - 143596, - 143597, - 143981, - 144157, - 146514, - 146521, - 147393, - 147394, - 147880, - 147881, - 149482, - 149483, - 150509, - 150510, - 164880, - 165031, - 165180, - 165181, - 165529, - 165530, - 165568, - 165569, - 167529, - 167571, - 167614, - 167615, - 167640, - 167641, - 167762, - 167763, - 167808, - 167809, - 181779, - 181780, - 183873, - 183874, - 186498, - 186499, - 194346, - 194347, - 196716, - 196717, - 196741, - 196742, - 196772, - 196773, - 196799, - 196804, - 204422, - 204423, - 214608, - 214609, - 214653, - 214654, - 214678, - 214737, - 214873, - 214874 - ] - }, - "safe-contracts_914d0f8": { - "timeMs": 1853.0088330507278, - "failures": [ - 195, - 271, - 316, - 361, - 367, - 523, - 576, - 665, - 690, - 716, - 731, - 787, - 802, - 846, - 851, - 872, - 898, - 906, - 914, - 928, - 966, - 974, - 982, - 996, - 1010, - 1030, - 1070, - 1075, - 1109, - 1114, - 1174, - 1178, - 1186, - 1242, - 1250, - 1258, - 1266, - 1280, - 1288, - 1296, - 1329, - 1343, - 1357, - 1371, - 1385, - 1399, - 1413, - 1427, - 1435, - 1497, - 1502, - 1510, - 1518, - 1526, - 1534, - 1542, - 1550, - 1558, - 1566, - 1574, - 1598, - 1620, - 1621, - 1623, - 1642, - 1647, - 1652, - 1657, - 1662, - 1667, - 1672, - 1677, - 1682, - 1710, - 1718, - 1753, - 1780, - 1785, - 1822, - 1836, - 1841, - 1846, - 1879, - 1907, - 1939, - 1959, - 1987, - 2043, - 2049, - 2055, - 2076, - 2082, - 2097, - 2117, - 2145, - 2196, - 2203, - 2210, - 2232, - 2239, - 2260, - 2289, - 2339, - 2345, - 2351, - 2358, - 2364, - 2384, - 2412, - 2511, - 2538, - 2544, - 2550, - 2556, - 2563, - 2569, - 2590, - 2619, - 2721, - 2758, - 2762, - 2766, - 2769, - 2801, - 2806, - 2842, - 2847, - 2852, - 2898, - 2917, - 2980, - 3031, - 3035, - 3047, - 3071, - 3125, - 3167, - 3178, - 3257, - 3261, - 3265, - 3311, - 3330, - 3458, - 3492, - 3528, - 3530, - 3571, - 3572, - 3595, - 3610, - 3643, - 3657, - 3716, - 3721, - 3777, - 3784, - 3877, - 3881, - 3931, - 3937, - 4019, - 4035, - 4087, - 4095, - 4126, - 4134, - 4167, - 4175, - 4183, - 4214, - 4312, - 4338, - 4365, - 4390, - 4415, - 4442, - 4468, - 4496, - 4521, - 4562, - 4587, - 4628, - 4653, - 4677, - 4720, - 4744, - 4868, - 4876, - 4884, - 4902, - 4994, - 5014 - ] - }, - "seaport_4f4e7c20": { - "timeMs": 10179.811082959175, - "failures": [ - 1144, - 1217, - 1290, - 1362, - 1435, - 1506, - 1579, - 1652, - 1725, - 1798, - 1871, - 1944, - 2036, - 2118, - 2209, - 2282, - 2355, - 2428, - 2492, - 2573, - 2637, - 2710, - 3174, - 3736, - 4657, - 5377, - 10275, - 13575, - 16175, - 16219, - 16238, - 16346, - 16713, - 16727, - 16739, - 16751, - 16809, - 16893, - 16905, - 16917, - 16929, - 16948, - 16955, - 16962, - 16980, - 16987, - 16992, - 17008, - 17024, - 17031, - 17250, - 17257, - 17321, - 17365, - 17374, - 17448, - 17457, - 17473, - 17480, - 17627, - 17667, - 17685, - 17727, - 17756, - 17798, - 17816, - 17869, - 17887, - 17990, - 18049, - 18160, - 18187, - 18271, - 18298, - 18552, - 18855, - 19087, - 19749, - 19758, - 19767, - 19844, - 19921, - 20030, - 20105, - 20147, - 20209, - 20251, - 20293, - 20337, - 20379, - 20421, - 20463, - 20513, - 20570, - 20578, - 20671, - 20738, - 20807, - 20856, - 20863, - 20903, - 20910, - 20917, - 20965, - 20972, - 20979, - 21044, - 21109, - 21157, - 21212, - 21267, - 21332, - 21397, - 21462, - 21527, - 21585, - 21643, - 21701, - 21759, - 21814, - 21862, - 21902, - 21950, - 21990, - 22030, - 22070, - 22110, - 22150, - 22190, - 22290, - 22344, - 22351, - 22358, - 22451, - 22458, - 22545, - 22622, - 22699, - 22706, - 22783, - 22861, - 22915, - 23014, - 23068, - 23143, - 23183, - 23223, - 23263, - 23303, - 23343, - 23383, - 23431, - 23479, - 23519, - 23594, - 23601, - 23668, - 23675, - 23724, - 23733, - 23816, - 23823, - 23860, - 23999, - 24068, - 24115, - 24196, - 24225, - 24342, - 24400, - 24468, - 24533, - 24774, - 24891, - 24976, - 25020, - 25092, - 25114, - 25136, - 25158, - 25198, - 25238, - 25260, - 25304, - 25336, - 25378, - 25418, - 25458, - 25470, - 25482, - 25533, - 25582, - 25631, - 25682, - 25731, - 25780, - 25839, - 25898, - 25949, - 26002, - 26053, - 26077, - 26101, - 26125, - 26149, - 26302, - 26410, - 26454, - 26498, - 26571, - 26904, - 26913, - 26980, - 27402, - 27459, - 27478, - 27670, - 28049, - 28371, - 28390, - 28573, - 28592, - 28626, - 28645, - 28679, - 28698, - 28741, - 28760, - 28803, - 28822, - 28871, - 28890, - 28942, - 28961, - 29019, - 29038, - 29096, - 29115, - 29167, - 29186, - 29238, - 29257, - 29343, - 29362, - 29402, - 29421, - 29507, - 29526, - 29612, - 29631, - 29683, - 29702, - 31063, - 32254, - 32273, - 33057, - 33076, - 33110, - 33129, - 33163, - 33182, - 33225, - 33244, - 33332, - 33384, - 33403, - 33457, - 33476, - 33526, - 33545, - 33618, - 33637, - 33689, - 33708, - 33760, - 33779, - 33865, - 33884, - 33924, - 33943, - 34029, - 34048, - 34134, - 34153, - 34205, - 34874, - 34912, - 34957, - 34964, - 34973, - 34982, - 35034, - 35098, - 35132, - 35194, - 35261, - 35286, - 35320, - 35327, - 35387, - 35449, - 35483, - 35492, - 35501, - 35510 - ] - }, - "synthetix_9a3a109f": { - "timeMs": 1051051.7725419998, - "failures": [ - 12, - 13, - 18, - 19, - 24, - 25, - 30, - 31, - 36, - 37, - 42, - 43, - 48, - 49, - 54, - 55, - 60, - 61, - 66, - 67, - 72, - 73, - 78, - 79, - 84, - 85, - 90, - 91, - 96, - 97, - 102, - 103, - 108, - 109, - 114, - 115, - 120, - 121, - 139, - 140, - 145, - 146, - 151, - 152, - 237, - 266, - 1361, - 1362, - 1373, - 1374, - 1391, - 1392, - 1641, - 1644, - 2997, - 2998, - 3006, - 3008, - 3013, - 3014, - 3019, - 3020, - 3027, - 3030, - 3037, - 3042, - 3050, - 3054, - 3063, - 3068, - 3079, - 3082, - 3091, - 3096, - 3106, - 3110, - 3119, - 3122, - 3128, - 3134, - 3144, - 3148, - 3157, - 3160, - 3167, - 3170, - 3179, - 3183, - 3191, - 3193, - 3201, - 3204, - 3211, - 3214, - 3246, - 3249, - 3260, - 3263, - 3270, - 3273, - 3280, - 3285, - 3294, - 3299, - 3306, - 3309, - 3314, - 3327, - 3334, - 3337, - 3356, - 3358, - 3366, - 3367, - 3376, - 3386, - 3396, - 3399, - 3408, - 3413, - 3422, - 3425, - 3432, - 3435, - 3442, - 3445, - 3465, - 3471, - 3478, - 3481, - 3491, - 3494, - 3504, - 3514, - 3557, - 3562, - 3573, - 3576, - 3585, - 3588, - 3593, - 3602, - 3611, - 3612, - 3631, - 3636, - 3643, - 3645, - 3651, - 3655, - 3663, - 3664, - 3671, - 3674, - 3681, - 3682, - 3689, - 3692, - 3699, - 3706, - 3716, - 3718, - 3725, - 3726, - 3735, - 3742, - 3751, - 3754, - 3763, - 3765, - 3771, - 3776, - 3783, - 3787, - 3808, - 3809, - 3814, - 3815, - 3820, - 3821, - 3826, - 3827, - 3832, - 3833, - 3838, - 3839, - 3844, - 3845, - 3850, - 3851, - 3856, - 3857, - 3862, - 3863, - 3868, - 3869, - 3874, - 3875, - 3880, - 3946, - 3956, - 3963, - 3968, - 3969, - 3974, - 3975, - 3980, - 3984, - 3992, - 3993, - 3998, - 3999, - 4006, - 4007, - 4023, - 4025, - 4031, - 4035, - 4041, - 4048, - 4067, - 4070, - 4075, - 4079, - 4087, - 4090, - 4095, - 4096, - 4101, - 4102, - 4108, - 4110, - 4115, - 4116, - 4121, - 4122, - 4127, - 4128, - 4141, - 4144, - 4154, - 4157, - 4165, - 4166, - 4171, - 4172, - 4225, - 4241, - 4254, - 4264, - 4273, - 4275, - 4283, - 4286, - 4316, - 4318, - 4328, - 4331, - 4337, - 4339, - 4346, - 4348, - 4354, - 4355, - 4362, - 4363, - 4368, - 4369, - 4376, - 4379, - 4388, - 4391, - 4398, - 4399, - 4404, - 4406, - 4414, - 4415, - 4420, - 4421, - 4426, - 4427, - 4432, - 4435, - 4442, - 4445, - 4452, - 4456, - 4464, - 4468, - 4478, - 4481, - 4488, - 4493, - 4534, - 4537, - 4548, - 4552, - 4557, - 4560, - 4569, - 4570, - 4579, - 4583, - 4591, - 4592, - 4601, - 4604, - 4611, - 4614, - 4621, - 4626, - 4633, - 4636, - 4645, - 4650, - 4655, - 4660, - 4669, - 4674, - 4679, - 4684, - 4689, - 4694, - 4701, - 4704, - 4713, - 4718, - 4724, - 4727, - 4749, - 4766, - 4781, - 4787, - 4838, - 4843, - 4854, - 4857, - 4862, - 4870, - 4879, - 4889, - 4897, - 4901, - 4913, - 4919, - 4928, - 4933, - 4942, - 4947, - 4958, - 4963, - 4972, - 4975, - 4982, - 4991, - 5000, - 5001, - 5020, - 5027, - 5032, - 5035, - 5043, - 5047, - 5052, - 5055, - 5062, - 5065, - 5072, - 5075, - 5082, - 5091, - 5100, - 5101, - 5135, - 5139, - 5147, - 5151, - 5163, - 5164, - 5170, - 5174, - 5179, - 5180, - 5185, - 5186, - 5191, - 5192, - 5197, - 5198, - 5203, - 5204, - 5209, - 5210, - 5215, - 5216, - 5221, - 5287, - 5303, - 5304, - 5309, - 5310, - 5315, - 5322, - 5327, - 5328, - 5335, - 5336, - 5343, - 5346, - 5353, - 5354, - 5361, - 5366, - 5406, - 5407, - 5412, - 5415, - 5420, - 5421, - 5426, - 5427, - 5432, - 5435, - 5440, - 5447, - 5454, - 5457, - 5466, - 5469, - 5476, - 5477, - 5482, - 5483, - 5554, - 5567, - 5578, - 5580, - 5589, - 5592, - 5600, - 5603, - 5612, - 5617, - 5624, - 5627, - 5634, - 5637, - 5648, - 5651, - 5656, - 5660, - 5666, - 5668, - 5691, - 5694, - 5701, - 5702, - 5707, - 5709, - 5715, - 5720, - 5729, - 5734, - 5741, - 5748, - 5757, - 5764, - 5773, - 5780, - 5791, - 5796, - 5803, - 5808, - 5817, - 5822, - 5833, - 5836, - 5854, - 5862, - 5869, - 5874, - 5883, - 5887, - 5897, - 5901, - 5909, - 5914, - 5925, - 5928, - 5935, - 5940, - 5947, - 5954, - 6164, - 6226, - 6292, - 6344, - 9256, - 9265, - 9839, - 9842, - 10410, - 10521, - 11199, - 11370, - 12566, - 12743, - 14625, - 14627, - 14932, - 14933, - 16694, - 16797, - 17029, - 17030, - 17537, - 17538, - 18308, - 18309, - 19325, - 19330, - 19341, - 19417, - 19441, - 19448, - 19458, - 19464, - 19473, - 19478, - 19487, - 19491, - 19499, - 19500, - 19505, - 19506, - 19511, - 19512, - 19517, - 19519, - 19531, - 19578, - 19586, - 19591, - 19597, - 19598, - 19603, - 19604, - 19609, - 19614, - 19627, - 19632, - 19645, - 19652, - 19665, - 19671, - 19681, - 19686, - 19697, - 19702, - 21389, - 21396, - 25555, - 25604, - 26760, - 27467, - 27632, - 27667, - 28367, - 28374, - 28731, - 29148, - 29627, - 29662, - 30319, - 30330, - 31822, - 32479, - 32490, - 32503, - 33612, - 33708, - 33846, - 34503, - 38350, - 38359, - 44144, - 44561, - 45505, - 45506, - 45511, - 45512, - 45517, - 45518, - 45523, - 45524, - 45529, - 45530, - 45535, - 45536, - 45541, - 45542, - 45547, - 45548, - 45553, - 45554, - 45559, - 45560, - 45565, - 45566, - 45571, - 45612, - 46503, - 46504, - 46528, - 46530, - 46535, - 46536, - 46541, - 46542, - 46547, - 46548, - 46553, - 46554, - 46559, - 46560, - 46662, - 46663, - 47834, - 47835, - 47840, - 47841, - 47846, - 47847, - 47852, - 47855, - 47860, - 47863, - 47868, - 47871, - 47876, - 47877, - 47882, - 47883, - 47888, - 47889, - 47894, - 47897, - 47904, - 47905, - 47910, - 47911, - 47916, - 47917, - 47922, - 47923, - 47928, - 47929, - 47934, - 47935, - 47940, - 47941, - 47948, - 47949, - 47956, - 47958, - 48791, - 48794, - 49973, - 49978, - 50046, - 50051, - 50751, - 50772, - 50882, - 50896, - 51351, - 51357, - 51673, - 51851, - 51946, - 51954, - 52701, - 52713, - 53292, - 53308, - 53819, - 53820, - 53906, - 53909, - 53914, - 53917, - 53926, - 53931, - 53936, - 53944, - 53950, - 53951, - 53956, - 53957, - 53962, - 53963, - 53968, - 54553, - 54636, - 54637, - 54642, - 54643, - 54648, - 54657, - 54664, - 54665, - 54670, - 54671, - 54676, - 54680, - 54688, - 54689, - 54694, - 54695, - 54734, - 54755, - 54760, - 54761, - 54774, - 54775, - 54780, - 55269, - 55527, - 55814, - 55826, - 55917, - 56575, - 56716, - 57424, - 57455, - 58975, - 58976, - 58989, - 58990, - 59027, - 59028, - 66081, - 68397, - 68398, - 68409, - 68410, - 68415, - 68416, - 68425, - 68426, - 68555, - 68556, - 68579, - 68580, - 68585, - 68722, - 68753, - 68754, - 68759, - 68760, - 68765, - 68836, - 68841, - 68850, - 68855, - 68856, - 68865, - 68866, - 68871, - 68922, - 68927, - 68928, - 68933, - 68962, - 68967, - 68968, - 68973, - 68974, - 68979, - 68998, - 115894, - 115895, - 115900, - 115901, - 115906, - 116047, - 116102, - 116103, - 116108, - 116242, - 116414, - 116415, - 116422, - 116423, - 116428, - 116437, - 116442, - 116443, - 116448, - 116449, - 116504, - 116505, - 116510, - 116511, - 116540, - 116541, - 116547, - 116549, - 116554, - 116559, - 116564, - 116565, - 116570, - 116571, - 116576, - 116577, - 117026, - 117027, - 151270, - 151383, - 151390, - 151391, - 151396, - 151397, - 151402, - 151419, - 151562, - 151563, - 151568, - 151629, - 151722, - 151723, - 151910, - 151914, - 151926, - 151929, - 151934, - 151997, - 152002, - 152003, - 152026, - 152037, - 152042, - 152215, - 152254, - 152257, - 152262, - 152263, - 152268, - 152269, - 152274, - 152507, - 152564, - 152697, - 152706, - 152707, - 152718, - 152721, - 153413, - 153414, - 153419, - 153566, - 153571, - 153572, - 153577, - 153720, - 153725, - 153726, - 153911, - 153916, - 153927, - 153930, - 153935, - 153998, - 154003, - 154022, - 154027, - 154038, - 154043, - 154216, - 154255, - 154258, - 154263, - 154264, - 154269, - 154270, - 154275, - 154504, - 154565, - 154700, - 154707, - 154708, - 154719, - 154722, - 154837, - 154838, - 155510, - 155511, - 155516, - 155517, - 155654, - 155655, - 155660, - 155831, - 155836, - 155847, - 155852, - 155855, - 155860, - 155923, - 155928, - 155947, - 155952, - 155961, - 155966, - 156040, - 156152, - 156155, - 156160, - 156161, - 156166, - 156167, - 156342, - 156455, - 156460, - 156595, - 156602, - 156603, - 156616, - 156671, - 156732, - 156733, - 156758, - 156761, - 156784, - 156919, - 157423, - 157556, - 157899, - 157900, - 157905, - 157914, - 157919, - 157983, - 158035, - 158037, - 158043, - 158044, - 158049, - 158050, - 158219, - 158330, - 158335, - 158458, - 158465, - 158466, - 158479, - 158534, - 158585, - 158593, - 158605, - 158608, - 158631, - 158721, - 158855, - 158998, - 159031, - 159042, - 159049, - 159056, - 159067, - 159068, - 159109, - 159112, - 159121, - 159124, - 160515, - 160638, - 160922, - 160939, - 163528, - 163587, - 165435, - 165531, - 165658, - 165681, - 165759, - 165760, - 177521, - 177522, - 177527, - 177528, - 177533, - 177534, - 177633, - 177634, - 177639, - 177640, - 177645, - 177646, - 177651, - 177652, - 177657, - 177834, - 178169, - 178174, - 178219, - 178220, - 178255, - 178268, - 178283, - 178292, - 178297, - 178302, - 178311, - 178314, - 178321, - 178323, - 178329, - 178330, - 178510, - 178580, - 178587, - 178591, - 178599, - 178600, - 178607, - 178612, - 180318, - 180319, - 180330, - 180331, - 180338, - 180339, - 180384, - 180443, - 180456, - 180459, - 180470, - 180475, - 180482, - 180489, - 180494, - 180593, - 180636, - 180641, - 180648, - 180760, - 180786, - 180791, - 180798, - 180799, - 180804, - 180805, - 180810, - 180811, - 180946, - 180947, - 180952, - 180953, - 180958, - 180961, - 180968, - 180969, - 180976, - 180979, - 180984, - 180987, - 182617, - 182620, - 182625, - 182628, - 182633, - 182634, - 182641, - 182644, - 182649, - 182652, - 182657, - 182660, - 182665, - 182668, - 182673, - 182774, - 182779, - 182782, - 182787, - 182790, - 182795, - 182884, - 182889, - 182892, - 182897, - 182898, - 182903, - 182904, - 182909, - 182910, - 183044, - 183271, - 183401, - 183402, - 183407, - 183408, - 183413, - 183414, - 183419, - 183420, - 184957, - 184975, - 184980, - 184981, - 184986, - 184987, - 184992, - 184993, - 184998, - 185001, - 185006, - 185009, - 185014, - 185017, - 185022, - 185025, - 185030, - 185033, - 185038, - 185041, - 185046, - 185240, - 185326, - 185327, - 185334, - 185337, - 185344, - 185431, - 185442, - 185447, - 185456, - 185457, - 185462, - 185463, - 185468, - 185469, - 185474, - 185483, - 186998, - 187002, - 187007, - 187008, - 187013, - 187014, - 187019, - 187088, - 187118, - 187123, - 187129, - 187131, - 187137, - 187140, - 187145, - 187148, - 187153, - 187156, - 187161, - 187164, - 187169, - 187172, - 187177, - 187180, - 187185, - 187188, - 187193, - 187384, - 187391, - 187393, - 187401, - 187404, - 187409, - 187410, - 187415, - 187416, - 187421, - 187422, - 188860, - 188866, - 188872, - 188873, - 188878, - 188893, - 188900, - 188904, - 188912, - 188915, - 188922, - 188925, - 188932, - 189041, - 189449, - 189451, - 189456, - 189459, - 189472, - 189475, - 189482, - 189485, - 189494, - 189497, - 189504, - 189507, - 189864, - 189869, - 189874, - 189875, - 189980, - 189981, - 189986, - 189987, - 189992, - 189993, - 189998, - 189999, - 191287, - 191288, - 191293, - 191294, - 191299, - 191300, - 191305, - 191306, - 191311, - 191312, - 191317, - 191318, - 191511, - 191512, - 191517, - 191524, - 191529, - 191530, - 191535, - 191536, - 191541, - 191542, - 191547, - 191548, - 191567, - 191568, - 191577, - 191578, - 191585, - 191586, - 191593, - 191594, - 191599, - 191602, - 191607, - 191610, - 191615, - 191618, - 191623, - 191626, - 207458, - 207459, - 227795, - 228152, - 228543, - 228554, - 228565, - 228566, - 230300, - 230303, - 232489, - 232492, - 235929, - 236566, - 238476, - 238479, - 240354, - 240361, - 243184, - 243185, - 282341, - 282344, - 353992, - 353993, - 354006, - 354007, - 354015, - 354017, - 354022, - 354027, - 354032, - 354033, - 354040, - 354041, - 354046, - 354049, - 354054, - 354055, - 354060, - 354061, - 354066, - 354067, - 354074, - 354075, - 354080, - 354081, - 354086, - 354087, - 354092, - 354093, - 354098, - 354099, - 354150, - 354151, - 354156, - 354157, - 354162, - 354163, - 354168, - 354185, - 354222, - 354223, - 354261, - 354262, - 354267, - 354280, - 354285, - 354286, - 354291, - 354292, - 354297, - 354298, - 354303, - 354321, - 354327, - 354336, - 354341, - 354342, - 354347, - 354348, - 354353, - 354354, - 354359, - 354710, - 355229, - 355230, - 355235, - 355430, - 355445, - 355446, - 355453, - 355456, - 355463, - 355496, - 355515, - 355518, - 355528, - 355536, - 355547, - 355552, - 355601, - 355604, - 355828, - 355829, - 355840, - 355841, - 361062, - 361065, - 361070, - 361079, - 361149, - 362460, - 362461, - 362462, - 362463, - 362464, - 362465, - 362466, - 362467, - 362468, - 362469, - 362470, - 362471, - 362472, - 362473, - 362474, - 362475, - 362476, - 362477, - 363751, - 363752, - 363757, - 363758, - 363763, - 363764, - 363769, - 363770, - 363775, - 363776, - 363781, - 363782, - 363787, - 363788, - 363793, - 363794, - 363799, - 363800, - 363805, - 363806, - 363811, - 363812, - 363817, - 363818, - 363823, - 363824, - 363829, - 363830, - 363835, - 363836, - 363841, - 363842, - 363847, - 363848, - 363853, - 363854, - 363859, - 363860, - 363887, - 363888, - 365179, - 365180, - 365253, - 365254, - 366435, - 366442, - 366527, - 366528, - 369190, - 369191, - 369196, - 369199, - 369204, - 369207, - 369212, - 369213, - 369218, - 369219, - 369228, - 369229, - 369236, - 369237, - 369242, - 369243, - 369250, - 369251, - 369256, - 369257, - 369268, - 369270, - 369276, - 369277, - 369284, - 369285, - 369290, - 369291, - 369296, - 369301, - 369306, - 369311, - 369316, - 369323, - 369328, - 369329, - 369342, - 369343, - 377523, - 377524, - 377528, - 377553, - 377557, - 377574, - 377578, - 377581, - 377585, - 377586, - 377590, - 377591, - 377595, - 377596, - 377600, - 377601, - 377605, - 377706, - 377710, - 377711, - 377726, - 377740, - 377773, - 377781, - 377787, - 377804, - 377812, - 377813, - 377817, - 377818, - 377822, - 377823, - 377827, - 377828, - 377832, - 377833, - 377857, - 377858, - 377862, - 377863, - 400622, - 400623, - 401912, - 401923, - 402380, - 402381, - 403109, - 403114, - 406402, - 406403, - 406407, - 406412, - 406416, - 406417, - 406455, - 406456, - 406464, - 406467, - 406471, - 406474, - 406478, - 406479, - 406483, - 406484, - 406488, - 406683, - 406861, - 406862, - 406866, - 406873, - 406877, - 406878, - 406882, - 406883, - 406889, - 406890, - 406894, - 406895, - 407029, - 407030, - 407034, - 407035, - 407039, - 407058, - 407062, - 407063, - 420990, - 421018, - 421590, - 421593, - 422111, - 422114, - 423191, - 423192, - 425507, - 425508, - 428034, - 428035, - 429322, - 429323, - 436425, - 436426, - 438176, - 438177, - 441251, - 441252, - 442539, - 442540, - 445209, - 445210, - 447974, - 447975, - 449930, - 449931, - 456322, - 456323, - 456346, - 456347, - 456997, - 456998, - 457003, - 457004, - 457009, - 457014, - 457021, - 457024, - 457033, - 457036, - 457041, - 457042, - 457047, - 457048, - 457081, - 457084, - 457089, - 457092, - 457111, - 457114, - 457121, - 457124, - 457131, - 457132, - 457137, - 457138, - 457143, - 457144, - 457150, - 457168, - 457173, - 457176, - 457181, - 457182, - 457187, - 457190, - 457195, - 457198, - 457203, - 457204, - 457734, - 457739, - 457746, - 457747, - 457752, - 457753, - 457758, - 457787, - 457794, - 457797, - 457802, - 457817, - 457826, - 457829, - 457836, - 457837, - 457842, - 457843, - 457848, - 457849, - 457854, - 457873, - 457878, - 457879, - 457886, - 457887, - 457892, - 457894, - 457900, - 457903, - 457908, - 457909, - 457916, - 457921, - 457930, - 457931, - 457936, - 457939, - 458603, - 458604, - 458623, - 458628, - 458633, - 458634, - 458641, - 458642, - 458647, - 458650, - 458655, - 458658, - 458663, - 458664, - 458675, - 458676, - 458685, - 458686, - 458691, - 458694, - 458701, - 458706, - 458713, - 458715, - 458723, - 458726, - 458733, - 458868, - 459149, - 459154, - 459159, - 459160, - 459165, - 459166, - 459171, - 459176, - 459189, - 459192, - 459197, - 459204, - 459340, - 459341, - 459346, - 459349, - 459354, - 459357, - 459362, - 459363, - 459374, - 459376, - 459384, - 459385, - 459390, - 459394, - 459400, - 459407, - 459412, - 459415, - 459422, - 459427, - 459432, - 459551, - 459832, - 459835, - 459840, - 459841, - 459846, - 459847, - 459852, - 459857, - 459870, - 459873, - 459882, - 459885, - 459890, - 459893, - 459900, - 459931, - 460672, - 460673, - 460680, - 460682, - 460718, - 460721, - 460734, - 460739, - 460744, - 460763, - 460776, - 460779, - 460788, - 460791, - 460798, - 460801, - 460808, - 460809, - 460828, - 460833, - 460838, - 460841, - 460850, - 460853, - 460858, - 460859, - 460866, - 460867, - 460878, - 460881, - 460892, - 460897, - 460908, - 460911, - 460918, - 460919, - 460930, - 460935, - 460948, - 460951, - 461439, - 461444, - 461465, - 461472, - 461481, - 461486, - 461493, - 461497, - 461503, - 461508, - 461513, - 461528, - 461533, - 461538, - 461543, - 461550, - 461557, - 461558, - 461563, - 461566, - 461571, - 461578, - 461585, - 461594, - 461599, - 461608, - 461613, - 461618, - 461623, - 461629, - 461635, - 461648, - 461653, - 461660, - 461669, - 461676, - 461797, - 462014, - 462316, - 462317, - 462328, - 462331, - 462344, - 462347, - 462358, - 462361, - 462368, - 462373, - 462380, - 462385, - 462398, - 462401, - 462410, - 462415, - 462426, - 462427, - 462538, - 462741, - 462754, - 462759, - 462766, - 462767, - 462774, - 462781, - 462790, - 462801, - 462806, - 462815, - 462822, - 462823, - 462830, - 462833, - 462868, - 462875, - 462888, - 462893, - 462900, - 462918, - 463055, - 463059, - 463065, - 463071, - 463077, - 463090, - 463099, - 463106, - 463117, - 463118, - 463225, - 463402, - 463415, - 463420, - 463427, - 463428, - 463435, - 463442, - 463451, - 463457, - 463467, - 463476, - 463483, - 463484, - 463491, - 463494, - 463529, - 463536, - 463551, - 463556, - 463561, - 463580, - 463593, - 463596, - 463609, - 463614, - 463621, - 463630, - 464361, - 464364, - 464377, - 464381, - 464389, - 464394, - 464403, - 464406, - 464429, - 464436, - 464445, - 464450, - 464461, - 464466, - 464473, - 464474, - 464485, - 464486, - 464494, - 464498, - 464513, - 464515, - 464530, - 464534, - 464543, - 464544, - 464553, - 464556, - 464565, - 464578, - 464591, - 464594, - 464605, - 464613, - 464621, - 464714, - 464763, - 464833, - 464881, - 464885, - 465082, - 465083, - 465114, - 465117, - 465126, - 465133, - 465142, - 465145, - 465150, - 465157, - 465162, - 465169, - 465174, - 465185, - 465194, - 465203, - 465212, - 465215, - 465224, - 465227, - 465236, - 465247, - 465258, - 465263, - 465276, - 465284, - 465292, - 465383, - 465418, - 465449, - 465512, - 465523, - 465530, - 465535, - 465548, - 465555, - 465572, - 465573, - 465941, - 465942, - 465959, - 465964, - 465977, - 465980, - 465993, - 466000, - 466007, - 466096, - 466123, - 466144, - 466149, - 466206, - 466221, - 466224, - 466233, - 466242, - 466253, - 466266, - 466271, - 466282, - 466295, - 466298, - 466307, - 466338, - 466353, - 466366, - 466377, - 466378, - 466403, - 466414, - 466421, - 466430, - 466439, - 466446, - 466455, - 466463, - 466469, - 466470, - 466660, - 466663, - 466670, - 466741, - 466772, - 466773, - 466834, - 466835, - 466852, - 466853, - 466870, - 466871, - 466894, - 466895, - 466910, - 466911, - 466924, - 466929, - 466936, - 466971, - 466982, - 466995, - 467006, - 467023, - 467032, - 467045, - 467050, - 467059, - 467068, - 467075, - 467084, - 467093, - 467098, - 467099, - 467132, - 467133, - 467150, - 467157, - 467820, - 467821, - 467854, - 467855, - 467872, - 467879, - 467888, - 467893, - 467908, - 467911, - 467923, - 467927, - 467944, - 467947, - 467966, - 467973, - 467982, - 467985, - 467998, - 467999, - 468016, - 468021, - 468034, - 468041, - 468060, - 468063, - 468070, - 468101, - 468127, - 468133, - 468140, - 468183, - 468192, - 468207, - 468214, - 468229, - 468234, - 468255, - 468264, - 468277, - 468519, - 468534, - 468539, - 468550, - 468555, - 468564, - 468577, - 468592, - 468599, - 468608, - 468613, - 468621, - 468629, - 468642, - 468651, - 468660, - 468671, - 468686, - 468693, - 468696, - 468711, - 468732, - 468739, - 468750, - 468781, - 468786, - 468804, - 468808, - 468813, - 468828, - 468853, - 468859, - 468873, - 468884, - 468891, - 468900, - 468908, - 468944, - 469362, - 469365, - 469374, - 469384, - 469396, - 469429, - 469436, - 469451, - 469458, - 469461, - 469480, - 469481, - 469506, - 469521, - 469528, - 469539, - 469544, - 469553, - 469562, - 469597, - 469608, - 469621, - 469638, - 469657, - 469678, - 469681, - 469696, - 469699, - 469710, - 469719, - 469728, - 469739, - 469746, - 469747, - 469780, - 469781, - 469800, - 469807, - 469818, - 469827, - 470049, - 470064, - 470071, - 470074, - 470093, - 470113, - 470133, - 470136, - 470151, - 470152, - 470165, - 470204, - 470209, - 470228, - 470233, - 470246, - 470269, - 470286, - 470293, - 470306, - 470311, - 470318, - 470331, - 470344, - 470353, - 470354, - 470359, - 470388, - 470393, - 470408, - 470421, - 470428, - 470439, - 470450, - 470455, - 470468, - 470487, - 470492, - 471173, - 471182, - 471191, - 471199, - 471215, - 471232, - 471249, - 471256, - 471267, - 471276, - 471283, - 471298, - 471309, - 471322, - 471333, - 471350, - 471359, - 471362, - 471371, - 471378, - 471385, - 471408, - 471417, - 471432, - 471439, - 471440, - 471447, - 471462, - 471467, - 471498, - 471513, - 471528, - 471535, - 471538, - 471553, - 471594, - 471599, - 471620, - 471641, - 471662, - 471904, - 471911, - 471922, - 471931, - 471938, - 471953, - 471964, - 471977, - 471988, - 472005, - 472014, - 472017, - 472026, - 472031, - 472040, - 472061, - 472070, - 472085, - 472092, - 472095, - 472100, - 472115, - 472142, - 472160, - 472168, - 472182, - 472190, - 472196, - 472206, - 472247, - 472272, - 472289, - 472314, - 472333, - 472338, - 472356, - 472364, - 472371, - 472803, - 472806, - 472811, - 472826, - 472869, - 472872, - 472891, - 472894, - 472901, - 472912, - 472957, - 472958, - 472983, - 473000, - 473025, - 473044, - 473049, - 473060, - 473075, - 473082, - 473095, - 473108, - 473125, - 473128, - 473133, - 473150, - 473159, - 473176, - 473184, - 473198, - 473209, - 473218, - 473229, - 473241, - 473247, - 473264, - 473273, - 473292, - 473311, - 473318, - 473554, - 473559, - 473564, - 473575, - 473592, - 473593, - 473616, - 473631, - 473642, - 473655, - 473660, - 473677, - 473684, - 473691, - 473704, - 473723, - 473734, - 473737, - 473742, - 473755, - 473762, - 473777, - 473792, - 473799, - 473812, - 473823, - 473834, - 473839, - 473852, - 473857, - 473876, - 473879, - 473898, - 473905, - 473916, - 473921, - 473930, - 473942, - 477346, - 477423, - 478115, - 478134, - 478162, - 478163, - 478280, - 478299, - 478308, - 478309, - 478314, - 478315, - 478322, - 478376, - 478388, - 478429, - 478434, - 478463, - 478468, - 478479, - 478484, - 478485, - 478490, - 478505, - 478568, - 478571, - 478576, - 478595, - 478620, - 478621, - 478630, - 478643, - 478650, - 478651, - 478656, - 478673, - 478678, - 478701, - 478726, - 478729, - 478758, - 478760, - 478772, - 478773, - 478814, - 478815, - 478820, - 478826, - 478832, - 478835, - 478840, - 478847, - 478852, - 478853, - 478858, - 478911, - 478916, - 478921, - 478926, - 478927, - 478934, - 478935, - 478940, - 479001, - 479006, - 479007, - 479016, - 479017, - 479022, - 479025, - 479034, - 479035, - 479040, - 479041, - 479134, - 479135, - 479156, - 479159, - 479164, - 479165, - 479170, - 479177, - 479192, - 479193, - 479198, - 479275, - 479300, - 479301, - 479310, - 479311, - 479316, - 479317, - 479330, - 479378, - 479390, - 479431, - 479436, - 479461, - 479470, - 479481, - 479486, - 479487, - 479492, - 479507, - 479570, - 479573, - 479578, - 479613, - 479622, - 479623, - 479633, - 479644, - 479652, - 479653, - 479658, - 479675, - 479680, - 479701, - 479706, - 479727, - 480361, - 480449, - 481242, - 481243, - 481248, - 481249, - 481254, - 481285, - 481318, - 481319, - 481324, - 481325, - 481330, - 481331, - 481336, - 481409, - 481420, - 481433, - 481438, - 481439, - 481476, - 481479, - 481484, - 481485, - 481490, - 481491, - 481496, - 481497, - 481502, - 481519, - 481524, - 481525, - 481576, - 481583, - 481590, - 481591, - 481596, - 481601, - 481650, - 481651, - 481656, - 481657, - 481662, - 481663, - 481668, - 481681, - 481686, - 481687, - 481692, - 481758, - 481780, - 481781, - 481806, - 481807, - 481812, - 481821, - 481826, - 481827, - 481832, - 481833, - 481838, - 481839, - 481844, - 481845, - 481956, - 481959, - 481964, - 481965, - 481970, - 482021, - 482040, - 482041, - 482046, - 482047, - 482052, - 482053, - 482058, - 482075, - 482156, - 482216, - 482222, - 482224, - 492629, - 492630, - 492658, - 492659, - 500056, - 500149, - 500172, - 500291, - 500301, - 500322, - 500336, - 500357, - 500363, - 500368, - 500378, - 500381, - 500585, - 500589, - 500596, - 500612, - 500641, - 500652, - 500685, - 500707, - 500729, - 500730, - 500734, - 500741, - 500745, - 500746, - 500750, - 500751, - 500755, - 500764, - 500804, - 500921, - 501003, - 501038, - 501044, - 501169, - 501185, - 501195, - 502114, - 502117, - 502290, - 502299, - 503169, - 503172, - 503180, - 503207, - 503224, - 503236, - 503254, - 503269, - 503301, - 503312, - 503316, - 503317, - 503321, - 503328, - 503334, - 503337, - 503343, - 503346, - 503352, - 503357, - 503365, - 503379, - 503384, - 503389, - 503547, - 503625, - 503630, - 503631, - 503635, - 503638, - 503642, - 503643, - 503647, - 503648, - 503652, - 503653, - 503881, - 503888, - 503892, - 504051, - 504770, - 504914, - 504927, - 504928, - 504932, - 504937, - 504941, - 504968, - 504972, - 504973, - 504991, - 504992, - 504996, - 505007, - 505011, - 505040, - 505044, - 505045, - 505049, - 505078, - 505082, - 505093, - 505097, - 505098, - 505102, - 505103, - 505107, - 505108, - 505112, - 505118, - 505123, - 505126, - 505130, - 505132, - 505137, - 505140, - 505144, - 505145, - 505151, - 505154, - 506023, - 506026, - 506034, - 506036, - 506045, - 506052, - 506068, - 506071, - 506077, - 506080, - 506086, - 506089, - 506097, - 506098, - 506290, - 506327, - 506331, - 506332, - 506336, - 506337, - 506341, - 506346, - 506350, - 506351, - 506355, - 506356, - 506360, - 506361, - 506365, - 506366, - 506370, - 506371, - 506375, - 506376, - 506380, - 506381, - 506389, - 506390, - 506408, - 506621, - 507271, - 507495, - 507501, - 507508, - 507514, - 507550, - 507616, - 507624, - 507632, - 507635, - 507640, - 507646, - 507650, - 507678, - 507683, - 507684, - 507688, - 507689, - 507693, - 507694, - 507750, - 507753, - 507757, - 507758, - 507762, - 507763, - 507767, - 507768, - 507772, - 507773, - 507777, - 507778, - 507782, - 507783, - 507787, - 507788, - 507838, - 507839, - 507843, - 507848, - 508717, - 508718, - 508724, - 508729, - 508735, - 508740, - 508746, - 508751, - 508759, - 508764, - 508776, - 508791, - 508797, - 508803, - 508810, - 508811, - 508815, - 508816, - 508820, - 508821, - 508903, - 509040, - 509044, - 509045, - 509049, - 509050, - 509054, - 509055, - 509059, - 509060, - 509064, - 509065, - 509069, - 509070, - 509074, - 509075, - 509085, - 509086, - 509090, - 509092, - 509950, - 509953, - 509957, - 509960, - 509968, - 509979, - 510203, - 510208, - 510212, - 510222, - 510231, - 510288, - 510303, - 510311, - 510317, - 510320, - 510324, - 510325, - 510329, - 510330, - 510334, - 510371, - 510375, - 510376, - 510380, - 510381, - 510385, - 510386, - 510390, - 510391, - 510395, - 510396, - 510400, - 510401, - 510405, - 510406, - 510466, - 510467, - 510473, - 510474, - 511325, - 511326, - 511332, - 511334, - 511385, - 511392, - 511398, - 511403, - 511407, - 511420, - 511424, - 511431, - 511437, - 511444, - 511452, - 511453, - 511457, - 511458, - 511462, - 511463, - 511501, - 511502, - 511506, - 511507, - 511511, - 511512, - 511516, - 511517, - 511521, - 511522, - 511526, - 511527, - 511531, - 511532, - 511536, - 511721, - 511725, - 511728, - 511732, - 511735, - 512554, - 512557, - 512561, - 512564, - 512574, - 512579, - 512587, - 512593, - 512600, - 512635, - 512788, - 512840, - 512856, - 512857, - 512861, - 512862, - 512866, - 512867, - 512871, - 512926, - 512930, - 512931, - 512935, - 512936, - 512940, - 512941, - 512945, - 512946, - 512950, - 512951, - 512955, - 512956, - 512960, - 512961, - 512965, - 513004, - 513008, - 513009, - 513015, - 513016, - 513835, - 513837, - 513842, - 513844, - 513905, - 513910, - 513916, - 513921, - 513925, - 513976, - 513980, - 513991, - 513995, - 514002, - 514012, - 514021, - 514025, - 514026, - 514030, - 514031, - 514035, - 514056, - 514060, - 514061, - 514065, - 514066, - 514070, - 514071, - 514075, - 514076, - 514080, - 514081, - 514085, - 514086, - 514090, - 514091, - 514095, - 514131, - 514136, - 514139, - 514966, - 514967, - 514973, - 514976, - 514980, - 515077, - 515083, - 515090, - 515096, - 515099, - 515105, - 515113, - 515122, - 515127, - 515133, - 515144, - 515148, - 515149, - 515153, - 515154, - 515158, - 515209, - 515389, - 515390, - 515394, - 515395, - 515399, - 515400, - 515404, - 515405, - 515409, - 515410, - 515414, - 515415, - 515419, - 515420, - 515463, - 515465, - 515471, - 515472, - 516201, - 516206, - 516249, - 516257, - 516263, - 516268, - 516272, - 516273, - 516277, - 516278, - 516282, - 516283, - 516354, - 516360, - 516364, - 516365, - 516369, - 516370, - 516374, - 516375, - 516379, - 516380, - 516384, - 516385, - 516389, - 516390, - 516394, - 516395, - 516421, - 516423, - 516428, - 516430, - 516435, - 516438, - 516476, - 516483, - 516487, - 516492, - 516498, - 516501, - 517912, - 518059, - 519588, - 519767, - 520501, - 520672, - 533839, - 544480, - 561564, - 561567, - 561571, - 561576, - 561587, - 561983, - 562176, - 562178, - 562184, - 562185, - 562191, - 562202, - 562208, - 562210, - 562215, - 562218, - 562222, - 562225, - 562229, - 562232, - 562236, - 562237, - 562241, - 562242, - 562246, - 562247, - 562255, - 562256, - 562262, - 562263, - 562269, - 562271, - 562276, - 562279, - 562283, - 562286, - 562290, - 562293, - 564017, - 564018, - 565472, - 565475, - 570796, - 570799, - 570803, - 570805, - 570810, - 570811, - 570815, - 570816, - 570820, - 570821, - 570862, - 570946, - 570950, - 570951, - 570955, - 570956, - 570960, - 570961, - 570965, - 570966, - 570970, - 570971, - 570977, - 570978, - 570984, - 570985, - 570991, - 571013, - 571330, - 571332, - 571571, - 571574, - 571578, - 571591, - 571599, - 571618, - 571624, - 571625, - 573129, - 573140, - 597578, - 597641, - 599990, - 600157, - 601988, - 601993, - 603650, - 603655, - 625016, - 625024, - 630745, - 630746, - 631958, - 631959, - 636733, - 636734, - 637962, - 637963, - 648511, - 648528, - 650706, - 650741, - 665097, - 665774, - 665965, - 666010, - 667807, - 668532, - 676559, - 676564, - 677350, - 677354, - 681703, - 681708, - 682736, - 682743, - 690217, - 690397, - 691626, - 691991, - 700655, - 700656, - 721418, - 721486, - 723757, - 723758, - 793853, - 793857, - 793869, - 793872, - 793879, - 793880, - 793885, - 793888, - 793893, - 794354, - 794361, - 794376, - 794395, - 794396, - 794401, - 794904, - 794925, - 794930, - 794941, - 794944, - 794951, - 794952, - 794957, - 794960, - 794965, - 795108, - 795433, - 795460, - 795465, - 795468, - 795473, - 795474, - 795959, - 795976, - 795985, - 795992, - 795999, - 796002, - 796007, - 796008, - 797640, - 797880, - 798144, - 798147, - 798164, - 798165, - 798170, - 798177, - 798182, - 798188, - 798198, - 798659, - 798670, - 798671, - 798676, - 798707, - 798718, - 799083, - 799162, - 799186, - 799204, - 799205, - 799210, - 799217, - 799224, - 799231, - 799238, - 799703, - 799710, - 799711, - 799746, - 799753, - 800172, - 800195, - 800202, - 800215, - 800220, - 800221, - 800232, - 800235, - 801831, - 801958, - 802275, - 802278, - 802287, - 802288, - 802293, - 802309, - 802323, - 802332, - 802339, - 802802, - 802809, - 802810, - 802815, - 802850, - 802865, - 803226, - 803279, - 803282, - 803291, - 803292, - 803297, - 803298, - 803323, - 803336, - 803343, - 803508, - 803799, - 803802, - 803807, - 803842, - 803857, - 804186, - 804211, - 804241, - 804247, - 804252, - 804257, - 804258, - 805796, - 805812, - 806154, - 806156, - 806194, - 806195, - 806200, - 806204, - 806212, - 806241, - 806248, - 806261, - 806270, - 806271, - 806276, - 806715, - 806720, - 806759, - 806780, - 807105, - 807112, - 807145, - 807150, - 807151, - 807162, - 807165, - 807196, - 807199, - 807216, - 807220, - 807226, - 807227, - 807654, - 807691, - 807700, - 807710, - 808030, - 808032, - 808070, - 808071, - 809607, - 809902, - 811036, - 811507, - 812989, - 812993, - 814948, - 814987, - 826421, - 826424, - 828562, - 828585, - 830745, - 830757, - 832956, - 832959, - 847897, - 847898, - 847902, - 847903, - 847907, - 847908, - 847912, - 848155, - 848339, - 848340, - 848344, - 848345, - 848431, - 848666, - 848672, - 848673, - 848677, - 848680, - 848684, - 848687, - 848693, - 848696, - 848700, - 848701, - 848705, - 848706, - 848710, - 848711, - 848974, - 849040, - 849045, - 849047, - 849053, - 849054, - 849060, - 849061, - 849067, - 849068, - 849074, - 849076, - 866123, - 866124, - 867380, - 867407, - 874293, - 874294, - 875566, - 875569, - 880550, - 886042, - 886479, - 886632, - 886669, - 886898, - 886899, - 887094, - 887095, - 887991, - 887996, - 888369, - 888391, - 889730, - 889791, - 890850, - 890999, - 891567, - 891575, - 891913, - 891914, - 891918, - 891919, - 891923, - 891924, - 891928, - 891961, - 891967, - 891972, - 891976, - 891977, - 891981, - 891982, - 891986, - 891987, - 891995, - 891996, - 892000, - 892001, - 892007, - 892010, - 892100, - 892103, - 892109, - 892110, - 892114, - 892115, - 892119, - 892120, - 892124, - 892125, - 892169, - 892198, - 892204, - 892205, - 893777, - 894156, - 904325, - 904632, - 906796, - 906815, - 908445, - 908836, - 925551, - 925644, - 926233, - 926482, - 931116, - 931377, - 932687, - 932688, - 947591, - 947604, - 959126, - 959560, - 962023, - 962128, - 972736, - 973601, - 976041, - 976910, - 979396, - 979830, - 982799, - 983666, - 1100907, - 1101588, - 1197525, - 1198096, - 1198147, - 1198154, - 1198769, - 1198780, - 1200809, - 1200844, - 1205246, - 1224009, - 1224010, - 1224015, - 1224016, - 1224021, - 1224022, - 1224027, - 1224028, - 1224033, - 1224070, - 1224075, - 1224076, - 1224081, - 1224082, - 1224087, - 1224088, - 1224093, - 1224094, - 1224099, - 1224504, - 1224801, - 1224802, - 1224807, - 1224808, - 1224813, - 1224814, - 1224819, - 1224820, - 1224825, - 1224826, - 1225081, - 1225096, - 1225101, - 1225104, - 1225109, - 1225110, - 1225115, - 1225116, - 1225133, - 1225134, - 1248893, - 1248967, - 1248968, - 1249013, - 1251137, - 1251138, - 1251143, - 1251146, - 1251151, - 1251152, - 1251157, - 1251272, - 1251277, - 1251278, - 1251295, - 1251296, - 1251307, - 1251308, - 1251313, - 1251314, - 1251319, - 1251320, - 1251336, - 1251338, - 1251347, - 1251350, - 1251355, - 1251356, - 1251361, - 1251362, - 1251367, - 1251368, - 1251373, - 1251374, - 1251379, - 1251389, - 1251399, - 1251402, - 1251656, - 1252008, - 1252027, - 1252028, - 1252033, - 1252130, - 1252274, - 1252277, - 1252282, - 1252283, - 1252288, - 1252299, - 1252402, - 1252403, - 1252408, - 1252421, - 1252426, - 1252433, - 1252438, - 1252439, - 1252444, - 1252445, - 1252450, - 1252463, - 1252468, - 1252473, - 1252478, - 1252481, - 1252486, - 1252487, - 1252492, - 1252493, - 1252498, - 1252499, - 1252504, - 1252505, - 1252510, - 1252519, - 1252530, - 1252533, - 1253118, - 1253132, - 1253138, - 1253146, - 1253152, - 1253263, - 1253411, - 1253412, - 1253417, - 1253506, - 1253527, - 1253528, - 1253533, - 1253546, - 1253551, - 1253558, - 1253563, - 1253564, - 1253569, - 1253570, - 1253575, - 1253588, - 1253593, - 1253598, - 1253605, - 1253606, - 1253611, - 1253612, - 1253617, - 1253618, - 1253623, - 1253624, - 1253629, - 1253630, - 1253635, - 1253650, - 1253657, - 1253827, - 1254231, - 1254234, - 1254239, - 1254248, - 1254253, - 1254254, - 1254270, - 1254396, - 1254537, - 1254554, - 1263266, - 1263281, - 1264414, - 1264515, - 1265640, - 1265650, - 1266762, - 1266961, - 1267866, - 1268058, - 1268064, - 1268065, - 1268147, - 1268157, - 1268162, - 1268225, - 1268230, - 1268303, - 1268318, - 1268321, - 1268328, - 1268332, - 1268413, - 1268417, - 1268428, - 1268433, - 1268440, - 1268447, - 1268522, - 1268523, - 1268528, - 1268533, - 1268624, - 1268625, - 1268632, - 1268819, - 1268844, - 1268955, - 1268968, - 1268972, - 1269152, - 1269155, - 1269160, - 1269161, - 1269252, - 1269253, - 1269258, - 1269321, - 1270314, - 1270315, - 1270382, - 1270453, - 1270462, - 1270473, - 1270478, - 1270483, - 1270490, - 1270569, - 1270582, - 1270585, - 1270592, - 1270599, - 1270674, - 1270675, - 1270680, - 1270685, - 1270690, - 1270767, - 1270776, - 1270947, - 1270952, - 1270995, - 1271098, - 1271103, - 1271108, - 1271259, - 1271264, - 1271265, - 1271360, - 1271363, - 1271370, - 1271371, - 1271438, - 1271513, - 1271528, - 1271529, - 1271538, - 1271539, - 1275876, - 1275877, - 1275895, - 1276233, - 1276240, - 1276243, - 1276248, - 1276251, - 1276256, - 1276259, - 1276266, - 1276267, - 1276274, - 1276375, - 1276384, - 1276455, - 1276492, - 1276493, - 1276498, - 1276499, - 1276504, - 1276505, - 1276528, - 1276529, - 1276546, - 1276547, - 1276552, - 1276639, - 1276644, - 1276645, - 1276650, - 1276651, - 1276656, - 1276663, - 1276668, - 1276669, - 1276674, - 1276675, - 1276857, - 1277171, - 1277172, - 1277276, - 1277358, - 1277384, - 1277385, - 1277417, - 1277418, - 1277519, - 1277526, - 1277597, - 1277600, - 1277605, - 1277673, - 1277731, - 1277734, - 1277743, - 1277744, - 1277749, - 1277752, - 1277759, - 1277762, - 1277769, - 1277770, - 1277775, - 1277776, - 1277781, - 1277782, - 1277787, - 1277790, - 1277795, - 1277798, - 1277803, - 1277808, - 1277813, - 1277816, - 1277821, - 1277822, - 1277828, - 1277832, - 1277837, - 1277840, - 1277845, - 1277848, - 1277853, - 1277854, - 1278135, - 1278136, - 1279123, - 1279128, - 1280359, - 1280360, - 1280365, - 1280366, - 1280379, - 1280390, - 1280395, - 1280408, - 1280544, - 1280545, - 1280556, - 1280557, - 1280576, - 1280577, - 1280590, - 1280591, - 1282060, - 1282083, - 1283112, - 1283326, - 1283456, - 1283792, - 1284056, - 1284244, - 1306361, - 1307102, - 1309188, - 1309444, - 1311075, - 1311238, - 1312518, - 1312519, - 1312732, - 1312822, - 1313126, - 1313219, - 1313540, - 1313699, - 1313774, - 1313775, - 1314010, - 1314017, - 1314054, - 1314253, - 1314302, - 1314303, - 1316637, - 1316638, - 1317272, - 1317533, - 1318515, - 1318516, - 1318551, - 1318552, - 1318557, - 1318558, - 1319149, - 1319150, - 1319483, - 1319488, - 1319821, - 1319828, - 1320183, - 1320185, - 1321582, - 1321877, - 1323189, - 1323461, - 1324471, - 1324615, - 1324781, - 1324782, - 1324805, - 1324806, - 1324829, - 1324830, - 1325805, - 1325820, - 1325832, - 1325833, - 1325840, - 1325841, - 1326500, - 1326501, - 1326796, - 1326797, - 1327140, - 1327147, - 1327498, - 1327672, - 1328172, - 1328213, - 1328580, - 1328868, - 1329272, - 1329277, - 1329632, - 1329637, - 1329994, - 1329997, - 1330354, - 1330357, - 1330366, - 1330367, - 1330798, - 1330799, - 1330804, - 1330805, - 1331516, - 1331517, - 1331848, - 1331849, - 1332516, - 1332521, - 1333805, - 1334080, - 1334445, - 1334448, - 1347168, - 1347171, - 1347947, - 1348264, - 1349366, - 1349368, - 1359585, - 1359586, - 1359591, - 1359592, - 1359597, - 1359598, - 1359603, - 1359604, - 1359615, - 1359616, - 1359621, - 1359622, - 1359627, - 1359628, - 1359633, - 1359636, - 1359641, - 1359642, - 1359647, - 1359648, - 1359653, - 1359654, - 1359659, - 1359660, - 1359665, - 1359666, - 1359671, - 1359672, - 1359677, - 1359678, - 1359683, - 1359684, - 1359689, - 1359690, - 1359695, - 1359696, - 1359701, - 1359702, - 1359707, - 1359708, - 1359713, - 1359714, - 1359719, - 1359720, - 1359725, - 1359726, - 1359731, - 1359732, - 1359737, - 1359738, - 1359743, - 1359744, - 1359749, - 1359750, - 1359755, - 1360188, - 1360462, - 1360463, - 1360468, - 1360469, - 1360474, - 1360475, - 1360480, - 1360481, - 1360486, - 1360487, - 1360492, - 1360493, - 1360498, - 1360499, - 1360504, - 1360505, - 1360510, - 1360511, - 1360516, - 1360517, - 1360522, - 1360523, - 1360528, - 1360529, - 1361220, - 1361221, - 1361226, - 1361227, - 1361232, - 1361233, - 1361238, - 1361239, - 1361244, - 1361245, - 1361250, - 1361251, - 1361256, - 1361257, - 1361262, - 1361263, - 1361268, - 1361269, - 1361274, - 1361275, - 1361280, - 1361281, - 1361286, - 1361287, - 1361292, - 1361293, - 1361298, - 1361299, - 1361320, - 1361807, - 1361978, - 1361979, - 1362659, - 1362660, - 1362664, - 1362665, - 1362669, - 1362670, - 1362674, - 1362675, - 1362679, - 1362680, - 1362684, - 1362685, - 1362689, - 1362694, - 1362698, - 1362699, - 1362705, - 1362706, - 1362710, - 1362711, - 1362715, - 1362716, - 1362720, - 1362721, - 1362725, - 1362726, - 1362730, - 1362731, - 1362735, - 1362736, - 1362740, - 1362741, - 1362746, - 1362747, - 1362752, - 1362753, - 1362758, - 1362759, - 1362764, - 1362765, - 1362770, - 1362771, - 1362776, - 1362777, - 1362782, - 1362783, - 1362788, - 1362789, - 1363459, - 1363460, - 1363465, - 1363466, - 1363471, - 1363472, - 1363477, - 1363478, - 1363483, - 1363484, - 1363489, - 1363490, - 1363495, - 1363496, - 1363501, - 1363502, - 1363507, - 1363508, - 1363513, - 1363514, - 1363519, - 1363520, - 1363525, - 1363526, - 1363531, - 1363532, - 1363537, - 1363538, - 1363543, - 1363544, - 1363549, - 1363550, - 1363555, - 1363556, - 1363561, - 1363562, - 1363567, - 1363568, - 1363573, - 1363574, - 1363579, - 1363580, - 1363585, - 1363586, - 1363591, - 1363592, - 1363597, - 1363598, - 1363603, - 1363604, - 1363609, - 1363610, - 1363615, - 1363616, - 1363621, - 1364103, - 1364259, - 1364260, - 1364265, - 1364266, - 1364271, - 1364272, - 1364277, - 1364278, - 1364283, - 1364284, - 1364289, - 1364294, - 1364299, - 1364300, - 1364305, - 1364306, - 1364311, - 1364312, - 1364317, - 1364318, - 1364323, - 1364324, - 1364329, - 1364330, - 1364335, - 1364336, - 1364341, - 1364342, - 1364347, - 1364348, - 1364353, - 1364354, - 1364359, - 1364360, - 1364365, - 1364366, - 1364371, - 1364372, - 1364377, - 1364378, - 1383802, - 1383804, - 1383827, - 1383828, - 1384187, - 1384190, - 1384536, - 1384547, - 1384871, - 1384882, - 1387591, - 1387596, - 1387881, - 1387890, - 1389255, - 1389256, - 1389315, - 1389516, - 1389788, - 1389789, - 1390033, - 1390034, - 1390499, - 1390688, - 1391767, - 1391771, - 1391947, - 1392025, - 1392288, - 1392439, - 1393157, - 1393241, - 1395164, - 1395256, - 1396266, - 1396465, - 1398183, - 1398184, - 1398910, - 1398914, - 1408451, - 1408454, - 1409085, - 1409378, - 1409994, - 1410259, - 1410844, - 1411113, - 1411705, - 1411970, - 1412800, - 1412811, - 1413663, - 1413667, - 1414675, - 1414680, - 1415471, - 1415476, - 1417087, - 1417328, - 1418355, - 1418363, - 1418866, - 1418867, - 1420260, - 1420261, - 1420841, - 1420842, - 1422259, - 1422260, - 1422844, - 1422845, - 1423396, - 1423397, - 1423419, - 1423420, - 1423719, - 1423720, - 1467019, - 1467340, - 1499397, - 1502376, - 1502377, - 1509801, - 1509802, - 1512036, - 1512038, - 1514305, - 1514312, - 1519463, - 1519466, - 1524777, - 1524780, - 1527176, - 1527180, - 1532566, - 1532573, - 1537927, - 1537929, - 1540277, - 1540284, - 1542595, - 1542608, - 1544899, - 1545452, - 1546038, - 1546569, - 1546584, - 1546585, - 1546590, - 1546591, - 1547171, - 1547710, - 1547725, - 1547726, - 1547731, - 1547732, - 1547737, - 1547738, - 1547747, - 1548286, - 1548862, - 1548864, - 1548870, - 1548871, - 1548876, - 1548877, - 1549989, - 1549990, - 1549995, - 1549996, - 1550001, - 1550002, - 1550007, - 1550008, - 1550557, - 1550558, - 1551107, - 1551108, - 1551113, - 1551116, - 1551121, - 1551122, - 1551127, - 1551128, - 1551133, - 1551134, - 1553290, - 1553293, - 1556620, - 1556621, - 1556634, - 1556639, - 1556644, - 1556645, - 1556650, - 1556651, - 1556656, - 1556657, - 1558407, - 1558409, - 1563847, - 1564178, - 1564183, - 1564336, - 1577599, - 1578206, - 1579173, - 1579470, - 1580549, - 1581280, - 1582777, - 1582780, - 1582829, - 1582830, - 1583589, - 1583592, - 1584356, - 1584359, - 1586599, - 1588685, - 1589349, - 1590013, - 1590968, - 1590969, - 1590974, - 1590975, - 1591340, - 1591343, - 1591970, - 1591973, - 1592220, - 1592223, - 1592468, - 1592471, - 1592480, - 1592481, - 1592488, - 1592489, - 1593322, - 1593325, - 1593336, - 1593337, - 1593344, - 1593345, - 1594264, - 1594265, - 1595244, - 1595247, - 1596004, - 1596005, - 1596010, - 1596011, - 1596334, - 1596561, - 1596898, - 1597115, - 1597466, - 1597677, - 1598040, - 1598243, - 1598818, - 1598819, - 1599416, - 1599419, - 1600036, - 1600039, - 1600660, - 1600667, - 1601288, - 1601297, - 1601920, - 1601921, - 1602284, - 1602285, - 1602640, - 1602642, - 1602998, - 1602999, - 1603376, - 1603667, - 1603948, - 1604213, - 1605038, - 1605045, - 1605648, - 1605903, - 1606510, - 1606533, - 1607177, - 1607303, - 1608062, - 1608063, - 1608729, - 1608730, - 1609444, - 1609776, - 1609782, - 1610808, - 1611138, - 1611144, - 1612484, - 1612800, - 1612806, - 1614056, - 1614362, - 1614368, - 1615281, - 1615283, - 1615943, - 1615944, - 1616635, - 1617645, - 1619935, - 1619972, - 1651168, - 1651183, - 1658815, - 1658816, - 1658924, - 1658925, - 1661029, - 1661030, - 1661035, - 1661158, - 1661169, - 1661170, - 1661207, - 1661208, - 1661213, - 1661214, - 1661229, - 1661256, - 1661305, - 1661316, - 1661321, - 1661322, - 1661327, - 1661328, - 1661333, - 1661340, - 1661405, - 1661406, - 1661507, - 1661510, - 1661515, - 1661516, - 1661521, - 1661522, - 1661527, - 1661626, - 1661647, - 1661648, - 1661718, - 1661805, - 1661859, - 1661861, - 1661869, - 1661870, - 1661915, - 1661940, - 1661967, - 1662026, - 1662031, - 1662032, - 1662037, - 1662038, - 1662151, - 1662184, - 1662191, - 1662192, - 1662197, - 1662214, - 1662223, - 1662224, - 1662229, - 1662230, - 1662235, - 1662240, - 1662367, - 1662368, - 1662373, - 1662378, - 1662383, - 1662384, - 1662419, - 1662420, - 1662425, - 1662548, - 1662559, - 1662576, - 1662597, - 1662598, - 1662603, - 1662604, - 1662609, - 1662624, - 1662711, - 1662712, - 1662717, - 1662718, - 1662788, - 1662790, - 1662795, - 1662892, - 1662899, - 1662900, - 1662905, - 1662906, - 1662911, - 1662912, - 1663021, - 1663030, - 1663035, - 1663148, - 1663153, - 1663237, - 1663247, - 1663251, - 1663257, - 1663258, - 1663263, - 1663264, - 1663269, - 1663306, - 1663353, - 1663405, - 1663421, - 1663422, - 1663427, - 1663428, - 1663433, - 1663500, - 1663579, - 1663582, - 1663613, - 1663614, - 1663619, - 1663685, - 1663751, - 1663752, - 1663757, - 1663762, - 1663767, - 1663798, - 1663803, - 1663804, - 1663809, - 1663935, - 1663943, - 1663976, - 1663981, - 1663982, - 1663987, - 1664002, - 1664007, - 1664074, - 1664089, - 1664090, - 1664095, - 1664098, - 1664103, - 1664104, - 1664109, - 1664176, - 1664181, - 1664278, - 1664285, - 1664286, - 1664291, - 1664292, - 1664297, - 1664298, - 1666308, - 1666311, - 1668151, - 1668232, - 1673294, - 1673471, - 1677053, - 1677054, - 1677059, - 1677060, - 1677065, - 1677066, - 1677071, - 1677238, - 1677243, - 1677244, - 1677249, - 1677356, - 1677361, - 1677362, - 1677367, - 1677368, - 1677375, - 1677409, - 1677505, - 1677506, - 1677515, - 1677516, - 1677521, - 1677522, - 1677527, - 1677528, - 1677533, - 1677706, - 1677729, - 1677730, - 1677735, - 1677736, - 1677771, - 1677772, - 1677777, - 1677778, - 1677921, - 1677944, - 1677961, - 1677964, - 1677969, - 1677970, - 1677975, - 1677976, - 1678038, - 1678118, - 1678127, - 1678144, - 1678197, - 1678202, - 1678207, - 1678208, - 1678213, - 1678341, - 1678369, - 1678370, - 1678375, - 1678376, - 1678381, - 1678408, - 1678481, - 1678482, - 1678487, - 1678548, - 1678553, - 1678554, - 1678559, - 1678560, - 1678565, - 1678622, - 1678737, - 1678738, - 1678743, - 1678744, - 1678855, - 1678856, - 1678861, - 1678862, - 1678867, - 1678868, - 1683792, - 1683793, - 1683798, - 1683799, - 1683804, - 1683805, - 1683942, - 1683951, - 1683956, - 1684011, - 1684026, - 1684031, - 1684036, - 1684037, - 1684042, - 1684147, - 1684196, - 1684197, - 1684202, - 1684203, - 1684208, - 1684210, - 1684244, - 1684245, - 1684314, - 1684317, - 1684382, - 1684385, - 1684390, - 1684391, - 1684396, - 1684397, - 1684402, - 1684403, - 1684574, - 1684577, - 1684582, - 1684691, - 1684696, - 1684697, - 1686243, - 1686244, - 1686271, - 1686274, - 1686406, - 1686412, - 1686417, - 1686418, - 1686423, - 1686424, - 1686461, - 1686462, - 1686467, - 1686488, - 1686665, - 1686666, - 1686671, - 1686672, - 1686677, - 1686740, - 1686745, - 1686746, - 1686751, - 1686917, - 1686933, - 1686934, - 1686939, - 1686940, - 1687077, - 1687086, - 1687091, - 1687151, - 1687161, - 1687166, - 1687171, - 1687172, - 1687187, - 1687303, - 1687329, - 1687330, - 1698227, - 1698228, - 1698682, - 1698871, - 1785785, - 1785786, - 1785791, - 1785792, - 1785797, - 1785818, - 1785823, - 1785840, - 1785845, - 1785852, - 1785857, - 1785860, - 1785865, - 1785872, - 1785883, - 1785884, - 1785889, - 1785890, - 1785895, - 1785896, - 1785901, - 1785902, - 1785907, - 1786062, - 1786101, - 1786188, - 1786193, - 1786194, - 1786203, - 1786204, - 1786209, - 1786210, - 1786215, - 1786216, - 1786221, - 1786300, - 1786449, - 1786460, - 1786465, - 1786468, - 1786475, - 1786478, - 1786483, - 1786516, - 1786521, - 1786522, - 1786529, - 1786531, - 1786537, - 1786540, - 1787393, - 1787400, - 1787413, - 1787414, - 1787545, - 1787546, - 1787993, - 1788034, - 1788163, - 1788164, - 1788189, - 1788204, - 1788211, - 1788212, - 1788223, - 1788225, - 1788231, - 1788232, - 1788249, - 1788250, - 1788255, - 1788256, - 1788261, - 1788262, - 1788267, - 1788268, - 1788273, - 1788320, - 1788467, - 1788554, - 1788559, - 1788560, - 1788569, - 1788570, - 1788575, - 1788576, - 1788581, - 1788582, - 1788815, - 1788826, - 1788831, - 1788834, - 1788841, - 1788844, - 1788849, - 1788882, - 1788887, - 1788890, - 1788895, - 1788898, - 1788905, - 1788907, - 1788913, - 1788914, - 1789511, - 1789757, - 1789771, - 1789840, - 1789895, - 1789896, - 1789901, - 1790228, - 1790349, - 1790390, - 1790395, - 1790396, - 1790525, - 1790526, - 1790531, - 1790552, - 1790571, - 1790574, - 1790585, - 1790586, - 1790593, - 1790594, - 1790617, - 1790618, - 1790623, - 1790624, - 1790629, - 1790630, - 1790635, - 1790747, - 1790829, - 1790916, - 1790921, - 1790926, - 1790931, - 1790932, - 1790937, - 1790938, - 1790943, - 1790944, - 1790949, - 1791174, - 1791189, - 1791190, - 1791199, - 1791201, - 1791207, - 1791240, - 1791245, - 1791246, - 1791253, - 1791256, - 1791263, - 1791266, - 1791271, - 1791272, - 1791980, - 1792111, - 1792123, - 1792238, - 1792443, - 1792676, - 1792721, - 1792722, - 1792727, - 1792838, - 1792857, - 1792878, - 1792883, - 1792899, - 1792905, - 1792912, - 1792917, - 1792920, - 1792925, - 1792938, - 1792943, - 1792946, - 1792951, - 1792952, - 1792957, - 1792958, - 1792963, - 1792964, - 1793037, - 1793141, - 1793249, - 1793250, - 1793255, - 1793260, - 1793265, - 1793266, - 1793271, - 1793272, - 1793277, - 1793278, - 1793283, - 1793508, - 1793535, - 1793536, - 1793573, - 1793574, - 1793579, - 1793582, - 1793589, - 1793592, - 1793599, - 1793600, - 1793605, - 1793857, - 1794404, - 1794412, - 1794531, - 1794532, - 1794537, - 1794734, - 1794971, - 1795012, - 1795017, - 1795018, - 1795119, - 1795148, - 1795153, - 1795174, - 1795179, - 1795196, - 1795201, - 1795208, - 1795213, - 1795216, - 1795221, - 1795234, - 1795239, - 1795241, - 1795247, - 1795248, - 1795259, - 1795260, - 1795265, - 1795420, - 1795459, - 1795546, - 1795551, - 1795556, - 1795561, - 1795562, - 1795567, - 1795568, - 1795573, - 1795574, - 1795579, - 1795714, - 1795809, - 1795820, - 1795827, - 1795828, - 1795839, - 1795840, - 1795877, - 1795878, - 1795885, - 1795887, - 1795894, - 1795897, - 1795903, - 1795904, - 1795991, - 1796385, - 1796697, - 1796768, - 1796807, - 1796808, - 1796813, - 1797079, - 1797293, - 1797404, - 1797423, - 1797444, - 1797449, - 1797465, - 1797471, - 1797475, - 1797483, - 1797486, - 1797491, - 1797504, - 1797509, - 1797512, - 1797517, - 1797518, - 1797523, - 1797524, - 1797531, - 1797532, - 1797632, - 1797692, - 1797731, - 1797818, - 1797823, - 1797828, - 1797833, - 1797834, - 1797839, - 1797840, - 1797845, - 1797846, - 1797851, - 1798031, - 1798091, - 1798094, - 1798099, - 1798106, - 1798149, - 1798152, - 1798159, - 1798162, - 1798169, - 1798170, - 1798175, - 1798258, - 1798761, - 1798948, - 1798967, - 1799072, - 1799077, - 1799078, - 1799249, - 1799389, - 1799481, - 1799482, - 1799487, - 1799586, - 1799619, - 1799620, - 1799645, - 1799660, - 1799667, - 1799671, - 1799679, - 1799680, - 1799687, - 1799688, - 1799705, - 1799706, - 1799713, - 1799714, - 1799719, - 1799720, - 1799725, - 1799728, - 1800013, - 1800018, - 1800023, - 1800024, - 1800029, - 1800030, - 1800035, - 1800036, - 1800041, - 1800060, - 1800181, - 1800277, - 1800289, - 1800290, - 1800295, - 1800302, - 1800307, - 1800308, - 1800347, - 1800350, - 1800357, - 1800360, - 1800367, - 1800368, - 1800373, - 1800537, - 1801133, - 1801148, - 1801257, - 1801258, - 1801263, - 1801264, - 1801419, - 1801549, - 1801641, - 1801642, - 1801648, - 1801746, - 1801821, - 1801828, - 1801834, - 1801836, - 1801841, - 1801854, - 1801859, - 1801862, - 1801867, - 1801868, - 1801873, - 1801876, - 1801881, - 1801884, - 1801965, - 1801966, - 1801971, - 1802028, - 1802176, - 1802180, - 1802185, - 1802186, - 1802191, - 1802192, - 1802197, - 1802198, - 1802203, - 1802383, - 1802443, - 1802446, - 1802451, - 1802458, - 1802463, - 1802464, - 1802495, - 1802504, - 1802511, - 1802516, - 1802529, - 1802612, - 1802779, - 1803096, - 1803291, - 1803396, - 1803401, - 1803402, - 1803407, - 1803542, - 1803625, - 1803740, - 1803765, - 1803768, - 1803869, - 1803884, - 1803903, - 1803904, - 1803909, - 1803910, - 1803953, - 1803960, - 1803965, - 1803968, - 1803973, - 1803974, - 1803991, - 1803992, - 1803999, - 1804000, - 1804005, - 1804006, - 1804011, - 1804014, - 1804019, - 1804093, - 1804103, - 1804104, - 1804317, - 1804318, - 1804323, - 1804324, - 1804329, - 1804330, - 1804335, - 1804470, - 1804475, - 1804566, - 1804583, - 1804584, - 1804589, - 1804596, - 1804601, - 1804602, - 1804633, - 1804642, - 1804649, - 1804653, - 1804659, - 1804662, - 1804667, - 1804752, - 1804757, - 1804920, - 1805410, - 1805418, - 1805527, - 1805528, - 1805533, - 1805534, - 1805683, - 1805781, - 1805873, - 1805874, - 1805890, - 1805978, - 1806017, - 1806018, - 1806061, - 1806068, - 1806073, - 1806076, - 1806081, - 1806082, - 1806099, - 1806100, - 1806107, - 1806108, - 1806113, - 1806114, - 1806121, - 1806122, - 1806195, - 1806206, - 1806211, - 1806212, - 1806415, - 1806419, - 1806427, - 1806428, - 1806433, - 1806434, - 1806439, - 1806440, - 1806445, - 1806524, - 1806675, - 1806688, - 1806693, - 1806700, - 1806705, - 1806706, - 1806711, - 1806746, - 1806763, - 1806766, - 1806771, - 1806850, - 1806855, - 1806982, - 1807283, - 1807421, - 1807433, - 1807528, - 1807533, - 1807534, - 1807539, - 1807684, - 1807739, - 1807854, - 1807879, - 1807890, - 1807983, - 1807998, - 1808017, - 1808018, - 1808025, - 1808026, - 1808050, - 1808070, - 1808081, - 1808082, - 1808089, - 1808090, - 1808107, - 1808108, - 1808115, - 1808116, - 1808121, - 1808122, - 1808127, - 1808130, - 1808219, - 1808220, - 1808225, - 1808424, - 1808435, - 1808436, - 1808441, - 1808442, - 1808447, - 1808448, - 1808453, - 1808475, - 1808593, - 1808684, - 1808701, - 1808702, - 1808713, - 1808714, - 1808719, - 1808720, - 1808725, - 1808760, - 1808767, - 1808768, - 1808779, - 1808782, - 1808789, - 1808866, - 1808871, - 1808994, - 1809328, - 1809413, - 1809425, - 1809516, - 1809521, - 1809522, - 1809527, - 1809670, - 1809865, - 1809964, - 1809969, - 1809998, - 1810003, - 1810005, - 1810011, - 1810031, - 1810055, - 1810062, - 1810067, - 1810069, - 1810075, - 1810082, - 1810093, - 1810096, - 1810101, - 1810102, - 1810107, - 1810108, - 1810115, - 1810116, - 1810189, - 1810190, - 1810207, - 1810208, - 1810347, - 1810412, - 1810423, - 1810424, - 1810429, - 1810430, - 1810435, - 1810436, - 1810441, - 1810442, - 1810469, - 1810627, - 1810701, - 1810702, - 1810707, - 1810708, - 1810747, - 1810749, - 1810755, - 1810760, - 1810769, - 1810770, - 1810777, - 1810854, - 1810977, - 1811098, - 1811333, - 1811363, - 1811375, - 1811466, - 1811471, - 1811472, - 1811477, - 1811580, - 1811729, - 1811730, - 1811777, - 1811876, - 1811909, - 1811910, - 1811915, - 1811918, - 1811923, - 1811962, - 1811967, - 1811974, - 1811979, - 1811982, - 1811987, - 1812000, - 1814119, - 1814120, - 1814125, - 1814126, - 1814133, - 1814134, - 1814139, - 1814142, - 1814147, - 1814282, - 1814287, - 1814391, - 1814397, - 1814398, - 1814403, - 1814414, - 1814419, - 1814420, - 1814461, - 1814464, - 1814469, - 1814470, - 1814475, - 1814476, - 1814493, - 1814571, - 1814683, - 1814684, - 1814689, - 1814690, - 1815036, - 1815090, - 1815095, - 1815096, - 1815103, - 1815188, - 1815193, - 1815267, - 1815585, - 1815600, - 1815607, - 1815608, - 1815613, - 1815618, - 1815623, - 1815624, - 1815635, - 1815704, - 1815709, - 1815724, - 1815729, - 1815754, - 1815759, - 1815935, - 1815943, - 1815944, - 1815949, - 1815952, - 1815957, - 1815958, - 1815965, - 1816082, - 1816105, - 1816208, - 1816215, - 1816216, - 1816221, - 1816232, - 1816237, - 1816238, - 1816243, - 1816280, - 1816287, - 1816288, - 1816293, - 1816294, - 1816502, - 1816773, - 1816831, - 1816834, - 1817270, - 1817283, - 1817288, - 1817289, - 1817308, - 1817310, - 1817316, - 1817317, - 1817326, - 1817327, - 1817332, - 1817339, - 1817344, - 1817407, - 1817426, - 1817427, - 1817432, - 1817463, - 1817631, - 1817635, - 1817640, - 1817643, - 1817648, - 1817649, - 1817654, - 1817657, - 1817758, - 1817795, - 1817800, - 1817894, - 1817900, - 1817901, - 1817916, - 1817917, - 1817922, - 1817959, - 1817964, - 1817967, - 1817991, - 1817992, - 1818680, - 1818681, - 1818686, - 1818762, - 1818784, - 1818785, - 1818792, - 1818793, - 1818798, - 1818841, - 1818846, - 1818847, - 1818864, - 1818865, - 1818870, - 1818885, - 1818892, - 1818893, - 1818898, - 1818903, - 1818908, - 1818909, - 1818920, - 1818952, - 1818988, - 1819003, - 1819008, - 1819033, - 1819050, - 1819208, - 1819216, - 1819217, - 1819222, - 1819225, - 1819230, - 1819278, - 1819416, - 1819425, - 1819681, - 1819682, - 1819687, - 1819688, - 1819901, - 1819928, - 1819933, - 1819934, - 1819939, - 1819972, - 1820005, - 1820090, - 1820095, - 1820154, - 1820185, - 1820194, - 1820199, - 1820202, - 1820207, - 1820240, - 1820245, - 1820246, - 1820251, - 1820264, - 1820269, - 1820277, - 1820289, - 1820292, - 1820297, - 1820302, - 1820307, - 1820308, - 1820313, - 1820320, - 1820381, - 1820391, - 1820401, - 1820402, - 1821486, - 1821487, - 1821492, - 1821505, - 1821510, - 1821525, - 1821530, - 1821533, - 1821538, - 1821543, - 1821548, - 1821549, - 1821555, - 1821579, - 1821622, - 1821637, - 1821642, - 1821667, - 1821684, - 1821833, - 1821844, - 1821845, - 1821850, - 1821855, - 1821862, - 1821867, - 1821872, - 1821881, - 1821886, - 1821889, - 1821896, - 1821931, - 1821936, - 1821947, - 1821952, - 1821972, - 1821996, - 1821997, - 1822002, - 1822009, - 1822014, - 1822015, - 1822020, - 1822039, - 1822044, - 1822045, - 1822050, - 1822157, - 1822478, - 1822489, - 1822582, - 1822595, - 2296806, - 2297047, - 2297442, - 2297522, - 2298849, - 2298949, - 2299103, - 2302663, - 2302692, - 2302696, - 2302699, - 2302703, - 2302742, - 2302746, - 2302747, - 2302751, - 2302774, - 2302778, - 2302781, - 2302785, - 2302788, - 2302820, - 2302823, - 2302841, - 2302844, - 2302848, - 2302855, - 2302859, - 2302888, - 2302892, - 2302893, - 2302937, - 2302956, - 2302962, - 2302979, - 2302983, - 2302990, - 2302994, - 2302997, - 2303003, - 2303004, - 2303059, - 2303095, - 2303099, - 2303104, - 2320810, - 2320817, - 2322493, - 2322502, - 2332601, - 2332602, - 2332607, - 2332608, - 2332613, - 2332614, - 2332619, - 2332620, - 2332625, - 2332626, - 2332631, - 2332642, - 2332647, - 2332648, - 2332653, - 2332654, - 2332659, - 2332660, - 2332665, - 2332666, - 2332671, - 2332672, - 2332677, - 2332678, - 2332683, - 2332684, - 2332689, - 2332690, - 2332695, - 2332696, - 2332701, - 2332702, - 2332707, - 2332708, - 2332713, - 2332714, - 2332719, - 2332720, - 2333218, - 2333359, - 2333470, - 2333792, - 2333884, - 2333923, - 2333928, - 2334536, - 2334544, - 2334590, - 2334595, - 2355337, - 2355382, - 2398428, - 2398429, - 2401215, - 2401216, - 2412731, - 2412844, - 2412845, - 2412846, - 2412957, - 2412962, - 2413721, - 2413744, - 2413763, - 2413824, - 2413835, - 2414119, - 2414598, - 2414603, - 2414638, - 2414641, - 2414646, - 2414861, - 2414926, - 2415007, - 2415012, - 2415074, - 2415093, - 2415094, - 2415272, - 2415273, - 2415288, - 2415349, - 2415401, - 2415402, - 2415438, - 2415439, - 2415444, - 2415505, - 2415510, - 2415511, - 2415516, - 2415523, - 2415528, - 2415529, - 2415534, - 2415821, - 2416922, - 2416947, - 2418399, - 2418429, - 2418435, - 2418448, - 2418453, - 2418608, - 2432387, - 2432388, - 2432563, - 2432570, - 2434141, - 2434142, - 2441603, - 2441680, - 2441718, - 2441719, - 2441769, - 2441770, - 2443328, - 2443335, - 2443604, - 2443605, - 2444793, - 2444794, - 2445084, - 2445091, - 2445181, - 2445258, - 2553447, - 2553502, - 2564304, - 2564389, - 2564390, - 2564391, - 2565353, - 2565379, - 2565380, - 2565381, - 2565469, - 2565563, - 2565564, - 2565565, - 2571824, - 2571825, - 2571830, - 2571985, - 2571998, - 2572003, - 2572008, - 2572019, - 2572024, - 2572035, - 2572040, - 2572046, - 2572052, - 2572055, - 2572060, - 2572063, - 2572068, - 2572069, - 2572168, - 2572177, - 2572182, - 2572185, - 2572190, - 2572191, - 2572196, - 2572219, - 2572950, - 2572953, - 2572958, - 2572959, - 2572982, - 2572992, - 2572998, - 2573001, - 2573006, - 2573007, - 2573012, - 2573015, - 2576535, - 2576554, - 2576559, - 2576560, - 2576565, - 2576720, - 2576733, - 2576738, - 2576743, - 2576754, - 2576759, - 2576770, - 2576775, - 2576781, - 2576787, - 2576790, - 2576797, - 2576798, - 2576803, - 2576804, - 2576889, - 2576898, - 2576903, - 2576906, - 2576911, - 2576912, - 2576918, - 2577067, - 2577485, - 2577568, - 2577574, - 2577576, - 2577581, - 2577600, - 2577613, - 2577616, - 2577623, - 2577624, - 2580712, - 2580715, - 2580720, - 2580721, - 2580726, - 2580727, - 2580769, - 2580803, - 2580808, - 2580815, - 2580820, - 2580829, - 2580844, - 2580845, - 2580850, - 2580993, - 2580998, - 2581011, - 2581016, - 2581027, - 2581032, - 2581043, - 2581048, - 2581053, - 2581060, - 2581063, - 2581068, - 2581071, - 2581076, - 2581077, - 2581082, - 2581135, - 2581148, - 2581151, - 2581156, - 2581157, - 2581162, - 2581165, - 2584386, - 2584402, - 2584407, - 2584408, - 2584413, - 2584414, - 2584419, - 2584450, - 2584455, - 2584457, - 2584463, - 2584466, - 2584471, - 2584472, - 2584477, - 2584478, - 2584483, - 2584554, - 2584559, - 2584560, - 2584571, - 2584572, - 2584585, - 2584596, - 2584601, - 2584664, - 2584741, - 2584752, - 2584759, - 2584770, - 2584775, - 2584776, - 2584791, - 2584792, - 2584801, - 2584804, - 2584811, - 2584814, - 2587256, - 2587393, - 2587747, - 2587758, - 2587763, - 2587768, - 2587813, - 2587895, - 2587905, - 2587906, - 2587911, - 2587912, - 2587917, - 2587940, - 2587945, - 2587952, - 2587957, - 2587961, - 2587967, - 2587968, - 2587973, - 2587974, - 2587979, - 2588025, - 2588031, - 2588032, - 2588037, - 2588042, - 2588047, - 2588063, - 2588169, - 2588315, - 2588327, - 2588328, - 2588333, - 2588336, - 2588341, - 2588374, - 2588379, - 2588382, - 2590055, - 2590056, - 2590638, - 2590639, - 2591711, - 2591714, - 2592536, - 2592539, - 2592638, - 2592639, - 2592863, - 2592878, - 2592970, - 2592977, - 2594053, - 2594054, - 2594059, - 2594060, - 2594065, - 2594088, - 2594093, - 2594108, - 2594113, - 2594130, - 2594135, - 2594136, - 2594141, - 2594154, - 2594159, - 2594162, - 2594189, - 2594190, - 2594195, - 2594196, - 2594201, - 2594216, - 2594221, - 2594222, - 2594227, - 2594228, - 2594233, - 2594234, - 2594239, - 2594240, - 2594245, - 2594246, - 2594251, - 2594298, - 2594303, - 2594318, - 2594323, - 2594324, - 2594400, - 2594409, - 2594414, - 2594435, - 2594440, - 2594443, - 2594448, - 2594451, - 2594456, - 2594457, - 2594462, - 2594485, - 2594490, - 2594503, - 2594510, - 2594524, - 2594532, - 2594533, - 2594538, - 2594539, - 2594556, - 2594557, - 2594564, - 2594587, - 2594592, - 2594593, - 2594598, - 2594613, - 2594618, - 2594619, - 2594624, - 2594625, - 2594630, - 2594631, - 2594636, - 2594637, - 2594642, - 2594643, - 2594729, - 2594730, - 2594735, - 2594746, - 2594751, - 2594755, - 2594791, - 2594794, - 2594799, - 2594802, - 2594807, - 2594816, - 2594839, - 2594844, - 2594849, - 2594850, - 2594857, - 2594858, - 2594863, - 2594864, - 2594891, - 2594892, - 2594909, - 2594912, - 2594917, - 2594934, - 2594939, - 2594940, - 2594945, - 2594958, - 2594963, - 2594988, - 2594993, - 2594994, - 2594999, - 2595000, - 2595005, - 2595020, - 2595052, - 2595053, - 2595058, - 2595095, - 2595112, - 2595129, - 2595134, - 2595137, - 2595142, - 2595153, - 2595158, - 2595161, - 2595166, - 2595199, - 2595206, - 2595208, - 2595214, - 2595223, - 2595228, - 2595249, - 2595256, - 2595257, - 2595264, - 2595265, - 2595270, - 2595271, - 2595287, - 2595299, - 2595304, - 2595319, - 2595324, - 2595339, - 2595344, - 2595345, - 2595350, - 2595363, - 2595368, - 2595393, - 2595455, - 2595458, - 2595463, - 2595466, - 2595471, - 2595472, - 2595477, - 2595526, - 2595533, - 2595548, - 2595555, - 2595556, - 2595561, - 2595572, - 2595577, - 2595580, - 2595587, - 2595618, - 2595625, - 2595628, - 2595633, - 2595642, - 2595654, - 2595668, - 2595675, - 2595676, - 2595683, - 2595684, - 2595689, - 2595690, - 2595717, - 2595718, - 2595735, - 2595738, - 2595743, - 2595758, - 2595832, - 2595835, - 2595840, - 2595857, - 2595864, - 2595865, - 2595874, - 2595879, - 2595884, - 2595887, - 2595892, - 2595895, - 2595900, - 2595903, - 2595940, - 2595956, - 2595969, - 2595979, - 2595984, - 2595988, - 2595996, - 2596003, - 2596008, - 2596041, - 2596046, - 2596049, - 2596054, - 2596057, - 2596062, - 2596090, - 2596096, - 2596099, - 2596104, - 2596107, - 2596112, - 2596113, - 2596118, - 2596141, - 2596469, - 2596470, - 2596649, - 2596664, - 2596669, - 2596672, - 2596679, - 2596689, - 2596701, - 2596708, - 2596731, - 2596736, - 2596741, - 2596748, - 2596755, - 2596772, - 2596779, - 2596784, - 2596789, - 2596794, - 2596799, - 2596804, - 2596809, - 2596814, - 2596823, - 2596826, - 2596831, - 2596842, - 2596883, - 2596886, - 2596905, - 2596910, - 2596915, - 2596921, - 2596929, - 2596936, - 2596945, - 2596946, - 2596981, - 2596984, - 2598029, - 2598050, - 2598059, - 2598075, - 2598081, - 2598095, - 2598101, - 2598104, - 2598109, - 2598114, - 2598131, - 2598138, - 2598159, - 2598162, - 2598169, - 2598176, - 2598181, - 2598186, - 2598205, - 2598211, - 2598217, - 2598222, - 2598227, - 2598232, - 2598238, - 2598242, - 2598251, - 2598254, - 2598259, - 2598296, - 2598301, - 2598316, - 2598321, - 2598326, - 2598333, - 2598346, - 2598353, - 2598359, - 2599284, - 2599307, - 2599314, - 2599320, - 2599326, - 2599336, - 2599348, - 2599360, - 2599368, - 2599373, - 2599378, - 2599385, - 2599392, - 2599394, - 2599402, - 2599424, - 2599430, - 2599442, - 2599448, - 2599460, - 2599466, - 2599469, - 2599474, - 2599479, - 2599492, - 2599499, - 2599516, - 2599519, - 2599526, - 2599533, - 2599540, - 2599543, - 2599562, - 2599567, - 2599572, - 2599577, - 2599582, - 2599587, - 2600461, - 2600468, - 2600473, - 2600480, - 2600485, - 2600496, - 2600501, - 2600514, - 2600519, - 2600524, - 2600541, - 2600546, - 2600555, - 2600560, - 2600575, - 2600582, - 2600589, - 2600594, - 2600603, - 2600618, - 2600625, - 2600630, - 2600639, - 2600646, - 2600651, - 2600654, - 2600659, - 2600674, - 2600683, - 2600688, - 2600699, - 2600712, - 2600717, - 2600722, - 2600727, - 2600732, - 2600737, - 2600748, - 2601484, - 2601490, - 2601508, - 2601515, - 2609975, - 2609976, - 2610934, - 2610991, - 2611447, - 2611482, - 2612441, - 2612442, - 2612447, - 2612448, - 2612453, - 2612454, - 2612459, - 2612460, - 2612465, - 2612472, - 2612477, - 2612478, - 2612483, - 2612546, - 2612551, - 2612584, - 2612591, - 2612592, - 2612597, - 2612598, - 2612651, - 2612656, - 2612661, - 2612664, - 2612709, - 2612710, - 2612715, - 2612859, - 2612997, - 2613000, - 2613005, - 2613006, - 2613011, - 2613012, - 2613017, - 2613018, - 2613023, - 2613030, - 2613035, - 2613036, - 2613041, - 2613104, - 2613109, - 2613110, - 2613115, - 2613116, - 2613153, - 2613156, - 2613161, - 2613162, - 2613167, - 2613168, - 2613173, - 2613174, - 2613225, - 2613226, - 2613235, - 2613236, - 2613241, - 2613244, - 2613249, - 2613290, - 2613295, - 2613296, - 2613301, - 2613312, - 2613581, - 2613584, - 2613589, - 2613590, - 2613595, - 2613596, - 2613601, - 2613602, - 2613607, - 2613608, - 2613613, - 2613614, - 2613619, - 2613620, - 2615126, - 2615127, - 2615164, - 2615167, - 2615172, - 2615173, - 2615178, - 2615225, - 2615234, - 2615237, - 2615280, - 2615281, - 2615286, - 2615545, - 2615552, - 2615553, - 2615558, - 2615559, - 2615564, - 2615565, - 2615570, - 2615577, - 2615584, - 2615585, - 2615590, - 2615649, - 2615654, - 2615657, - 2615662, - 2615696, - 2615702, - 2615703, - 2615708, - 2615755, - 2615764, - 2615765, - 2615770, - 2615810, - 2615816, - 2615825, - 2615832, - 2616080, - 2616088, - 2616089, - 2616094, - 2616095, - 2616100, - 2616101, - 2616106, - 2616107, - 2616112, - 2616113, - 2616118, - 2616119, - 2616124, - 2616131, - 2616136, - 2616139, - 2616144, - 2616145, - 2616150, - 2616151, - 2616212, - 2616213, - 2616220, - 2616221, - 2616226, - 2616259, - 2616264, - 2616267, - 2616272, - 2616273, - 2616278, - 2616279, - 2616284, - 2616331, - 2616336, - 2616341, - 2616346, - 2616347, - 2618238, - 2618239, - 2618615, - 2618616, - 2619068, - 2619069, - 2619451, - 2619452, - 2619967, - 2620040, - 2620294, - 2620297, - 2621169, - 2621214, - 2621378, - 2621414, - 2623795, - 2623798, - 2624052, - 2624053, - 2625095, - 2625098, - 2625472, - 2625475, - 2627775, - 2627776, - 2629385, - 2629502, - 2638571, - 2638572, - 2640244, - 2640251, - 2676267, - 2676270, - 2678647, - 2678651, - 2682259, - 2682260, - 2684857, - 2684872, - 2693899, - 2693902, - 2693994, - 2693996, - 2694002, - 2694167, - 2694372, - 2694373, - 2694490, - 2694517, - 2694524, - 2694527, - 2694542, - 2694545, - 2694556, - 2694557, - 2694564, - 2694569, - 2694574, - 2694587, - 2694592, - 2694593, - 2694598, - 2694599, - 2694666, - 2694667, - 2694672, - 2694673, - 2694679, - 2694681, - 2694686, - 2694687, - 2694692, - 2694693, - 2694698, - 2694699, - 2694704, - 2694728, - 2694738, - 2694739, - 2694744, - 2694772, - 2694808, - 2698578, - 2699124, - 2699264, - 2699301, - 2701090, - 2701091, - 2701096, - 2701097, - 2701102, - 2701103, - 2701164, - 2701207, - 2701212, - 2701213, - 2701220, - 2701221, - 2701228, - 2701267, - 2701272, - 2701273, - 2701278, - 2701279, - 2701284, - 2701287, - 2701342, - 2701351, - 2701356, - 2701357, - 2701362, - 2701363, - 2701368, - 2701369, - 2701374, - 2701375, - 2701475, - 2701507, - 2701512, - 2701515, - 2701520, - 2701523, - 2701528, - 2701531, - 2701538, - 2702310, - 2702312, - 2702560, - 2703334, - 2703594, - 2704112, - 2704422, - 2704423, - 2705154, - 2705438, - 2706240, - 2706570, - 2706573, - 2707224, - 2707227, - 2707552, - 2708172, - 2708512, - 2709188, - 2709191, - 2709196, - 2709199, - 2709206, - 2709207, - 2709212, - 2709214, - 2709220, - 2709223, - 2709230, - 2709381, - 2709386, - 2709387, - 2709392, - 2709393, - 2709398, - 2709411, - 2709416, - 2709417, - 2709422, - 2709430, - 2709444, - 2709741, - 2709748, - 2709751, - 2709756, - 2709763, - 2709772, - 2709773, - 2709778, - 2709781, - 2709788, - 2709914, - 2709920, - 2709921, - 2709926, - 2709927, - 2709932, - 2710288, - 2710557, - 2710882, - 2711348, - 2711676, - 2711679, - 2711836, - 2711839, - 2711844, - 2711848, - 2711854, - 2711857, - 2711862, - 2711865, - 2711872, - 2711873, - 2711878, - 2711879, - 2711884, - 2711885, - 2711890, - 2712133, - 2712140, - 2712151, - 2712156, - 2712159, - 2712164, - 2712169, - 2712258, - 2712263, - 2712270, - 2712273, - 2712278, - 2712281, - 2712288, - 2712291, - 2712296, - 2712297, - 2712302, - 2712303, - 2712308, - 2712309, - 2712450, - 2712900, - 2712903, - 2713350, - 2713708, - 2714038, - 2714041, - 2714046, - 2714049, - 2714056, - 2714057, - 2714062, - 2714065, - 2714070, - 2714074, - 2714080, - 2714081, - 2714086, - 2714087, - 2714092, - 2714093, - 2714354, - 2714357, - 2714362, - 2714369, - 2714374, - 2714377, - 2714382, - 2714385, - 2714392, - 2714395, - 2714400, - 2714403, - 2714408, - 2714411, - 2714418, - 2714419, - 2714424, - 2714425, - 2714430, - 2714431, - 2714436, - 2714686, - 2714692, - 2715026, - 2715031, - 2715354, - 2715626, - 2718964, - 2718993, - 2719134, - 2719155, - 2719160, - 2719248, - 2719513, - 2719652, - 2721321, - 2721322, - 2721816, - 2721817, - 2721889, - 2722382, - 2722867, - 2722869, - 2722956, - 2722957, - 2723425, - 2723522, - 2724001, - 2724018, - 2724452, - 2724468, - 2724573, - 2724587, - 2725082, - 2725083, - 2725529, - 2725532, - 2725666, - 2726139, - 2726586, - 2727079, - 2727248, - 2727707, - 2728134, - 2728639, - 2728826, - 2729335, - 2729336, - 2729682, - 2729867, - 2730264, - 2730565, - 2730566, - 2730938, - 2730939, - 2731159, - 2731402, - 2731725, - 2731728, - 2731733, - 2731734, - 2731739, - 2731740, - 2731745, - 2731746, - 2731751, - 2731787, - 2731807, - 2731808, - 2731815, - 2731816, - 2731821, - 2731822, - 2731827, - 2731828, - 2731833, - 2731966, - 2731973, - 2731982, - 2731987, - 2731988, - 2731993, - 2731994, - 2731999, - 2732000, - 2732005, - 2732006, - 2732141, - 2732142, - 2732147, - 2732148, - 2732153, - 2732154, - 2732159, - 2732160, - 2732165, - 2732532, - 2732785, - 2733018, - 2733331, - 2733332, - 2733337, - 2733338, - 2733343, - 2733344, - 2733349, - 2733350, - 2733417, - 2733418, - 2733423, - 2733426, - 2733431, - 2733432, - 2733437, - 2733570, - 2733575, - 2733576, - 2733583, - 2733586, - 2733595, - 2733596, - 2733601, - 2733602, - 2733607, - 2733608, - 2733613, - 2733614, - 2733619, - 2733736, - 2733741, - 2733742, - 2733747, - 2733748, - 2733753, - 2733754, - 2733759, - 2733822, - 2733827, - 2734122, - 2734123, - 2734369, - 2734600, - 2734780, - 2734781, - 2734886, - 2734889, - 2734894, - 2734897, - 2734904, - 2734905, - 2734910, - 2734911, - 2734916, - 2734917, - 2734922, - 2734923, - 2734928, - 2735001, - 2735008, - 2735009, - 2735016, - 2735019, - 2735026, - 2735029, - 2735034, - 2735037, - 2735152, - 2735155, - 2735160, - 2735163, - 2735170, - 2735171, - 2735176, - 2735177, - 2735274, - 2735277, - 2735282, - 2735285, - 2735292, - 2735293, - 2736532, - 2736535, - 2736540, - 2736607, - 2736614, - 2736617, - 2736622, - 2736625, - 2736634, - 2736637, - 2736642, - 2736719, - 2736726, - 2736727, - 2736736, - 2736741, - 2736746, - 2736749, - 2736754, - 2736829, - 2736834, - 2736841, - 2736848, - 2736853, - 2736858, - 2736861, - 2736866, - 2736871, - 2736876, - 2736877, - 2736882, - 2736885, - 2736954, - 2736956, - 2736962, - 2736965, - 2736972, - 2736973, - 2737815, - 2737818, - 2738020, - 2738023, - 2738028, - 2738031, - 2738038, - 2738039, - 2738048, - 2738053, - 2738062, - 2738121, - 2738128, - 2738133, - 2738138, - 2738143, - 2738150, - 2738155, - 2738160, - 2738204, - 2738214, - 2738219, - 2738224, - 2738231, - 2738238, - 2738241, - 2738252, - 2738255, - 2738260, - 2738263, - 2738268, - 2738271, - 2738322, - 2738325, - 2738330, - 2738333, - 2738340, - 2738341, - 2738350, - 2738355, - 2739183, - 2739186, - 2739191, - 2739194, - 2739206, - 2739211, - 2739220, - 2739225, - 2739268, - 2739271, - 2739280, - 2739287, - 2739292, - 2739295, - 2739306, - 2739326, - 2739332, - 2739341, - 2739350, - 2739351, - 2739364, - 2739369, - 2739376, - 2739385, - 2739392, - 2739395, - 2739400, - 2739403, - 2739412, - 2739435, - 2739442, - 2739445, - 2739450, - 2739455, - 2739460, - 2739465, - 2739470, - 2739479, - 2739484, - 2739517, - 2739524, - 2739535, - 2739548, - 2739554, - 2739560, - 2739579, - 2739588, - 2739595, - 2739602, - 2739603, - 2739618, - 2739623, - 2739636, - 2739639, - 2739644, - 2739647, - 2739654, - 2739659, - 2739664, - 2739689, - 2739696, - 2739697, - 2739706, - 2739707, - 2739716, - 2739721, - 2739730, - 2739763, - 2739768, - 2739773, - 2739786, - 2739787, - 2739796, - 2739803, - 2739808, - 2739827, - 2739836, - 2739843, - 2739850, - 2739851, - 2740373, - 2740387, - 2740393, - 2740394, - 2740403, - 2740404, - 2740409, - 2740414, - 2740423, - 2740428, - 2740449, - 2740452, - 2740467, - 2740468, - 2740477, - 2740481, - 2740489, - 2740496, - 2740501, - 2740512, - 2740517, - 2740520, - 2740525, - 2740540, - 2740549, - 2740559, - 2740565, - 2740570, - 2740575, - 2740584, - 2740589, - 2740600, - 2740607, - 2740608, - 2740613, - 2740618, - 2740623, - 2740628, - 2740647, - 2740658, - 2740665, - 2740675, - 2740681, - 2740686, - 2740691, - 2740698, - 2740707, - 2740708, - 2740723, - 2740724, - 2740731, - 2740732, - 2740751, - 2740752, - 2740769, - 2740772, - 2740777, - 2740782, - 2740791, - 2740796, - 2740805, - 2740808, - 2740813, - 2740814, - 2740823, - 2740824, - 2740829, - 2740834, - 2740843, - 2740850, - 2740855, - 2740865, - 2740871, - 2740880, - 2740885, - 2740890, - 2741232, - 2741251, - 2741276, - 2741283, - 2741288, - 2741291, - 2741296, - 2741297, - 2741302, - 2741304, - 2741310, - 2741317, - 2741324, - 2741329, - 2741334, - 2741343, - 2741348, - 2741353, - 2741358, - 2741365, - 2741370, - 2741379, - 2741390, - 2741395, - 2741402, - 2741415, - 2741420, - 2741433, - 2741440, - 2741441, - 2741450, - 2741457, - 2741466, - 2741469, - 2741476, - 2741477, - 2741482, - 2741483, - 2741488, - 2741491, - 2741781, - 2741788, - 2768048, - 2773389, - 2773483, - 2773489, - 2773542, - 2773603, - 2773667, - 2773711, - 2773768, - 2773829, - 2773860, - 2773893, - 2773974, - 2773979, - 2774034, - 2774039, - 2774042, - 2774049, - 2774164, - 2774203, - 2774237, - 2774298, - 2774306, - 2774395, - 2774458, - 2774547, - 2774570, - 2774575, - 2774619, - 2774653, - 2774658, - 2774757, - 2774808, - 2774815, - 2774884, - 2774979, - 2775036, - 2775041, - 2775077, - 2779913, - 2779914, - 2780079, - 2780134, - 2780141, - 2780142, - 2780147, - 2780296, - 2780333, - 2780346, - 2780405, - 2780407, - 2780524, - 2780569, - 2780655, - 2780680, - 2780705, - 2780754, - 2780771, - 2780774, - 2780873, - 2780924, - 2780931, - 2781000, - 2781019, - 2781098, - 2781161, - 2781166, - 2781203, - 2781206, - 2781211, - 2781212, - 2781431, - 2781434, - 2781439, - 2781440, - 2781445, - 2781596, - 2788080, - 2788083, - 2788436, - 2788437, - 2798773, - 2798774, - 2811650, - 2811651, - 2811655, - 2811656, - 2811660, - 2811661, - 2811665, - 2812102, - 2812106, - 2812107, - 2812111, - 2812112, - 2812116, - 2812175, - 2812179, - 2812614, - 2812618, - 2812627, - 2812633, - 2812638, - 2812642, - 2812645, - 2812649, - 2813062, - 2813066, - 2813069, - 2813073, - 2813080, - 2813084, - 2813085, - 2813089, - 2813090, - 2813094, - 2813095, - 2813099, - 2813100, - 2813536, - 2813537, - 2813579, - 2813606, - 2814027, - 2814036, - 2815382, - 2815389, - 2815395, - 2815402, - 2815406, - 2815409, - 2815415, - 2815684, - 2815810, - 2815811, - 2815819, - 2815826, - 2815830, - 2815831, - 2815837, - 2815838, - 2815842, - 2815843, - 2815847, - 2815850, - 2816256, - 2816257, - 2816261, - 2816264, - 2816268, - 2816329, - 2816333, - 2816424, - 2816428, - 2816745, - 2816757, - 2816762, - 2816768, - 2816769, - 2816777, - 2816914, - 2817156, - 2817157, - 2817184, - 2817187, - 2817191, - 2817590, - 2817594, - 2817595, - 2817599, - 2817629, - 2817666, - 2817667, - 2817671, - 2817758, - 2818062, - 2818071, - 2818077, - 2818082, - 2818086, - 2818091, - 2818095, - 2818339, - 2818456, - 2818461, - 2818465, - 2818466, - 2818470, - 2818479, - 2818483, - 2818488, - 2818492, - 2818493, - 2818499, - 2818500, - 2818882, - 2818883, - 2818887, - 2818890, - 2818954, - 2818955, - 2819360, - 2819365, - 2819493, - 2819708, - 2819712, - 2819717, - 2819721, - 2819722, - 2819734, - 2819735, - 2819739, - 2819744, - 2819748, - 2819751, - 2819755, - 2819942, - 2820132, - 2820133, - 2820137, - 2820200, - 2820204, - 2820205, - 2820287, - 2820288, - 2820292, - 2820567, - 2820571, - 2820587, - 2820592, - 2820597, - 2820601, - 2820829, - 2820938, - 2820943, - 2820947, - 2820948, - 2820952, - 2820961, - 2821470, - 2821741, - 2821745, - 2821746, - 2821750, - 2821767, - 2821771, - 2821776, - 2821902, - 2822107, - 2822111, - 2822116, - 2822120, - 2822129, - 2822133, - 2822134, - 2822138, - 2822139, - 2822149, - 2822150, - 2822154, - 2822485, - 2822489, - 2822490, - 2822494, - 2822495, - 2822563, - 2822564, - 2822568, - 2822641, - 2822889, - 2822890, - 2822894, - 2822903, - 2822915, - 2822920, - 2822924, - 2823128, - 2823251, - 2823252, - 2823262, - 2823263, - 2823267, - 2823594, - 2823598, - 2823599, - 2823603, - 2823668, - 2823672, - 2823673, - 2823745, - 2823978, - 2823982, - 2823983, - 2823987, - 2824004, - 2824008, - 2824013, - 2824123, - 2824300, - 2824308, - 2824309, - 2824313, - 2824324, - 2824328, - 2824331, - 2824335, - 2824336, - 2824340, - 2824347, - 2824351, - 2824638, - 2824642, - 2824643, - 2824647, - 2824648, - 2824716, - 2824717, - 2825036, - 2825299, - 2825323, - 2825326, - 2825623, - 2825688, - 2825692, - 2825693, - 2825757, - 2825758, - 2825964, - 2825965, - 2825969, - 2825983, - 2825992, - 2825999, - 2826003, - 2826248, - 2826256, - 2826257, - 2826261, - 2826266, - 2826278, - 2826279, - 2826285, - 2826286, - 2826290, - 2826291, - 2826295, - 2826431, - 2826562, - 2826563, - 2826567, - 2826570, - 2826638, - 2826639, - 2826643, - 2826702, - 2826706, - 2826891, - 2826895, - 2826896, - 2827153, - 2827158, - 2827195, - 2827434, - 2827781, - 2827782, - 2827786, - 2828005, - 2828031, - 2828032, - 2828036, - 2828037, - 2828051, - 2828268, - 2828272, - 2828273, - 2828277, - 2828282, - 2828350, - 2828351, - 2828355, - 2828408, - 2828562, - 2828563, - 2828567, - 2828570, - 2828596, - 2828597, - 2828601, - 2828602, - 2828606, - 2828805, - 2828809, - 2828814, - 2828818, - 2828819, - 2828835, - 2828838, - 2828842, - 2828843, - 2828847, - 2829050, - 2829054, - 2829055, - 2829059, - 2829060, - 2829137, - 2829227, - 2829322, - 2829325, - 2834609, - 2834610, - 2834702, - 2834703, - 2834707, - 2834712, - 2834716, - 2834717, - 2834721, - 2834722, - 2834726, - 2834727, - 2834731, - 2834820, - 2834824, - 2834825, - 2834829, - 2834908, - 2834912, - 2834913, - 2834917, - 2834998, - 2835004, - 2835007, - 2835015, - 2835016, - 2835022, - 2835023, - 2835029, - 2835032, - 2835038, - 2835039, - 2835119, - 2835120, - 2835124, - 2835129, - 2835133, - 2835134, - 2835595, - 2835676, - 2835771, - 2835776, - 2835970, - 2836051, - 2836158, - 2836241, - 2836631, - 2836632, - 2836636, - 2836639, - 2836643, - 2836644, - 2836652, - 2836653, - 2836657, - 2836662, - 2836750, - 2836751, - 2836755, - 2836756, - 2836760, - 2836843, - 2836847, - 2836848, - 2836852, - 2836939, - 2836943, - 2836944, - 2836948, - 2836957, - 2836963, - 2836964, - 2836968, - 2836969, - 2836973, - 2837056, - 2837064, - 2837065, - 2837071, - 2837072, - 2837076, - 2837081, - 2837085, - 2837086, - 2837275, - 2837362, - 2837366, - 2837375, - 2837379, - 2837382, - 2837386, - 2837387, - 2837391, - 2837392, - 2837474, - 2837483, - 2837487, - 2837488, - 2837494, - 2837495, - 2837499, - 2837504, - 2837508, - 2837513, - 2837517, - 2837518, - 2837605, - 2837607, - 2837613, - 2837676, - 2837700, - 2837701, - 2837707, - 2837790, - 2837794, - 2837795, - 2837807, - 2837808, - 2837814, - 2837815, - 2837819, - 2837820, - 2837911, - 2837914, - 2838196, - 2838197, - 2838201, - 2838210, - 2838214, - 2838217, - 2838221, - 2838222, - 2838226, - 2838301, - 2838305, - 2838306, - 2838320, - 2838321, - 2838327, - 2838328, - 2838336, - 2838337, - 2838341, - 2838348, - 2838352, - 2838353, - 2838357, - 2838443, - 2838530, - 2838531, - 2838535, - 2838540, - 2838558, - 2838625, - 2838629, - 2838638, - 2838642, - 2838645, - 2838649, - 2838650, - 2838654, - 2838729, - 2838748, - 2838751, - 2839035, - 2839044, - 2839048, - 2839051, - 2839055, - 2839056, - 2839060, - 2839061, - 2839065, - 2839138, - 2839142, - 2839143, - 2839159, - 2839162, - 2839166, - 2839171, - 2839175, - 2839176, - 2839188, - 2839189, - 2839193, - 2839194, - 2839198, - 2839283, - 2839369, - 2839370, - 2839374, - 2839459, - 2839463, - 2839472, - 2839476, - 2839479, - 2839483, - 2839484, - 2839488, - 2839489, - 2839562, - 2839564, - 2839587, - 2839588, - 2839872, - 2839881, - 2839974, - 2839991, - 2840281, - 2840287, - 2840294, - 2840296, - 2840301, - 2840304, - 2840308, - 2840309, - 2840313, - 2840382, - 2840386, - 2840389, - 2840393, - 2840394, - 2840414, - 2840415, - 2840419, - 2840426, - 2840430, - 2840431, - 2840435, - 2840448, - 2840452, - 2840455, - 2840541, - 2840624, - 2840628, - 2840629, - 2840635, - 2840716, - 2840724, - 2840729, - 2840735, - 2840736, - 2840742, - 2840743, - 2840747, - 2840748, - 2840873, - 2840874, - 2840880, - 2840931, - 2840967, - 2841050, - 2841054, - 2841057, - 2841061, - 2841146, - 2841154, - 2841157, - 2841161, - 2841164, - 2841168, - 2841169, - 2841173, - 2841240, - 2841244, - 2841245, - 2841253, - 2841254, - 2841258, - 2841268, - 2841281, - 2841288, - 2841292, - 2841293, - 2841299, - 2841312, - 2841316, - 2841319, - 2841323, - 2841443, - 2841488, - 2841489, - 2841493, - 2841496, - 2841588, - 2841589, - 2841593, - 2841642, - 2841646, - 2841647, - 2841655, - 2841656, - 2841660, - 2841679, - 2841689, - 2841690, - 2841694, - 2841695, - 2841701, - 2841714, - 2841718, - 2841721, - 2841779, - 2841862, - 2841866, - 2841867, - 2841871, - 2841894, - 2841928, - 2841929, - 2841933, - 2841946, - 2841950, - 2841951, - 2841959, - 2841960, - 2841986, - 2841993, - 2841997, - 2841998, - 2842006, - 2842007, - 2842040, - 2842041, - 2842059, - 2842060, - 2842298, - 2842313, - 2842317, - 2842318, - 2842344, - 2842345, - 2842349, - 2842434, - 2842440, - 2842455, - 2842477, - 2842478, - 2842482, - 2842497, - 2842501, - 2842502, - 2842506, - 2842507, - 2842511, - 2842530, - 2842534, - 2842535, - 2842543, - 2842544, - 2842548, - 2842549, - 2842553, - 2842554, - 2842558, - 2842592, - 2842605, - 2842606, - 2842610, - 2842631, - 2842635, - 2842718, - 2842722, - 2842725, - 2842776, - 2842777, - 2842864, - 2842885, - 2842889, - 2842890, - 2842958, - 2842960, - 2842965, - 2842985, - 2842994, - 2842995, - 2843015, - 2843016, - 2843020, - 2843021, - 2843025, - 2843026, - 2843048, - 2843049, - 2843053, - 2843054, - 2843064, - 2843065, - 2843069, - 2843070, - 2843076, - 2843077, - 2843081, - 2843082, - 2843126, - 2843147, - 2843151, - 2843152, - 2843220, - 2843221, - 2843227, - 2843240, - 2843256, - 2843257, - 2843282, - 2843283, - 2843322, - 2843325, - 2843329, - 2843330, - 2843334, - 2843375, - 2843399, - 2843400, - 2843404, - 2843469, - 2843475, - 2843488, - 2843504, - 2843505, - 2843509, - 2843526, - 2843530, - 2843531, - 2843537, - 2843538, - 2843542, - 2843561, - 2843565, - 2843566, - 2843572, - 2843579, - 2843583, - 2843584, - 2843588, - 2843593, - 2843597, - 2843598, - 2843602, - 2843643, - 2843647, - 2843668, - 2843672, - 2843679, - 2843731, - 2843732, - 2843736, - 2843751, - 2843755, - 2843758, - 2843762, - 2843769, - 2843773, - 2843774, - 2843782, - 2843783, - 2843787, - 2843788, - 2843792, - 2843833, - 2843857, - 2843858, - 2843862, - 2843869, - 2843873, - 2843874, - 2843896, - 2843897, - 2843901, - 2843918, - 2843922, - 2843923, - 2843927, - 2843932, - 2843936, - 2843951, - 2843955, - 2843956, - 2843960, - 2843969, - 2843973, - 2843974, - 2843987, - 2843990, - 2844081, - 2844082, - 2844100, - 2844101, - 2844105, - 2844106, - 2844114, - 2844115, - 2844131, - 2844132, - 2844136, - 2844139, - 2844149, - 2844150, - 2844154, - 2844159, - 2844163, - 2844164, - 2844170, - 2844171, - 2844211, - 2844225, - 2844232, - 2844233, - 2844243, - 2844244, - 2844248, - 2844249, - 2844253, - 2844270, - 2844274, - 2844289, - 2844293, - 2844294, - 2844298, - 2844303, - 2844307, - 2844320, - 2844337, - 2844338, - 2844403, - 2844410, - 2844414, - 2844415, - 2844419, - 2844420, - 2844440, - 2844441, - 2844455, - 2844456, - 2844460, - 2844461, - 2844469, - 2844470, - 2844486, - 2844487, - 2844491, - 2844492, - 2844496, - 2844507, - 2844511, - 2844512, - 2844520, - 2844521, - 2844525, - 2844530, - 2844534, - 2844561, - 2844565, - 2844582, - 2844586, - 2844591, - 2844595, - 2844596, - 2844600, - 2844615, - 2844619, - 2844628, - 2844641, - 2844652, - 2844767, - 2844776, - 2844780, - 2844781, - 2844785, - 2844792, - 2844796, - 2844807, - 2844811, - 2844812, - 2844816, - 2844819, - 2844833, - 2844834, - 2844838, - 2844845, - 2844849, - 2844850, - 2844860, - 2844887, - 2844891, - 2844894, - 2844898, - 2844915, - 2844919, - 2844922, - 2844926, - 2844927, - 2844931, - 2844946, - 2844950, - 2844959, - 2844963, - 2844964, - 2844974, - 2844975, - 2844989, - 2844990, - 2845001, - 2845012, - 2845016, - 2845023, - 2845123, - 2845124, - 2845134, - 2845135, - 2845149, - 2845150, - 2845154, - 2845155, - 2845159, - 2845164, - 2845178, - 2845179, - 2845183, - 2845184, - 2845194, - 2845195, - 2845205, - 2845206, - 2845210, - 2845235, - 2845251, - 2845252, - 2845256, - 2845265, - 2845269, - 2845270, - 2845288, - 2845289, - 2845293, - 2845304, - 2845308, - 2845309, - 2845319, - 2845320, - 2845334, - 2845335, - 2845339, - 2845340, - 2845470, - 2845471, - 2845502, - 2845503, - 2845523, - 2845524, - 2845528, - 2845535, - 2845541, - 2845548, - 2845552, - 2845569, - 2845579, - 2845580, - 2845584, - 2845597, - 2845601, - 2845612, - 2845616, - 2845629, - 2845633, - 2845634, - 2845650, - 2845651, - 2845655, - 2845662, - 2845666, - 2845667, - 2845671, - 2845684, - 2845688, - 2845691, - 2845695, - 2845696, - 2845700, - 2845717, - 2845721, - 2845722, - 2845734, - 2845741, - 2845772, - 2845785, - 2845900, - 2845907, - 2845911, - 2845912, - 2845916, - 2845937, - 2845941, - 2845952, - 2845956, - 2845957, - 2845961, - 2845984, - 2845988, - 2845989, - 2845993, - 2845994, - 2846012, - 2846013, - 2846017, - 2846026, - 2846030, - 2846031, - 2846045, - 2846048, - 2846052, - 2846053, - 2846058, - 2846074, - 2846078, - 2846081, - 2846085, - 2846094, - 2846104, - 2846105, - 2846109, - 2846110, - 2846130, - 2846131, - 2846148, - 2846169, - 2846173, - 2846174, - 2846301, - 2846302, - 2846306, - 2846329, - 2846333, - 2846334, - 2846338, - 2846339, - 2846343, - 2846358, - 2846362, - 2846373, - 2846377, - 2846388, - 2846392, - 2846393, - 2846401, - 2846402, - 2846406, - 2846423, - 2846427, - 2846428, - 2846444, - 2846451, - 2846455, - 2846457, - 2846462, - 2846475, - 2846479, - 2846482, - 2846494, - 2846495, - 2846501, - 2846522, - 2846526, - 2846527, - 2846531, - 2846532, - 2846692, - 2846693, - 2846697, - 2846698, - 2846702, - 2846715, - 2846719, - 2846720, - 2846724, - 2846737, - 2846741, - 2846742, - 2846756, - 2846761, - 2846765, - 2846766, - 2846788, - 2846789, - 2846793, - 2846808, - 2846812, - 2846813, - 2846825, - 2846828, - 2846844, - 2846845, - 2846849, - 2846854, - 2846858, - 2846865, - 2846873, - 2846896, - 2846900, - 2846901, - 2846905, - 2846906, - 2846922, - 2846923, - 2847032, - 2847037, - 2847041, - 2847042, - 2847056, - 2847077, - 2847081, - 2847082, - 2847086, - 2847087, - 2847091, - 2847102, - 2847106, - 2847113, - 2847123, - 2847124, - 2847130, - 2847131, - 2847135, - 2847150, - 2847154, - 2847155, - 2847159, - 2847180, - 2847184, - 2847185, - 2847189, - 2847210, - 2847218, - 2847226, - 2847235, - 2847240, - 2847244, - 2847245, - 2847249, - 2847278, - 2847284, - 2847285, - 2847349, - 2847369, - 2847374, - 2847375, - 2847395, - 2847404, - 2847408, - 2847421, - 2847425, - 2847430, - 2847434, - 2847435, - 2847439, - 2847470, - 2847474, - 2847475, - 2847479, - 2847480, - 2847484, - 2847495, - 2847499, - 2847500, - 2847515, - 2847519, - 2847523, - 2847524, - 2847528, - 2847543, - 2847549, - 2847550, - 2847554, - 2847557, - 2847579, - 2847580, - 2847584, - 2847599, - 2847611, - 2847612, - 2847635, - 2847658, - 2847670, - 2847671, - 2847835, - 2847836, - 2847840, - 2847841, - 2847845, - 2847846, - 2847860, - 2847861, - 2847865, - 2847879, - 2847884, - 2847885, - 2847889, - 2847908, - 2847912, - 2847913, - 2847917, - 2847918, - 2847942, - 2847943, - 2847947, - 2847970, - 2847974, - 2847985, - 2847989, - 2847990, - 2847994, - 2848003, - 2848007, - 2848008, - 2848044, - 2848045, - 2848049, - 2848050, - 2848054, - 2848055, - 2848069, - 2848070, - 2848093, - 2848111, - 2848116, - 2848127, - 2848283, - 2848284, - 2848288, - 2848289, - 2848313, - 2848314, - 2848318, - 2848327, - 2848331, - 2848358, - 2848362, - 2848363, - 2848367, - 2848378, - 2848382, - 2848383, - 2848387, - 2848388, - 2848424, - 2848425, - 2848429, - 2848440, - 2848444, - 2848445, - 2848449, - 2848450, - 2848454, - 2848471, - 2848475, - 2848476, - 2848500, - 2848501, - 2848505, - 2848506, - 2848530, - 2848531, - 2848535, - 2848544, - 2848593, - 2848594, - 2848598, - 2848599, - 2848631, - 2848632, - 2848636, - 2848647, - 2848651, - 2848652, - 2848656, - 2848657, - 2848661, - 2848678, - 2848682, - 2848683, - 2848707, - 2848708, - 2848712, - 2848713, - 2848737, - 2848738, - 2848746, - 2848751, - 2848755, - 2848756, - 2848760, - 2848787, - 2848791, - 2848794, - 2848798, - 2848809, - 2848813, - 2848814, - 2848818, - 2848847, - 2848851, - 2848852, - 2848893, - 2848894, - 2848918, - 2848919, - 2848923, - 2848924, - 2848946, - 2848947, - 2848959, - 2848960, - 2848964, - 2848965, - 2848992, - 2848994, - 2848998, - 2849001, - 2849015, - 2849016, - 2849020, - 2849021, - 2849051, - 2849052, - 2849056, - 2849057, - 2849071, - 2849072, - 2849076, - 2849079, - 2849083, - 2849101, - 2849106, - 2849107, - 2849131, - 2849132, - 2849136, - 2849137, - 2849159, - 2849160, - 2849207, - 2849210, - 2849224, - 2849225, - 2849229, - 2849252, - 2849260, - 2849261, - 2849265, - 2849276, - 2849280, - 2849283, - 2849287, - 2849288, - 2849292, - 2849309, - 2849313, - 2849334, - 2849338, - 2849339, - 2849343, - 2849360, - 2849364, - 2849369, - 2849375, - 2849376, - 2849382, - 2849383, - 2849387, - 2849412, - 2849416, - 2849419, - 2849433, - 2849434, - 2849438, - 2849439, - 2849463, - 2849464, - 2849507, - 2849508, - 2849532, - 2849533, - 2849537, - 2849554, - 2849558, - 2849564, - 2849569, - 2849570, - 2849576, - 2849577, - 2849605, - 2849606, - 2849610, - 2849613, - 2849627, - 2849628, - 2849632, - 2849633, - 2849657, - 2849658, - 2849662, - 2849663, - 2849667, - 2849680, - 2849686, - 2849687, - 2849693, - 2849710, - 2849714, - 2849715, - 2849719, - 2849740, - 2849744, - 2849745, - 2849763, - 2849764, - 2849774, - 2849775, - 2849859, - 2849860, - 2849865, - 2849866, - 2849871, - 2849884, - 2849889, - 2849890, - 2849897, - 2849914, - 2849919, - 2849920, - 2849945, - 2849946, - 2849951, - 2849966, - 2850104, - 2850117, - 2850122, - 2850125, - 2850146, - 2850147, - 2850152, - 2850173, - 2850178, - 2850179, - 2850184, - 2850197, - 2850204, - 2850209, - 2850216, - 2850219, - 2850226, - 2850227, - 2850256, - 2850257, - 2850262, - 2850267, - 2850282, - 2850287, - 2850292, - 2850306, - 2850314, - 2850315, - 2850322, - 2850323, - 2850330, - 2850341, - 2850346, - 2850349, - 2850370, - 2850371, - 2850376, - 2850377, - 2850593, - 2850594, - 2850595, - 2850598, - 2850615, - 2850616, - 2850714, - 2850717, - 2850744, - 2850747, - 2850974, - 2850977, - 2850982, - 2850983, - 2850990, - 2850991, - 2851078, - 2851093, - 2851152, - 2851158, - 2851166, - 2851181, - 2851188, - 2851193, - 2851198, - 2851216, - 2851226, - 2851241, - 2851248, - 2851259, - 2851264, - 2851271, - 2851280, - 2851287, - 2851292, - 2851317, - 2851438, - 2851455, - 2851462, - 2851467, - 2851476, - 2851489, - 2851494, - 2851499, - 2851506, - 2851521, - 2851532, - 2851545, - 2851552, - 2851560, - 2851568, - 2851575, - 2851584, - 2851591, - 2851596, - 2851617, - 2851626, - 2851629, - 2851644, - 2851662, - 2851674, - 2851681, - 2851702, - 2851707, - 2851718, - 2851723, - 2851734, - 2851751, - 2851758, - 2851765, - 2851772, - 2851785, - 2851792, - 2851797, - 2851884, - 2851889, - 2851900, - 2851903, - 2852271, - 2852274, - 2852387, - 2852397, - 2852419, - 2852428, - 2852435, - 2852451, - 2852457, - 2852460, - 2852471, - 2852485, - 2852495, - 2852513, - 2852521, - 2852534, - 2852539, - 2852550, - 2852557, - 2852563, - 2852678, - 2852695, - 2852706, - 2852713, - 2852732, - 2852734, - 2852748, - 2852762, - 2852778, - 2852783, - 2852802, - 2852805, - 2852812, - 2852819, - 2852832, - 2852839, - 2852858, - 2852860, - 2852870, - 2852881, - 2852894, - 2852899, - 2852908, - 2852914, - 2852924, - 2852938, - 2852952, - 2852961, - 2852976, - 2852995, - 2853000, - 2853028, - 2853046, - 2853051, - 2853072, - 2853075, - 2853088, - 2853107, - 2853237, - 2853248, - 2853257, - 2853261, - 2853520, - 2853690, - 2853701, - 2853810, - 2853817, - 2853836, - 2853842, - 2853858, - 2853876, - 2853888, - 2853901, - 2853912, - 2853919, - 2853930, - 2853945, - 2853950, - 2853961, - 2854116, - 2854135, - 2854152, - 2854164, - 2854182, - 2854201, - 2854206, - 2854219, - 2854244, - 2854250, - 2854266, - 2854289, - 2854296, - 2854313, - 2854318, - 2854325, - 2854336, - 2854349, - 2854358, - 2854364, - 2854382, - 2854387, - 2854400, - 2854422, - 2854432, - 2854441, - 2854452, - 2854468, - 2854478, - 2854497, - 2854502, - 2854516, - 2854538, - 2854550, - 2854576, - 2854581, - 2854600, - 2854613, - 2854732, - 2854733, - 2854750, - 2854754, - 2855219, - 2855232, - 2855369, - 2855384, - 2855391, - 2855418, - 2855427, - 2855451, - 2855459, - 2855479, - 2855491, - 2855514, - 2855529, - 2855544, - 2855549, - 2855567, - 2855680, - 2855681, - 2855700, - 2855704, - 2855734, - 2855749, - 2855756, - 2855772, - 2855794, - 2855815, - 2855832, - 2855837, - 2855868, - 2855873, - 2855900, - 2855905, - 2855922, - 2855937, - 2855964, - 2855975, - 2855982, - 2855995, - 2856000, - 2856031, - 2856046, - 2856057, - 2856062, - 2856081, - 2856092, - 2856104, - 2856128, - 2856129, - 2856148, - 2856153, - 2856194, - 2856199, - 2856204, - 2856220, - 2856435, - 2856450, - 2856455, - 2856457, - 2856766, - 2856881, - 2856906, - 2856998, - 2857210, - 2857229, - 2857394, - 2857397, - 2857426, - 2857441, - 2857460, - 2857463, - 2857490, - 2857505, - 2857515, - 2857527, - 2857540, - 2857557, - 2857570, - 2857585, - 2857804, - 2857809, - 2857842, - 2857873, - 2857884, - 2857896, - 2857924, - 2857939, - 2857968, - 2857979, - 2857990, - 2858015, - 2858020, - 2858038, - 2858056, - 2858065, - 2858070, - 2858105, - 2858112, - 2858137, - 2858144, - 2858156, - 2858170, - 2858213, - 2858228, - 2858247, - 2858254, - 2858281, - 2858286, - 2858312, - 2858334, - 2858337, - 2858376, - 2858401, - 2858414, - 2858436, - 2858454, - 2858485, - 2858602, - 2858619, - 2858642, - 2858669, - 2859321, - 2859334, - 2859501, - 2859524, - 2859537, - 2859572, - 2859579, - 2859606, - 2859629, - 2859644, - 2859653, - 2859678, - 2859685, - 2859708, - 2859721, - 2859731, - 2859902, - 2859915, - 2859940, - 2859971, - 2859976, - 2859995, - 2860026, - 2860033, - 2860038, - 2860075, - 2860108, - 2860141, - 2860146, - 2860173, - 2860178, - 2860209, - 2860218, - 2860243, - 2860248, - 2860273, - 2860278, - 2860289, - 2860304, - 2860332, - 2860350, - 2860367, - 2860386, - 2860395, - 2860424, - 2860425, - 2860470, - 2860483, - 2860510, - 2860539, - 2860546, - 2860563, - 2860594, - 2860601, - 2861011, - 2861012, - 2861065, - 2861066, - 2861452, - 2861765, - 2861798, - 2861969, - 2861974, - 2862173, - 2862214, - 2862219, - 2862252, - 2862273, - 2862289, - 2862310, - 2862327, - 2862339, - 2862365, - 2862399, - 2862430, - 2862437, - 2862460, - 2862465, - 2862496, - 2862509, - 2862530, - 2862535, - 2862562, - 2862571, - 2862585, - 2862591, - 2862620, - 2862651, - 2862662, - 2862677, - 2862696, - 2862708, - 2862730, - 2862737, - 2862778, - 2862801, - 2862830, - 2862851, - 2862854, - 2862885, - 2862896, - 2863059, - 2863070, - 2863093, - 2863098, - 2863808, - 2863831, - 2864069, - 2864080, - 2864135, - 2864162, - 2864167, - 2864185, - 2864195, - 2864224, - 2864241, - 2864242, - 2864263, - 2864268, - 2864308, - 2864312, - 2864345, - 2864352, - 2864357, - 2864384, - 2864409, - 2864429, - 2864461, - 2864466, - 2864473, - 2864510, - 2864535, - 2864564, - 2864578, - 2864592, - 2864621, - 2864628, - 2864643, - 2864692, - 2864697, - 2864720, - 2864729, - 2864746, - 2864777, - 2864790, - 2865198, - 2865201, - 2865216, - 2865261, - 2865288, - 2865289, - 2865314, - 2865328, - 2865346, - 2865359, - 2865364, - 2865377, - 2865394, - 2865432, - 2865440, - 2865471, - 2865482, - 2865511, - 2865516, - 2865544, - 2865562, - 2865595, - 2865602, - 2865625, - 2865650, - 2865672, - 2865678, - 2865718, - 2865733, - 2865757, - 2865768, - 2865781, - 2865786, - 2865843, - 2865858, - 2865875, - 2865884, - 2865911, - 2866577, - 2866608, - 2866617, - 2866642, - 2866647, - 2866688, - 2866697, - 2866724, - 2866737, - 2866774, - 2866797, - 2866802, - 2866833, - 2866854, - 2866859, - 2866888, - 2866893, - 2866906, - 2866947, - 2866968, - 2866973, - 2866992, - 2866997, - 2867026, - 2867039, - 2867044, - 2867053, - 2867074, - 2867081, - 2867115, - 2867151, - 2867160, - 2867189, - 2867190, - 2867197, - 2867217, - 2867269, - 2867278, - 2867518, - 2867520, - 2867542, - 2867565, - 2867928, - 2868050, - 2868330, - 2868335, - 2868492, - 2868519, - 2868542, - 2868548, - 2868578, - 2868589, - 2868602, - 2868637, - 2868648, - 2868664, - 2868872, - 2868897, - 2868904, - 2868908, - 2868914, - 2868951, - 2868984, - 2868995, - 2869044, - 2869055, - 2869060, - 2869101, - 2869108, - 2869134, - 2869142, - 2869156, - 2869164, - 2869211, - 2869222, - 2869241, - 2869264, - 2869279, - 2869290, - 2869299, - 2869304, - 2869346, - 2869368, - 2869375, - 2869406, - 2869421, - 2869446, - 2869453, - 2869522, - 2869577, - 2869592, - 2869623, - 2869640, - 2869667, - 2869824, - 2869833, - 2869844, - 2869871, - 2870524, - 2870538, - 2870670, - 2870721, - 2870738, - 2870767, - 2870785, - 2870806, - 2870828, - 2870835, - 2870840, - 2870883, - 2870989, - 2871031, - 2871057, - 2871082, - 2871087, - 2871106, - 2871131, - 2871134, - 2871145, - 2871204, - 2871209, - 2871214, - 2871219, - 2871268, - 2871285, - 2871302, - 2871327, - 2871346, - 2871355, - 2871372, - 2871383, - 2871416, - 2871429, - 2871433, - 2871457, - 2871458, - 2871481, - 2871508, - 2871515, - 2871523, - 2871557, - 2871584, - 2871597, - 2871622, - 2871643, - 2871655, - 2871671, - 2871673, - 2871745, - 2871750, - 2871755, - 2871800, - 2871805, - 2871830, - 2871855, - 2871874, - 2871881, - 2871898, - 2871909, - 2871926, - 2871957, - 2871960, - 2871983, - 2871984, - 2872031, - 2872036, - 2872047, - 2872078, - 2872109, - 2872118, - 2872123, - 2872156, - 2872191, - 2872192, - 2872199, - 2872208, - 2872267, - 2872272, - 2872321, - 2872322, - 2872351, - 2872354, - 2872381, - 2872397, - 2872419, - 2872426, - 2873031, - 2873070, - 2873079, - 2873086, - 2873095, - 2873131, - 2873470, - 2873898, - 2873913, - 2874024, - 2874053, - 2874060, - 2874084, - 2874100, - 2874124, - 2874148, - 2874157, - 2874168, - 2874197, - 2874609, - 2874629, - 2875065, - 2875078, - 2875210, - 2875221, - 2875237, - 2875242, - 2875279, - 2875288, - 2875295, - 2875326, - 2875351, - 2875386, - 2875623, - 2875630, - 2875653, - 2875663, - 2875681, - 2875700, - 2875709, - 2875724, - 2875749, - 2875770, - 2875787, - 2875796, - 2875801, - 2875836, - 2875845, - 2875854, - 2875879, - 2875899, - 2875935, - 2875956, - 2875963, - 2875986, - 2876003, - 2876026, - 2876031, - 2876042, - 2876049, - 2876107, - 2876131, - 2876161, - 2876167, - 2876194, - 2876213, - 2876225, - 2876241, - 2876256, - 2876281, - 2876302, - 2876333, - 2876368, - 2876373, - 2876382, - 2876391, - 2876430, - 2876437, - 2876478, - 2876497, - 2876518, - 2876535, - 2876558, - 2876569, - 2876574, - 2876619, - 2876658, - 2876663, - 2876693, - 2876699, - 2876726, - 2876745, - 2876764, - 2876785, - 2876787, - 2876827, - 2876830, - 2876849, - 2876856, - 2876861, - 2876894, - 2876901, - 2876927, - 2876935, - 2876968, - 2876989, - 2877015, - 2877035, - 2877048, - 2877229, - 2877238, - 2877255, - 2877266, - 2877293, - 2877296, - 2877875, - 2878068, - 2878083, - 2878272, - 2878283, - 2878288, - 2878303, - 2878322, - 2878339, - 2878344, - 2878379, - 2878388, - 2878405, - 2878888, - 2879036, - 2879071, - 2879080, - 2879111, - 2879116, - 2879152, - 2879166, - 2879167, - 2879188, - 2879228, - 2879240, - 2879273, - 2879280, - 2879319, - 2879342, - 2879365, - 2879380, - 2879393, - 2879404, - 2879435, - 2879440, - 2879477, - 2879488, - 2879504, - 2879512, - 2879541, - 2879564, - 2879575, - 2879592, - 2879612, - 2879628, - 2879657, - 2879692, - 2879703, - 2879708, - 2879725, - 2879764, - 2879775, - 2880167, - 2880194, - 2880229, - 2880240, - 2880636, - 2881169, - 2881191, - 2881351, - 2881367, - 2881547, - 2881576, - 2881705, - 2881718, - 2881723, - 2881755, - 2881787, - 2881792, - 2881810, - 2881828, - 2881849, - 2881871, - 2882111, - 2882140, - 2882157, - 2882174, - 2882181, - 2882201, - 2882237, - 2882264, - 2882269, - 2882282, - 2882317, - 2882342, - 2882349, - 2882367, - 2882381, - 2882392, - 2882413, - 2882436, - 2882445, - 2882471, - 2882487, - 2882488, - 2882517, - 2882560, - 2882580, - 2882607, - 2882639, - 2882654, - 2882659, - 2882694, - 2882707, - 2882724, - 2882747, - 2882750, - 2882785, - 2882812, - 2882817, - 2882830, - 2883264, - 2883278, - 2883284, - 2883310, - 2883324, - 2883355, - 2883360, - 2883397, - 2883402, - 2883433, - 2883438, - 2883461, - 2883472, - 2883498, - 2883506, - 2883526, - 2883554, - 2883563, - 2883568, - 2883593, - 2883610, - 2883611, - 2883642, - 2883681, - 2883720, - 2883731, - 2883760, - 2883775, - 2883780, - 2883818, - 2883824, - 2883841, - 2883846, - 2883867, - 2883898, - 2883919, - 2883936, - 2883937, - 2884092, - 2884099, - 2884126, - 2884139, - 2884809, - 2884827, - 2884973, - 2885002, - 2885028, - 2885041, - 2885046, - 2885076, - 2885100, - 2885133, - 2885138, - 2885159, - 2885423, - 2885438, - 2885445, - 2885490, - 2885495, - 2885514, - 2885541, - 2885560, - 2885579, - 2885607, - 2885618, - 2885648, - 2885704, - 2885725, - 2885730, - 2885751, - 2885774, - 2885779, - 2885806, - 2885823, - 2885828, - 2885835, - 2885868, - 2885910, - 2885958, - 2885959, - 2886004, - 2886006, - 2886014, - 2886059, - 2886066, - 2886083, - 2886110, - 2886138, - 2886148, - 2886166, - 2886167, - 2886210, - 2886213, - 2886374, - 2886391, - 2886400, - 2886403, - 2886975, - 2886982, - 2886987, - 2887046, - 2887055, - 2887096, - 2887129, - 2887139, - 2887147, - 2887152, - 2887197, - 2887215, - 2887221, - 2887243, - 2887275, - 2887290, - 2887309, - 2887312, - 2887337, - 2887340, - 2887347, - 2887396, - 2887411, - 2887420, - 2887439, - 2887457, - 2887475, - 2887499, - 2887505, - 2887526, - 2887531, - 2887584, - 2887589, - 2887632, - 2887638, - 2887673, - 2887681, - 2887686, - 2887823, - 2887838, - 2888129, - 2888170, - 2888391, - 2888412, - 2888497, - 2888502, - 2888529, - 2888552, - 2888559, - 2888582, - 2888599, - 2888607, - 2888613, - 2888658, - 2888699, - 2888730, - 2888737, - 2888740, - 2888753, - 2888800, - 2888805, - 2888820, - 2888841, - 2888871, - 2888877, - 2888894, - 2888905, - 2888924, - 2888932, - 2888963, - 2888987, - 2889010, - 2889015, - 2889038, - 2889065, - 2889077, - 2889093, - 2889108, - 2889119, - 2889155, - 2889195, - 2889196, - 2889307, - 2889330, - 2889403, - 2889410, - 2889791, - 2889815, - 2889845, - 2889852, - 2889873, - 2889884, - 2889919, - 2889920, - 2889963, - 2890006, - 2890013, - 2890042, - 2890047, - 2890071, - 2890079, - 2890102, - 2890131, - 2890146, - 2890159, - 2890176, - 2890189, - 2890193, - 2890235, - 2890272, - 2890279, - 2890309, - 2890319, - 2890334, - 2890339, - 2890387, - 2890399, - 2890422, - 2890429, - 2890447, - 2890467, - 2890486, - 2890499, - 2890520, - 2890525, - 2890566, - 2890585, - 2890606, - 2890617, - 2890640, - 2890645, - 2890672, - 2890853, - 2890860, - 2890865, - 2890920, - 2890927, - 2890934, - 2890962, - 2890966, - 2891001, - 2891004, - 2891023, - 2891034, - 2891055, - 2891080, - 2891109, - 2891110, - 2891125, - 2891152, - 2891167, - 2891194, - 2891199, - 2891213, - 2891237, - 2891252, - 2891257, - 2891290, - 2891327, - 2891354, - 2891363, - 2891370, - 2891387, - 2891426, - 2891433, - 2891440, - 2891467, - 2891470, - 2891503, - 2891506, - 2897408, - 2906289, - 2906430, - 2906444, - 2906445, - 2917122, - 2917133, - 2917136, - 2917140, - 2917145, - 2917149, - 2917152, - 2917156, - 2917159, - 2917163, - 2917166, - 2917170, - 2917173, - 2917179, - 2917182, - 2917398, - 2917441, - 2917501, - 2917504, - 2917508, - 2917516, - 2917577, - 2917578, - 2917582, - 2917589, - 2917593, - 2917635, - 2917672, - 2917675, - 2917679, - 2917682, - 2917686, - 2917691, - 2917695, - 2917698, - 2917702, - 2917707, - 2917711, - 2917714 - ] - }, - "uniswap-v3-core_d8b1c63": { - "timeMs": 24517.55241703987, - "failures": [ - 14, - 554, - 1100, - 1102, - 1104, - 1106, - 1108, - 1118, - 1120, - 1122, - 1124, - 1126, - 1128, - 1159, - 1163, - 1167, - 1204, - 1212, - 1491, - 1498, - 1604, - 1883, - 1888, - 2008, - 2013, - 2071, - 2073, - 2075, - 2097, - 2099, - 2101, - 2103, - 2105, - 2107, - 2111, - 2121, - 2123, - 2432, - 2466, - 3679, - 3681, - 3871, - 3873, - 4077, - 4078, - 4101, - 4102, - 4125, - 4126, - 4149, - 4150, - 4168, - 4171, - 4172, - 4173, - 4176, - 4188, - 4208, - 4213, - 4216, - 4219, - 4222, - 4228, - 4253, - 4254, - 8436, - 8451, - 8452, - 8467, - 8468, - 8580, - 8695, - 8849, - 8898, - 8931, - 8964, - 8999, - 9052, - 9059, - 9066, - 9108, - 10672, - 11771, - 11772, - 11811, - 12449, - 12456, - 12630, - 12633, - 12636, - 12656, - 12659, - 12662, - 12980, - 12983, - 13098, - 13101, - 13136, - 13139, - 13519, - 13605, - 13623, - 13624, - 13625, - 13626, - 13627, - 13628, - 13872, - 13900, - 13928, - 13956, - 13984, - 14012, - 14040, - 14724, - 14765, - 14849, - 14890, - 14974, - 15015, - 15099, - 15140, - 15739, - 15753, - 16312, - 16326, - 16885, - 16899, - 17152, - 17200, - 17350, - 17432, - 17651, - 17699, - 17917, - 17931, - 18617, - 18637, - 19390, - 19416, - 19989, - 20003, - 20562, - 20576, - 21135, - 21149, - 21402, - 21450, - 21600, - 21682, - 21903, - 21951, - 22169, - 22183, - 22776, - 22790, - 22907, - 22955, - 23003, - 23051, - 23099, - 23147, - 23161, - 23243, - 23326, - 23374, - 23422, - 23470, - 23518, - 23566, - 23648, - 23662 - ] - } -} diff --git a/crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz b/crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz deleted file mode 100644 index 7f90f89e3b..0000000000 Binary files a/crates/tools/scenarios/synthetix_9a3a109f.jsonl.gz and /dev/null differ diff --git a/crates/tools/scenarios/uniswap-v3-core_d8b1c63.jsonl.gz b/crates/tools/scenarios/uniswap-v3-core_d8b1c63.jsonl.gz deleted file mode 100644 index 85aecdedaf..0000000000 Binary files a/crates/tools/scenarios/uniswap-v3-core_d8b1c63.jsonl.gz and /dev/null differ diff --git a/crates/tools/src/benchmark.rs b/crates/tools/src/benchmark.rs deleted file mode 100644 index 8ec8b7848b..0000000000 --- a/crates/tools/src/benchmark.rs +++ /dev/null @@ -1,60 +0,0 @@ -use std::{io::Write, path::PathBuf}; - -/// Run a command iterations times and print the time it takes to run each time. -pub(crate) fn run( - working_directory: PathBuf, - test_command: &str, - iterations: usize, -) -> anyhow::Result<()> { - let mut deltas = Vec::new(); - - // Run test command in working directory iterations times and capture the time - // it takes to run - for i in 1..(iterations + 1) { - println!("Running {i}/{iterations} `{test_command}`"); - let start = std::time::Instant::now(); - let output = if cfg!(target_os = "windows") { - std::process::Command::new("cmd") - .args(["/C", test_command]) - .current_dir(&working_directory) - .output()? - } else { - std::process::Command::new("sh") - .arg("-c") - .arg(test_command) - .current_dir(&working_directory) - .output()? - }; - let end = std::time::Instant::now(); - - let delta = (end - start).as_secs(); - if !output.status.success() { - let mut stdout = std::io::stdout(); - stdout.write_all(&output.stdout)?; - stdout.flush()?; - let mut stderr = std::io::stderr(); - stderr.write_all(&output.stderr)?; - stderr.flush()?; - - println!("Interim benchmark results (seconds): {deltas:?}"); - - anyhow::bail!( - "Command `{}` failed in {} seconds with exit code {}", - test_command, - delta, - output - .status - .code() - .map_or_else(|| "N/A".to_string(), |c| c.to_string()) - ); - } - - println!("Command `{test_command}` succeeded in {delta} seconds"); - - deltas.push(delta); - } - - println!("Benchmark results (seconds): {deltas:?}"); - - Ok(()) -} diff --git a/crates/tools/src/compare_test_runs.rs b/crates/tools/src/compare_test_runs.rs deleted file mode 100644 index 1828bf2ca7..0000000000 --- a/crates/tools/src/compare_test_runs.rs +++ /dev/null @@ -1,72 +0,0 @@ -use std::{collections::BTreeMap, path::Path}; -#[derive(Debug, PartialEq, Eq, serde::Deserialize)] -#[serde(rename_all = "camelCase")] -struct TestRun { - title: String, - full_title: String, - file: String, - duration: Option, - current_retry: u32, - speed: Option, - err: serde_json::Value, -} -#[derive(Debug, PartialEq, Eq, serde::Deserialize)] -struct TestRuns { - tests: Vec, -} -#[derive(Debug)] -struct Diff { - test_title: String, - absolute_diff: u32, - increase_percent: f64, -} -pub(crate) fn compare(baseline: &Path, candidate: &Path) -> anyhow::Result<()> { - let baseline_runs = read_test_runs(baseline)?; - let candidate_runs = read_test_runs(candidate)?; - let mut diffs = Vec::new(); - for (key, candidate_run) in candidate_runs.iter() { - if let Some(baseline_run) = baseline_runs.get(key) { - match (baseline_run.duration, candidate_run.duration) { - (Some(base_duration), Some(candidate_duration)) => { - if base_duration < candidate_duration { - let absolute_diff = candidate_duration - base_duration; - let increase_percent = if base_duration == 0 { - 100.0 - } else { - f64::from(candidate_duration) / f64::from(base_duration) * 100.0 - 100.0 - }; - diffs.push(Diff { - test_title: candidate_run.title.clone(), - absolute_diff, - increase_percent, - }); - } - } - (Some(_), None) => println!("No candidate duration for `{key}`"), - (None, Some(_)) => println!("No baseline duration for `{key}`"), - (None, None) => {} - } - } else { - println!("`{}` is a new test", candidate_run.title); - } - } - - diffs.sort_by(|a, b| b.absolute_diff.cmp(&a.absolute_diff)); - for diff in &diffs { - println!( - "`{}` is slower than baseline. Absolute diff: {} ms. Increase: {:.2} %", - diff.test_title, diff.absolute_diff, diff.increase_percent - ); - } - - Ok(()) -} -fn read_test_runs(json_path: &Path) -> anyhow::Result> { - let runs: TestRuns = serde_json::from_reader(std::fs::File::open(json_path)?)?; - let result = runs - .tests - .into_iter() - .map(|run| (run.full_title.clone(), run)) - .collect(); - Ok(result) -} diff --git a/crates/tools/src/execution_api.rs b/crates/tools/src/execution_api.rs deleted file mode 100644 index b9f2e30b3c..0000000000 --- a/crates/tools/src/execution_api.rs +++ /dev/null @@ -1,96 +0,0 @@ -use std::{ - fs::File, - io::Write, - path::Path, - process::{Command, Stdio}, -}; - -use anyhow::{anyhow, bail}; -use cfg_if::cfg_if; - -use crate::update::{project_root, Mode}; - -const EXECUTION_API_DIR: &str = "crates/eth_execution_api"; -const EXECUTION_API_RAW_REPO: &str = "https://raw.githubusercontent.com/ethereum/execution-apis"; - -fn get_version(crate_path: &Path) -> anyhow::Result { - let crate_manifest_path = crate_path.join("Cargo.toml"); - - let contents = std::fs::read_to_string(Path::new(&crate_manifest_path))?; - let crate_manifest: toml::Value = toml::from_str(&contents)?; - - let package = crate_manifest - .get("package") - .ok_or_else(|| anyhow!("Cargo.toml does not contain `package` section."))?; - - let version = package - .get("version") - .ok_or_else(|| anyhow!("Cargo.toml does not contain `version` under `package` section."))?; - - version - .as_str() - .map(ToOwned::to_owned) - .ok_or_else(|| anyhow!("Expected `version` to be a string value.")) -} - -fn get_openrpc_json(version: &str) -> anyhow::Result { - let url = format!("{EXECUTION_API_RAW_REPO}/v{version}/refs-openrpc.json"); - - reqwest::blocking::get(url) - .map_err(|e| { - anyhow!( - "Failed to retrieve `openrpc.json` for version: {} due to error: `{}`.", - version, - e.to_string() - ) - })? - .text() - .map_err(|e| { - anyhow!( - "Failed to convert retrieved `openrpc.json` to UTF-8, due to: {}.", - e - ) - }) -} - -pub fn generate(_mode: Mode) -> anyhow::Result<()> { - let crate_path = project_root().join(EXECUTION_API_DIR); - let version = get_version(&crate_path)?; - let openrpc_json = get_openrpc_json(&version)?; - - cfg_if! { - if #[cfg(windows)] { - let program = "npx.cmd"; - } else { - let program = "npx"; - } - }; - - let tempdir = tempfile::tempdir()?; - let tempfile_path = tempdir.path().join("openrpc.json"); - - { - let mut tempfile = File::create(&tempfile_path)?; - tempfile.write_all(openrpc_json.as_bytes())?; - } - - let src_path = crate_path.join("src"); - let mut command = Command::new(program) - .stdin(Stdio::piped()) - .stdout(Stdio::piped()) - .arg("open-rpc-typings") - .arg("-d") - .arg(tempfile_path.to_str().unwrap()) - .arg("--output-rs") - .arg(src_path.to_str().unwrap()) - .arg("--name-rs") - .arg("lib") - .spawn()?; - - let status = command.wait()?; - if status.success() { - Ok(()) - } else { - bail!("Failed to generate execution api, due to: {}", status) - } -} diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs deleted file mode 100644 index 0cf70e374a..0000000000 --- a/crates/tools/src/main.rs +++ /dev/null @@ -1,89 +0,0 @@ -use std::path::PathBuf; - -use clap::{Parser, Subcommand}; - -mod benchmark; -mod compare_test_runs; -mod execution_api; -mod remote_block; -mod scenario; -mod update; - -use update::Mode; - -// Matches `edr_napi`. Important for scenarios. -#[global_allocator] -static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc; - -#[derive(Parser)] -#[clap(name = "tasks", version, author)] -struct Args { - #[clap(subcommand)] - command: Command, -} - -#[derive(Subcommand)] -enum Command { - /// Run benchmarks - Benchmark { - working_directory: PathBuf, - #[clap(long, short, default_value = "npx hardhat test")] - test_command: String, - /// The number of iterations to run - #[clap(long, short, default_value = "3")] - iterations: usize, - }, - /// Compare JSON format test execution outputs for slower tests. Pass the - /// --reporter json argument to mocha to generate the input files. - CompareTestRuns { - /// The path to the baseline test run - baseline: PathBuf, - /// The path to the candidate test run - candidate: PathBuf, - }, - /// Generate Ethereum execution API - GenExecutionApi, - /// Replays a block from a remote node and compares it to the mined block. - ReplayBlock { - /// The URL of the remote node - #[clap(long, short)] - url: String, - /// The block number to replay - #[clap(long, short)] - block_number: Option, - /// The chain ID - #[clap(long, short)] - chain_id: u64, - }, - /// Execute a benchmark scenario and report statistics - Scenario { - /// The path to the scenario file (JSON lines or GZipped JSON lines) - path: PathBuf, - /// The maximum number of requests to execute. - #[clap(long, short)] - count: Option, - }, -} - -#[tokio::main] -async fn main() -> anyhow::Result<()> { - let args = Args::parse(); - match args.command { - Command::CompareTestRuns { - baseline, - candidate, - } => compare_test_runs::compare(&baseline, &candidate), - Command::Benchmark { - working_directory, - test_command, - iterations, - } => benchmark::run(working_directory, &test_command, iterations), - Command::GenExecutionApi => execution_api::generate(Mode::Overwrite), - Command::ReplayBlock { - url, - block_number, - chain_id, - } => remote_block::replay(url, block_number, chain_id).await, - Command::Scenario { path, count } => scenario::execute(&path, count).await, - } -} diff --git a/crates/tools/src/remote_block.rs b/crates/tools/src/remote_block.rs deleted file mode 100644 index 1c2bbc57cd..0000000000 --- a/crates/tools/src/remote_block.rs +++ /dev/null @@ -1,18 +0,0 @@ -use edr_eth::remote::RpcClient; -use edr_provider::test_utils::run_full_block; - -pub async fn replay(url: String, block_number: Option, chain_id: u64) -> anyhow::Result<()> { - let rpc_client = RpcClient::new(&url, edr_defaults::CACHE_DIR.into(), None)?; - - let block_number = if let Some(block_number) = block_number { - block_number - } else { - rpc_client - .block_number() - .await - .map(|block_number| block_number - 20)? - }; - - println!("Testing block {block_number}"); - run_full_block(url, block_number, chain_id).await -} diff --git a/crates/tools/src/scenario.rs b/crates/tools/src/scenario.rs deleted file mode 100644 index 95b6c2e19c..0000000000 --- a/crates/tools/src/scenario.rs +++ /dev/null @@ -1,188 +0,0 @@ -use std::{ - convert::Infallible, - path::{Path, PathBuf}, - sync::Arc, - time::Instant, -}; - -use anyhow::Context; -use edr_eth::remote::jsonrpc; -use edr_evm::blockchain::BlockchainError; -use edr_provider::{Logger, ProviderError, ProviderRequest}; -use flate2::bufread::GzDecoder; -use indicatif::ProgressBar; -use serde::Deserialize; -use tokio::{runtime, task}; -#[cfg(feature = "tracing")] -use tracing_subscriber::{prelude::*, Registry}; - -#[derive(Clone, Debug, Deserialize)] -struct ScenarioConfig { - provider_config: edr_provider::ProviderConfig, - logger_enabled: bool, -} - -pub async fn execute(scenario_path: &Path, max_count: Option) -> anyhow::Result<()> { - let (config, requests) = load_requests(scenario_path).await?; - - if config.logger_enabled { - anyhow::bail!("This scenario expects logging, but logging is not yet implemented") - } - - let logger = Box::::default(); - let subscription_callback = Box::new(|_| ()); - - #[cfg(feature = "tracing")] - let _flame_guard = { - let (flame_layer, guard) = tracing_flame::FlameLayer::with_file("tracing.folded").unwrap(); - - let flame_layer = flame_layer.with_empty_samples(false); - let subscriber = Registry::default().with(flame_layer); - - tracing::subscriber::set_global_default(subscriber) - .expect("Could not set global default tracing subscriber"); - - guard - }; - - println!("Executing requests"); - - let start = Instant::now(); - // Matches how `edr_napi` constructs and invokes the provider. - let provider = task::spawn_blocking(move || { - edr_provider::Provider::new( - runtime::Handle::current(), - logger, - subscription_callback, - config.provider_config, - ) - }) - .await??; - let provider = Arc::new(provider); - - let count = max_count.unwrap_or(requests.len()); - let bar = ProgressBar::new(count as u64); - let mut success: usize = 0; - let mut failure: usize = 0; - for (i, request) in requests.into_iter().enumerate() { - if let Some(max_count) = max_count { - if i >= max_count { - break; - } - } - let p = provider.clone(); - let response = task::spawn_blocking(move || p.handle_request(request)) - .await? - .map(|r| r.result); - let response = jsonrpc::ResponseData::from(response); - match response { - jsonrpc::ResponseData::Success { .. } => success += 1, - jsonrpc::ResponseData::Error { .. } => failure += 1, - } - if i % 100 == 0 { - bar.inc(100); - } else if i == count - 1 { - bar.inc((count % 100) as u64); - } - } - bar.finish(); - - let elapsed = start.elapsed(); - - println!( - "Total time: {}s, Success: {}, Failure: {}", - elapsed.as_secs(), - success, - failure - ); - - Ok(()) -} - -async fn load_requests( - scenario_path: &Path, -) -> anyhow::Result<(ScenarioConfig, Vec)> { - println!("Loading requests from {scenario_path:?}"); - - match load_gzipped_json(scenario_path.to_path_buf()).await { - Ok(result) => Ok(result), - Err(err) if err.to_string().contains("gzip") => load_json(scenario_path).await, - err => err, - } -} - -async fn load_gzipped_json( - scenario_path: PathBuf, -) -> anyhow::Result<(ScenarioConfig, Vec)> { - use std::{ - fs::File, - io::{BufRead, BufReader}, - }; - - runtime::Handle::current() - .spawn_blocking(move || { - let reader = BufReader::new(File::open(scenario_path)?); - let decoder = BufReader::new(GzDecoder::new(reader)); - - let mut lines = decoder.lines(); - - let first_line = lines - .next() - .context("Scenario file is empty")? - .context("Invalid gzip")?; - let config: ScenarioConfig = serde_json::from_str(&first_line)?; - - let mut requests: Vec = Vec::new(); - - for gzipped_line in lines { - let line = gzipped_line.context("Invalid gzip")?; - let request: ProviderRequest = serde_json::from_str(&line)?; - requests.push(request); - } - - Ok((config, requests)) - }) - .await? -} - -async fn load_json(scenario_path: &Path) -> anyhow::Result<(ScenarioConfig, Vec)> { - use tokio::io::AsyncBufReadExt; - - let reader = tokio::io::BufReader::new(tokio::fs::File::open(scenario_path).await?); - let mut lines = reader.lines(); - - let first_line = lines.next_line().await?.context("Scenario file is empty")?; - let config: ScenarioConfig = serde_json::from_str(&first_line)?; - - let mut requests: Vec = Vec::new(); - - while let Some(line) = lines.next_line().await? { - let request: ProviderRequest = serde_json::from_str(&line)?; - requests.push(request); - } - - Ok((config, requests)) -} - -#[derive(Clone, Default)] -struct DisabledLogger; - -impl Logger for DisabledLogger { - type BlockchainError = BlockchainError; - - type LoggerError = Infallible; - - fn is_enabled(&self) -> bool { - false - } - - fn set_is_enabled(&mut self, _is_enabled: bool) {} - - fn print_method_logs( - &mut self, - _method: &str, - _error: Option<&ProviderError>, - ) -> Result<(), Infallible> { - Ok(()) - } -} diff --git a/crates/tools/src/update.rs b/crates/tools/src/update.rs deleted file mode 100644 index 68df33eeee..0000000000 --- a/crates/tools/src/update.rs +++ /dev/null @@ -1,54 +0,0 @@ -use std::{ - fs, - io::Write, - path::{Path, PathBuf}, - process::{Command, Stdio}, -}; - -use anyhow::bail; - -#[derive(Clone, Copy, PartialEq, Eq)] -pub enum Mode { - Overwrite, - #[allow(unused)] - Verify, -} - -#[allow(unused)] -pub fn update(path: &Path, contents: &str, mode: Mode) -> anyhow::Result<()> { - let old_contents = fs::read_to_string(path)?; - let old_contents = old_contents.replace("\r\n", "\n"); - let contents = contents.replace("\r\n", "\n"); - if old_contents == contents { - return Ok(()); - } - - if mode == Mode::Verify { - let changes = difference::Changeset::new(&old_contents, &contents, "\n"); - bail!("`{}` is not up-to-date:\n{}", path.display(), changes,); - } - eprintln!("updating {}", path.display()); - fs::write(path, contents)?; - Ok(()) -} - -#[allow(unused)] -pub fn reformat(text: impl std::fmt::Display) -> anyhow::Result { - let mut rustfmt = Command::new("rustfmt") - .stdin(Stdio::piped()) - .stdout(Stdio::piped()) - .spawn()?; - write!(rustfmt.stdin.take().unwrap(), "{text}")?; - let output = rustfmt.wait_with_output()?; - let stdout = String::from_utf8(output.stdout)?; - let preamble = "Generated file, do not edit by hand, see `crates/tools`"; - Ok(format!("//! {preamble}\n\n{stdout}")) -} - -pub fn project_root() -> PathBuf { - Path::new(&env!("CARGO_MANIFEST_DIR")) - .ancestors() - .nth(2) - .unwrap() - .to_path_buf() -} diff --git a/package.json b/package.json index f2b3544882..ba750b37d2 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,6 @@ "typescript": "~5.0.0" }, "scripts": { - "prebuild": "cd crates/edr_napi && pnpm build", "postbuild": "cp packages/hardhat-core/src/internal/solidity/compiler/solcjs-runner.js packages/hardhat-core/internal/solidity/compiler/solcjs-runner.js", "build": "tsc --build packages/hardhat-core packages/hardhat-ethers packages/hardhat-verify packages/hardhat-solhint packages/hardhat-solpp packages/hardhat-truffle4 packages/hardhat-truffle5 packages/hardhat-vyper packages/hardhat-web3 packages/hardhat-web3-v4 packages/hardhat-web3-legacy packages/hardhat-chai-matchers packages/hardhat-network-helpers packages/hardhat-toolbox packages/hardhat-foundry packages/hardhat-ledger packages/hardhat-viem packages/hardhat-toolbox-viem", "watch": "tsc --build --watch packages/hardhat-core/src packages/hardhat-ethers packages/hardhat-verify packages/hardhat-solhint packages/hardhat-solpp packages/hardhat-truffle4 packages/hardhat-truffle5 packages/hardhat-vyper packages/hardhat-web3 packages/hardhat-web3-v4 packages/hardhat-web3-legacy packages/hardhat-chai-matchers packages/hardhat-network-helpers packages/hardhat-toolbox packages/hardhat-foundry packages/hardhat-ledger packages/hardhat-viem packages/hardhat-toolbox-viem", diff --git a/packages/hardhat-chai-matchers/package.json b/packages/hardhat-chai-matchers/package.json index 5d88fafab5..6397d86210 100644 --- a/packages/hardhat-chai-matchers/package.json +++ b/packages/hardhat-chai-matchers/package.json @@ -22,7 +22,6 @@ "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", "test:ci": "pnpm test && node scripts/check-subpath-exports.js", - "prebuild": "cd ../../crates/edr_napi && pnpm build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo" diff --git a/packages/hardhat-core/package.json b/packages/hardhat-core/package.json index 5daeeeee8a..7fd9601bb2 100644 --- a/packages/hardhat-core/package.json +++ b/packages/hardhat-core/package.json @@ -33,13 +33,7 @@ "test:except-tracing": "mocha --recursive \"test/**/*.ts\" --exclude \"test/internal/hardhat-network/stack-traces/**/*.ts\"", "test:provider": "mocha --recursive \"test/internal/hardhat-network/provider/**/*.ts\"", "test:tracing": "mocha --recursive \"test/internal/hardhat-network/stack-traces/**/*.ts\"", - "pretest:provider": "cd ../../crates/edr_napi && pnpm build", - "pretest:except-provider": "cd ../../crates/edr_napi && pnpm build", - "pretest:tracing": "cd ../../crates/edr_napi && pnpm build", - "pretest:except-tracing": "cd ../../crates/edr_napi && pnpm build", - "prebuild": "cd ../../crates/edr_napi && pnpm build", "postbuild": "cp src/internal/solidity/compiler/solcjs-runner.js internal/solidity/compiler/solcjs-runner.js", - "prebuild:tracing": "cd ../../crates/edr_napi && pnpm build:tracing", "build": "tsc --build --force --incremental .", "build:tracing": "tsc --build --force --incremental .", "prepublishOnly": "pnpm build", diff --git a/packages/hardhat-core/src/internal/hardhat-network/provider/MiningTimer.ts b/packages/hardhat-core/src/internal/hardhat-network/provider/MiningTimer.ts deleted file mode 100644 index 1d7ed0f926..0000000000 --- a/packages/hardhat-core/src/internal/hardhat-network/provider/MiningTimer.ts +++ /dev/null @@ -1,118 +0,0 @@ -import { IntervalMiningConfig } from "./node-types"; - -enum MiningTimerState { - STOP, - RUNNING, -} - -/* eslint-disable @nomicfoundation/hardhat-internal-rules/only-hardhat-error */ - -/** - * Timer used to periodically call the given mining function. - * - * `_blockTime` can be a number or a pair of numbers (of milliseconds). If it - * is a number, it will call the given function repeatedly every `_blockTime` - * milliseconds. If it is a pair of numbers, then after each call it will - * randomly choose how much to wait until the next call. - * - * `_mineFunction` is the function to call. It can be async, and it is assumed - * that it will never throw. - */ -export class MiningTimer { - private _state = MiningTimerState.STOP; - private _timeout: NodeJS.Timeout | null = null; - - constructor( - private _blockTime: IntervalMiningConfig, - private readonly _mineFunction: () => Promise - ) { - this._validateBlockTime(_blockTime); - } - - public getBlockTime(): IntervalMiningConfig { - return this._blockTime; - } - - public enabled(): boolean { - return this._blockTime !== 0; - } - - public setBlockTime(blockTime: IntervalMiningConfig): void { - this._validateBlockTime(blockTime); - - if (blockTime === 0) { - this.stop(); - return; - } - - this._blockTime = blockTime; - - if (this._state === MiningTimerState.RUNNING) { - this.stop(); - } - - this.start(); - } - - public start(): void { - if (this._state === MiningTimerState.RUNNING || !this.enabled()) { - return; - } - - const blockTime = this._getNextBlockTime(); - - this._state = MiningTimerState.RUNNING; - this._timeout = setTimeout(() => this._loop(), blockTime); - } - - public stop(): void { - if (this._state === MiningTimerState.STOP) { - return; - } - - this._state = MiningTimerState.STOP; - - if (this._timeout !== null) { - clearTimeout(this._timeout); - } - } - - private _validateBlockTime(blockTime: IntervalMiningConfig) { - if (Array.isArray(blockTime)) { - const [rangeStart, rangeEnd] = blockTime; - if (rangeEnd < rangeStart) { - throw new Error("Invalid block time range"); - } - } else { - if (blockTime < 0) { - throw new Error("Block time cannot be negative"); - } - } - } - - private async _loop() { - if (this._state === MiningTimerState.STOP) { - return; - } - - await this._mineFunction(); - - const blockTime = this._getNextBlockTime(); - - this._timeout = setTimeout(() => { - this._loop(); // eslint-disable-line @typescript-eslint/no-floating-promises - }, blockTime); - } - - private _getNextBlockTime(): number { - if (Array.isArray(this._blockTime)) { - const [minBlockTime, maxBlockTime] = this._blockTime; - - return ( - minBlockTime + Math.floor(Math.random() * (maxBlockTime - minBlockTime)) - ); - } - - return this._blockTime; - } -} diff --git a/packages/hardhat-core/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts b/packages/hardhat-core/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts deleted file mode 100644 index 640f620deb..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { RpcDebugTraceOutput } from "../../src/internal/hardhat-network/provider/output"; - -export const trace: RpcDebugTraceOutput = { - gas: 21012, - failed: false, - returnValue: "", - structLogs: [ - { - pc: 0, - op: "PUSH0", - gas: 5979000, - gasCost: 2, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 1, - op: "PUSH0", - gas: 5978998, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "MSTORE", - gas: 5978996, - gasCost: 6, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 3, - op: "PUSH0", - gas: 5978990, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts b/packages/hardhat-core/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts deleted file mode 100644 index 2e9e4803ec..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts +++ /dev/null @@ -1,282245 +0,0 @@ -// This trace belongs to the tx 0xe0b1f8e11eb822107ddc35ce2d944147cc043acf680c39332ee95dd6508d107e -// from mainnet. -// It was generated using ArchiveNode. -// Unlike the other traces, it's casted to any to avoid a "TS2590: Expression -// produces a union type that is too complex to represent." error -export const trace: any = JSON.parse(` -{ - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 153867, - "gasCost": 3, - "depth": 1, - "stack": [], - "memory": [], - "storage": {} - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 153864, - "gasCost": 3, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 153861, - "gasCost": 12, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 153849, - "gasCost": 3, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 153846, - "gasCost": 2, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 8, - "op": "LT", - "gas": 153844, - "gasCost": 3, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 153841, - "gasCost": 3, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 153838, - "gasCost": 10, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 153828, - "gasCost": 3, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 153825, - "gasCost": 3, - "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16, - "op": "PUSH1", - "gas": 153822, - "gasCost": 3, - "depth": 1, - "stack": [ - "5ae401dc00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 18, - "op": "SHR", - "gas": 153819, - "gasCost": 3, - "depth": 1, - "stack": [ - "5ae401dc00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 19, - "op": "DUP1", - "gas": 153816, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20, - "op": "PUSH4", - "gas": 153813, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 25, - "op": "GT", - "gas": 153810, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000009b2c0a37" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 26, - "op": "PUSH2", - "gas": 153807, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 29, - "op": "JUMPI", - "gas": 153804, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000016e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 366, - "op": "JUMPDEST", - "gas": 153794, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 367, - "op": "DUP1", - "gas": 153793, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 368, - "op": "PUSH4", - "gas": 153790, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 373, - "op": "GT", - "gas": 153787, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 374, - "op": "PUSH2", - "gas": 153784, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 377, - "op": "JUMPI", - "gas": 153781, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000021c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 378, - "op": "DUP1", - "gas": 153771, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 379, - "op": "PUSH4", - "gas": 153768, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 384, - "op": "GT", - "gas": 153765, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000571ac8b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 385, - "op": "PUSH2", - "gas": 153762, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 388, - "op": "JUMPI", - "gas": 153759, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 389, - "op": "DUP1", - "gas": 153749, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 390, - "op": "PUSH4", - "gas": 153746, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 395, - "op": "GT", - "gas": 153743, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000639d71a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 153740, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 153737, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 437, - "op": "JUMPDEST", - "gas": 153727, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 438, - "op": "DUP1", - "gas": 153726, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 439, - "op": "PUSH4", - "gas": 153723, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 444, - "op": "EQ", - "gas": 153720, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000571ac8b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 445, - "op": "PUSH2", - "gas": 153717, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 448, - "op": "JUMPI", - "gas": 153714, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000492" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 449, - "op": "DUP1", - "gas": 153704, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 450, - "op": "PUSH4", - "gas": 153701, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 455, - "op": "EQ", - "gas": 153698, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 456, - "op": "PUSH2", - "gas": 153695, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 459, - "op": "JUMPI", - "gas": 153692, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004a5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1189, - "op": "JUMPDEST", - "gas": 153682, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1190, - "op": "PUSH2", - "gas": 153681, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1193, - "op": "PUSH2", - "gas": 153678, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1196, - "op": "CALLDATASIZE", - "gas": 153675, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1197, - "op": "PUSH1", - "gas": 153673, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1199, - "op": "PUSH2", - "gas": 153670, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1202, - "op": "JUMP", - "gas": 153667, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000052a7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21159, - "op": "JUMPDEST", - "gas": 153659, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21160, - "op": "PUSH1", - "gas": 153658, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21162, - "op": "DUP1", - "gas": 153655, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21163, - "op": "PUSH1", - "gas": 153652, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21165, - "op": "PUSH1", - "gas": 153649, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21167, - "op": "DUP5", - "gas": 153646, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21168, - "op": "DUP7", - "gas": 153643, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21169, - "op": "SUB", - "gas": 153640, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21170, - "op": "SLT", - "gas": 153637, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21171, - "op": "ISZERO", - "gas": 153634, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21172, - "op": "PUSH2", - "gas": 153631, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21175, - "op": "JUMPI", - "gas": 153628, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052bb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21179, - "op": "JUMPDEST", - "gas": 153618, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21180, - "op": "DUP4", - "gas": 153617, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21181, - "op": "CALLDATALOAD", - "gas": 153614, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21182, - "op": "SWAP3", - "gas": 153611, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21183, - "op": "POP", - "gas": 153608, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21184, - "op": "PUSH1", - "gas": 153606, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21186, - "op": "DUP5", - "gas": 153603, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21187, - "op": "ADD", - "gas": 153600, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21188, - "op": "CALLDATALOAD", - "gas": 153597, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21189, - "op": "PUSH8", - "gas": 153594, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21198, - "op": "DUP2", - "gas": 153591, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21199, - "op": "GT", - "gas": 153588, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21200, - "op": "ISZERO", - "gas": 153585, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21201, - "op": "PUSH2", - "gas": 153582, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21204, - "op": "JUMPI", - "gas": 153579, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052d8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21208, - "op": "JUMPDEST", - "gas": 153569, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21209, - "op": "PUSH2", - "gas": 153568, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21212, - "op": "DUP7", - "gas": 153565, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21213, - "op": "DUP3", - "gas": 153562, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21214, - "op": "DUP8", - "gas": 153559, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21215, - "op": "ADD", - "gas": 153556, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21216, - "op": "PUSH2", - "gas": 153553, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21219, - "op": "JUMP", - "gas": 153550, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000004e76" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20086, - "op": "JUMPDEST", - "gas": 153542, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20087, - "op": "PUSH1", - "gas": 153541, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20089, - "op": "DUP1", - "gas": 153538, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20090, - "op": "DUP4", - "gas": 153535, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20091, - "op": "PUSH1", - "gas": 153532, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20093, - "op": "DUP5", - "gas": 153529, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20094, - "op": "ADD", - "gas": 153526, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20095, - "op": "SLT", - "gas": 153523, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000063" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20096, - "op": "PUSH2", - "gas": 153520, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20099, - "op": "JUMPI", - "gas": 153517, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e87" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20103, - "op": "JUMPDEST", - "gas": 153507, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20104, - "op": "POP", - "gas": 153506, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20105, - "op": "DUP2", - "gas": 153504, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20106, - "op": "CALLDATALOAD", - "gas": 153501, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20107, - "op": "PUSH8", - "gas": 153498, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20116, - "op": "DUP2", - "gas": 153495, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20117, - "op": "GT", - "gas": 153492, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20118, - "op": "ISZERO", - "gas": 153489, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20119, - "op": "PUSH2", - "gas": 153486, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20122, - "op": "JUMPI", - "gas": 153483, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e9e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20126, - "op": "JUMPDEST", - "gas": 153473, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20127, - "op": "PUSH1", - "gas": 153472, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20129, - "op": "DUP4", - "gas": 153469, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20130, - "op": "ADD", - "gas": 153466, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20131, - "op": "SWAP2", - "gas": 153463, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20132, - "op": "POP", - "gas": 153460, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20133, - "op": "DUP4", - "gas": 153458, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20134, - "op": "PUSH1", - "gas": 153455, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20136, - "op": "DUP1", - "gas": 153452, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20137, - "op": "DUP4", - "gas": 153449, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20138, - "op": "MUL", - "gas": 153446, - "gasCost": 5, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20139, - "op": "DUP6", - "gas": 153441, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20140, - "op": "ADD", - "gas": 153438, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20141, - "op": "ADD", - "gas": 153435, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20142, - "op": "GT", - "gas": 153432, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20143, - "op": "ISZERO", - "gas": 153429, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20144, - "op": "PUSH2", - "gas": 153426, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20147, - "op": "JUMPI", - "gas": 153423, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 153413, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 153412, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16290, - "op": "POP", - "gas": 153409, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 153407, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 153404, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000052e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16293, - "op": "POP", - "gas": 153401, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 153399, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21220, - "op": "JUMPDEST", - "gas": 153391, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21221, - "op": "SWAP5", - "gas": 153390, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21222, - "op": "SWAP8", - "gas": 153387, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21223, - "op": "SWAP1", - "gas": 153384, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000004b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21224, - "op": "SWAP7", - "gas": 153381, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21225, - "op": "POP", - "gas": 153378, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21226, - "op": "SWAP4", - "gas": 153376, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21227, - "op": "SWAP5", - "gas": 153373, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21228, - "op": "POP", - "gas": 153370, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21229, - "op": "POP", - "gas": 153368, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21230, - "op": "POP", - "gas": 153366, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21231, - "op": "POP", - "gas": 153364, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 21232, - "op": "JUMP", - "gas": 153362, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1203, - "op": "JUMPDEST", - "gas": 153354, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1204, - "op": "PUSH2", - "gas": 153353, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1207, - "op": "JUMP", - "gas": 153350, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000015bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5564, - "op": "JUMPDEST", - "gas": 153342, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5565, - "op": "PUSH1", - "gas": 153341, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5567, - "op": "DUP4", - "gas": 153338, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5568, - "op": "DUP1", - "gas": 153335, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5569, - "op": "PUSH2", - "gas": 153332, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5572, - "op": "PUSH2", - "gas": 153329, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5575, - "op": "JUMP", - "gas": 153326, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8", - "00000000000000000000000000000000000000000000000000000000000033cc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13260, - "op": "JUMPDEST", - "gas": 153318, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13261, - "op": "TIMESTAMP", - "gas": 153317, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13262, - "op": "SWAP1", - "gas": 153315, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13263, - "op": "JUMP", - "gas": 153312, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000015c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5576, - "op": "JUMPDEST", - "gas": 153304, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5577, - "op": "GT", - "gas": 153303, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5578, - "op": "ISZERO", - "gas": 153300, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5579, - "op": "PUSH2", - "gas": 153297, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5582, - "op": "JUMPI", - "gas": 153294, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c33" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3123, - "op": "JUMPDEST", - "gas": 153284, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3124, - "op": "PUSH2", - "gas": 153283, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3127, - "op": "DUP5", - "gas": 153280, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3128, - "op": "DUP5", - "gas": 153277, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3129, - "op": "PUSH2", - "gas": 153274, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3132, - "op": "JUMP", - "gas": 153271, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000019ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6586, - "op": "JUMPDEST", - "gas": 153263, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6587, - "op": "PUSH1", - "gas": 153262, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6589, - "op": "DUP2", - "gas": 153259, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6590, - "op": "PUSH8", - "gas": 153256, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6599, - "op": "DUP2", - "gas": 153253, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6600, - "op": "GT", - "gas": 153250, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6601, - "op": "DUP1", - "gas": 153247, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6602, - "op": "ISZERO", - "gas": 153244, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6603, - "op": "PUSH2", - "gas": 153241, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6606, - "op": "JUMPI", - "gas": 153238, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000019d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6611, - "op": "JUMPDEST", - "gas": 153228, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6612, - "op": "POP", - "gas": 153227, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6613, - "op": "PUSH1", - "gas": 153225, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6615, - "op": "MLOAD", - "gas": 153222, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6616, - "op": "SWAP1", - "gas": 153219, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6617, - "op": "DUP1", - "gas": 153216, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6618, - "op": "DUP3", - "gas": 153213, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 6619, - "op": "MSTORE", - "gas": 153210, - "gasCost": 9, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6620, - "op": "DUP1", - "gas": 153201, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6621, - "op": "PUSH1", - "gas": 153198, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6623, - "op": "MUL", - "gas": 153195, - "gasCost": 5, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6624, - "op": "PUSH1", - "gas": 153190, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6626, - "op": "ADD", - "gas": 153187, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6627, - "op": "DUP3", - "gas": 153184, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6628, - "op": "ADD", - "gas": 153181, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6629, - "op": "PUSH1", - "gas": 153178, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6631, - "op": "MSTORE", - "gas": 153175, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6632, - "op": "DUP1", - "gas": 153172, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6633, - "op": "ISZERO", - "gas": 153169, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6634, - "op": "PUSH2", - "gas": 153166, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6637, - "op": "JUMPI", - "gas": 153163, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001a07" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6638, - "op": "DUP2", - "gas": 153153, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6639, - "op": "PUSH1", - "gas": 153150, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6641, - "op": "ADD", - "gas": 153147, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6642, - "op": "JUMPDEST", - "gas": 153144, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6643, - "op": "PUSH1", - "gas": 153143, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6645, - "op": "DUP2", - "gas": 153140, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} - }, - { - "pc": 6646, - "op": "MSTORE", - "gas": 153137, - "gasCost": 6, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6647, - "op": "PUSH1", - "gas": 153131, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6649, - "op": "ADD", - "gas": 153128, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6650, - "op": "SWAP1", - "gas": 153125, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6651, - "op": "PUSH1", - "gas": 153122, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6653, - "op": "SWAP1", - "gas": 153119, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6654, - "op": "SUB", - "gas": 153116, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6655, - "op": "SWAP1", - "gas": 153113, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6656, - "op": "DUP2", - "gas": 153110, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6657, - "op": "PUSH2", - "gas": 153107, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6660, - "op": "JUMPI", - "gas": 153104, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000019f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6661, - "op": "SWAP1", - "gas": 153094, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6662, - "op": "POP", - "gas": 153091, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6663, - "op": "JUMPDEST", - "gas": 153089, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6664, - "op": "POP", - "gas": 153088, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6665, - "op": "SWAP1", - "gas": 153086, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6666, - "op": "POP", - "gas": 153083, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6667, - "op": "PUSH1", - "gas": 153081, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6669, - "op": "JUMPDEST", - "gas": 153078, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6670, - "op": "DUP3", - "gas": 153077, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6671, - "op": "DUP2", - "gas": 153074, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6672, - "op": "LT", - "gas": 153071, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6673, - "op": "ISZERO", - "gas": 153068, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6674, - "op": "PUSH2", - "gas": 153065, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6677, - "op": "JUMPI", - "gas": 153062, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001b0d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6678, - "op": "PUSH1", - "gas": 153052, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6680, - "op": "DUP1", - "gas": 153049, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6681, - "op": "ADDRESS", - "gas": 153046, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6682, - "op": "DUP7", - "gas": 153044, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6683, - "op": "DUP7", - "gas": 153041, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6684, - "op": "DUP6", - "gas": 153038, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6685, - "op": "DUP2", - "gas": 153035, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6686, - "op": "DUP2", - "gas": 153032, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6687, - "op": "LT", - "gas": 153029, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6688, - "op": "PUSH2", - "gas": 153026, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6691, - "op": "JUMPI", - "gas": 153023, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001a25" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6693, - "op": "JUMPDEST", - "gas": 153013, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6694, - "op": "SWAP1", - "gas": 153012, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6695, - "op": "POP", - "gas": 153009, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6696, - "op": "PUSH1", - "gas": 153007, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6698, - "op": "MUL", - "gas": 153004, - "gasCost": 5, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6699, - "op": "DUP2", - "gas": 152999, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6700, - "op": "ADD", - "gas": 152996, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6701, - "op": "SWAP1", - "gas": 152993, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6702, - "op": "PUSH2", - "gas": 152990, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6705, - "op": "SWAP2", - "gas": 152987, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000001a37" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6706, - "op": "SWAP1", - "gas": 152984, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6707, - "op": "PUSH2", - "gas": 152981, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6710, - "op": "JUMP", - "gas": 152978, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000005e41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24129, - "op": "JUMPDEST", - "gas": 152970, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24130, - "op": "PUSH1", - "gas": 152969, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24132, - "op": "DUP1", - "gas": 152966, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24133, - "op": "DUP4", - "gas": 152963, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24134, - "op": "CALLDATALOAD", - "gas": 152960, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24135, - "op": "PUSH32", - "gas": 152957, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24168, - "op": "DUP5", - "gas": 152954, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24169, - "op": "CALLDATASIZE", - "gas": 152951, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24170, - "op": "SUB", - "gas": 152949, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24171, - "op": "ADD", - "gas": 152946, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24172, - "op": "DUP2", - "gas": 152943, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24173, - "op": "SLT", - "gas": 152940, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000121", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24174, - "op": "PUSH2", - "gas": 152937, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24177, - "op": "JUMPI", - "gas": 152934, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005e75" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24181, - "op": "JUMPDEST", - "gas": 152924, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24182, - "op": "DUP4", - "gas": 152923, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24183, - "op": "ADD", - "gas": 152920, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24184, - "op": "DUP1", - "gas": 152917, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24185, - "op": "CALLDATALOAD", - "gas": 152914, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24186, - "op": "SWAP2", - "gas": 152911, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24187, - "op": "POP", - "gas": 152908, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24188, - "op": "PUSH8", - "gas": 152906, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24197, - "op": "DUP3", - "gas": 152903, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24198, - "op": "GT", - "gas": 152900, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24199, - "op": "ISZERO", - "gas": 152897, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24200, - "op": "PUSH2", - "gas": 152894, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24203, - "op": "JUMPI", - "gas": 152891, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005e8f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24207, - "op": "JUMPDEST", - "gas": 152881, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24208, - "op": "PUSH1", - "gas": 152880, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24210, - "op": "ADD", - "gas": 152877, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24211, - "op": "SWAP2", - "gas": 152874, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24212, - "op": "POP", - "gas": 152871, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24213, - "op": "CALLDATASIZE", - "gas": 152869, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24214, - "op": "DUP2", - "gas": 152867, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24215, - "op": "SWAP1", - "gas": 152864, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24216, - "op": "SUB", - "gas": 152861, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24217, - "op": "DUP3", - "gas": 152858, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24218, - "op": "SGT", - "gas": 152855, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24219, - "op": "ISZERO", - "gas": 152852, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24220, - "op": "PUSH2", - "gas": 152849, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 24223, - "op": "JUMPI", - "gas": 152846, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 152836, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 152835, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16290, - "op": "POP", - "gas": 152832, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 152830, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 152827, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000001a37" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16293, - "op": "POP", - "gas": 152824, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 152822, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000001a37" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6711, - "op": "JUMPDEST", - "gas": 152814, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6712, - "op": "PUSH1", - "gas": 152813, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6714, - "op": "MLOAD", - "gas": 152810, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6715, - "op": "PUSH2", - "gas": 152807, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6718, - "op": "SWAP3", - "gas": 152804, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000001a45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6719, - "op": "SWAP2", - "gas": 152801, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6720, - "op": "SWAP1", - "gas": 152798, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6721, - "op": "PUSH2", - "gas": 152795, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 6724, - "op": "JUMP", - "gas": 152792, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005a10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23056, - "op": "JUMPDEST", - "gas": 152784, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23057, - "op": "PUSH1", - "gas": 152783, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23059, - "op": "DUP3", - "gas": 152780, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23060, - "op": "DUP5", - "gas": 152777, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23061, - "op": "DUP4", - "gas": 152774, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} - }, - { - "pc": 23062, - "op": "CALLDATACOPY", - "gas": 152771, - "gasCost": 51, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23063, - "op": "SWAP2", - "gas": 152720, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23064, - "op": "ADD", - "gas": 152717, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23065, - "op": "SWAP1", - "gas": 152714, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23066, - "op": "DUP2", - "gas": 152711, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23067, - "op": "MSTORE", - "gas": 152708, - "gasCost": 6, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23068, - "op": "SWAP2", - "gas": 152702, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23069, - "op": "SWAP1", - "gas": 152699, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000001a45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23070, - "op": "POP", - "gas": 152696, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 23071, - "op": "JUMP", - "gas": 152694, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000001a45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6725, - "op": "JUMPDEST", - "gas": 152686, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6726, - "op": "PUSH1", - "gas": 152685, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6728, - "op": "PUSH1", - "gas": 152682, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6730, - "op": "MLOAD", - "gas": 152679, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6731, - "op": "DUP1", - "gas": 152676, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6732, - "op": "DUP4", - "gas": 152673, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6733, - "op": "SUB", - "gas": 152670, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6734, - "op": "DUP2", - "gas": 152667, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6735, - "op": "DUP6", - "gas": 152664, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6736, - "op": "GAS", - "gas": 152661, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 6737, - "op": "DELEGATECALL", - "gas": 152659, - "gasCost": 150276, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000025453" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 150176, - "gasCost": 3, - "depth": 2, - "stack": [], - "memory": [], - "storage": {} - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 150173, - "gasCost": 3, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 150170, - "gasCost": 12, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 150158, - "gasCost": 3, - "depth": 2, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 150155, - "gasCost": 2, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 8, - "op": "LT", - "gas": 150153, - "gasCost": 3, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 150150, - "gasCost": 3, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 150147, - "gasCost": 10, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 150137, - "gasCost": 3, - "depth": 2, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 150134, - "gasCost": 3, - "depth": 2, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16, - "op": "PUSH1", - "gas": 150131, - "gasCost": 3, - "depth": 2, - "stack": [ - "472b43f300000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 18, - "op": "SHR", - "gas": 150128, - "gasCost": 3, - "depth": 2, - "stack": [ - "472b43f300000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 19, - "op": "DUP1", - "gas": 150125, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20, - "op": "PUSH4", - "gas": 150122, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 25, - "op": "GT", - "gas": 150119, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000009b2c0a37" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 26, - "op": "PUSH2", - "gas": 150116, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 29, - "op": "JUMPI", - "gas": 150113, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000016e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 366, - "op": "JUMPDEST", - "gas": 150103, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 367, - "op": "DUP1", - "gas": 150102, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 368, - "op": "PUSH4", - "gas": 150099, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 373, - "op": "GT", - "gas": 150096, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 374, - "op": "PUSH2", - "gas": 150093, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 377, - "op": "JUMPI", - "gas": 150090, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000021c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 378, - "op": "DUP1", - "gas": 150080, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 379, - "op": "PUSH4", - "gas": 150077, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 384, - "op": "GT", - "gas": 150074, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000571ac8b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 385, - "op": "PUSH2", - "gas": 150071, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 388, - "op": "JUMPI", - "gas": 150068, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 464, - "op": "JUMPDEST", - "gas": 150058, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 465, - "op": "DUP1", - "gas": 150057, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 466, - "op": "PUSH4", - "gas": 150054, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 471, - "op": "GT", - "gas": 150051, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000049616997" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 472, - "op": "PUSH2", - "gas": 150048, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 475, - "op": "JUMPI", - "gas": 150045, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 513, - "op": "JUMPDEST", - "gas": 150035, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 514, - "op": "DUP1", - "gas": 150034, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 515, - "op": "PUSH4", - "gas": 150031, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 520, - "op": "EQ", - "gas": 150028, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 521, - "op": "PUSH2", - "gas": 150025, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 524, - "op": "JUMPI", - "gas": 150022, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000424" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1060, - "op": "JUMPDEST", - "gas": 150012, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1061, - "op": "PUSH2", - "gas": 150011, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1064, - "op": "PUSH2", - "gas": 150008, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1067, - "op": "CALLDATASIZE", - "gas": 150005, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1068, - "op": "PUSH1", - "gas": 150003, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1070, - "op": "PUSH2", - "gas": 150000, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1073, - "op": "JUMP", - "gas": 149997, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000005885" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22661, - "op": "JUMPDEST", - "gas": 149989, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22662, - "op": "PUSH1", - "gas": 149988, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22664, - "op": "DUP1", - "gas": 149985, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22665, - "op": "PUSH1", - "gas": 149982, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22667, - "op": "DUP1", - "gas": 149979, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22668, - "op": "PUSH1", - "gas": 149976, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22670, - "op": "PUSH1", - "gas": 149973, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22672, - "op": "DUP7", - "gas": 149970, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22673, - "op": "DUP9", - "gas": 149967, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22674, - "op": "SUB", - "gas": 149964, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22675, - "op": "SLT", - "gas": 149961, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22676, - "op": "ISZERO", - "gas": 149958, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22677, - "op": "PUSH2", - "gas": 149955, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22680, - "op": "JUMPI", - "gas": 149952, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000589c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22684, - "op": "JUMPDEST", - "gas": 149942, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22685, - "op": "DUP6", - "gas": 149941, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22686, - "op": "CALLDATALOAD", - "gas": 149938, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22687, - "op": "SWAP5", - "gas": 149935, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22688, - "op": "POP", - "gas": 149932, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22689, - "op": "PUSH1", - "gas": 149930, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22691, - "op": "DUP7", - "gas": 149927, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22692, - "op": "ADD", - "gas": 149924, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22693, - "op": "CALLDATALOAD", - "gas": 149921, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22694, - "op": "SWAP4", - "gas": 149918, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22695, - "op": "POP", - "gas": 149915, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22696, - "op": "PUSH1", - "gas": 149913, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22698, - "op": "DUP7", - "gas": 149910, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22699, - "op": "ADD", - "gas": 149907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22700, - "op": "CALLDATALOAD", - "gas": 149904, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22701, - "op": "PUSH8", - "gas": 149901, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22710, - "op": "DUP2", - "gas": 149898, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22711, - "op": "GT", - "gas": 149895, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22712, - "op": "ISZERO", - "gas": 149892, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22713, - "op": "PUSH2", - "gas": 149889, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22716, - "op": "JUMPI", - "gas": 149886, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000058c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22720, - "op": "JUMPDEST", - "gas": 149876, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22721, - "op": "PUSH2", - "gas": 149875, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22724, - "op": "DUP9", - "gas": 149872, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22725, - "op": "DUP3", - "gas": 149869, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22726, - "op": "DUP10", - "gas": 149866, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22727, - "op": "ADD", - "gas": 149863, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22728, - "op": "PUSH2", - "gas": 149860, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22731, - "op": "JUMP", - "gas": 149857, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000004e76" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20086, - "op": "JUMPDEST", - "gas": 149849, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20087, - "op": "PUSH1", - "gas": 149848, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20089, - "op": "DUP1", - "gas": 149845, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20090, - "op": "DUP4", - "gas": 149842, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20091, - "op": "PUSH1", - "gas": 149839, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20093, - "op": "DUP5", - "gas": 149836, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20094, - "op": "ADD", - "gas": 149833, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20095, - "op": "SLT", - "gas": 149830, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20096, - "op": "PUSH2", - "gas": 149827, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20099, - "op": "JUMPI", - "gas": 149824, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e87" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20103, - "op": "JUMPDEST", - "gas": 149814, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20104, - "op": "POP", - "gas": 149813, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20105, - "op": "DUP2", - "gas": 149811, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20106, - "op": "CALLDATALOAD", - "gas": 149808, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20107, - "op": "PUSH8", - "gas": 149805, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20116, - "op": "DUP2", - "gas": 149802, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20117, - "op": "GT", - "gas": 149799, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20118, - "op": "ISZERO", - "gas": 149796, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20119, - "op": "PUSH2", - "gas": 149793, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20122, - "op": "JUMPI", - "gas": 149790, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e9e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20126, - "op": "JUMPDEST", - "gas": 149780, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20127, - "op": "PUSH1", - "gas": 149779, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20129, - "op": "DUP4", - "gas": 149776, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20130, - "op": "ADD", - "gas": 149773, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20131, - "op": "SWAP2", - "gas": 149770, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20132, - "op": "POP", - "gas": 149767, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20133, - "op": "DUP4", - "gas": 149765, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20134, - "op": "PUSH1", - "gas": 149762, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20136, - "op": "DUP1", - "gas": 149759, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20137, - "op": "DUP4", - "gas": 149756, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20138, - "op": "MUL", - "gas": 149753, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20139, - "op": "DUP6", - "gas": 149748, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20140, - "op": "ADD", - "gas": 149745, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20141, - "op": "ADD", - "gas": 149742, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20142, - "op": "GT", - "gas": 149739, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20143, - "op": "ISZERO", - "gas": 149736, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20144, - "op": "PUSH2", - "gas": 149733, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20147, - "op": "JUMPI", - "gas": 149730, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 149720, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 149719, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16290, - "op": "POP", - "gas": 149716, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 149714, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 149711, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000058cc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16293, - "op": "POP", - "gas": 149708, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 149706, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000058cc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22732, - "op": "JUMPDEST", - "gas": 149698, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22733, - "op": "SWAP1", - "gas": 149697, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22734, - "op": "SWAP5", - "gas": 149694, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22735, - "op": "POP", - "gas": 149691, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22736, - "op": "SWAP3", - "gas": 149689, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22737, - "op": "POP", - "gas": 149686, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22738, - "op": "POP", - "gas": 149684, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22739, - "op": "PUSH1", - "gas": 149682, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22741, - "op": "DUP7", - "gas": 149679, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22742, - "op": "ADD", - "gas": 149676, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22743, - "op": "CALLDATALOAD", - "gas": 149673, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22744, - "op": "PUSH2", - "gas": 149670, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22747, - "op": "DUP2", - "gas": 149667, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22748, - "op": "PUSH2", - "gas": 149664, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 22751, - "op": "JUMP", - "gas": 149661, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 149653, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 149652, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 149649, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24425, - "op": "AND", - "gas": 149646, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 149643, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24427, - "op": "EQ", - "gas": 149640, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 149637, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 149634, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 149624, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5242, - "op": "POP", - "gas": 149623, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 149621, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20682, - "op": "JUMPDEST", - "gas": 149613, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20683, - "op": "DUP1", - "gas": 149612, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20684, - "op": "SWAP2", - "gas": 149609, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20685, - "op": "POP", - "gas": 149606, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20686, - "op": "POP", - "gas": 149604, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20687, - "op": "SWAP3", - "gas": 149602, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20688, - "op": "SWAP6", - "gas": 149599, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20689, - "op": "POP", - "gas": 149596, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20690, - "op": "SWAP3", - "gas": 149594, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20691, - "op": "SWAP6", - "gas": 149591, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20692, - "op": "SWAP1", - "gas": 149588, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000432" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20693, - "op": "SWAP4", - "gas": 149585, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20694, - "op": "POP", - "gas": 149582, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20695, - "op": "JUMP", - "gas": 149580, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1074, - "op": "JUMPDEST", - "gas": 149572, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1075, - "op": "PUSH2", - "gas": 149571, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1078, - "op": "JUMP", - "gas": 149568, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000ef5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3829, - "op": "JUMPDEST", - "gas": 149560, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3830, - "op": "PUSH1", - "gas": 149559, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3832, - "op": "DUP1", - "gas": 149556, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3833, - "op": "DUP7", - "gas": 149553, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3834, - "op": "PUSH2", - "gas": 149550, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3837, - "op": "JUMPI", - "gas": 149547, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000fab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4011, - "op": "JUMPDEST", - "gas": 149537, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4012, - "op": "PUSH2", - "gas": 149536, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4015, - "op": "DUP6", - "gas": 149533, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4016, - "op": "DUP6", - "gas": 149530, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4017, - "op": "PUSH1", - "gas": 149527, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4019, - "op": "DUP2", - "gas": 149524, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4020, - "op": "DUP2", - "gas": 149521, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4021, - "op": "LT", - "gas": 149518, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4022, - "op": "PUSH2", - "gas": 149515, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4025, - "op": "JUMPI", - "gas": 149512, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000fbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4027, - "op": "JUMPDEST", - "gas": 149502, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4028, - "op": "SWAP1", - "gas": 149501, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4029, - "op": "POP", - "gas": 149498, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4030, - "op": "PUSH1", - "gas": 149496, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4032, - "op": "MUL", - "gas": 149493, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4033, - "op": "ADD", - "gas": 149488, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4034, - "op": "PUSH1", - "gas": 149485, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4036, - "op": "DUP2", - "gas": 149482, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4037, - "op": "ADD", - "gas": 149479, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4038, - "op": "SWAP1", - "gas": 149476, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4039, - "op": "PUSH2", - "gas": 149473, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4042, - "op": "SWAP2", - "gas": 149470, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000fd0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4043, - "op": "SWAP1", - "gas": 149467, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4044, - "op": "PUSH2", - "gas": 149464, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4047, - "op": "JUMP", - "gas": 149461, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000004feb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20459, - "op": "JUMPDEST", - "gas": 149453, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20460, - "op": "PUSH1", - "gas": 149452, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20462, - "op": "PUSH1", - "gas": 149449, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20464, - "op": "DUP3", - "gas": 149446, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20465, - "op": "DUP5", - "gas": 149443, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20466, - "op": "SUB", - "gas": 149440, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20467, - "op": "SLT", - "gas": 149437, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20468, - "op": "ISZERO", - "gas": 149434, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20469, - "op": "PUSH2", - "gas": 149431, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20472, - "op": "JUMPI", - "gas": 149428, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20476, - "op": "JUMPDEST", - "gas": 149418, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20477, - "op": "DUP2", - "gas": 149417, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 149414, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20479, - "op": "PUSH2", - "gas": 149411, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20482, - "op": "DUP2", - "gas": 149408, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20483, - "op": "PUSH2", - "gas": 149405, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20486, - "op": "JUMP", - "gas": 149402, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 149394, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 149393, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 149390, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24425, - "op": "AND", - "gas": 149387, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 149384, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24427, - "op": "EQ", - "gas": 149381, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 149378, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 149375, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 149365, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5242, - "op": "POP", - "gas": 149364, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 149362, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20487, - "op": "JUMPDEST", - "gas": 149354, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20488, - "op": "SWAP4", - "gas": 149353, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20489, - "op": "SWAP3", - "gas": 149350, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000fd0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20490, - "op": "POP", - "gas": 149347, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20491, - "op": "POP", - "gas": 149345, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20492, - "op": "POP", - "gas": 149343, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20493, - "op": "JUMP", - "gas": 149341, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4048, - "op": "JUMPDEST", - "gas": 149333, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4049, - "op": "DUP3", - "gas": 149332, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4050, - "op": "PUSH2", - "gas": 149329, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4053, - "op": "JUMPI", - "gas": 149326, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000fdb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4054, - "op": "CALLER", - "gas": 149316, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4055, - "op": "PUSH2", - "gas": 149314, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4058, - "op": "JUMP", - "gas": 149311, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000fdd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4061, - "op": "JUMPDEST", - "gas": 149303, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4062, - "op": "PUSH2", - "gas": 149302, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4065, - "op": "PUSH32", - "gas": 149299, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4098, - "op": "DUP10", - "gas": 149296, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4099, - "op": "DUP10", - "gas": 149293, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4100, - "op": "PUSH1", - "gas": 149290, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4102, - "op": "DUP2", - "gas": 149287, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4103, - "op": "DUP2", - "gas": 149284, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4104, - "op": "LT", - "gas": 149281, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4105, - "op": "PUSH2", - "gas": 149278, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4108, - "op": "JUMPI", - "gas": 149275, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000100e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4110, - "op": "JUMPDEST", - "gas": 149265, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4111, - "op": "SWAP1", - "gas": 149264, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4112, - "op": "POP", - "gas": 149261, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4113, - "op": "PUSH1", - "gas": 149259, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4115, - "op": "MUL", - "gas": 149256, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4116, - "op": "ADD", - "gas": 149251, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4117, - "op": "PUSH1", - "gas": 149248, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4119, - "op": "DUP2", - "gas": 149245, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4120, - "op": "ADD", - "gas": 149242, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4121, - "op": "SWAP1", - "gas": 149239, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4122, - "op": "PUSH2", - "gas": 149236, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4125, - "op": "SWAP2", - "gas": 149233, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000001023" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4126, - "op": "SWAP1", - "gas": 149230, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4127, - "op": "PUSH2", - "gas": 149227, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4130, - "op": "JUMP", - "gas": 149224, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000004feb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20459, - "op": "JUMPDEST", - "gas": 149216, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20460, - "op": "PUSH1", - "gas": 149215, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20462, - "op": "PUSH1", - "gas": 149212, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20464, - "op": "DUP3", - "gas": 149209, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20465, - "op": "DUP5", - "gas": 149206, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20466, - "op": "SUB", - "gas": 149203, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20467, - "op": "SLT", - "gas": 149200, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20468, - "op": "ISZERO", - "gas": 149197, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20469, - "op": "PUSH2", - "gas": 149194, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20472, - "op": "JUMPI", - "gas": 149191, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20476, - "op": "JUMPDEST", - "gas": 149181, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20477, - "op": "DUP2", - "gas": 149180, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 149177, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20479, - "op": "PUSH2", - "gas": 149174, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20482, - "op": "DUP2", - "gas": 149171, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20483, - "op": "PUSH2", - "gas": 149168, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20486, - "op": "JUMP", - "gas": 149165, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 149157, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 149156, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 149153, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24425, - "op": "AND", - "gas": 149150, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 149147, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24427, - "op": "EQ", - "gas": 149144, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 149141, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 149138, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 149128, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5242, - "op": "POP", - "gas": 149127, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 149125, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20487, - "op": "JUMPDEST", - "gas": 149117, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20488, - "op": "SWAP4", - "gas": 149116, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20489, - "op": "SWAP3", - "gas": 149113, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001023" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20490, - "op": "POP", - "gas": 149110, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20491, - "op": "POP", - "gas": 149108, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20492, - "op": "POP", - "gas": 149106, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20493, - "op": "JUMP", - "gas": 149104, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4131, - "op": "JUMPDEST", - "gas": 149096, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4132, - "op": "DUP11", - "gas": 149095, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4133, - "op": "DUP11", - "gas": 149092, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4134, - "op": "PUSH1", - "gas": 149089, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4136, - "op": "DUP2", - "gas": 149086, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4137, - "op": "DUP2", - "gas": 149083, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4138, - "op": "LT", - "gas": 149080, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4139, - "op": "PUSH2", - "gas": 149077, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4142, - "op": "JUMPI", - "gas": 149074, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000d84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3460, - "op": "JUMPDEST", - "gas": 149064, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3461, - "op": "SWAP1", - "gas": 149063, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3462, - "op": "POP", - "gas": 149060, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3463, - "op": "PUSH1", - "gas": 149058, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3465, - "op": "MUL", - "gas": 149055, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3466, - "op": "ADD", - "gas": 149050, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3467, - "op": "PUSH1", - "gas": 149047, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3469, - "op": "DUP2", - "gas": 149044, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3470, - "op": "ADD", - "gas": 149041, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3471, - "op": "SWAP1", - "gas": 149038, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3472, - "op": "PUSH2", - "gas": 149035, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3475, - "op": "SWAP2", - "gas": 149032, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000d99" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3476, - "op": "SWAP1", - "gas": 149029, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3477, - "op": "PUSH2", - "gas": 149026, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3480, - "op": "JUMP", - "gas": 149023, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20459, - "op": "JUMPDEST", - "gas": 149015, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20460, - "op": "PUSH1", - "gas": 149014, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20462, - "op": "PUSH1", - "gas": 149011, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20464, - "op": "DUP3", - "gas": 149008, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20465, - "op": "DUP5", - "gas": 149005, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20466, - "op": "SUB", - "gas": 149002, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20467, - "op": "SLT", - "gas": 148999, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20468, - "op": "ISZERO", - "gas": 148996, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20469, - "op": "PUSH2", - "gas": 148993, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20472, - "op": "JUMPI", - "gas": 148990, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20476, - "op": "JUMPDEST", - "gas": 148980, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20477, - "op": "DUP2", - "gas": 148979, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 148976, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20479, - "op": "PUSH2", - "gas": 148973, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20482, - "op": "DUP2", - "gas": 148970, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20483, - "op": "PUSH2", - "gas": 148967, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20486, - "op": "JUMP", - "gas": 148964, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 148956, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 148955, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 148952, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24425, - "op": "AND", - "gas": 148949, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 148946, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24427, - "op": "EQ", - "gas": 148943, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 148940, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 148937, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 148927, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5242, - "op": "POP", - "gas": 148926, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 148924, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20487, - "op": "JUMPDEST", - "gas": 148916, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20488, - "op": "SWAP4", - "gas": 148915, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20489, - "op": "SWAP3", - "gas": 148912, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000d99" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20490, - "op": "POP", - "gas": 148909, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20491, - "op": "POP", - "gas": 148907, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20492, - "op": "POP", - "gas": 148905, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20493, - "op": "JUMP", - "gas": 148903, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3481, - "op": "JUMPDEST", - "gas": 148895, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3482, - "op": "PUSH2", - "gas": 148894, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3485, - "op": "JUMP", - "gas": 148891, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002ca2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11426, - "op": "JUMPDEST", - "gas": 148883, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11427, - "op": "PUSH1", - "gas": 148882, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11429, - "op": "DUP1", - "gas": 148879, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11430, - "op": "PUSH1", - "gas": 148876, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11432, - "op": "PUSH2", - "gas": 148873, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11435, - "op": "DUP6", - "gas": 148870, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11436, - "op": "DUP6", - "gas": 148867, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11437, - "op": "PUSH2", - "gas": 148864, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11440, - "op": "JUMP", - "gas": 148861, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16130, - "op": "JUMPDEST", - "gas": 148853, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16131, - "op": "PUSH1", - "gas": 148852, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16133, - "op": "DUP1", - "gas": 148849, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16134, - "op": "DUP3", - "gas": 148846, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16135, - "op": "PUSH20", - "gas": 148843, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16156, - "op": "AND", - "gas": 148840, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16157, - "op": "DUP5", - "gas": 148837, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16158, - "op": "PUSH20", - "gas": 148834, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16179, - "op": "AND", - "gas": 148831, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16180, - "op": "EQ", - "gas": 148828, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16181, - "op": "ISZERO", - "gas": 148825, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16182, - "op": "PUSH2", - "gas": 148822, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16185, - "op": "JUMPI", - "gas": 148819, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16190, - "op": "JUMPDEST", - "gas": 148809, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16191, - "op": "DUP3", - "gas": 148808, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16192, - "op": "PUSH20", - "gas": 148805, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16213, - "op": "AND", - "gas": 148802, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16214, - "op": "DUP5", - "gas": 148799, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16215, - "op": "PUSH20", - "gas": 148796, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16236, - "op": "AND", - "gas": 148793, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16237, - "op": "LT", - "gas": 148790, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16238, - "op": "PUSH2", - "gas": 148787, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16241, - "op": "JUMPI", - "gas": 148784, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16248, - "op": "JUMPDEST", - "gas": 148774, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16249, - "op": "DUP4", - "gas": 148773, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16250, - "op": "DUP4", - "gas": 148770, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16251, - "op": "JUMPDEST", - "gas": 148767, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16252, - "op": "SWAP1", - "gas": 148766, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16253, - "op": "SWAP3", - "gas": 148763, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16254, - "op": "POP", - "gas": 148760, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16255, - "op": "SWAP1", - "gas": 148758, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16256, - "op": "POP", - "gas": 148755, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16257, - "op": "PUSH20", - "gas": 148753, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16278, - "op": "DUP3", - "gas": 148750, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16279, - "op": "AND", - "gas": 148747, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16280, - "op": "PUSH2", - "gas": 148744, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16283, - "op": "JUMPI", - "gas": 148741, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 148731, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 148730, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16290, - "op": "POP", - "gas": 148727, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 148725, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 148722, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16293, - "op": "POP", - "gas": 148719, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 148717, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11441, - "op": "JUMPDEST", - "gas": 148709, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11442, - "op": "PUSH1", - "gas": 148708, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11444, - "op": "DUP1", - "gas": 148705, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11445, - "op": "MLOAD", - "gas": 148702, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11446, - "op": "PUSH32", - "gas": 148699, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11479, - "op": "PUSH1", - "gas": 148696, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11481, - "op": "SWAP5", - "gas": 148693, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11482, - "op": "DUP6", - "gas": 148690, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11483, - "op": "SHL", - "gas": 148687, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11484, - "op": "DUP2", - "gas": 148684, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11485, - "op": "AND", - "gas": 148681, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11486, - "op": "PUSH1", - "gas": 148678, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11488, - "op": "DUP1", - "gas": 148675, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11489, - "op": "DUP5", - "gas": 148672, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11490, - "op": "ADD", - "gas": 148669, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11491, - "op": "SWAP2", - "gas": 148666, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11492, - "op": "SWAP1", - "gas": 148663, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11493, - "op": "SWAP2", - "gas": 148660, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 11494, - "op": "MSTORE", - "gas": 148657, - "gasCost": 12, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11495, - "op": "SWAP4", - "gas": 148645, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11496, - "op": "DUP6", - "gas": 148642, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11497, - "op": "SHL", - "gas": 148639, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11498, - "op": "DUP2", - "gas": 148636, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11499, - "op": "AND", - "gas": 148633, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11500, - "op": "PUSH1", - "gas": 148630, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11502, - "op": "DUP4", - "gas": 148627, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11503, - "op": "ADD", - "gas": 148624, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11504, - "op": "MSTORE", - "gas": 148621, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000b4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11505, - "op": "DUP3", - "gas": 148615, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11506, - "op": "MLOAD", - "gas": 148612, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11507, - "op": "PUSH1", - "gas": 148609, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11509, - "op": "DUP2", - "gas": 148606, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11510, - "op": "DUP5", - "gas": 148603, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11511, - "op": "SUB", - "gas": 148600, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11512, - "op": "ADD", - "gas": 148597, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11513, - "op": "DUP2", - "gas": 148594, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11514, - "op": "MSTORE", - "gas": 148591, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11515, - "op": "PUSH1", - "gas": 148588, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11517, - "op": "DUP4", - "gas": 148585, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000048" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11518, - "op": "ADD", - "gas": 148582, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11519, - "op": "DUP5", - "gas": 148579, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11520, - "op": "MSTORE", - "gas": 148576, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11521, - "op": "DUP1", - "gas": 148573, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11522, - "op": "MLOAD", - "gas": 148570, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11523, - "op": "SWAP1", - "gas": 148567, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11524, - "op": "DUP6", - "gas": 148564, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11525, - "op": "ADD", - "gas": 148561, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11526, - "op": "SHA3", - "gas": 148558, - "gasCost": 42, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11527, - "op": "PUSH32", - "gas": 148516, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11560, - "op": "PUSH1", - "gas": 148513, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11562, - "op": "DUP5", - "gas": 148510, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11563, - "op": "ADD", - "gas": 148507, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11564, - "op": "MSTORE", - "gas": 148504, - "gasCost": 9, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11565, - "op": "SWAP11", - "gas": 148495, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11566, - "op": "SWAP1", - "gas": 148492, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11567, - "op": "SWAP5", - "gas": 148489, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11568, - "op": "SHL", - "gas": 148486, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11569, - "op": "SWAP1", - "gas": 148483, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11570, - "op": "SWAP4", - "gas": 148480, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11571, - "op": "AND", - "gas": 148477, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11572, - "op": "PUSH1", - "gas": 148474, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11574, - "op": "DUP5", - "gas": 148471, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11575, - "op": "ADD", - "gas": 148468, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11576, - "op": "MSTORE", - "gas": 148465, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11577, - "op": "PUSH1", - "gas": 148462, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11579, - "op": "DUP4", - "gas": 148459, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11580, - "op": "ADD", - "gas": 148456, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11581, - "op": "SWAP9", - "gas": 148453, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000fd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11582, - "op": "SWAP1", - "gas": 148450, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000fd", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11583, - "op": "SWAP9", - "gas": 148447, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000fd", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11584, - "op": "MSTORE", - "gas": 148444, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "00000000000000000000000000000000000000000000000000000000000000fd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11585, - "op": "PUSH32", - "gas": 148441, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11618, - "op": "PUSH1", - "gas": 148438, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11620, - "op": "DUP1", - "gas": 148435, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11621, - "op": "DUP5", - "gas": 148432, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11622, - "op": "ADD", - "gas": 148429, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11623, - "op": "SWAP2", - "gas": 148426, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000011d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11624, - "op": "SWAP1", - "gas": 148423, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000011d", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11625, - "op": "SWAP2", - "gas": 148420, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000011d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} - }, - { - "pc": 11626, - "op": "MSTORE", - "gas": 148417, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000011d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 11627, - "op": "DUP9", - "gas": 148411, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11628, - "op": "MLOAD", - "gas": 148408, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11629, - "op": "DUP1", - "gas": 148405, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11630, - "op": "DUP5", - "gas": 148402, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11631, - "op": "SUB", - "gas": 148399, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11632, - "op": "SWAP1", - "gas": 148396, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11633, - "op": "SWAP2", - "gas": 148393, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11634, - "op": "ADD", - "gas": 148390, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11635, - "op": "DUP2", - "gas": 148387, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11636, - "op": "MSTORE", - "gas": 148384, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11637, - "op": "PUSH1", - "gas": 148381, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11639, - "op": "SWAP1", - "gas": 148378, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11640, - "op": "SWAP3", - "gas": 148375, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11641, - "op": "ADD", - "gas": 148372, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11642, - "op": "SWAP1", - "gas": 148369, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11643, - "op": "SWAP8", - "gas": 148366, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11644, - "op": "MSTORE", - "gas": 148363, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11645, - "op": "DUP1", - "gas": 148360, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11646, - "op": "MLOAD", - "gas": 148357, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11647, - "op": "SWAP7", - "gas": 148354, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11648, - "op": "ADD", - "gas": 148351, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11649, - "op": "SWAP6", - "gas": 148348, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11650, - "op": "SWAP1", - "gas": 148345, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000e8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11651, - "op": "SWAP6", - "gas": 148342, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000e8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11652, - "op": "SHA3", - "gas": 148339, - "gasCost": 48, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000000e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11653, - "op": "SWAP6", - "gas": 148291, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11654, - "op": "SWAP5", - "gas": 148288, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001030" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11655, - "op": "POP", - "gas": 148285, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11656, - "op": "POP", - "gas": 148283, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11657, - "op": "POP", - "gas": 148281, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11658, - "op": "POP", - "gas": 148279, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11659, - "op": "POP", - "gas": 148277, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11660, - "op": "JUMP", - "gas": 148275, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 4144, - "op": "JUMPDEST", - "gas": 148267, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 4145, - "op": "DUP11", - "gas": 148266, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 4146, - "op": "PUSH2", - "gas": 148263, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 4149, - "op": "JUMP", - "gas": 148260, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000002d8d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11661, - "op": "JUMPDEST", - "gas": 148252, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11662, - "op": "PUSH32", - "gas": 148251, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11695, - "op": "PUSH20", - "gas": 148248, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11716, - "op": "AND", - "gas": 148245, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11717, - "op": "DUP5", - "gas": 148242, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11718, - "op": "PUSH20", - "gas": 148239, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11739, - "op": "AND", - "gas": 148236, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11740, - "op": "EQ", - "gas": 148233, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11741, - "op": "DUP1", - "gas": 148230, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11742, - "op": "ISZERO", - "gas": 148227, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11743, - "op": "PUSH2", - "gas": 148224, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11746, - "op": "JUMPI", - "gas": 148221, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002de8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11752, - "op": "JUMPDEST", - "gas": 148211, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11753, - "op": "ISZERO", - "gas": 148210, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11754, - "op": "PUSH2", - "gas": 148207, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 11757, - "op": "JUMPI", - "gas": 148204, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f31" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12081, - "op": "JUMPDEST", - "gas": 148194, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12082, - "op": "PUSH20", - "gas": 148193, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12103, - "op": "DUP4", - "gas": 148190, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12104, - "op": "AND", - "gas": 148187, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12105, - "op": "ADDRESS", - "gas": 148184, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12106, - "op": "EQ", - "gas": 148182, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12107, - "op": "ISZERO", - "gas": 148179, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12108, - "op": "PUSH2", - "gas": 148176, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12111, - "op": "JUMPI", - "gas": 148173, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f5f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12127, - "op": "JUMPDEST", - "gas": 148163, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12128, - "op": "PUSH2", - "gas": 148162, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12131, - "op": "DUP5", - "gas": 148159, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12132, - "op": "DUP5", - "gas": 148156, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12133, - "op": "DUP5", - "gas": 148153, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12134, - "op": "DUP5", - "gas": 148150, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12135, - "op": "PUSH2", - "gas": 148147, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 12138, - "op": "JUMP", - "gas": 148144, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ae1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15073, - "op": "JUMPDEST", - "gas": 148136, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15074, - "op": "PUSH1", - "gas": 148135, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15076, - "op": "DUP1", - "gas": 148132, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15077, - "op": "MLOAD", - "gas": 148129, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15078, - "op": "PUSH20", - "gas": 148126, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15099, - "op": "DUP6", - "gas": 148123, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15100, - "op": "DUP2", - "gas": 148120, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15101, - "op": "AND", - "gas": 148117, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15102, - "op": "PUSH1", - "gas": 148114, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15104, - "op": "DUP4", - "gas": 148111, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15105, - "op": "ADD", - "gas": 148108, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} - }, - { - "pc": 15106, - "op": "MSTORE", - "gas": 148105, - "gasCost": 12, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000161" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15107, - "op": "DUP5", - "gas": 148093, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15108, - "op": "DUP2", - "gas": 148090, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15109, - "op": "AND", - "gas": 148087, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15110, - "op": "PUSH1", - "gas": 148084, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15112, - "op": "DUP4", - "gas": 148081, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15113, - "op": "ADD", - "gas": 148078, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15114, - "op": "MSTORE", - "gas": 148075, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15115, - "op": "PUSH1", - "gas": 148069, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15117, - "op": "DUP1", - "gas": 148066, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15118, - "op": "DUP4", - "gas": 148063, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15119, - "op": "ADD", - "gas": 148060, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15120, - "op": "DUP6", - "gas": 148057, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15121, - "op": "SWAP1", - "gas": 148054, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a1", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15122, - "op": "MSTORE", - "gas": 148051, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000001a1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15123, - "op": "DUP4", - "gas": 148045, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15124, - "op": "MLOAD", - "gas": 148042, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15125, - "op": "DUP1", - "gas": 148039, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15126, - "op": "DUP5", - "gas": 148036, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15127, - "op": "SUB", - "gas": 148033, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15128, - "op": "SWAP1", - "gas": 148030, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15129, - "op": "SWAP2", - "gas": 148027, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15130, - "op": "ADD", - "gas": 148024, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15131, - "op": "DUP2", - "gas": 148021, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15132, - "op": "MSTORE", - "gas": 148018, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15133, - "op": "PUSH1", - "gas": 148015, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15135, - "op": "SWAP1", - "gas": 148012, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15136, - "op": "SWAP3", - "gas": 148009, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15137, - "op": "ADD", - "gas": 148006, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15138, - "op": "DUP4", - "gas": 148003, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15139, - "op": "MSTORE", - "gas": 148000, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15140, - "op": "PUSH1", - "gas": 147997, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15142, - "op": "DUP3", - "gas": 147994, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15143, - "op": "ADD", - "gas": 147991, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15144, - "op": "DUP1", - "gas": 147988, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15145, - "op": "MLOAD", - "gas": 147985, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15146, - "op": "PUSH28", - "gas": 147982, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15175, - "op": "AND", - "gas": 147979, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15176, - "op": "PUSH32", - "gas": 147976, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15209, - "op": "OR", - "gas": 147973, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "23b872dd00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15210, - "op": "DUP2", - "gas": 147970, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15211, - "op": "MSTORE", - "gas": 147967, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000064000000", - "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15212, - "op": "SWAP3", - "gas": 147964, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15213, - "op": "MLOAD", - "gas": 147961, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15214, - "op": "DUP3", - "gas": 147958, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15215, - "op": "MLOAD", - "gas": 147955, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15216, - "op": "PUSH1", - "gas": 147952, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15218, - "op": "SWAP5", - "gas": 147949, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15219, - "op": "DUP6", - "gas": 147946, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15220, - "op": "SWAP5", - "gas": 147943, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15221, - "op": "SWAP4", - "gas": 147940, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15222, - "op": "DUP11", - "gas": 147937, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15223, - "op": "AND", - "gas": 147934, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15224, - "op": "SWAP4", - "gas": 147931, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15225, - "op": "SWAP3", - "gas": 147928, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15226, - "op": "SWAP2", - "gas": 147925, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15227, - "op": "DUP3", - "gas": 147922, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15228, - "op": "SWAP2", - "gas": 147919, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15229, - "op": "SWAP1", - "gas": 147916, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15230, - "op": "DUP1", - "gas": 147913, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15231, - "op": "DUP4", - "gas": 147910, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15232, - "op": "DUP4", - "gas": 147907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15233, - "op": "JUMPDEST", - "gas": 147904, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15234, - "op": "PUSH1", - "gas": 147903, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15236, - "op": "DUP4", - "gas": 147900, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15237, - "op": "LT", - "gas": 147897, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15238, - "op": "PUSH2", - "gas": 147894, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15241, - "op": "JUMPI", - "gas": 147891, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15242, - "op": "DUP1", - "gas": 147881, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15243, - "op": "MLOAD", - "gas": 147878, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15244, - "op": "DUP3", - "gas": 147875, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15245, - "op": "MSTORE", - "gas": 147872, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15246, - "op": "PUSH32", - "gas": 147866, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15279, - "op": "SWAP1", - "gas": 147863, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15280, - "op": "SWAP3", - "gas": 147860, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15281, - "op": "ADD", - "gas": 147857, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15282, - "op": "SWAP2", - "gas": 147854, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15283, - "op": "PUSH1", - "gas": 147851, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15285, - "op": "SWAP2", - "gas": 147848, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15286, - "op": "DUP3", - "gas": 147845, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15287, - "op": "ADD", - "gas": 147842, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15288, - "op": "SWAP2", - "gas": 147839, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15289, - "op": "ADD", - "gas": 147836, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15290, - "op": "PUSH2", - "gas": 147833, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15293, - "op": "JUMP", - "gas": 147830, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000003b81" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15233, - "op": "JUMPDEST", - "gas": 147822, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15234, - "op": "PUSH1", - "gas": 147821, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15236, - "op": "DUP4", - "gas": 147818, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15237, - "op": "LT", - "gas": 147815, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15238, - "op": "PUSH2", - "gas": 147812, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15241, - "op": "JUMPI", - "gas": 147809, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15242, - "op": "DUP1", - "gas": 147799, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15243, - "op": "MLOAD", - "gas": 147796, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15244, - "op": "DUP3", - "gas": 147793, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15245, - "op": "MSTORE", - "gas": 147790, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15246, - "op": "PUSH32", - "gas": 147784, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15279, - "op": "SWAP1", - "gas": 147781, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15280, - "op": "SWAP3", - "gas": 147778, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15281, - "op": "ADD", - "gas": 147775, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15282, - "op": "SWAP2", - "gas": 147772, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15283, - "op": "PUSH1", - "gas": 147769, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15285, - "op": "SWAP2", - "gas": 147766, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15286, - "op": "DUP3", - "gas": 147763, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15287, - "op": "ADD", - "gas": 147760, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15288, - "op": "SWAP2", - "gas": 147757, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15289, - "op": "ADD", - "gas": 147754, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15290, - "op": "PUSH2", - "gas": 147751, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15293, - "op": "JUMP", - "gas": 147748, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000003b81" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15233, - "op": "JUMPDEST", - "gas": 147740, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15234, - "op": "PUSH1", - "gas": 147739, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15236, - "op": "DUP4", - "gas": 147736, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15237, - "op": "LT", - "gas": 147733, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15238, - "op": "PUSH2", - "gas": 147730, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15241, - "op": "JUMPI", - "gas": 147727, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15242, - "op": "DUP1", - "gas": 147717, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15243, - "op": "MLOAD", - "gas": 147714, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15244, - "op": "DUP3", - "gas": 147711, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "7c2e411e00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15245, - "op": "MSTORE", - "gas": 147708, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15246, - "op": "PUSH32", - "gas": 147702, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15279, - "op": "SWAP1", - "gas": 147699, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15280, - "op": "SWAP3", - "gas": 147696, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15281, - "op": "ADD", - "gas": 147693, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15282, - "op": "SWAP2", - "gas": 147690, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15283, - "op": "PUSH1", - "gas": 147687, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15285, - "op": "SWAP2", - "gas": 147684, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15286, - "op": "DUP3", - "gas": 147681, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15287, - "op": "ADD", - "gas": 147678, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15288, - "op": "SWAP2", - "gas": 147675, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15289, - "op": "ADD", - "gas": 147672, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15290, - "op": "PUSH2", - "gas": 147669, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15293, - "op": "JUMP", - "gas": 147666, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000003b81" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15233, - "op": "JUMPDEST", - "gas": 147658, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15234, - "op": "PUSH1", - "gas": 147657, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15236, - "op": "DUP4", - "gas": 147654, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15237, - "op": "LT", - "gas": 147651, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15238, - "op": "PUSH2", - "gas": 147648, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15241, - "op": "JUMPI", - "gas": 147645, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003bbe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15294, - "op": "JUMPDEST", - "gas": 147635, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15295, - "op": "PUSH1", - "gas": 147634, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15297, - "op": "DUP4", - "gas": 147631, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15298, - "op": "PUSH1", - "gas": 147628, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15300, - "op": "SUB", - "gas": 147625, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15301, - "op": "PUSH2", - "gas": 147622, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15304, - "op": "EXP", - "gas": 147619, - "gasCost": 60, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15305, - "op": "SUB", - "gas": 147559, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15306, - "op": "DUP1", - "gas": 147556, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15307, - "op": "NOT", - "gas": 147553, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15308, - "op": "DUP3", - "gas": 147550, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15309, - "op": "MLOAD", - "gas": 147547, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15310, - "op": "AND", - "gas": 147544, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "0423416723b872dd000000000000000000000000ccde3781a1b463aab7c8480c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15311, - "op": "DUP2", - "gas": 147541, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15312, - "op": "DUP5", - "gas": 147538, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15313, - "op": "MLOAD", - "gas": 147535, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15314, - "op": "AND", - "gas": 147529, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15315, - "op": "DUP1", - "gas": 147526, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15316, - "op": "DUP3", - "gas": 147523, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15317, - "op": "OR", - "gas": 147520, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15318, - "op": "DUP6", - "gas": 147517, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15319, - "op": "MSTORE", - "gas": 147514, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15320, - "op": "POP", - "gas": 147511, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15321, - "op": "POP", - "gas": 147509, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15322, - "op": "POP", - "gas": 147507, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15323, - "op": "POP", - "gas": 147505, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15324, - "op": "POP", - "gas": 147503, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15325, - "op": "POP", - "gas": 147501, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15326, - "op": "SWAP1", - "gas": 147499, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15327, - "op": "POP", - "gas": 147496, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15328, - "op": "ADD", - "gas": 147494, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15329, - "op": "SWAP2", - "gas": 147491, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15330, - "op": "POP", - "gas": 147488, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15331, - "op": "POP", - "gas": 147486, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15332, - "op": "PUSH1", - "gas": 147484, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15334, - "op": "PUSH1", - "gas": 147481, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15336, - "op": "MLOAD", - "gas": 147478, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15337, - "op": "DUP1", - "gas": 147475, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15338, - "op": "DUP4", - "gas": 147472, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15339, - "op": "SUB", - "gas": 147469, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15340, - "op": "DUP2", - "gas": 147466, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15341, - "op": "PUSH1", - "gas": 147463, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15343, - "op": "DUP7", - "gas": 147460, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15344, - "op": "GAS", - "gas": 147457, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15345, - "op": "CALL", - "gas": 147455, - "gasCost": 145192, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000023fff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 142592, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": {} - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 142589, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 142586, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 142574, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 142571, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 8, - "op": "LT", - "gas": 142569, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 142566, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 142563, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 142553, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 142550, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16, - "op": "PUSH29", - "gas": 142547, - "gasCost": 3, - "depth": 3, - "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 46, - "op": "SWAP1", - "gas": 142544, - "gasCost": 3, - "depth": 3, - "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 47, - "op": "DIV", - "gas": 142541, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 48, - "op": "PUSH4", - "gas": 142536, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 53, - "op": "AND", - "gas": 142533, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 54, - "op": "DUP1", - "gas": 142530, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 142527, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 60, - "op": "EQ", - "gas": 142524, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000003659cfe6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 142521, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 142518, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 65, - "op": "DUP1", - "gas": 142508, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 66, - "op": "PUSH4", - "gas": 142505, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 71, - "op": "EQ", - "gas": 142502, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000004f1ef286" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 72, - "op": "PUSH2", - "gas": 142499, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 75, - "op": "JUMPI", - "gas": 142496, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 76, - "op": "DUP1", - "gas": 142486, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 77, - "op": "PUSH4", - "gas": 142483, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 82, - "op": "EQ", - "gas": 142480, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000005c60da1b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 83, - "op": "PUSH2", - "gas": 142477, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 86, - "op": "JUMPI", - "gas": 142474, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 87, - "op": "DUP1", - "gas": 142464, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 88, - "op": "PUSH4", - "gas": 142461, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 93, - "op": "EQ", - "gas": 142458, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000008f283970" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 142455, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 142452, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 98, - "op": "DUP1", - "gas": 142442, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 99, - "op": "PUSH4", - "gas": 142439, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 104, - "op": "EQ", - "gas": 142436, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000f851a440" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 142433, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 108, - "op": "JUMPI", - "gas": 142430, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 109, - "op": "JUMPDEST", - "gas": 142420, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 110, - "op": "PUSH2", - "gas": 142419, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 113, - "op": "PUSH2", - "gas": 142416, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 116, - "op": "JUMP", - "gas": 142413, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 505, - "op": "JUMPDEST", - "gas": 142405, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 506, - "op": "PUSH2", - "gas": 142404, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 509, - "op": "PUSH2", - "gas": 142401, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 512, - "op": "JUMP", - "gas": 142398, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1398, - "op": "JUMPDEST", - "gas": 142390, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1399, - "op": "PUSH2", - "gas": 142389, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1402, - "op": "PUSH2", - "gas": 142386, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1405, - "op": "JUMP", - "gas": 142383, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1704, - "op": "JUMPDEST", - "gas": 142375, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1705, - "op": "PUSH1", - "gas": 142374, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1707, - "op": "DUP1", - "gas": 142371, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1708, - "op": "PUSH32", - "gas": 142368, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1741, - "op": "PUSH1", - "gas": 142365, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1743, - "op": "MUL", - "gas": 142362, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1744, - "op": "SWAP1", - "gas": 142357, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1745, - "op": "POP", - "gas": 142354, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1746, - "op": "DUP1", - "gas": 142352, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1747, - "op": "SLOAD", - "gas": 142349, - "gasCost": 2100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1748, - "op": "SWAP2", - "gas": 140249, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1749, - "op": "POP", - "gas": 140246, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1750, - "op": "POP", - "gas": 140244, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1751, - "op": "SWAP1", - "gas": 140242, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1752, - "op": "JUMP", - "gas": 140239, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1406, - "op": "JUMPDEST", - "gas": 140231, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1407, - "op": "PUSH20", - "gas": 140230, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1428, - "op": "AND", - "gas": 140227, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1429, - "op": "CALLER", - "gas": 140224, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1430, - "op": "PUSH20", - "gas": 140222, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1451, - "op": "AND", - "gas": 140219, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1452, - "op": "EQ", - "gas": 140216, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1453, - "op": "ISZERO", - "gas": 140213, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1454, - "op": "ISZERO", - "gas": 140210, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1455, - "op": "ISZERO", - "gas": 140207, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1456, - "op": "PUSH2", - "gas": 140204, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1459, - "op": "JUMPI", - "gas": 140201, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1607, - "op": "JUMPDEST", - "gas": 140191, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1608, - "op": "PUSH2", - "gas": 140190, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1611, - "op": "PUSH2", - "gas": 140187, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1614, - "op": "JUMP", - "gas": 140184, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1911, - "op": "JUMPDEST", - "gas": 140176, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1912, - "op": "JUMP", - "gas": 140175, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1615, - "op": "JUMPDEST", - "gas": 140167, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1616, - "op": "JUMP", - "gas": 140166, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 513, - "op": "JUMPDEST", - "gas": 140158, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 514, - "op": "PUSH2", - "gas": 140157, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 517, - "op": "PUSH2", - "gas": 140154, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 520, - "op": "PUSH2", - "gas": 140151, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 523, - "op": "JUMP", - "gas": 140148, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1617, - "op": "JUMPDEST", - "gas": 140140, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1618, - "op": "PUSH1", - "gas": 140139, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1620, - "op": "DUP1", - "gas": 140136, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1621, - "op": "PUSH32", - "gas": 140133, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1654, - "op": "PUSH1", - "gas": 140130, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1656, - "op": "MUL", - "gas": 140127, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1657, - "op": "SWAP1", - "gas": 140122, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1658, - "op": "POP", - "gas": 140119, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1659, - "op": "DUP1", - "gas": 140117, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } - }, - { - "pc": 1660, - "op": "SLOAD", - "gas": 140114, - "gasCost": 2100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1661, - "op": "SWAP2", - "gas": 138014, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1662, - "op": "POP", - "gas": 138011, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1663, - "op": "POP", - "gas": 138009, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1664, - "op": "SWAP1", - "gas": 138007, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1665, - "op": "JUMP", - "gas": 138004, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 524, - "op": "JUMPDEST", - "gas": 137996, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 525, - "op": "PUSH2", - "gas": 137995, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 528, - "op": "JUMP", - "gas": 137992, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1666, - "op": "JUMPDEST", - "gas": 137984, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1667, - "op": "CALLDATASIZE", - "gas": 137983, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1668, - "op": "PUSH1", - "gas": 137981, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1670, - "op": "DUP1", - "gas": 137978, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1671, - "op": "CALLDATACOPY", - "gas": 137975, - "gasCost": 18, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1672, - "op": "PUSH1", - "gas": 137957, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1674, - "op": "DUP1", - "gas": 137954, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1675, - "op": "CALLDATASIZE", - "gas": 137951, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1676, - "op": "PUSH1", - "gas": 137949, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1678, - "op": "DUP5", - "gas": 137946, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1679, - "op": "GAS", - "gas": 137943, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1680, - "op": "DELEGATECALL", - "gas": 137941, - "gasCost": 135827, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000021ad5" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 133227, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 133224, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 133221, - "gasCost": 12, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 133209, - "gasCost": 2, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 133207, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 133204, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 133201, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 133198, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 133188, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 133187, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 133185, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 133182, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 133180, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 133177, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 133174, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 133164, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 133161, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 133158, - "gasCost": 3, - "depth": 4, - "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 133155, - "gasCost": 3, - "depth": 4, - "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 133152, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 133149, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 133146, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000007f2eecc3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 133143, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 133140, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 434, - "op": "JUMPDEST", - "gas": 133130, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 435, - "op": "DUP1", - "gas": 133129, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 436, - "op": "PUSH4", - "gas": 133126, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 441, - "op": "GT", - "gas": 133123, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000003644e515" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 442, - "op": "PUSH2", - "gas": 133120, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 445, - "op": "JUMPI", - "gas": 133117, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 641, - "op": "JUMPDEST", - "gas": 133107, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 642, - "op": "DUP1", - "gas": 133106, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 643, - "op": "PUSH4", - "gas": 133103, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 648, - "op": "GT", - "gas": 133100, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000002fc81e09" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 649, - "op": "PUSH2", - "gas": 133097, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 652, - "op": "JUMPI", - "gas": 133094, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002e3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 739, - "op": "JUMPDEST", - "gas": 133084, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 740, - "op": "DUP1", - "gas": 133083, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 741, - "op": "PUSH4", - "gas": 133080, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 746, - "op": "GT", - "gas": 133077, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000001a895266" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 747, - "op": "PUSH2", - "gas": 133074, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 750, - "op": "JUMPI", - "gas": 133071, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000314" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 751, - "op": "DUP1", - "gas": 133061, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 752, - "op": "PUSH4", - "gas": 133058, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 757, - "op": "EQ", - "gas": 133055, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000001a895266" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 758, - "op": "PUSH2", - "gas": 133052, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 761, - "op": "JUMPI", - "gas": 133049, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000041f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 762, - "op": "DUP1", - "gas": 133039, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 763, - "op": "PUSH4", - "gas": 133036, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 768, - "op": "EQ", - "gas": 133033, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 769, - "op": "PUSH2", - "gas": 133030, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 772, - "op": "JUMPI", - "gas": 133027, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000454" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1108, - "op": "JUMPDEST", - "gas": 133017, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1109, - "op": "PUSH2", - "gas": 133016, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1112, - "op": "PUSH1", - "gas": 133013, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1114, - "op": "DUP1", - "gas": 133010, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1115, - "op": "CALLDATASIZE", - "gas": 133007, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1116, - "op": "SUB", - "gas": 133005, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1117, - "op": "PUSH1", - "gas": 133002, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1119, - "op": "DUP2", - "gas": 132999, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1120, - "op": "LT", - "gas": 132996, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1121, - "op": "ISZERO", - "gas": 132993, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1122, - "op": "PUSH2", - "gas": 132990, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1125, - "op": "JUMPI", - "gas": 132987, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000046a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1130, - "op": "JUMPDEST", - "gas": 132977, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1131, - "op": "POP", - "gas": 132976, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1132, - "op": "PUSH20", - "gas": 132974, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1153, - "op": "DUP2", - "gas": 132971, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1154, - "op": "CALLDATALOAD", - "gas": 132968, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1155, - "op": "DUP2", - "gas": 132965, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1156, - "op": "AND", - "gas": 132962, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1157, - "op": "SWAP2", - "gas": 132959, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1158, - "op": "PUSH1", - "gas": 132956, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1160, - "op": "DUP2", - "gas": 132953, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1161, - "op": "ADD", - "gas": 132950, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1162, - "op": "CALLDATALOAD", - "gas": 132947, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1163, - "op": "SWAP1", - "gas": 132944, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1164, - "op": "SWAP2", - "gas": 132941, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1165, - "op": "AND", - "gas": 132938, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1166, - "op": "SWAP1", - "gas": 132935, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1167, - "op": "PUSH1", - "gas": 132932, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1169, - "op": "ADD", - "gas": 132929, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1170, - "op": "CALLDATALOAD", - "gas": 132926, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1171, - "op": "PUSH2", - "gas": 132923, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 1174, - "op": "JUMP", - "gas": 132920, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000010e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4329, - "op": "JUMPDEST", - "gas": 132912, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4330, - "op": "PUSH1", - "gas": 132911, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4332, - "op": "SLOAD", - "gas": 132908, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4333, - "op": "PUSH1", - "gas": 130808, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4335, - "op": "SWAP1", - "gas": 130805, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4336, - "op": "PUSH21", - "gas": 130802, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4358, - "op": "SWAP1", - "gas": 130799, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4359, - "op": "DIV", - "gas": 130796, - "gasCost": 5, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000010000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4360, - "op": "PUSH1", - "gas": 130791, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4362, - "op": "AND", - "gas": 130788, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4363, - "op": "ISZERO", - "gas": 130785, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4364, - "op": "PUSH2", - "gas": 130782, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4367, - "op": "JUMPI", - "gas": 130779, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001176" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4470, - "op": "JUMPDEST", - "gas": 130769, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4471, - "op": "CALLER", - "gas": 130768, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4472, - "op": "PUSH1", - "gas": 130766, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4474, - "op": "DUP2", - "gas": 130763, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4475, - "op": "DUP2", - "gas": 130760, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4476, - "op": "MSTORE", - "gas": 130757, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4477, - "op": "PUSH1", - "gas": 130754, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4479, - "op": "PUSH1", - "gas": 130751, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4481, - "op": "MSTORE", - "gas": 130748, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4482, - "op": "PUSH1", - "gas": 130745, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4484, - "op": "SWAP1", - "gas": 130742, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4485, - "op": "SHA3", - "gas": 130739, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } - }, - { - "pc": 4486, - "op": "SLOAD", - "gas": 130697, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4487, - "op": "PUSH1", - "gas": 128597, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4489, - "op": "AND", - "gas": 128594, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4490, - "op": "ISZERO", - "gas": 128591, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4491, - "op": "PUSH2", - "gas": 128588, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4494, - "op": "JUMPI", - "gas": 128585, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000011df" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4575, - "op": "JUMPDEST", - "gas": 128575, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4576, - "op": "PUSH20", - "gas": 128574, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4597, - "op": "DUP6", - "gas": 128571, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4598, - "op": "AND", - "gas": 128568, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4599, - "op": "PUSH1", - "gas": 128565, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4601, - "op": "SWAP1", - "gas": 128562, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4602, - "op": "DUP2", - "gas": 128559, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4603, - "op": "MSTORE", - "gas": 128556, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4604, - "op": "PUSH1", - "gas": 128553, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4606, - "op": "PUSH1", - "gas": 128550, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4608, - "op": "MSTORE", - "gas": 128547, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4609, - "op": "PUSH1", - "gas": 128544, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4611, - "op": "SWAP1", - "gas": 128541, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4612, - "op": "SHA3", - "gas": 128538, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4613, - "op": "SLOAD", - "gas": 128496, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4614, - "op": "DUP6", - "gas": 126396, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4615, - "op": "SWAP1", - "gas": 126393, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4616, - "op": "PUSH1", - "gas": 126390, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4618, - "op": "AND", - "gas": 126387, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4619, - "op": "ISZERO", - "gas": 126384, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4620, - "op": "PUSH2", - "gas": 126381, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4623, - "op": "JUMPI", - "gas": 126378, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001260" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4704, - "op": "JUMPDEST", - "gas": 126368, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4705, - "op": "PUSH20", - "gas": 126367, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4726, - "op": "DUP6", - "gas": 126364, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4727, - "op": "AND", - "gas": 126361, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4728, - "op": "PUSH1", - "gas": 126358, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4730, - "op": "SWAP1", - "gas": 126355, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4731, - "op": "DUP2", - "gas": 126352, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4732, - "op": "MSTORE", - "gas": 126349, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4733, - "op": "PUSH1", - "gas": 126346, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4735, - "op": "PUSH1", - "gas": 126343, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4737, - "op": "MSTORE", - "gas": 126340, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4738, - "op": "PUSH1", - "gas": 126337, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4740, - "op": "SWAP1", - "gas": 126334, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4741, - "op": "SHA3", - "gas": 126331, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4742, - "op": "SLOAD", - "gas": 126289, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4743, - "op": "DUP6", - "gas": 124189, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4744, - "op": "SWAP1", - "gas": 124186, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4745, - "op": "PUSH1", - "gas": 124183, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4747, - "op": "AND", - "gas": 124180, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4748, - "op": "ISZERO", - "gas": 124177, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4749, - "op": "PUSH2", - "gas": 124174, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4752, - "op": "JUMPI", - "gas": 124171, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000012e1" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4833, - "op": "JUMPDEST", - "gas": 124161, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4834, - "op": "PUSH20", - "gas": 124160, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4855, - "op": "DUP8", - "gas": 124157, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4856, - "op": "AND", - "gas": 124154, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4857, - "op": "PUSH1", - "gas": 124151, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4859, - "op": "SWAP1", - "gas": 124148, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4860, - "op": "DUP2", - "gas": 124145, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4861, - "op": "MSTORE", - "gas": 124142, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4862, - "op": "PUSH1", - "gas": 124139, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4864, - "op": "PUSH1", - "gas": 124136, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4866, - "op": "SWAP1", - "gas": 124133, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4867, - "op": "DUP2", - "gas": 124130, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4868, - "op": "MSTORE", - "gas": 124127, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4869, - "op": "PUSH1", - "gas": 124124, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4871, - "op": "DUP1", - "gas": 124121, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4872, - "op": "DUP4", - "gas": 124118, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4873, - "op": "SHA3", - "gas": 124115, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4874, - "op": "CALLER", - "gas": 124073, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4875, - "op": "DUP5", - "gas": 124071, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4876, - "op": "MSTORE", - "gas": 124068, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4877, - "op": "SWAP1", - "gas": 124065, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4878, - "op": "SWAP2", - "gas": 124062, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4879, - "op": "MSTORE", - "gas": 124059, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4880, - "op": "SWAP1", - "gas": 124056, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4881, - "op": "SHA3", - "gas": 124053, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4882, - "op": "SLOAD", - "gas": 124011, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4883, - "op": "DUP6", - "gas": 121911, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4884, - "op": "GT", - "gas": 121908, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4885, - "op": "ISZERO", - "gas": 121905, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4886, - "op": "PUSH2", - "gas": 121902, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4889, - "op": "JUMPI", - "gas": 121899, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000136a" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4970, - "op": "JUMPDEST", - "gas": 121889, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4971, - "op": "PUSH2", - "gas": 121888, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4974, - "op": "DUP8", - "gas": 121885, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4975, - "op": "DUP8", - "gas": 121882, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4976, - "op": "DUP8", - "gas": 121879, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4977, - "op": "PUSH2", - "gas": 121876, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4980, - "op": "JUMP", - "gas": 121873, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003b21" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15137, - "op": "JUMPDEST", - "gas": 121865, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15138, - "op": "PUSH20", - "gas": 121864, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15159, - "op": "DUP4", - "gas": 121861, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15160, - "op": "AND", - "gas": 121858, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15161, - "op": "PUSH2", - "gas": 121855, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15164, - "op": "JUMPI", - "gas": 121852, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000003b8d" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15245, - "op": "JUMPDEST", - "gas": 121842, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15246, - "op": "PUSH20", - "gas": 121841, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15267, - "op": "DUP3", - "gas": 121838, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15268, - "op": "AND", - "gas": 121835, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15269, - "op": "PUSH2", - "gas": 121832, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15272, - "op": "JUMPI", - "gas": 121829, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000003bf9" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15353, - "op": "JUMPDEST", - "gas": 121819, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15354, - "op": "PUSH20", - "gas": 121818, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15375, - "op": "DUP4", - "gas": 121815, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15376, - "op": "AND", - "gas": 121812, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15377, - "op": "PUSH1", - "gas": 121809, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15379, - "op": "SWAP1", - "gas": 121806, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15380, - "op": "DUP2", - "gas": 121803, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15381, - "op": "MSTORE", - "gas": 121800, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15382, - "op": "PUSH1", - "gas": 121797, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15384, - "op": "PUSH1", - "gas": 121794, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15386, - "op": "MSTORE", - "gas": 121791, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15387, - "op": "PUSH1", - "gas": 121788, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15389, - "op": "SWAP1", - "gas": 121785, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15390, - "op": "SHA3", - "gas": 121782, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15391, - "op": "SLOAD", - "gas": 121740, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15392, - "op": "DUP2", - "gas": 119640, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15393, - "op": "GT", - "gas": 119637, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15394, - "op": "ISZERO", - "gas": 119634, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15395, - "op": "PUSH2", - "gas": 119631, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15398, - "op": "JUMPI", - "gas": 119628, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003c77" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15479, - "op": "JUMPDEST", - "gas": 119618, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15480, - "op": "PUSH20", - "gas": 119617, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15501, - "op": "DUP4", - "gas": 119614, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15502, - "op": "AND", - "gas": 119611, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15503, - "op": "PUSH1", - "gas": 119608, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15505, - "op": "SWAP1", - "gas": 119605, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15506, - "op": "DUP2", - "gas": 119602, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15507, - "op": "MSTORE", - "gas": 119599, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15508, - "op": "PUSH1", - "gas": 119596, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15510, - "op": "PUSH1", - "gas": 119593, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15512, - "op": "MSTORE", - "gas": 119590, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15513, - "op": "PUSH1", - "gas": 119587, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15515, - "op": "SWAP1", - "gas": 119584, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15516, - "op": "SHA3", - "gas": 119581, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15517, - "op": "SLOAD", - "gas": 119539, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15518, - "op": "PUSH2", - "gas": 119439, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15521, - "op": "SWAP1", - "gas": 119436, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15522, - "op": "DUP3", - "gas": 119433, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15523, - "op": "PUSH2", - "gas": 119430, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15526, - "op": "JUMP", - "gas": 119427, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003d4c" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15692, - "op": "JUMPDEST", - "gas": 119419, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15693, - "op": "PUSH1", - "gas": 119418, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15695, - "op": "PUSH2", - "gas": 119415, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15698, - "op": "DUP4", - "gas": 119412, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15699, - "op": "DUP4", - "gas": 119409, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15700, - "op": "PUSH1", - "gas": 119406, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15702, - "op": "MLOAD", - "gas": 119403, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15703, - "op": "DUP1", - "gas": 119400, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15704, - "op": "PUSH1", - "gas": 119397, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15706, - "op": "ADD", - "gas": 119394, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15707, - "op": "PUSH1", - "gas": 119391, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15709, - "op": "MSTORE", - "gas": 119388, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15710, - "op": "DUP1", - "gas": 119385, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15711, - "op": "PUSH1", - "gas": 119382, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15713, - "op": "DUP2", - "gas": 119379, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15714, - "op": "MSTORE", - "gas": 119376, - "gasCost": 9, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15715, - "op": "PUSH1", - "gas": 119367, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15717, - "op": "ADD", - "gas": 119364, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15718, - "op": "PUSH32", - "gas": 119361, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15751, - "op": "DUP2", - "gas": 119358, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15752, - "op": "MSTORE", - "gas": 119355, - "gasCost": 6, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15753, - "op": "POP", - "gas": 119349, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15754, - "op": "PUSH2", - "gas": 119347, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15757, - "op": "JUMP", - "gas": 119344, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000004576" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17782, - "op": "JUMPDEST", - "gas": 119336, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17783, - "op": "PUSH1", - "gas": 119335, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17785, - "op": "DUP2", - "gas": 119332, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17786, - "op": "DUP5", - "gas": 119329, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17787, - "op": "DUP5", - "gas": 119326, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17788, - "op": "GT", - "gas": 119323, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17789, - "op": "ISZERO", - "gas": 119320, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17790, - "op": "PUSH2", - "gas": 119317, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17793, - "op": "JUMPI", - "gas": 119314, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000461f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17951, - "op": "JUMPDEST", - "gas": 119304, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17952, - "op": "POP", - "gas": 119303, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17953, - "op": "POP", - "gas": 119301, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17954, - "op": "POP", - "gas": 119299, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17955, - "op": "SWAP1", - "gas": 119297, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17956, - "op": "SUB", - "gas": 119294, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17957, - "op": "SWAP1", - "gas": 119291, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17958, - "op": "JUMP", - "gas": 119288, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15758, - "op": "JUMPDEST", - "gas": 119280, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15759, - "op": "SWAP4", - "gas": 119279, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15760, - "op": "SWAP3", - "gas": 119276, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15761, - "op": "POP", - "gas": 119273, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15762, - "op": "POP", - "gas": 119271, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15763, - "op": "POP", - "gas": 119269, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15764, - "op": "JUMP", - "gas": 119267, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15527, - "op": "JUMPDEST", - "gas": 119259, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15528, - "op": "PUSH20", - "gas": 119258, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15549, - "op": "DUP1", - "gas": 119255, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15550, - "op": "DUP6", - "gas": 119252, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15551, - "op": "AND", - "gas": 119249, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15552, - "op": "PUSH1", - "gas": 119246, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15554, - "op": "SWAP1", - "gas": 119243, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15555, - "op": "DUP2", - "gas": 119240, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15556, - "op": "MSTORE", - "gas": 119237, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15557, - "op": "PUSH1", - "gas": 119234, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15559, - "op": "PUSH1", - "gas": 119231, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15561, - "op": "MSTORE", - "gas": 119228, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15562, - "op": "PUSH1", - "gas": 119225, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15564, - "op": "DUP1", - "gas": 119222, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15565, - "op": "DUP3", - "gas": 119219, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15566, - "op": "SHA3", - "gas": 119216, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15567, - "op": "SWAP4", - "gas": 119174, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15568, - "op": "SWAP1", - "gas": 119171, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15569, - "op": "SWAP4", - "gas": 119168, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15570, - "op": "SSTORE", - "gas": 119165, - "gasCost": 2900, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15571, - "op": "SWAP1", - "gas": 116265, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15572, - "op": "DUP5", - "gas": 116262, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15573, - "op": "AND", - "gas": 116259, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15574, - "op": "DUP2", - "gas": 116256, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15575, - "op": "MSTORE", - "gas": 116253, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15576, - "op": "SHA3", - "gas": 116250, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15577, - "op": "SLOAD", - "gas": 116208, - "gasCost": 2100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15578, - "op": "PUSH2", - "gas": 114108, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15581, - "op": "SWAP1", - "gas": 114105, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003ce3" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15582, - "op": "DUP3", - "gas": 114102, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15583, - "op": "PUSH2", - "gas": 114099, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15586, - "op": "JUMP", - "gas": 114096, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003e26" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15910, - "op": "JUMPDEST", - "gas": 114088, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15911, - "op": "PUSH1", - "gas": 114087, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15913, - "op": "DUP3", - "gas": 114084, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15914, - "op": "DUP3", - "gas": 114081, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15915, - "op": "ADD", - "gas": 114078, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15916, - "op": "DUP4", - "gas": 114075, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15917, - "op": "DUP2", - "gas": 114072, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15918, - "op": "LT", - "gas": 114069, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15919, - "op": "ISZERO", - "gas": 114066, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15920, - "op": "PUSH2", - "gas": 114063, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15923, - "op": "JUMPI", - "gas": 114060, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003d8e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15758, - "op": "JUMPDEST", - "gas": 114050, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15759, - "op": "SWAP4", - "gas": 114049, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15760, - "op": "SWAP3", - "gas": 114046, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ce3" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15761, - "op": "POP", - "gas": 114043, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15762, - "op": "POP", - "gas": 114041, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15763, - "op": "POP", - "gas": 114039, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15764, - "op": "JUMP", - "gas": 114037, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15587, - "op": "JUMPDEST", - "gas": 114029, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15588, - "op": "PUSH20", - "gas": 114028, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15609, - "op": "DUP1", - "gas": 114025, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15610, - "op": "DUP5", - "gas": 114022, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15611, - "op": "AND", - "gas": 114019, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15612, - "op": "PUSH1", - "gas": 114016, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15614, - "op": "DUP2", - "gas": 114013, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15615, - "op": "DUP2", - "gas": 114010, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15616, - "op": "MSTORE", - "gas": 114007, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15617, - "op": "PUSH1", - "gas": 114004, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15619, - "op": "PUSH1", - "gas": 114001, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15621, - "op": "SWAP1", - "gas": 113998, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15622, - "op": "DUP2", - "gas": 113995, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15623, - "op": "MSTORE", - "gas": 113992, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15624, - "op": "PUSH1", - "gas": 113989, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15626, - "op": "SWAP2", - "gas": 113986, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15627, - "op": "DUP3", - "gas": 113983, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15628, - "op": "SWAP1", - "gas": 113980, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15629, - "op": "SHA3", - "gas": 113977, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15630, - "op": "SWAP5", - "gas": 113935, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15631, - "op": "SWAP1", - "gas": 113932, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15632, - "op": "SWAP5", - "gas": 113929, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15633, - "op": "SSTORE", - "gas": 113926, - "gasCost": 2900, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15634, - "op": "DUP1", - "gas": 111026, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15635, - "op": "MLOAD", - "gas": 111023, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15636, - "op": "DUP6", - "gas": 111020, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15637, - "op": "DUP2", - "gas": 111017, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15638, - "op": "MSTORE", - "gas": 111014, - "gasCost": 6, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15639, - "op": "SWAP1", - "gas": 111008, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15640, - "op": "MLOAD", - "gas": 111005, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15641, - "op": "SWAP2", - "gas": 111002, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15642, - "op": "SWAP4", - "gas": 110999, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15643, - "op": "SWAP3", - "gas": 110996, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15644, - "op": "DUP8", - "gas": 110993, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15645, - "op": "AND", - "gas": 110990, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15646, - "op": "SWAP3", - "gas": 110987, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15647, - "op": "PUSH32", - "gas": 110984, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15680, - "op": "SWAP3", - "gas": 110981, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15681, - "op": "SWAP2", - "gas": 110978, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15682, - "op": "DUP3", - "gas": 110975, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15683, - "op": "SWAP1", - "gas": 110972, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15684, - "op": "SUB", - "gas": 110969, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15685, - "op": "ADD", - "gas": 110966, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15686, - "op": "SWAP1", - "gas": 110963, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15687, - "op": "LOG3", - "gas": 110960, - "gasCost": 1756, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15688, - "op": "POP", - "gas": 109204, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15689, - "op": "POP", - "gas": 109202, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15690, - "op": "POP", - "gas": 109200, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15691, - "op": "JUMP", - "gas": 109198, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4981, - "op": "JUMPDEST", - "gas": 109190, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4982, - "op": "PUSH20", - "gas": 109189, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5003, - "op": "DUP8", - "gas": 109186, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5004, - "op": "AND", - "gas": 109183, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5005, - "op": "PUSH1", - "gas": 109180, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5007, - "op": "SWAP1", - "gas": 109177, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5008, - "op": "DUP2", - "gas": 109174, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5009, - "op": "MSTORE", - "gas": 109171, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5010, - "op": "PUSH1", - "gas": 109168, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5012, - "op": "PUSH1", - "gas": 109165, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5014, - "op": "SWAP1", - "gas": 109162, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5015, - "op": "DUP2", - "gas": 109159, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5016, - "op": "MSTORE", - "gas": 109156, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5017, - "op": "PUSH1", - "gas": 109153, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5019, - "op": "DUP1", - "gas": 109150, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5020, - "op": "DUP4", - "gas": 109147, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5021, - "op": "SHA3", - "gas": 109144, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5022, - "op": "CALLER", - "gas": 109102, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5023, - "op": "DUP5", - "gas": 109100, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5024, - "op": "MSTORE", - "gas": 109097, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5025, - "op": "SWAP1", - "gas": 109094, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5026, - "op": "SWAP2", - "gas": 109091, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5027, - "op": "MSTORE", - "gas": 109088, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5028, - "op": "SWAP1", - "gas": 109085, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5029, - "op": "SHA3", - "gas": 109082, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5030, - "op": "SLOAD", - "gas": 109040, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5031, - "op": "PUSH2", - "gas": 108940, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5034, - "op": "SWAP1", - "gas": 108937, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000013b0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5035, - "op": "DUP7", - "gas": 108934, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5036, - "op": "PUSH2", - "gas": 108931, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5039, - "op": "JUMP", - "gas": 108928, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003d4c" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15692, - "op": "JUMPDEST", - "gas": 108920, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15693, - "op": "PUSH1", - "gas": 108919, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15695, - "op": "PUSH2", - "gas": 108916, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15698, - "op": "DUP4", - "gas": 108913, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15699, - "op": "DUP4", - "gas": 108910, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15700, - "op": "PUSH1", - "gas": 108907, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15702, - "op": "MLOAD", - "gas": 108904, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15703, - "op": "DUP1", - "gas": 108901, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15704, - "op": "PUSH1", - "gas": 108898, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15706, - "op": "ADD", - "gas": 108895, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15707, - "op": "PUSH1", - "gas": 108892, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15709, - "op": "MSTORE", - "gas": 108889, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15710, - "op": "DUP1", - "gas": 108886, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15711, - "op": "PUSH1", - "gas": 108883, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15713, - "op": "DUP2", - "gas": 108880, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15714, - "op": "MSTORE", - "gas": 108877, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000000000000000000000000000000000000000001e", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15715, - "op": "PUSH1", - "gas": 108874, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15717, - "op": "ADD", - "gas": 108871, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15718, - "op": "PUSH32", - "gas": 108868, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15751, - "op": "DUP2", - "gas": 108865, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15752, - "op": "MSTORE", - "gas": 108862, - "gasCost": 6, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15753, - "op": "POP", - "gas": 108856, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15754, - "op": "PUSH2", - "gas": 108854, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15757, - "op": "JUMP", - "gas": 108851, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000004576" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17782, - "op": "JUMPDEST", - "gas": 108843, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17783, - "op": "PUSH1", - "gas": 108842, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17785, - "op": "DUP2", - "gas": 108839, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17786, - "op": "DUP5", - "gas": 108836, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17787, - "op": "DUP5", - "gas": 108833, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17788, - "op": "GT", - "gas": 108830, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17789, - "op": "ISZERO", - "gas": 108827, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17790, - "op": "PUSH2", - "gas": 108824, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17793, - "op": "JUMPI", - "gas": 108821, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000461f" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17951, - "op": "JUMPDEST", - "gas": 108811, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17952, - "op": "POP", - "gas": 108810, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17953, - "op": "POP", - "gas": 108808, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17954, - "op": "POP", - "gas": 108806, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17955, - "op": "SWAP1", - "gas": 108804, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17956, - "op": "SUB", - "gas": 108801, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17957, - "op": "SWAP1", - "gas": 108798, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17958, - "op": "JUMP", - "gas": 108795, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000003d8e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15758, - "op": "JUMPDEST", - "gas": 108787, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15759, - "op": "SWAP4", - "gas": 108786, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15760, - "op": "SWAP3", - "gas": 108783, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000013b0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15761, - "op": "POP", - "gas": 108780, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15762, - "op": "POP", - "gas": 108778, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15763, - "op": "POP", - "gas": 108776, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15764, - "op": "JUMP", - "gas": 108774, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5040, - "op": "JUMPDEST", - "gas": 108766, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5041, - "op": "PUSH20", - "gas": 108765, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5062, - "op": "DUP9", - "gas": 108762, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5063, - "op": "AND", - "gas": 108759, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5064, - "op": "PUSH1", - "gas": 108756, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5066, - "op": "SWAP1", - "gas": 108753, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5067, - "op": "DUP2", - "gas": 108750, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5068, - "op": "MSTORE", - "gas": 108747, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5069, - "op": "PUSH1", - "gas": 108744, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5071, - "op": "PUSH1", - "gas": 108741, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5073, - "op": "SWAP1", - "gas": 108738, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5074, - "op": "DUP2", - "gas": 108735, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5075, - "op": "MSTORE", - "gas": 108732, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5076, - "op": "PUSH1", - "gas": 108729, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5078, - "op": "DUP1", - "gas": 108726, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5079, - "op": "DUP4", - "gas": 108723, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5080, - "op": "SHA3", - "gas": 108720, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5081, - "op": "CALLER", - "gas": 108678, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5082, - "op": "DUP5", - "gas": 108676, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5083, - "op": "MSTORE", - "gas": 108673, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5084, - "op": "SWAP1", - "gas": 108670, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5085, - "op": "SWAP2", - "gas": 108667, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5086, - "op": "MSTORE", - "gas": 108664, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5087, - "op": "SWAP1", - "gas": 108661, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5088, - "op": "SHA3", - "gas": 108658, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5089, - "op": "SSTORE", - "gas": 108616, - "gasCost": 2900, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5090, - "op": "PUSH1", - "gas": 105716, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5092, - "op": "SWAP4", - "gas": 105713, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5093, - "op": "POP", - "gas": 105710, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5094, - "op": "POP", - "gas": 105708, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5095, - "op": "POP", - "gas": 105706, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5096, - "op": "POP", - "gas": 105704, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5097, - "op": "SWAP4", - "gas": 105702, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5098, - "op": "SWAP3", - "gas": 105699, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003f1" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5099, - "op": "POP", - "gas": 105696, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5100, - "op": "POP", - "gas": 105694, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5101, - "op": "POP", - "gas": 105692, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5102, - "op": "JUMP", - "gas": 105690, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1009, - "op": "JUMPDEST", - "gas": 105682, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1010, - "op": "PUSH1", - "gas": 105681, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1012, - "op": "DUP1", - "gas": 105678, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1013, - "op": "MLOAD", - "gas": 105675, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1014, - "op": "SWAP2", - "gas": 105672, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1015, - "op": "ISZERO", - "gas": 105669, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1016, - "op": "ISZERO", - "gas": 105666, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1017, - "op": "DUP3", - "gas": 105663, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1018, - "op": "MSTORE", - "gas": 105660, - "gasCost": 6, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1019, - "op": "MLOAD", - "gas": 105654, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1020, - "op": "SWAP1", - "gas": 105651, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1021, - "op": "DUP2", - "gas": 105648, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1022, - "op": "SWAP1", - "gas": 105645, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1023, - "op": "SUB", - "gas": 105642, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1024, - "op": "PUSH1", - "gas": 105639, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1026, - "op": "ADD", - "gas": 105636, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1027, - "op": "SWAP1", - "gas": 105633, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1028, - "op": "RETURN", - "gas": 105630, - "gasCost": 0, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1681, - "op": "RETURNDATASIZE", - "gas": 107744, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1682, - "op": "PUSH1", - "gas": 107742, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1684, - "op": "DUP1", - "gas": 107739, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1685, - "op": "RETURNDATACOPY", - "gas": 107736, - "gasCost": 6, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1686, - "op": "DUP1", - "gas": 107730, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1687, - "op": "PUSH1", - "gas": 107727, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1689, - "op": "DUP2", - "gas": 107724, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1690, - "op": "EQ", - "gas": 107721, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1691, - "op": "PUSH2", - "gas": 107718, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1694, - "op": "JUMPI", - "gas": 107715, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1695, - "op": "RETURNDATASIZE", - "gas": 107705, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1696, - "op": "PUSH1", - "gas": 107703, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1698, - "op": "RETURN", - "gas": 107700, - "gasCost": 0, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15346, - "op": "SWAP2", - "gas": 109963, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15347, - "op": "POP", - "gas": 109960, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000225", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15348, - "op": "POP", - "gas": 109958, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15349, - "op": "RETURNDATASIZE", - "gas": 109956, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15350, - "op": "DUP1", - "gas": 109954, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15351, - "op": "PUSH1", - "gas": 109951, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15353, - "op": "DUP2", - "gas": 109948, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15354, - "op": "EQ", - "gas": 109945, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15355, - "op": "PUSH2", - "gas": 109942, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15358, - "op": "JUMPI", - "gas": 109939, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15359, - "op": "PUSH1", - "gas": 109929, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15361, - "op": "MLOAD", - "gas": 109926, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15362, - "op": "SWAP2", - "gas": 109923, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15363, - "op": "POP", - "gas": 109920, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15364, - "op": "PUSH1", - "gas": 109918, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15366, - "op": "NOT", - "gas": 109915, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15367, - "op": "PUSH1", - "gas": 109912, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15369, - "op": "RETURNDATASIZE", - "gas": 109909, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15370, - "op": "ADD", - "gas": 109907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15371, - "op": "AND", - "gas": 109904, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15372, - "op": "DUP3", - "gas": 109901, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15373, - "op": "ADD", - "gas": 109898, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15374, - "op": "PUSH1", - "gas": 109895, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15376, - "op": "MSTORE", - "gas": 109892, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15377, - "op": "RETURNDATASIZE", - "gas": 109889, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15378, - "op": "DUP3", - "gas": 109887, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15379, - "op": "MSTORE", - "gas": 109884, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15380, - "op": "RETURNDATASIZE", - "gas": 109881, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15381, - "op": "PUSH1", - "gas": 109879, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15383, - "op": "PUSH1", - "gas": 109876, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15385, - "op": "DUP5", - "gas": 109873, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15386, - "op": "ADD", - "gas": 109870, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15387, - "op": "RETURNDATACOPY", - "gas": 109867, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "20f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15388, - "op": "PUSH2", - "gas": 109861, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15391, - "op": "JUMP", - "gas": 109858, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000003c25" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15397, - "op": "JUMPDEST", - "gas": 109850, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15398, - "op": "POP", - "gas": 109849, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15399, - "op": "SWAP2", - "gas": 109847, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15400, - "op": "POP", - "gas": 109844, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15401, - "op": "SWAP2", - "gas": 109842, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15402, - "op": "POP", - "gas": 109839, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15403, - "op": "DUP2", - "gas": 109837, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15404, - "op": "DUP1", - "gas": 109834, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15405, - "op": "ISZERO", - "gas": 109831, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15406, - "op": "PUSH2", - "gas": 109828, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15409, - "op": "JUMPI", - "gas": 109825, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c53" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15410, - "op": "POP", - "gas": 109815, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15411, - "op": "DUP1", - "gas": 109813, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15412, - "op": "MLOAD", - "gas": 109810, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15413, - "op": "ISZERO", - "gas": 109807, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15414, - "op": "DUP1", - "gas": 109804, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15415, - "op": "PUSH2", - "gas": 109801, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15418, - "op": "JUMPI", - "gas": 109798, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c53" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15419, - "op": "POP", - "gas": 109788, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15420, - "op": "DUP1", - "gas": 109786, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15421, - "op": "DUP1", - "gas": 109783, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15422, - "op": "PUSH1", - "gas": 109780, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15424, - "op": "ADD", - "gas": 109777, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15425, - "op": "SWAP1", - "gas": 109774, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15426, - "op": "MLOAD", - "gas": 109771, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15427, - "op": "PUSH1", - "gas": 109768, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15429, - "op": "DUP2", - "gas": 109765, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15430, - "op": "LT", - "gas": 109762, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15431, - "op": "ISZERO", - "gas": 109759, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15432, - "op": "PUSH2", - "gas": 109756, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15435, - "op": "JUMPI", - "gas": 109753, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003c50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15440, - "op": "JUMPDEST", - "gas": 109743, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15441, - "op": "POP", - "gas": 109742, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15442, - "op": "MLOAD", - "gas": 109740, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15443, - "op": "JUMPDEST", - "gas": 109737, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15444, - "op": "PUSH2", - "gas": 109736, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 15447, - "op": "JUMPI", - "gas": 109733, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000bb6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2998, - "op": "JUMPDEST", - "gas": 109723, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2999, - "op": "POP", - "gas": 109722, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3000, - "op": "POP", - "gas": 109720, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3001, - "op": "POP", - "gas": 109718, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3002, - "op": "POP", - "gas": 109716, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3003, - "op": "POP", - "gas": 109714, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3004, - "op": "POP", - "gas": 109712, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3005, - "op": "JUMP", - "gas": 109710, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3157, - "op": "JUMPDEST", - "gas": 109702, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3158, - "op": "POP", - "gas": 109701, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3159, - "op": "POP", - "gas": 109699, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3160, - "op": "POP", - "gas": 109697, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3161, - "op": "POP", - "gas": 109695, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3162, - "op": "JUMP", - "gas": 109693, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4150, - "op": "JUMPDEST", - "gas": 109685, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4151, - "op": "PUSH20", - "gas": 109684, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4172, - "op": "DUP4", - "gas": 109681, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4173, - "op": "AND", - "gas": 109678, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4174, - "op": "PUSH1", - "gas": 109675, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4176, - "op": "EQ", - "gas": 109672, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4177, - "op": "ISZERO", - "gas": 109669, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4178, - "op": "PUSH2", - "gas": 109666, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4181, - "op": "JUMPI", - "gas": 109663, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000105d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4189, - "op": "JUMPDEST", - "gas": 109653, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4190, - "op": "PUSH20", - "gas": 109652, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4211, - "op": "DUP4", - "gas": 109649, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4212, - "op": "AND", - "gas": 109646, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4213, - "op": "PUSH1", - "gas": 109643, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4215, - "op": "EQ", - "gas": 109640, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4216, - "op": "ISZERO", - "gas": 109637, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4217, - "op": "PUSH2", - "gas": 109634, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4220, - "op": "JUMPI", - "gas": 109631, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4224, - "op": "JUMPDEST", - "gas": 109621, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4225, - "op": "PUSH1", - "gas": 109620, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4227, - "op": "DUP6", - "gas": 109617, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4228, - "op": "DUP6", - "gas": 109614, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4229, - "op": "PUSH32", - "gas": 109611, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4262, - "op": "DUP2", - "gas": 109608, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4263, - "op": "ADD", - "gas": 109605, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4264, - "op": "DUP2", - "gas": 109602, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4265, - "op": "DUP2", - "gas": 109599, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4266, - "op": "LT", - "gas": 109596, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4267, - "op": "PUSH2", - "gas": 109593, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4270, - "op": "JUMPI", - "gas": 109590, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000010b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4272, - "op": "JUMPDEST", - "gas": 109580, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4273, - "op": "SWAP1", - "gas": 109579, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4274, - "op": "POP", - "gas": 109576, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4275, - "op": "PUSH1", - "gas": 109574, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4277, - "op": "MUL", - "gas": 109571, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4278, - "op": "ADD", - "gas": 109566, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4279, - "op": "PUSH1", - "gas": 109563, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4281, - "op": "DUP2", - "gas": 109560, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4282, - "op": "ADD", - "gas": 109557, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4283, - "op": "SWAP1", - "gas": 109554, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4284, - "op": "PUSH2", - "gas": 109551, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4287, - "op": "SWAP2", - "gas": 109548, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000010c5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4288, - "op": "SWAP1", - "gas": 109545, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4289, - "op": "PUSH2", - "gas": 109542, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4292, - "op": "JUMP", - "gas": 109539, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20459, - "op": "JUMPDEST", - "gas": 109531, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20460, - "op": "PUSH1", - "gas": 109530, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20462, - "op": "PUSH1", - "gas": 109527, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20464, - "op": "DUP3", - "gas": 109524, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20465, - "op": "DUP5", - "gas": 109521, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20466, - "op": "SUB", - "gas": 109518, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20467, - "op": "SLT", - "gas": 109515, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20468, - "op": "ISZERO", - "gas": 109512, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20469, - "op": "PUSH2", - "gas": 109509, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20472, - "op": "JUMPI", - "gas": 109506, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20476, - "op": "JUMPDEST", - "gas": 109496, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20477, - "op": "DUP2", - "gas": 109495, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 109492, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20479, - "op": "PUSH2", - "gas": 109489, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20482, - "op": "DUP2", - "gas": 109486, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20483, - "op": "PUSH2", - "gas": 109483, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20486, - "op": "JUMP", - "gas": 109480, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 109472, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 109471, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 109468, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24425, - "op": "AND", - "gas": 109465, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 109462, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24427, - "op": "EQ", - "gas": 109459, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 109456, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 109453, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 109443, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5242, - "op": "POP", - "gas": 109442, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 109440, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20487, - "op": "JUMPDEST", - "gas": 109432, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20488, - "op": "SWAP4", - "gas": 109431, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20489, - "op": "SWAP3", - "gas": 109428, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20490, - "op": "POP", - "gas": 109425, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20491, - "op": "POP", - "gas": 109423, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20492, - "op": "POP", - "gas": 109421, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20493, - "op": "JUMP", - "gas": 109419, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4293, - "op": "JUMPDEST", - "gas": 109411, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4294, - "op": "PUSH20", - "gas": 109410, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4315, - "op": "AND", - "gas": 109407, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4316, - "op": "PUSH4", - "gas": 109404, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4321, - "op": "DUP6", - "gas": 109401, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4322, - "op": "PUSH1", - "gas": 109398, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4324, - "op": "MLOAD", - "gas": 109395, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4325, - "op": "DUP3", - "gas": 109392, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4326, - "op": "PUSH4", - "gas": 109389, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4331, - "op": "AND", - "gas": 109386, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4332, - "op": "PUSH1", - "gas": 109383, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4334, - "op": "SHL", - "gas": 109380, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4335, - "op": "DUP2", - "gas": 109377, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "70a0823100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4336, - "op": "MSTORE", - "gas": 109374, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "017c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4337, - "op": "PUSH1", - "gas": 109371, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4339, - "op": "ADD", - "gas": 109368, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4340, - "op": "PUSH2", - "gas": 109365, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4343, - "op": "SWAP2", - "gas": 109362, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "00000000000000000000000000000000000000000000000000000000000010fd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4344, - "op": "SWAP1", - "gas": 109359, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4345, - "op": "PUSH2", - "gas": 109356, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4348, - "op": "JUMP", - "gas": 109353, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "0000000000000000000000000000000000000000000000000000000000005a3c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23100, - "op": "JUMPDEST", - "gas": 109345, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23101, - "op": "PUSH20", - "gas": 109344, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23122, - "op": "SWAP2", - "gas": 109341, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23123, - "op": "SWAP1", - "gas": 109338, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23124, - "op": "SWAP2", - "gas": 109335, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23125, - "op": "AND", - "gas": 109332, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23126, - "op": "DUP2", - "gas": 109329, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23127, - "op": "MSTORE", - "gas": 109326, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23128, - "op": "PUSH1", - "gas": 109323, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23130, - "op": "ADD", - "gas": 109320, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23131, - "op": "SWAP1", - "gas": 109317, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 23132, - "op": "JUMP", - "gas": 109314, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000010fd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4349, - "op": "JUMPDEST", - "gas": 109306, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4350, - "op": "PUSH1", - "gas": 109305, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4352, - "op": "PUSH1", - "gas": 109302, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4354, - "op": "MLOAD", - "gas": 109299, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4355, - "op": "DUP1", - "gas": 109296, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4356, - "op": "DUP4", - "gas": 109293, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4357, - "op": "SUB", - "gas": 109290, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4358, - "op": "DUP2", - "gas": 109287, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4359, - "op": "DUP7", - "gas": 109284, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4360, - "op": "DUP1", - "gas": 109281, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4361, - "op": "EXTCODESIZE", - "gas": 109278, - "gasCost": 2600, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4362, - "op": "ISZERO", - "gas": 106678, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4363, - "op": "DUP1", - "gas": 106675, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4364, - "op": "ISZERO", - "gas": 106672, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4365, - "op": "PUSH2", - "gas": 106669, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4368, - "op": "JUMPI", - "gas": 106666, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001115" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4373, - "op": "JUMPDEST", - "gas": 106656, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4374, - "op": "POP", - "gas": 106655, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4375, - "op": "GAS", - "gas": 106653, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4376, - "op": "STATICCALL", - "gas": 106651, - "gasCost": 104987, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000000000001a09b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0170a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 104887, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 104884, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 104881, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 104869, - "gasCost": 2, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 104867, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 104864, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 104861, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 104858, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 104848, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 104847, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 104845, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 104842, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 104840, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 104837, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 104834, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 104824, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 104821, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 104818, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 104815, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 104812, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 104809, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 104806, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 104803, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 104800, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 43, - "op": "DUP1", - "gas": 104790, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 104787, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 49, - "op": "EQ", - "gas": 104784, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 104781, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 104778, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 104768, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 104765, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 104762, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 104759, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 104756, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 344, - "op": "JUMPDEST", - "gas": 104746, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 345, - "op": "PUSH2", - "gas": 104745, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 348, - "op": "PUSH2", - "gas": 104742, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 351, - "op": "CALLDATASIZE", - "gas": 104739, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 104737, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 354, - "op": "PUSH2", - "gas": 104734, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 357, - "op": "JUMP", - "gas": 104731, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2042, - "op": "JUMPDEST", - "gas": 104723, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2043, - "op": "PUSH1", - "gas": 104722, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2045, - "op": "PUSH1", - "gas": 104719, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2047, - "op": "DUP3", - "gas": 104716, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2048, - "op": "DUP5", - "gas": 104713, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2049, - "op": "SUB", - "gas": 104710, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2050, - "op": "SLT", - "gas": 104707, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2051, - "op": "ISZERO", - "gas": 104704, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2052, - "op": "PUSH2", - "gas": 104701, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2055, - "op": "JUMPI", - "gas": 104698, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2060, - "op": "JUMPDEST", - "gas": 104688, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2061, - "op": "PUSH2", - "gas": 104687, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2064, - "op": "DUP3", - "gas": 104684, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2065, - "op": "PUSH2", - "gas": 104681, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2068, - "op": "JUMP", - "gas": 104678, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1912, - "op": "JUMPDEST", - "gas": 104670, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1913, - "op": "DUP1", - "gas": 104669, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1914, - "op": "CALLDATALOAD", - "gas": 104666, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1915, - "op": "PUSH1", - "gas": 104663, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1917, - "op": "PUSH1", - "gas": 104660, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1919, - "op": "PUSH1", - "gas": 104657, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1921, - "op": "SHL", - "gas": 104654, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1922, - "op": "SUB", - "gas": 104651, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1923, - "op": "DUP2", - "gas": 104648, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1924, - "op": "AND", - "gas": 104645, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1925, - "op": "DUP2", - "gas": 104642, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1926, - "op": "EQ", - "gas": 104639, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1927, - "op": "PUSH2", - "gas": 104636, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1930, - "op": "JUMPI", - "gas": 104633, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1935, - "op": "JUMPDEST", - "gas": 104623, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1936, - "op": "SWAP2", - "gas": 104622, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1937, - "op": "SWAP1", - "gas": 104619, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1938, - "op": "POP", - "gas": 104616, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1939, - "op": "JUMP", - "gas": 104614, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2069, - "op": "JUMPDEST", - "gas": 104606, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2070, - "op": "SWAP4", - "gas": 104605, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2071, - "op": "SWAP3", - "gas": 104602, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2072, - "op": "POP", - "gas": 104599, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2073, - "op": "POP", - "gas": 104597, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2074, - "op": "POP", - "gas": 104595, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2075, - "op": "JUMP", - "gas": 104593, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 358, - "op": "JUMPDEST", - "gas": 104585, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 359, - "op": "PUSH1", - "gas": 104584, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 361, - "op": "PUSH1", - "gas": 104581, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 363, - "op": "PUSH1", - "gas": 104578, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 365, - "op": "SHL", - "gas": 104575, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 366, - "op": "SUB", - "gas": 104572, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 367, - "op": "AND", - "gas": 104569, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 368, - "op": "PUSH1", - "gas": 104566, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 370, - "op": "SWAP1", - "gas": 104563, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 371, - "op": "DUP2", - "gas": 104560, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 372, - "op": "MSTORE", - "gas": 104557, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 373, - "op": "PUSH1", - "gas": 104554, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 375, - "op": "DUP2", - "gas": 104551, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 376, - "op": "SWAP1", - "gas": 104548, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 377, - "op": "MSTORE", - "gas": 104545, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 378, - "op": "PUSH1", - "gas": 104542, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 380, - "op": "SWAP1", - "gas": 104539, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 381, - "op": "SHA3", - "gas": 104536, - "gasCost": 42, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 382, - "op": "SLOAD", - "gas": 104494, - "gasCost": 2100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 383, - "op": "SWAP1", - "gas": 102394, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 384, - "op": "JUMP", - "gas": 102391, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 243, - "op": "JUMPDEST", - "gas": 102383, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 244, - "op": "PUSH1", - "gas": 102382, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 246, - "op": "MLOAD", - "gas": 102379, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 247, - "op": "SWAP1", - "gas": 102376, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 248, - "op": "DUP2", - "gas": 102373, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 249, - "op": "MSTORE", - "gas": 102370, - "gasCost": 9, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 250, - "op": "PUSH1", - "gas": 102361, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 252, - "op": "ADD", - "gas": 102358, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 253, - "op": "PUSH2", - "gas": 102355, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 256, - "op": "JUMP", - "gas": 102352, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 195, - "op": "JUMPDEST", - "gas": 102344, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 196, - "op": "PUSH1", - "gas": 102343, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 198, - "op": "MLOAD", - "gas": 102340, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 199, - "op": "DUP1", - "gas": 102337, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 200, - "op": "SWAP2", - "gas": 102334, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 201, - "op": "SUB", - "gas": 102331, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 102328, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 203, - "op": "RETURN", - "gas": 102325, - "gasCost": 0, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4377, - "op": "ISZERO", - "gas": 103989, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4378, - "op": "DUP1", - "gas": 103986, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4379, - "op": "ISZERO", - "gas": 103983, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4380, - "op": "PUSH2", - "gas": 103980, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4383, - "op": "JUMPI", - "gas": 103977, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001129" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4393, - "op": "JUMPDEST", - "gas": 103967, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4394, - "op": "POP", - "gas": 103966, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4395, - "op": "POP", - "gas": 103964, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4396, - "op": "POP", - "gas": 103962, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4397, - "op": "POP", - "gas": 103960, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4398, - "op": "PUSH1", - "gas": 103958, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4400, - "op": "MLOAD", - "gas": 103955, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4401, - "op": "RETURNDATASIZE", - "gas": 103952, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4402, - "op": "PUSH1", - "gas": 103950, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4404, - "op": "NOT", - "gas": 103947, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4405, - "op": "PUSH1", - "gas": 103944, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4407, - "op": "DUP3", - "gas": 103941, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4408, - "op": "ADD", - "gas": 103938, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4409, - "op": "AND", - "gas": 103935, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4410, - "op": "DUP3", - "gas": 103932, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4411, - "op": "ADD", - "gas": 103929, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4412, - "op": "DUP1", - "gas": 103926, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4413, - "op": "PUSH1", - "gas": 103923, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4415, - "op": "MSTORE", - "gas": 103920, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4416, - "op": "POP", - "gas": 103917, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4417, - "op": "DUP2", - "gas": 103915, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4418, - "op": "ADD", - "gas": 103912, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4419, - "op": "SWAP1", - "gas": 103909, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4420, - "op": "PUSH2", - "gas": 103906, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4423, - "op": "SWAP2", - "gas": 103903, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000114d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4424, - "op": "SWAP1", - "gas": 103900, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4425, - "op": "PUSH2", - "gas": 103897, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4428, - "op": "JUMP", - "gas": 103894, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "00000000000000000000000000000000000000000000000000000000000057d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22483, - "op": "JUMPDEST", - "gas": 103886, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22484, - "op": "PUSH1", - "gas": 103885, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22486, - "op": "PUSH1", - "gas": 103882, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22488, - "op": "DUP3", - "gas": 103879, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22489, - "op": "DUP5", - "gas": 103876, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22490, - "op": "SUB", - "gas": 103873, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22491, - "op": "SLT", - "gas": 103870, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22492, - "op": "ISZERO", - "gas": 103867, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22493, - "op": "PUSH2", - "gas": 103864, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22496, - "op": "JUMPI", - "gas": 103861, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22500, - "op": "JUMPDEST", - "gas": 103851, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22501, - "op": "POP", - "gas": 103850, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22502, - "op": "MLOAD", - "gas": 103848, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22503, - "op": "SWAP2", - "gas": 103845, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22504, - "op": "SWAP1", - "gas": 103842, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000114d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22505, - "op": "POP", - "gas": 103839, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22506, - "op": "JUMP", - "gas": 103837, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4429, - "op": "JUMPDEST", - "gas": 103829, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4430, - "op": "SWAP1", - "gas": 103828, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4431, - "op": "POP", - "gas": 103825, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4432, - "op": "PUSH2", - "gas": 103823, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4435, - "op": "DUP7", - "gas": 103820, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4436, - "op": "DUP7", - "gas": 103817, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4437, - "op": "DUP1", - "gas": 103814, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4438, - "op": "DUP1", - "gas": 103811, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4439, - "op": "PUSH1", - "gas": 103808, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4441, - "op": "MUL", - "gas": 103805, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4442, - "op": "PUSH1", - "gas": 103800, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4444, - "op": "ADD", - "gas": 103797, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4445, - "op": "PUSH1", - "gas": 103794, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4447, - "op": "MLOAD", - "gas": 103791, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4448, - "op": "SWAP1", - "gas": 103788, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4449, - "op": "DUP2", - "gas": 103785, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4450, - "op": "ADD", - "gas": 103782, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4451, - "op": "PUSH1", - "gas": 103779, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4453, - "op": "MSTORE", - "gas": 103776, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4454, - "op": "DUP1", - "gas": 103773, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4455, - "op": "SWAP4", - "gas": 103770, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4456, - "op": "SWAP3", - "gas": 103767, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4457, - "op": "SWAP2", - "gas": 103764, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4458, - "op": "SWAP1", - "gas": 103761, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4459, - "op": "DUP2", - "gas": 103758, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4460, - "op": "DUP2", - "gas": 103755, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4461, - "op": "MSTORE", - "gas": 103752, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4462, - "op": "PUSH1", - "gas": 103749, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4464, - "op": "ADD", - "gas": 103746, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4465, - "op": "DUP4", - "gas": 103743, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4466, - "op": "DUP4", - "gas": 103740, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4467, - "op": "PUSH1", - "gas": 103737, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4469, - "op": "MUL", - "gas": 103734, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4470, - "op": "DUP1", - "gas": 103729, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4471, - "op": "DUP3", - "gas": 103726, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4472, - "op": "DUP5", - "gas": 103723, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4473, - "op": "CALLDATACOPY", - "gas": 103720, - "gasCost": 15, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000241" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4474, - "op": "PUSH1", - "gas": 103705, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4476, - "op": "SWAP3", - "gas": 103702, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4477, - "op": "ADD", - "gas": 103699, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000241" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4478, - "op": "SWAP2", - "gas": 103696, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4479, - "op": "SWAP1", - "gas": 103693, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4480, - "op": "SWAP2", - "gas": 103690, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4481, - "op": "MSTORE", - "gas": 103687, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4482, - "op": "POP", - "gas": 103681, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4483, - "op": "DUP9", - "gas": 103679, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4484, - "op": "SWAP3", - "gas": 103676, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4485, - "op": "POP", - "gas": 103673, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4486, - "op": "PUSH2", - "gas": 103671, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4489, - "op": "SWAP2", - "gas": 103668, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000002f6b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4490, - "op": "POP", - "gas": 103665, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4491, - "op": "POP", - "gas": 103663, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4492, - "op": "JUMP", - "gas": 103661, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12139, - "op": "JUMPDEST", - "gas": 103653, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12140, - "op": "PUSH1", - "gas": 103652, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12142, - "op": "JUMPDEST", - "gas": 103649, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12143, - "op": "PUSH1", - "gas": 103648, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12145, - "op": "DUP4", - "gas": 103645, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12146, - "op": "MLOAD", - "gas": 103642, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12147, - "op": "SUB", - "gas": 103639, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12148, - "op": "DUP2", - "gas": 103636, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12149, - "op": "LT", - "gas": 103633, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12150, - "op": "ISZERO", - "gas": 103630, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12151, - "op": "PUSH2", - "gas": 103627, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12154, - "op": "JUMPI", - "gas": 103624, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000146a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12155, - "op": "PUSH1", - "gas": 103614, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12157, - "op": "DUP1", - "gas": 103611, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12158, - "op": "DUP5", - "gas": 103608, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12159, - "op": "DUP4", - "gas": 103605, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12160, - "op": "DUP2", - "gas": 103602, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12161, - "op": "MLOAD", - "gas": 103599, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12162, - "op": "DUP2", - "gas": 103596, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12163, - "op": "LT", - "gas": 103593, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12164, - "op": "PUSH2", - "gas": 103590, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12167, - "op": "JUMPI", - "gas": 103587, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f89" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12169, - "op": "JUMPDEST", - "gas": 103577, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12170, - "op": "PUSH1", - "gas": 103576, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12172, - "op": "MUL", - "gas": 103573, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12173, - "op": "PUSH1", - "gas": 103568, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12175, - "op": "ADD", - "gas": 103565, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12176, - "op": "ADD", - "gas": 103562, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12177, - "op": "MLOAD", - "gas": 103559, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000241" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12178, - "op": "DUP6", - "gas": 103556, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12179, - "op": "DUP5", - "gas": 103553, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12180, - "op": "PUSH1", - "gas": 103550, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12182, - "op": "ADD", - "gas": 103547, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12183, - "op": "DUP2", - "gas": 103544, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12184, - "op": "MLOAD", - "gas": 103541, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12185, - "op": "DUP2", - "gas": 103538, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12186, - "op": "LT", - "gas": 103535, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12187, - "op": "PUSH2", - "gas": 103532, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12190, - "op": "JUMPI", - "gas": 103529, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12192, - "op": "JUMPDEST", - "gas": 103519, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12193, - "op": "PUSH1", - "gas": 103518, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12195, - "op": "MUL", - "gas": 103515, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12196, - "op": "PUSH1", - "gas": 103510, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12198, - "op": "ADD", - "gas": 103507, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12199, - "op": "ADD", - "gas": 103504, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12200, - "op": "MLOAD", - "gas": 103501, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000261" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12201, - "op": "SWAP2", - "gas": 103498, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12202, - "op": "POP", - "gas": 103495, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12203, - "op": "SWAP2", - "gas": 103493, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12204, - "op": "POP", - "gas": 103490, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12205, - "op": "PUSH1", - "gas": 103488, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12207, - "op": "PUSH2", - "gas": 103485, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12210, - "op": "DUP4", - "gas": 103482, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12211, - "op": "DUP4", - "gas": 103479, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12212, - "op": "PUSH2", - "gas": 103476, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12215, - "op": "JUMP", - "gas": 103473, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16130, - "op": "JUMPDEST", - "gas": 103465, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16131, - "op": "PUSH1", - "gas": 103464, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16133, - "op": "DUP1", - "gas": 103461, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16134, - "op": "DUP3", - "gas": 103458, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16135, - "op": "PUSH20", - "gas": 103455, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16156, - "op": "AND", - "gas": 103452, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16157, - "op": "DUP5", - "gas": 103449, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16158, - "op": "PUSH20", - "gas": 103446, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16179, - "op": "AND", - "gas": 103443, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16180, - "op": "EQ", - "gas": 103440, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16181, - "op": "ISZERO", - "gas": 103437, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16182, - "op": "PUSH2", - "gas": 103434, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16185, - "op": "JUMPI", - "gas": 103431, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16190, - "op": "JUMPDEST", - "gas": 103421, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16191, - "op": "DUP3", - "gas": 103420, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16192, - "op": "PUSH20", - "gas": 103417, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16213, - "op": "AND", - "gas": 103414, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16214, - "op": "DUP5", - "gas": 103411, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16215, - "op": "PUSH20", - "gas": 103408, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16236, - "op": "AND", - "gas": 103405, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16237, - "op": "LT", - "gas": 103402, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16238, - "op": "PUSH2", - "gas": 103399, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16241, - "op": "JUMPI", - "gas": 103396, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16248, - "op": "JUMPDEST", - "gas": 103386, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16249, - "op": "DUP4", - "gas": 103385, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16250, - "op": "DUP4", - "gas": 103382, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16251, - "op": "JUMPDEST", - "gas": 103379, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16252, - "op": "SWAP1", - "gas": 103378, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16253, - "op": "SWAP3", - "gas": 103375, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16254, - "op": "POP", - "gas": 103372, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16255, - "op": "SWAP1", - "gas": 103370, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16256, - "op": "POP", - "gas": 103367, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16257, - "op": "PUSH20", - "gas": 103365, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16278, - "op": "DUP3", - "gas": 103362, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16279, - "op": "AND", - "gas": 103359, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16280, - "op": "PUSH2", - "gas": 103356, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16283, - "op": "JUMPI", - "gas": 103353, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 103343, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 103342, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16290, - "op": "POP", - "gas": 103339, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 103337, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 103334, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16293, - "op": "POP", - "gas": 103331, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 103329, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12216, - "op": "JUMPDEST", - "gas": 103321, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12217, - "op": "POP", - "gas": 103320, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12218, - "op": "SWAP1", - "gas": 103318, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12219, - "op": "POP", - "gas": 103315, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12220, - "op": "PUSH1", - "gas": 103313, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12222, - "op": "PUSH2", - "gas": 103310, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12225, - "op": "PUSH32", - "gas": 103307, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12258, - "op": "DUP6", - "gas": 103304, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12259, - "op": "DUP6", - "gas": 103301, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12260, - "op": "PUSH2", - "gas": 103298, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12263, - "op": "JUMP", - "gas": 103295, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002ca2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11426, - "op": "JUMPDEST", - "gas": 103287, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11427, - "op": "PUSH1", - "gas": 103286, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11429, - "op": "DUP1", - "gas": 103283, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11430, - "op": "PUSH1", - "gas": 103280, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11432, - "op": "PUSH2", - "gas": 103277, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11435, - "op": "DUP6", - "gas": 103274, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11436, - "op": "DUP6", - "gas": 103271, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11437, - "op": "PUSH2", - "gas": 103268, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11440, - "op": "JUMP", - "gas": 103265, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16130, - "op": "JUMPDEST", - "gas": 103257, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16131, - "op": "PUSH1", - "gas": 103256, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16133, - "op": "DUP1", - "gas": 103253, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16134, - "op": "DUP3", - "gas": 103250, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16135, - "op": "PUSH20", - "gas": 103247, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16156, - "op": "AND", - "gas": 103244, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16157, - "op": "DUP5", - "gas": 103241, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16158, - "op": "PUSH20", - "gas": 103238, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16179, - "op": "AND", - "gas": 103235, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16180, - "op": "EQ", - "gas": 103232, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16181, - "op": "ISZERO", - "gas": 103229, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16182, - "op": "PUSH2", - "gas": 103226, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16185, - "op": "JUMPI", - "gas": 103223, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16190, - "op": "JUMPDEST", - "gas": 103213, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16191, - "op": "DUP3", - "gas": 103212, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16192, - "op": "PUSH20", - "gas": 103209, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16213, - "op": "AND", - "gas": 103206, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16214, - "op": "DUP5", - "gas": 103203, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16215, - "op": "PUSH20", - "gas": 103200, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16236, - "op": "AND", - "gas": 103197, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16237, - "op": "LT", - "gas": 103194, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16238, - "op": "PUSH2", - "gas": 103191, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16241, - "op": "JUMPI", - "gas": 103188, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16248, - "op": "JUMPDEST", - "gas": 103178, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16249, - "op": "DUP4", - "gas": 103177, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16250, - "op": "DUP4", - "gas": 103174, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16251, - "op": "JUMPDEST", - "gas": 103171, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16252, - "op": "SWAP1", - "gas": 103170, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16253, - "op": "SWAP3", - "gas": 103167, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16254, - "op": "POP", - "gas": 103164, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16255, - "op": "SWAP1", - "gas": 103162, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16256, - "op": "POP", - "gas": 103159, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16257, - "op": "PUSH20", - "gas": 103157, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16278, - "op": "DUP3", - "gas": 103154, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16279, - "op": "AND", - "gas": 103151, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16280, - "op": "PUSH2", - "gas": 103148, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16283, - "op": "JUMPI", - "gas": 103145, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16288, - "op": "JUMPDEST", - "gas": 103135, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16289, - "op": "SWAP3", - "gas": 103134, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16290, - "op": "POP", - "gas": 103131, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16291, - "op": "SWAP3", - "gas": 103129, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16292, - "op": "SWAP1", - "gas": 103126, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16293, - "op": "POP", - "gas": 103123, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16294, - "op": "JUMP", - "gas": 103121, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11441, - "op": "JUMPDEST", - "gas": 103113, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11442, - "op": "PUSH1", - "gas": 103112, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11444, - "op": "DUP1", - "gas": 103109, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11445, - "op": "MLOAD", - "gas": 103106, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11446, - "op": "PUSH32", - "gas": 103103, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11479, - "op": "PUSH1", - "gas": 103100, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11481, - "op": "SWAP5", - "gas": 103097, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11482, - "op": "DUP6", - "gas": 103094, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11483, - "op": "SHL", - "gas": 103091, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11484, - "op": "DUP2", - "gas": 103088, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11485, - "op": "AND", - "gas": 103085, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11486, - "op": "PUSH1", - "gas": 103082, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11488, - "op": "DUP1", - "gas": 103079, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11489, - "op": "DUP5", - "gas": 103076, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11490, - "op": "ADD", - "gas": 103073, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11491, - "op": "SWAP2", - "gas": 103070, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002a1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11492, - "op": "SWAP1", - "gas": 103067, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11493, - "op": "SWAP2", - "gas": 103064, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11494, - "op": "MSTORE", - "gas": 103061, - "gasCost": 7, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11495, - "op": "SWAP4", - "gas": 103054, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11496, - "op": "DUP6", - "gas": 103051, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11497, - "op": "SHL", - "gas": 103048, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11498, - "op": "DUP2", - "gas": 103045, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11499, - "op": "AND", - "gas": 103042, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11500, - "op": "PUSH1", - "gas": 103039, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11502, - "op": "DUP4", - "gas": 103036, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11503, - "op": "ADD", - "gas": 103033, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11504, - "op": "MSTORE", - "gas": 103030, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11505, - "op": "DUP3", - "gas": 103027, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11506, - "op": "MLOAD", - "gas": 103024, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11507, - "op": "PUSH1", - "gas": 103021, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11509, - "op": "DUP2", - "gas": 103018, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11510, - "op": "DUP5", - "gas": 103015, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11511, - "op": "SUB", - "gas": 103012, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11512, - "op": "ADD", - "gas": 103009, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11513, - "op": "DUP2", - "gas": 103006, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11514, - "op": "MSTORE", - "gas": 103003, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11515, - "op": "PUSH1", - "gas": 103000, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11517, - "op": "DUP4", - "gas": 102997, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000048" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11518, - "op": "ADD", - "gas": 102994, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11519, - "op": "DUP5", - "gas": 102991, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11520, - "op": "MSTORE", - "gas": 102988, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11521, - "op": "DUP1", - "gas": 102985, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11522, - "op": "MLOAD", - "gas": 102982, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11523, - "op": "SWAP1", - "gas": 102979, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11524, - "op": "DUP6", - "gas": 102976, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11525, - "op": "ADD", - "gas": 102973, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11526, - "op": "SHA3", - "gas": 102970, - "gasCost": 42, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000002a1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11527, - "op": "PUSH32", - "gas": 102928, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11560, - "op": "PUSH1", - "gas": 102925, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11562, - "op": "DUP5", - "gas": 102922, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11563, - "op": "ADD", - "gas": 102919, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11564, - "op": "MSTORE", - "gas": 102916, - "gasCost": 9, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11565, - "op": "SWAP11", - "gas": 102907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11566, - "op": "SWAP1", - "gas": 102904, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11567, - "op": "SWAP5", - "gas": 102901, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11568, - "op": "SHL", - "gas": 102898, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11569, - "op": "SWAP1", - "gas": 102895, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11570, - "op": "SWAP4", - "gas": 102892, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11571, - "op": "AND", - "gas": 102889, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11572, - "op": "PUSH1", - "gas": 102886, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11574, - "op": "DUP5", - "gas": 102883, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11575, - "op": "ADD", - "gas": 102880, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11576, - "op": "MSTORE", - "gas": 102877, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff00000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11577, - "op": "PUSH1", - "gas": 102874, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11579, - "op": "DUP4", - "gas": 102871, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11580, - "op": "ADD", - "gas": 102868, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11581, - "op": "SWAP9", - "gas": 102865, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000002fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11582, - "op": "SWAP1", - "gas": 102862, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002fe", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11583, - "op": "SWAP9", - "gas": 102859, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002fe", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11584, - "op": "MSTORE", - "gas": 102856, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "00000000000000000000000000000000000000000000000000000000000002fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11585, - "op": "PUSH32", - "gas": 102853, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11618, - "op": "PUSH1", - "gas": 102850, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11620, - "op": "DUP1", - "gas": 102847, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11621, - "op": "DUP5", - "gas": 102844, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11622, - "op": "ADD", - "gas": 102841, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11623, - "op": "SWAP2", - "gas": 102838, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000031e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11624, - "op": "SWAP1", - "gas": 102835, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000031e", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11625, - "op": "SWAP2", - "gas": 102832, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000031e", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11626, - "op": "MSTORE", - "gas": 102829, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000031e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11627, - "op": "DUP9", - "gas": 102823, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11628, - "op": "MLOAD", - "gas": 102820, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11629, - "op": "DUP1", - "gas": 102817, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11630, - "op": "DUP5", - "gas": 102814, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11631, - "op": "SUB", - "gas": 102811, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11632, - "op": "SWAP1", - "gas": 102808, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11633, - "op": "SWAP2", - "gas": 102805, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11634, - "op": "ADD", - "gas": 102802, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11635, - "op": "DUP2", - "gas": 102799, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11636, - "op": "MSTORE", - "gas": 102796, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11637, - "op": "PUSH1", - "gas": 102793, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11639, - "op": "SWAP1", - "gas": 102790, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000000bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11640, - "op": "SWAP3", - "gas": 102787, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11641, - "op": "ADD", - "gas": 102784, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11642, - "op": "SWAP1", - "gas": 102781, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11643, - "op": "SWAP8", - "gas": 102778, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11644, - "op": "MSTORE", - "gas": 102775, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11645, - "op": "DUP1", - "gas": 102772, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11646, - "op": "MLOAD", - "gas": 102769, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11647, - "op": "SWAP7", - "gas": 102766, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11648, - "op": "ADD", - "gas": 102763, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11649, - "op": "SWAP6", - "gas": 102760, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11650, - "op": "SWAP1", - "gas": 102757, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002e9", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11651, - "op": "SWAP6", - "gas": 102754, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002e9", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11652, - "op": "SHA3", - "gas": 102751, - "gasCost": 48, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000002e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11653, - "op": "SWAP6", - "gas": 102703, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11654, - "op": "SWAP5", - "gas": 102700, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11655, - "op": "POP", - "gas": 102697, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11656, - "op": "POP", - "gas": 102695, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11657, - "op": "POP", - "gas": 102693, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11658, - "op": "POP", - "gas": 102691, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11659, - "op": "POP", - "gas": 102689, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11660, - "op": "JUMP", - "gas": 102687, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12264, - "op": "JUMPDEST", - "gas": 102679, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12265, - "op": "SWAP1", - "gas": 102678, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12266, - "op": "POP", - "gas": 102675, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12267, - "op": "PUSH1", - "gas": 102673, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12269, - "op": "DUP1", - "gas": 102670, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12270, - "op": "PUSH1", - "gas": 102667, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12272, - "op": "DUP1", - "gas": 102664, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12273, - "op": "DUP5", - "gas": 102661, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12274, - "op": "PUSH20", - "gas": 102658, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12295, - "op": "AND", - "gas": 102655, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12296, - "op": "PUSH4", - "gas": 102652, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12301, - "op": "PUSH1", - "gas": 102649, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12303, - "op": "MLOAD", - "gas": 102646, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12304, - "op": "DUP2", - "gas": 102643, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12305, - "op": "PUSH4", - "gas": 102640, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12310, - "op": "AND", - "gas": 102637, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12311, - "op": "PUSH1", - "gas": 102634, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12313, - "op": "SHL", - "gas": 102631, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12314, - "op": "DUP2", - "gas": 102628, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0902f1ac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12315, - "op": "MSTORE", - "gas": 102625, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12316, - "op": "PUSH1", - "gas": 102619, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12318, - "op": "ADD", - "gas": 102616, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12319, - "op": "PUSH1", - "gas": 102613, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12321, - "op": "PUSH1", - "gas": 102610, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12323, - "op": "MLOAD", - "gas": 102607, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12324, - "op": "DUP1", - "gas": 102604, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12325, - "op": "DUP4", - "gas": 102601, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12326, - "op": "SUB", - "gas": 102598, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000342" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12327, - "op": "DUP2", - "gas": 102595, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12328, - "op": "DUP7", - "gas": 102592, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12329, - "op": "DUP1", - "gas": 102589, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12330, - "op": "EXTCODESIZE", - "gas": 102586, - "gasCost": 2600, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12331, - "op": "ISZERO", - "gas": 99986, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002c1d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12332, - "op": "DUP1", - "gas": 99983, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12333, - "op": "ISZERO", - "gas": 99980, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12334, - "op": "PUSH2", - "gas": 99977, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12337, - "op": "JUMPI", - "gas": 99974, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003036" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12342, - "op": "JUMPDEST", - "gas": 99964, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12343, - "op": "POP", - "gas": 99963, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12344, - "op": "GAS", - "gas": 99961, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12345, - "op": "STATICCALL", - "gas": 99959, - "gasCost": 98399, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000018677" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 98293, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 98290, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 98287, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 98275, - "gasCost": 2, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 98273, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 98270, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 98267, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 98264, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 98254, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 98253, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 98251, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 98248, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 98246, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 98243, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 98240, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 98230, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 98227, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 98224, - "gasCost": 3, - "depth": 3, - "stack": [ - "0902f1ac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 98221, - "gasCost": 3, - "depth": 3, - "stack": [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 98218, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 98215, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 98212, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000006a627842" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 98209, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 98206, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 249, - "op": "JUMPDEST", - "gas": 98196, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 250, - "op": "DUP1", - "gas": 98195, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 251, - "op": "PUSH4", - "gas": 98192, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 256, - "op": "GT", - "gas": 98189, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 257, - "op": "PUSH2", - "gas": 98186, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 260, - "op": "JUMPI", - "gas": 98183, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 358, - "op": "JUMPDEST", - "gas": 98173, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 359, - "op": "DUP1", - "gas": 98172, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 360, - "op": "PUSH4", - "gas": 98169, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 365, - "op": "GT", - "gas": 98166, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000095ea7b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 366, - "op": "PUSH2", - "gas": 98163, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 369, - "op": "JUMPI", - "gas": 98160, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 407, - "op": "JUMPDEST", - "gas": 98150, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 408, - "op": "DUP1", - "gas": 98149, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 409, - "op": "PUSH4", - "gas": 98146, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 414, - "op": "EQ", - "gas": 98143, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 415, - "op": "PUSH2", - "gas": 98140, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 418, - "op": "JUMPI", - "gas": 98137, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 419, - "op": "DUP1", - "gas": 98127, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 420, - "op": "PUSH4", - "gas": 98124, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 425, - "op": "EQ", - "gas": 98121, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000006fdde03" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 426, - "op": "PUSH2", - "gas": 98118, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 429, - "op": "JUMPI", - "gas": 98115, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000259" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 430, - "op": "DUP1", - "gas": 98105, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 431, - "op": "PUSH4", - "gas": 98102, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 436, - "op": "EQ", - "gas": 98099, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 437, - "op": "PUSH2", - "gas": 98096, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 440, - "op": "JUMPI", - "gas": 98093, - "gasCost": 10, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 726, - "op": "JUMPDEST", - "gas": 98083, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 727, - "op": "PUSH2", - "gas": 98082, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 730, - "op": "PUSH2", - "gas": 98079, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 733, - "op": "JUMP", - "gas": 98076, - "gasCost": 8, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000d90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3472, - "op": "JUMPDEST", - "gas": 98068, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3473, - "op": "PUSH1", - "gas": 98067, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3475, - "op": "SLOAD", - "gas": 98064, - "gasCost": 2100, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3476, - "op": "PUSH14", - "gas": 95964, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3491, - "op": "DUP1", - "gas": 95961, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3492, - "op": "DUP3", - "gas": 95958, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3493, - "op": "AND", - "gas": 95955, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3494, - "op": "SWAP3", - "gas": 95952, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3495, - "op": "PUSH15", - "gas": 95949, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3511, - "op": "DUP4", - "gas": 95946, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3512, - "op": "DIV", - "gas": 95943, - "gasCost": 5, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3513, - "op": "SWAP1", - "gas": 95938, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3514, - "op": "SWAP2", - "gas": 95935, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3515, - "op": "AND", - "gas": 95932, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000002de", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3516, - "op": "SWAP2", - "gas": 95929, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3517, - "op": "PUSH29", - "gas": 95926, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3547, - "op": "SWAP1", - "gas": 95923, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3548, - "op": "DIV", - "gas": 95920, - "gasCost": 5, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3549, - "op": "PUSH4", - "gas": 95915, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3554, - "op": "AND", - "gas": 95912, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3555, - "op": "SWAP1", - "gas": 95909, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 3556, - "op": "JUMP", - "gas": 95906, - "gasCost": 8, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000000002de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 734, - "op": "JUMPDEST", - "gas": 95898, - "gasCost": 1, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 735, - "op": "PUSH1", - "gas": 95897, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 737, - "op": "DUP1", - "gas": 95894, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 738, - "op": "MLOAD", - "gas": 95891, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 739, - "op": "PUSH14", - "gas": 95888, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 754, - "op": "SWAP5", - "gas": 95885, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 755, - "op": "DUP6", - "gas": 95882, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 756, - "op": "AND", - "gas": 95879, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 757, - "op": "DUP2", - "gas": 95876, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 758, - "op": "MSTORE", - "gas": 95873, - "gasCost": 9, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 759, - "op": "SWAP3", - "gas": 95864, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 760, - "op": "SWAP1", - "gas": 95861, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 761, - "op": "SWAP4", - "gas": 95858, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 762, - "op": "AND", - "gas": 95855, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 763, - "op": "PUSH1", - "gas": 95852, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 765, - "op": "DUP4", - "gas": 95849, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 766, - "op": "ADD", - "gas": 95846, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 767, - "op": "MSTORE", - "gas": 95843, - "gasCost": 6, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 768, - "op": "PUSH4", - "gas": 95837, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 773, - "op": "AND", - "gas": 95834, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 774, - "op": "DUP2", - "gas": 95831, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 775, - "op": "DUP4", - "gas": 95828, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 776, - "op": "ADD", - "gas": 95825, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 777, - "op": "MSTORE", - "gas": 95822, - "gasCost": 6, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 778, - "op": "SWAP1", - "gas": 95816, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 779, - "op": "MLOAD", - "gas": 95813, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 780, - "op": "SWAP1", - "gas": 95810, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 781, - "op": "DUP2", - "gas": 95807, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 782, - "op": "SWAP1", - "gas": 95804, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 783, - "op": "SUB", - "gas": 95801, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 784, - "op": "PUSH1", - "gas": 95798, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 786, - "op": "ADD", - "gas": 95795, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 787, - "op": "SWAP1", - "gas": 95792, - "gasCost": 3, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 788, - "op": "RETURN", - "gas": 95789, - "gasCost": 0, - "depth": 3, - "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12346, - "op": "ISZERO", - "gas": 97349, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12347, - "op": "DUP1", - "gas": 97346, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12348, - "op": "ISZERO", - "gas": 97343, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12349, - "op": "PUSH2", - "gas": 97340, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12352, - "op": "JUMPI", - "gas": 97337, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000304a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12362, - "op": "JUMPDEST", - "gas": 97327, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12363, - "op": "POP", - "gas": 97326, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12364, - "op": "POP", - "gas": 97324, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12365, - "op": "POP", - "gas": 97322, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12366, - "op": "POP", - "gas": 97320, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12367, - "op": "PUSH1", - "gas": 97318, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12369, - "op": "MLOAD", - "gas": 97315, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12370, - "op": "RETURNDATASIZE", - "gas": 97312, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12371, - "op": "PUSH1", - "gas": 97310, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12373, - "op": "NOT", - "gas": 97307, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12374, - "op": "PUSH1", - "gas": 97304, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12376, - "op": "DUP3", - "gas": 97301, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12377, - "op": "ADD", - "gas": 97298, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12378, - "op": "AND", - "gas": 97295, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000007f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12379, - "op": "DUP3", - "gas": 97292, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12380, - "op": "ADD", - "gas": 97289, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12381, - "op": "DUP1", - "gas": 97286, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12382, - "op": "PUSH1", - "gas": 97283, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12384, - "op": "MSTORE", - "gas": 97280, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12385, - "op": "POP", - "gas": 97277, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12386, - "op": "DUP2", - "gas": 97275, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12387, - "op": "ADD", - "gas": 97272, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12388, - "op": "SWAP1", - "gas": 97269, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12389, - "op": "PUSH2", - "gas": 97266, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12392, - "op": "SWAP2", - "gas": 97263, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000306e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12393, - "op": "SWAP1", - "gas": 97260, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12394, - "op": "PUSH2", - "gas": 97257, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12397, - "op": "JUMP", - "gas": 97254, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "00000000000000000000000000000000000000000000000000000000000056da" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22234, - "op": "JUMPDEST", - "gas": 97246, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22235, - "op": "PUSH1", - "gas": 97245, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22237, - "op": "DUP1", - "gas": 97242, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22238, - "op": "PUSH1", - "gas": 97239, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22240, - "op": "PUSH1", - "gas": 97236, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22242, - "op": "DUP5", - "gas": 97233, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22243, - "op": "DUP7", - "gas": 97230, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22244, - "op": "SUB", - "gas": 97227, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22245, - "op": "SLT", - "gas": 97224, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22246, - "op": "ISZERO", - "gas": 97221, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22247, - "op": "PUSH2", - "gas": 97218, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22250, - "op": "JUMPI", - "gas": 97215, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000056ee" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22254, - "op": "JUMPDEST", - "gas": 97205, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22255, - "op": "PUSH2", - "gas": 97204, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22258, - "op": "DUP5", - "gas": 97201, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22259, - "op": "PUSH2", - "gas": 97198, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22262, - "op": "JUMP", - "gas": 97195, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000004f9d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20381, - "op": "JUMPDEST", - "gas": 97187, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20382, - "op": "DUP1", - "gas": 97186, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20383, - "op": "MLOAD", - "gas": 97183, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20384, - "op": "PUSH14", - "gas": 97180, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20399, - "op": "DUP2", - "gas": 97177, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20400, - "op": "AND", - "gas": 97174, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20401, - "op": "DUP2", - "gas": 97171, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20402, - "op": "EQ", - "gas": 97168, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20403, - "op": "PUSH2", - "gas": 97165, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20406, - "op": "JUMPI", - "gas": 97162, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2851, - "op": "JUMPDEST", - "gas": 97152, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2852, - "op": "SWAP2", - "gas": 97151, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2853, - "op": "SWAP1", - "gas": 97148, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000033e", - "00000000000000000000000000000000000000000000000000000000000056f7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2854, - "op": "POP", - "gas": 97145, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2855, - "op": "JUMP", - "gas": 97143, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000056f7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22263, - "op": "JUMPDEST", - "gas": 97135, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22264, - "op": "SWAP3", - "gas": 97134, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22265, - "op": "POP", - "gas": 97131, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22266, - "op": "PUSH2", - "gas": 97129, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22269, - "op": "PUSH1", - "gas": 97126, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22271, - "op": "DUP6", - "gas": 97123, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22272, - "op": "ADD", - "gas": 97120, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22273, - "op": "PUSH2", - "gas": 97117, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22276, - "op": "JUMP", - "gas": 97114, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "0000000000000000000000000000000000000000000000000000000000004f9d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20381, - "op": "JUMPDEST", - "gas": 97106, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20382, - "op": "DUP1", - "gas": 97105, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20383, - "op": "MLOAD", - "gas": 97102, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "000000000000000000000000000000000000000000000000000000000000035e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20384, - "op": "PUSH14", - "gas": 97099, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20399, - "op": "DUP2", - "gas": 97096, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20400, - "op": "AND", - "gas": 97093, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20401, - "op": "DUP2", - "gas": 97090, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20402, - "op": "EQ", - "gas": 97087, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20403, - "op": "PUSH2", - "gas": 97084, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20406, - "op": "JUMPI", - "gas": 97081, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2851, - "op": "JUMPDEST", - "gas": 97071, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2852, - "op": "SWAP2", - "gas": 97070, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2853, - "op": "SWAP1", - "gas": 97067, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000035e", - "0000000000000000000000000000000000000000000000000000000000005705" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2854, - "op": "POP", - "gas": 97064, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2855, - "op": "JUMP", - "gas": 97062, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000005705" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22277, - "op": "JUMPDEST", - "gas": 97054, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22278, - "op": "SWAP2", - "gas": 97053, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22279, - "op": "POP", - "gas": 97050, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22280, - "op": "PUSH1", - "gas": 97048, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22282, - "op": "DUP5", - "gas": 97045, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22283, - "op": "ADD", - "gas": 97042, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22284, - "op": "MLOAD", - "gas": 97039, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22285, - "op": "PUSH2", - "gas": 97036, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22288, - "op": "DUP2", - "gas": 97033, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22289, - "op": "PUSH2", - "gas": 97030, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22292, - "op": "JUMP", - "gas": 97027, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000005f83" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24451, - "op": "JUMPDEST", - "gas": 97019, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24452, - "op": "PUSH4", - "gas": 97018, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24457, - "op": "DUP2", - "gas": 97015, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24458, - "op": "AND", - "gas": 97012, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24459, - "op": "DUP2", - "gas": 97009, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24460, - "op": "EQ", - "gas": 97006, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24461, - "op": "PUSH2", - "gas": 97003, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 24464, - "op": "JUMPI", - "gas": 97000, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 96990, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 5242, - "op": "POP", - "gas": 96989, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 96987, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20591, - "op": "JUMPDEST", - "gas": 96979, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20592, - "op": "DUP1", - "gas": 96978, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20593, - "op": "SWAP2", - "gas": 96975, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20594, - "op": "POP", - "gas": 96972, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20595, - "op": "POP", - "gas": 96970, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20596, - "op": "SWAP3", - "gas": 96968, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20597, - "op": "POP", - "gas": 96965, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000033e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20598, - "op": "SWAP3", - "gas": 96963, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20599, - "op": "POP", - "gas": 96960, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20600, - "op": "SWAP3", - "gas": 96958, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 20601, - "op": "JUMP", - "gas": 96955, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000306e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12398, - "op": "JUMPDEST", - "gas": 96947, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12399, - "op": "POP", - "gas": 96946, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12400, - "op": "PUSH14", - "gas": 96944, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12415, - "op": "AND", - "gas": 96941, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12416, - "op": "SWAP2", - "gas": 96938, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12417, - "op": "POP", - "gas": 96935, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12418, - "op": "PUSH14", - "gas": 96933, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12433, - "op": "AND", - "gas": 96930, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12434, - "op": "SWAP2", - "gas": 96927, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12435, - "op": "POP", - "gas": 96924, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12436, - "op": "PUSH1", - "gas": 96922, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12438, - "op": "DUP1", - "gas": 96919, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12439, - "op": "DUP8", - "gas": 96916, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12440, - "op": "PUSH20", - "gas": 96913, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12461, - "op": "AND", - "gas": 96910, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12462, - "op": "DUP11", - "gas": 96907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12463, - "op": "PUSH20", - "gas": 96904, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12484, - "op": "AND", - "gas": 96901, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12485, - "op": "EQ", - "gas": 96898, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12486, - "op": "PUSH2", - "gas": 96895, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12489, - "op": "JUMPI", - "gas": 96892, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000030d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12496, - "op": "JUMPDEST", - "gas": 96882, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12497, - "op": "DUP4", - "gas": 96881, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12498, - "op": "DUP4", - "gas": 96878, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12499, - "op": "JUMPDEST", - "gas": 96875, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12500, - "op": "SWAP2", - "gas": 96874, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12501, - "op": "POP", - "gas": 96871, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12502, - "op": "SWAP2", - "gas": 96869, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12503, - "op": "POP", - "gas": 96866, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12504, - "op": "PUSH2", - "gas": 96864, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12507, - "op": "DUP3", - "gas": 96861, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12508, - "op": "DUP12", - "gas": 96858, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12509, - "op": "PUSH20", - "gas": 96855, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12530, - "op": "AND", - "gas": 96852, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12531, - "op": "PUSH4", - "gas": 96849, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12536, - "op": "DUP11", - "gas": 96846, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12537, - "op": "PUSH1", - "gas": 96843, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12539, - "op": "MLOAD", - "gas": 96840, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12540, - "op": "DUP3", - "gas": 96837, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12541, - "op": "PUSH4", - "gas": 96834, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12546, - "op": "AND", - "gas": 96831, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12547, - "op": "PUSH1", - "gas": 96828, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12549, - "op": "SHL", - "gas": 96825, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12550, - "op": "DUP2", - "gas": 96822, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "70a0823100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12551, - "op": "MSTORE", - "gas": 96819, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "70a0823100000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12552, - "op": "PUSH1", - "gas": 96813, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12554, - "op": "ADD", - "gas": 96810, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12555, - "op": "PUSH2", - "gas": 96807, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12558, - "op": "SWAP2", - "gas": 96804, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "000000000000000000000000000000000000000000000000000000000000120c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12559, - "op": "SWAP1", - "gas": 96801, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12560, - "op": "PUSH2", - "gas": 96798, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12563, - "op": "JUMP", - "gas": 96795, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000000000000000000000000000000000000000005a3c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23100, - "op": "JUMPDEST", - "gas": 96787, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23101, - "op": "PUSH20", - "gas": 96786, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23122, - "op": "SWAP2", - "gas": 96783, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23123, - "op": "SWAP1", - "gas": 96780, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23124, - "op": "SWAP2", - "gas": 96777, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23125, - "op": "AND", - "gas": 96774, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23126, - "op": "DUP2", - "gas": 96771, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23127, - "op": "MSTORE", - "gas": 96768, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23128, - "op": "PUSH1", - "gas": 96762, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23130, - "op": "ADD", - "gas": 96759, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23131, - "op": "SWAP1", - "gas": 96756, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23132, - "op": "JUMP", - "gas": 96753, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "000000000000000000000000000000000000000000000000000000000000120c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4620, - "op": "JUMPDEST", - "gas": 96745, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4621, - "op": "PUSH1", - "gas": 96744, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4623, - "op": "PUSH1", - "gas": 96741, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4625, - "op": "MLOAD", - "gas": 96738, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4626, - "op": "DUP1", - "gas": 96735, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4627, - "op": "DUP4", - "gas": 96732, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4628, - "op": "SUB", - "gas": 96729, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4629, - "op": "DUP2", - "gas": 96726, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4630, - "op": "DUP7", - "gas": 96723, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4631, - "op": "DUP1", - "gas": 96720, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4632, - "op": "EXTCODESIZE", - "gas": 96717, - "gasCost": 100, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4633, - "op": "ISZERO", - "gas": 96617, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000088a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4634, - "op": "DUP1", - "gas": 96614, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4635, - "op": "ISZERO", - "gas": 96611, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4636, - "op": "PUSH2", - "gas": 96608, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4639, - "op": "JUMPI", - "gas": 96605, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001224" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4644, - "op": "JUMPDEST", - "gas": 96595, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4645, - "op": "POP", - "gas": 96594, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4646, - "op": "GAS", - "gas": 96592, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4647, - "op": "STATICCALL", - "gas": 96590, - "gasCost": 95083, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000001794e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 94983, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 94980, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 94977, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 94965, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 94962, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 8, - "op": "LT", - "gas": 94960, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 94957, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 94954, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 94944, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 94941, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 16, - "op": "PUSH29", - "gas": 94938, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 46, - "op": "SWAP1", - "gas": 94935, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 47, - "op": "DIV", - "gas": 94932, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 48, - "op": "PUSH4", - "gas": 94927, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 53, - "op": "AND", - "gas": 94924, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 94921, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 94918, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 94915, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003659cfe6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 94912, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 94909, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 65, - "op": "DUP1", - "gas": 94899, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 66, - "op": "PUSH4", - "gas": 94896, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 71, - "op": "EQ", - "gas": 94893, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004f1ef286" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 72, - "op": "PUSH2", - "gas": 94890, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 75, - "op": "JUMPI", - "gas": 94887, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 76, - "op": "DUP1", - "gas": 94877, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 77, - "op": "PUSH4", - "gas": 94874, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 82, - "op": "EQ", - "gas": 94871, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c60da1b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 83, - "op": "PUSH2", - "gas": 94868, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 86, - "op": "JUMPI", - "gas": 94865, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 87, - "op": "DUP1", - "gas": 94855, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 88, - "op": "PUSH4", - "gas": 94852, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 93, - "op": "EQ", - "gas": 94849, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000008f283970" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 94846, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 94843, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 98, - "op": "DUP1", - "gas": 94833, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 99, - "op": "PUSH4", - "gas": 94830, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 104, - "op": "EQ", - "gas": 94827, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000f851a440" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 94824, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 108, - "op": "JUMPI", - "gas": 94821, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 109, - "op": "JUMPDEST", - "gas": 94811, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 110, - "op": "PUSH2", - "gas": 94810, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 113, - "op": "PUSH2", - "gas": 94807, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 116, - "op": "JUMP", - "gas": 94804, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 505, - "op": "JUMPDEST", - "gas": 94796, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 506, - "op": "PUSH2", - "gas": 94795, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 509, - "op": "PUSH2", - "gas": 94792, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 512, - "op": "JUMP", - "gas": 94789, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1398, - "op": "JUMPDEST", - "gas": 94781, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1399, - "op": "PUSH2", - "gas": 94780, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1402, - "op": "PUSH2", - "gas": 94777, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1405, - "op": "JUMP", - "gas": 94774, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1704, - "op": "JUMPDEST", - "gas": 94766, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1705, - "op": "PUSH1", - "gas": 94765, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1707, - "op": "DUP1", - "gas": 94762, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1708, - "op": "PUSH32", - "gas": 94759, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1741, - "op": "PUSH1", - "gas": 94756, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1743, - "op": "MUL", - "gas": 94753, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1744, - "op": "SWAP1", - "gas": 94748, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1745, - "op": "POP", - "gas": 94745, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1746, - "op": "DUP1", - "gas": 94743, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 1747, - "op": "SLOAD", - "gas": 94740, - "gasCost": 100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1748, - "op": "SWAP2", - "gas": 94640, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1749, - "op": "POP", - "gas": 94637, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1750, - "op": "POP", - "gas": 94635, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1751, - "op": "SWAP1", - "gas": 94633, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1752, - "op": "JUMP", - "gas": 94630, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1406, - "op": "JUMPDEST", - "gas": 94622, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1407, - "op": "PUSH20", - "gas": 94621, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1428, - "op": "AND", - "gas": 94618, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1429, - "op": "CALLER", - "gas": 94615, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1430, - "op": "PUSH20", - "gas": 94613, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1451, - "op": "AND", - "gas": 94610, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1452, - "op": "EQ", - "gas": 94607, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1453, - "op": "ISZERO", - "gas": 94604, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1454, - "op": "ISZERO", - "gas": 94601, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1455, - "op": "ISZERO", - "gas": 94598, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1456, - "op": "PUSH2", - "gas": 94595, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1459, - "op": "JUMPI", - "gas": 94592, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1607, - "op": "JUMPDEST", - "gas": 94582, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1608, - "op": "PUSH2", - "gas": 94581, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1611, - "op": "PUSH2", - "gas": 94578, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1614, - "op": "JUMP", - "gas": 94575, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1911, - "op": "JUMPDEST", - "gas": 94567, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1912, - "op": "JUMP", - "gas": 94566, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1615, - "op": "JUMPDEST", - "gas": 94558, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1616, - "op": "JUMP", - "gas": 94557, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 513, - "op": "JUMPDEST", - "gas": 94549, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 514, - "op": "PUSH2", - "gas": 94548, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 517, - "op": "PUSH2", - "gas": 94545, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 520, - "op": "PUSH2", - "gas": 94542, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 523, - "op": "JUMP", - "gas": 94539, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1617, - "op": "JUMPDEST", - "gas": 94531, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1618, - "op": "PUSH1", - "gas": 94530, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1620, - "op": "DUP1", - "gas": 94527, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1621, - "op": "PUSH32", - "gas": 94524, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1654, - "op": "PUSH1", - "gas": 94521, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1656, - "op": "MUL", - "gas": 94518, - "gasCost": 5, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1657, - "op": "SWAP1", - "gas": 94513, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1658, - "op": "POP", - "gas": 94510, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1659, - "op": "DUP1", - "gas": 94508, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1660, - "op": "SLOAD", - "gas": 94505, - "gasCost": 100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1661, - "op": "SWAP2", - "gas": 94405, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1662, - "op": "POP", - "gas": 94402, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1663, - "op": "POP", - "gas": 94400, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1664, - "op": "SWAP1", - "gas": 94398, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1665, - "op": "JUMP", - "gas": 94395, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 524, - "op": "JUMPDEST", - "gas": 94387, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 525, - "op": "PUSH2", - "gas": 94386, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 528, - "op": "JUMP", - "gas": 94383, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1666, - "op": "JUMPDEST", - "gas": 94375, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1667, - "op": "CALLDATASIZE", - "gas": 94374, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1668, - "op": "PUSH1", - "gas": 94372, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1670, - "op": "DUP1", - "gas": 94369, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1671, - "op": "CALLDATACOPY", - "gas": 94366, - "gasCost": 9, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1672, - "op": "PUSH1", - "gas": 94357, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1674, - "op": "DUP1", - "gas": 94354, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1675, - "op": "CALLDATASIZE", - "gas": 94351, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1676, - "op": "PUSH1", - "gas": 94349, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1678, - "op": "DUP5", - "gas": 94346, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1679, - "op": "GAS", - "gas": 94343, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1680, - "op": "DELEGATECALL", - "gas": 94341, - "gasCost": 92869, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000017085" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 92769, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 92766, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 92763, - "gasCost": 12, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 92751, - "gasCost": 2, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 92749, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 92746, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 92743, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 92740, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 92730, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 92729, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 92727, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 92724, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 92722, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 92719, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 92716, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 92706, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 92703, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 92700, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 92697, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 92694, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 92691, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 92688, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007f2eecc3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 92685, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 92682, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 434, - "op": "JUMPDEST", - "gas": 92672, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 435, - "op": "DUP1", - "gas": 92671, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 436, - "op": "PUSH4", - "gas": 92668, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 441, - "op": "GT", - "gas": 92665, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 442, - "op": "PUSH2", - "gas": 92662, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 445, - "op": "JUMPI", - "gas": 92659, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 446, - "op": "DUP1", - "gas": 92649, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 447, - "op": "PUSH4", - "gas": 92646, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 452, - "op": "GT", - "gas": 92643, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004e44d956" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 453, - "op": "PUSH2", - "gas": 92640, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 456, - "op": "JUMPI", - "gas": 92637, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000022a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 457, - "op": "DUP1", - "gas": 92627, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 458, - "op": "PUSH4", - "gas": 92624, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 463, - "op": "GT", - "gas": 92621, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 464, - "op": "PUSH2", - "gas": 92618, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 467, - "op": "JUMPI", - "gas": 92615, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 468, - "op": "DUP1", - "gas": 92605, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 469, - "op": "PUSH4", - "gas": 92602, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 474, - "op": "EQ", - "gas": 92599, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 475, - "op": "PUSH2", - "gas": 92596, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 478, - "op": "JUMPI", - "gas": 92593, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 479, - "op": "DUP1", - "gas": 92583, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 480, - "op": "PUSH4", - "gas": 92580, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 485, - "op": "EQ", - "gas": 92577, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c975abb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 486, - "op": "PUSH2", - "gas": 92574, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 489, - "op": "JUMPI", - "gas": 92571, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 490, - "op": "DUP1", - "gas": 92561, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 491, - "op": "PUSH4", - "gas": 92558, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 496, - "op": "EQ", - "gas": 92555, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 497, - "op": "PUSH2", - "gas": 92552, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 500, - "op": "JUMPI", - "gas": 92549, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2276, - "op": "JUMPDEST", - "gas": 92539, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2277, - "op": "PUSH2", - "gas": 92538, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2280, - "op": "PUSH1", - "gas": 92535, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2282, - "op": "DUP1", - "gas": 92532, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2283, - "op": "CALLDATASIZE", - "gas": 92529, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2284, - "op": "SUB", - "gas": 92527, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2285, - "op": "PUSH1", - "gas": 92524, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2287, - "op": "DUP2", - "gas": 92521, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2288, - "op": "LT", - "gas": 92518, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2289, - "op": "ISZERO", - "gas": 92515, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2290, - "op": "PUSH2", - "gas": 92512, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2293, - "op": "JUMPI", - "gas": 92509, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2298, - "op": "JUMPDEST", - "gas": 92499, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2299, - "op": "POP", - "gas": 92498, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2300, - "op": "CALLDATALOAD", - "gas": 92496, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2301, - "op": "PUSH20", - "gas": 92493, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2322, - "op": "AND", - "gas": 92490, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2323, - "op": "PUSH2", - "gas": 92487, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2326, - "op": "JUMP", - "gas": 92484, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002798" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10136, - "op": "JUMPDEST", - "gas": 92476, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10137, - "op": "PUSH20", - "gas": 92475, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10158, - "op": "AND", - "gas": 92472, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10159, - "op": "PUSH1", - "gas": 92469, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10161, - "op": "SWAP1", - "gas": 92466, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10162, - "op": "DUP2", - "gas": 92463, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10163, - "op": "MSTORE", - "gas": 92460, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10164, - "op": "PUSH1", - "gas": 92457, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10166, - "op": "PUSH1", - "gas": 92454, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10168, - "op": "MSTORE", - "gas": 92451, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10169, - "op": "PUSH1", - "gas": 92448, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10171, - "op": "SWAP1", - "gas": 92445, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10172, - "op": "SHA3", - "gas": 92442, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10173, - "op": "SLOAD", - "gas": 92400, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10174, - "op": "SWAP1", - "gas": 92300, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10175, - "op": "JUMP", - "gas": 92297, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000040d" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1037, - "op": "JUMPDEST", - "gas": 92289, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1038, - "op": "PUSH1", - "gas": 92288, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1040, - "op": "DUP1", - "gas": 92285, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1041, - "op": "MLOAD", - "gas": 92282, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1042, - "op": "SWAP2", - "gas": 92279, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1043, - "op": "DUP3", - "gas": 92276, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1044, - "op": "MSTORE", - "gas": 92273, - "gasCost": 9, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1045, - "op": "MLOAD", - "gas": 92264, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1046, - "op": "SWAP1", - "gas": 92261, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1047, - "op": "DUP2", - "gas": 92258, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1048, - "op": "SWAP1", - "gas": 92255, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1049, - "op": "SUB", - "gas": 92252, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1050, - "op": "PUSH1", - "gas": 92249, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1052, - "op": "ADD", - "gas": 92246, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1053, - "op": "SWAP1", - "gas": 92243, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1054, - "op": "RETURN", - "gas": 92240, - "gasCost": 0, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1681, - "op": "RETURNDATASIZE", - "gas": 93712, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1682, - "op": "PUSH1", - "gas": 93710, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1684, - "op": "DUP1", - "gas": 93707, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1685, - "op": "RETURNDATACOPY", - "gas": 93704, - "gasCost": 6, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1686, - "op": "DUP1", - "gas": 93698, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1687, - "op": "PUSH1", - "gas": 93695, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1689, - "op": "DUP2", - "gas": 93692, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1690, - "op": "EQ", - "gas": 93689, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1691, - "op": "PUSH2", - "gas": 93686, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1694, - "op": "JUMPI", - "gas": 93683, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1695, - "op": "RETURNDATASIZE", - "gas": 93673, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1696, - "op": "PUSH1", - "gas": 93671, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1698, - "op": "RETURN", - "gas": 93668, - "gasCost": 0, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4648, - "op": "ISZERO", - "gas": 95175, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4649, - "op": "DUP1", - "gas": 95172, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4650, - "op": "ISZERO", - "gas": 95169, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4651, - "op": "PUSH2", - "gas": 95166, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4654, - "op": "JUMPI", - "gas": 95163, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001238" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4664, - "op": "JUMPDEST", - "gas": 95153, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4665, - "op": "POP", - "gas": 95152, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4666, - "op": "POP", - "gas": 95150, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4667, - "op": "POP", - "gas": 95148, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4668, - "op": "POP", - "gas": 95146, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4669, - "op": "PUSH1", - "gas": 95144, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4671, - "op": "MLOAD", - "gas": 95141, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4672, - "op": "RETURNDATASIZE", - "gas": 95138, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4673, - "op": "PUSH1", - "gas": 95136, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4675, - "op": "NOT", - "gas": 95133, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4676, - "op": "PUSH1", - "gas": 95130, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4678, - "op": "DUP3", - "gas": 95127, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4679, - "op": "ADD", - "gas": 95124, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4680, - "op": "AND", - "gas": 95121, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4681, - "op": "DUP3", - "gas": 95118, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4682, - "op": "ADD", - "gas": 95115, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4683, - "op": "DUP1", - "gas": 95112, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4684, - "op": "PUSH1", - "gas": 95109, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4686, - "op": "MSTORE", - "gas": 95106, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4687, - "op": "POP", - "gas": 95103, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4688, - "op": "DUP2", - "gas": 95101, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4689, - "op": "ADD", - "gas": 95098, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4690, - "op": "SWAP1", - "gas": 95095, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4691, - "op": "PUSH2", - "gas": 95092, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4694, - "op": "SWAP2", - "gas": 95089, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4695, - "op": "SWAP1", - "gas": 95086, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4696, - "op": "PUSH2", - "gas": 95083, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4699, - "op": "JUMP", - "gas": 95080, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000057d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22483, - "op": "JUMPDEST", - "gas": 95072, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22484, - "op": "PUSH1", - "gas": 95071, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22486, - "op": "PUSH1", - "gas": 95068, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22488, - "op": "DUP3", - "gas": 95065, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22489, - "op": "DUP5", - "gas": 95062, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22490, - "op": "SUB", - "gas": 95059, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22491, - "op": "SLT", - "gas": 95056, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22492, - "op": "ISZERO", - "gas": 95053, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22493, - "op": "PUSH2", - "gas": 95050, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22496, - "op": "JUMPI", - "gas": 95047, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22500, - "op": "JUMPDEST", - "gas": 95037, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22501, - "op": "POP", - "gas": 95036, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22502, - "op": "MLOAD", - "gas": 95034, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22503, - "op": "SWAP2", - "gas": 95031, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22504, - "op": "SWAP1", - "gas": 95028, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22505, - "op": "POP", - "gas": 95025, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22506, - "op": "JUMP", - "gas": 95023, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4700, - "op": "JUMPDEST", - "gas": 95015, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4701, - "op": "SWAP1", - "gas": 95014, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4702, - "op": "PUSH2", - "gas": 95011, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4705, - "op": "JUMP", - "gas": 95008, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003270" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12912, - "op": "JUMPDEST", - "gas": 95000, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12913, - "op": "DUP1", - "gas": 94999, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12914, - "op": "DUP3", - "gas": 94996, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12915, - "op": "SUB", - "gas": 94993, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12916, - "op": "DUP3", - "gas": 94990, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12917, - "op": "DUP2", - "gas": 94987, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12918, - "op": "GT", - "gas": 94984, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12919, - "op": "ISZERO", - "gas": 94981, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12920, - "op": "PUSH2", - "gas": 94978, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12923, - "op": "JUMPI", - "gas": 94975, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 94965, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 94964, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 94961, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003114" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 94958, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 94956, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 94954, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12564, - "op": "JUMPDEST", - "gas": 94946, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12565, - "op": "SWAP6", - "gas": 94945, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12566, - "op": "POP", - "gas": 94942, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12567, - "op": "PUSH2", - "gas": 94940, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12570, - "op": "DUP7", - "gas": 94937, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12571, - "op": "DUP4", - "gas": 94934, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12572, - "op": "DUP4", - "gas": 94931, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12573, - "op": "PUSH2", - "gas": 94928, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12576, - "op": "JUMP", - "gas": 94925, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003fa7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16295, - "op": "JUMPDEST", - "gas": 94917, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16296, - "op": "PUSH1", - "gas": 94916, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16298, - "op": "DUP1", - "gas": 94913, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16299, - "op": "DUP5", - "gas": 94910, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16300, - "op": "GT", - "gas": 94907, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16301, - "op": "PUSH2", - "gas": 94904, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16304, - "op": "JUMPI", - "gas": 94901, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004017" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16407, - "op": "JUMPDEST", - "gas": 94891, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16408, - "op": "PUSH1", - "gas": 94890, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16410, - "op": "DUP4", - "gas": 94887, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16411, - "op": "GT", - "gas": 94884, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16412, - "op": "DUP1", - "gas": 94881, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16413, - "op": "ISZERO", - "gas": 94878, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16414, - "op": "PUSH2", - "gas": 94875, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16417, - "op": "JUMPI", - "gas": 94872, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004027" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16418, - "op": "POP", - "gas": 94862, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16419, - "op": "PUSH1", - "gas": 94860, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16421, - "op": "DUP3", - "gas": 94857, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16422, - "op": "GT", - "gas": 94854, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16423, - "op": "JUMPDEST", - "gas": 94851, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16424, - "op": "PUSH2", - "gas": 94850, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16427, - "op": "JUMPI", - "gas": 94847, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004030" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16432, - "op": "JUMPDEST", - "gas": 94837, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16433, - "op": "PUSH1", - "gas": 94836, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16435, - "op": "PUSH2", - "gas": 94833, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16438, - "op": "DUP6", - "gas": 94830, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16439, - "op": "PUSH2", - "gas": 94827, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16442, - "op": "PUSH2", - "gas": 94824, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16445, - "op": "JUMP", - "gas": 94821, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000033d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13264, - "op": "JUMPDEST", - "gas": 94813, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13265, - "op": "PUSH1", - "gas": 94812, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13267, - "op": "DUP3", - "gas": 94809, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13268, - "op": "ISZERO", - "gas": 94806, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13269, - "op": "DUP1", - "gas": 94803, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13270, - "op": "PUSH2", - "gas": 94800, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13273, - "op": "JUMPI", - "gas": 94797, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13274, - "op": "POP", - "gas": 94787, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13275, - "op": "POP", - "gas": 94785, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13276, - "op": "DUP2", - "gas": 94783, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13277, - "op": "DUP2", - "gas": 94780, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13278, - "op": "MUL", - "gas": 94777, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13279, - "op": "DUP2", - "gas": 94772, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13280, - "op": "DUP4", - "gas": 94769, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13281, - "op": "DUP3", - "gas": 94766, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13282, - "op": "DUP2", - "gas": 94763, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13283, - "op": "PUSH2", - "gas": 94760, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13286, - "op": "JUMPI", - "gas": 94757, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000033e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13288, - "op": "JUMPDEST", - "gas": 94747, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13289, - "op": "DIV", - "gas": 94746, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13290, - "op": "EQ", - "gas": 94741, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13291, - "op": "JUMPDEST", - "gas": 94738, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13292, - "op": "PUSH2", - "gas": 94737, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13295, - "op": "JUMPI", - "gas": 94734, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 94724, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 94723, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 94720, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000000000403e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 94717, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 94715, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e", - "00000000000000000000000000000000000000000000000000000000000003e5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 94713, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16446, - "op": "JUMPDEST", - "gas": 94705, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16447, - "op": "SWAP1", - "gas": 94704, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16448, - "op": "POP", - "gas": 94701, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16449, - "op": "PUSH1", - "gas": 94699, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16451, - "op": "PUSH2", - "gas": 94696, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16454, - "op": "DUP3", - "gas": 94693, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16455, - "op": "DUP6", - "gas": 94690, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16456, - "op": "PUSH2", - "gas": 94687, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16459, - "op": "JUMP", - "gas": 94684, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000033d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13264, - "op": "JUMPDEST", - "gas": 94676, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13265, - "op": "PUSH1", - "gas": 94675, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13267, - "op": "DUP3", - "gas": 94672, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13268, - "op": "ISZERO", - "gas": 94669, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13269, - "op": "DUP1", - "gas": 94666, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13270, - "op": "PUSH2", - "gas": 94663, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13273, - "op": "JUMPI", - "gas": 94660, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13274, - "op": "POP", - "gas": 94650, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13275, - "op": "POP", - "gas": 94648, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13276, - "op": "DUP2", - "gas": 94646, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13277, - "op": "DUP2", - "gas": 94643, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13278, - "op": "MUL", - "gas": 94640, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13279, - "op": "DUP2", - "gas": 94635, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13280, - "op": "DUP4", - "gas": 94632, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13281, - "op": "DUP3", - "gas": 94629, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13282, - "op": "DUP2", - "gas": 94626, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13283, - "op": "PUSH2", - "gas": 94623, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13286, - "op": "JUMPI", - "gas": 94620, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000033e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13288, - "op": "JUMPDEST", - "gas": 94610, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13289, - "op": "DIV", - "gas": 94609, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13290, - "op": "EQ", - "gas": 94604, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13291, - "op": "JUMPDEST", - "gas": 94601, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13292, - "op": "PUSH2", - "gas": 94600, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13295, - "op": "JUMPI", - "gas": 94597, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 94587, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 94586, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 94583, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000404c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 94580, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 94578, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 94576, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16460, - "op": "JUMPDEST", - "gas": 94568, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16461, - "op": "SWAP1", - "gas": 94567, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16462, - "op": "POP", - "gas": 94564, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16463, - "op": "PUSH1", - "gas": 94562, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16465, - "op": "PUSH2", - "gas": 94559, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16468, - "op": "DUP4", - "gas": 94556, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16469, - "op": "PUSH2", - "gas": 94553, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16472, - "op": "DUP9", - "gas": 94550, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16473, - "op": "PUSH2", - "gas": 94547, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16476, - "op": "PUSH2", - "gas": 94544, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16479, - "op": "JUMP", - "gas": 94541, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000033d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13264, - "op": "JUMPDEST", - "gas": 94533, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13265, - "op": "PUSH1", - "gas": 94532, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13267, - "op": "DUP3", - "gas": 94529, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13268, - "op": "ISZERO", - "gas": 94526, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13269, - "op": "DUP1", - "gas": 94523, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13270, - "op": "PUSH2", - "gas": 94520, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13273, - "op": "JUMPI", - "gas": 94517, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13274, - "op": "POP", - "gas": 94507, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13275, - "op": "POP", - "gas": 94505, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13276, - "op": "DUP2", - "gas": 94503, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13277, - "op": "DUP2", - "gas": 94500, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13278, - "op": "MUL", - "gas": 94497, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13279, - "op": "DUP2", - "gas": 94492, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13280, - "op": "DUP4", - "gas": 94489, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13281, - "op": "DUP3", - "gas": 94486, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13282, - "op": "DUP2", - "gas": 94483, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13283, - "op": "PUSH2", - "gas": 94480, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13286, - "op": "JUMPI", - "gas": 94477, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000033e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13288, - "op": "JUMPDEST", - "gas": 94467, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13289, - "op": "DIV", - "gas": 94466, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13290, - "op": "EQ", - "gas": 94461, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13291, - "op": "JUMPDEST", - "gas": 94458, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13292, - "op": "PUSH2", - "gas": 94457, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 13295, - "op": "JUMPI", - "gas": 94454, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 94444, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 94443, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 94440, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000004060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 94437, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 94435, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 94433, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16480, - "op": "JUMPDEST", - "gas": 94425, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16481, - "op": "SWAP1", - "gas": 94424, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16482, - "op": "PUSH2", - "gas": 94421, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16485, - "op": "JUMP", - "gas": 94418, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004e24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20004, - "op": "JUMPDEST", - "gas": 94410, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20005, - "op": "DUP1", - "gas": 94409, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20006, - "op": "DUP3", - "gas": 94406, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20007, - "op": "ADD", - "gas": 94403, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20008, - "op": "DUP3", - "gas": 94400, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20009, - "op": "DUP2", - "gas": 94397, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20010, - "op": "LT", - "gas": 94394, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20011, - "op": "ISZERO", - "gas": 94391, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20012, - "op": "PUSH2", - "gas": 94388, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20015, - "op": "JUMPI", - "gas": 94385, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 94375, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 94374, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 94371, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004066" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 94368, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 94366, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 94364, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16486, - "op": "JUMPDEST", - "gas": 94356, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16487, - "op": "SWAP1", - "gas": 94355, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16488, - "op": "POP", - "gas": 94352, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16489, - "op": "DUP1", - "gas": 94350, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16490, - "op": "DUP3", - "gas": 94347, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16491, - "op": "DUP2", - "gas": 94344, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16492, - "op": "PUSH2", - "gas": 94341, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16495, - "op": "JUMPI", - "gas": 94338, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004071" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16497, - "op": "JUMPDEST", - "gas": 94328, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16498, - "op": "DIV", - "gas": 94327, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16499, - "op": "SWAP8", - "gas": 94322, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16500, - "op": "SWAP7", - "gas": 94319, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000003121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16501, - "op": "POP", - "gas": 94316, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16502, - "op": "POP", - "gas": 94314, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16503, - "op": "POP", - "gas": 94312, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16504, - "op": "POP", - "gas": 94310, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16505, - "op": "POP", - "gas": 94308, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16506, - "op": "POP", - "gas": 94306, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16507, - "op": "POP", - "gas": 94304, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16508, - "op": "JUMP", - "gas": 94302, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12577, - "op": "JUMPDEST", - "gas": 94294, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12578, - "op": "SWAP5", - "gas": 94293, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12579, - "op": "POP", - "gas": 94290, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12580, - "op": "POP", - "gas": 94288, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12581, - "op": "POP", - "gas": 94286, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12582, - "op": "POP", - "gas": 94284, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12583, - "op": "POP", - "gas": 94282, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12584, - "op": "PUSH1", - "gas": 94280, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12586, - "op": "DUP1", - "gas": 94277, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12587, - "op": "DUP6", - "gas": 94274, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12588, - "op": "PUSH20", - "gas": 94271, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12609, - "op": "AND", - "gas": 94268, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12610, - "op": "DUP9", - "gas": 94265, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12611, - "op": "PUSH20", - "gas": 94262, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12632, - "op": "AND", - "gas": 94259, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12633, - "op": "EQ", - "gas": 94256, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12634, - "op": "PUSH2", - "gas": 94253, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12637, - "op": "JUMPI", - "gas": 94250, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003165" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12645, - "op": "JUMPDEST", - "gas": 94240, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12646, - "op": "PUSH1", - "gas": 94239, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12648, - "op": "DUP4", - "gas": 94236, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12649, - "op": "JUMPDEST", - "gas": 94233, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12650, - "op": "SWAP2", - "gas": 94232, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12651, - "op": "POP", - "gas": 94229, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12652, - "op": "SWAP2", - "gas": 94227, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12653, - "op": "POP", - "gas": 94224, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12654, - "op": "PUSH1", - "gas": 94222, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12656, - "op": "PUSH1", - "gas": 94219, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12658, - "op": "DUP13", - "gas": 94216, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12659, - "op": "MLOAD", - "gas": 94213, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12660, - "op": "SUB", - "gas": 94210, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12661, - "op": "DUP11", - "gas": 94207, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12662, - "op": "LT", - "gas": 94204, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12663, - "op": "PUSH2", - "gas": 94201, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12666, - "op": "JUMPI", - "gas": 94198, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12667, - "op": "DUP11", - "gas": 94188, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12668, - "op": "PUSH2", - "gas": 94185, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12671, - "op": "JUMP", - "gas": 94182, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000031c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12737, - "op": "JUMPDEST", - "gas": 94174, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12738, - "op": "PUSH1", - "gas": 94173, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12740, - "op": "DUP1", - "gas": 94170, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12741, - "op": "MLOAD", - "gas": 94167, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12742, - "op": "PUSH1", - "gas": 94164, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12744, - "op": "DUP2", - "gas": 94161, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12745, - "op": "MSTORE", - "gas": 94158, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed57c2e", - "411e000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12746, - "op": "PUSH1", - "gas": 94155, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12748, - "op": "DUP2", - "gas": 94152, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12749, - "op": "ADD", - "gas": 94149, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12750, - "op": "SWAP2", - "gas": 94146, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12751, - "op": "DUP3", - "gas": 94143, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12752, - "op": "SWAP1", - "gas": 94140, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12753, - "op": "MSTORE", - "gas": 94137, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12754, - "op": "PUSH32", - "gas": 94134, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12787, - "op": "SWAP1", - "gas": 94131, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "022c0d9f00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12788, - "op": "SWAP2", - "gas": 94128, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12789, - "op": "MSTORE", - "gas": 94125, - "gasCost": 7, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12790, - "op": "SWAP1", - "gas": 94118, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12791, - "op": "SWAP2", - "gas": 94115, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12792, - "op": "POP", - "gas": 94112, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12793, - "op": "PUSH20", - "gas": 94110, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12814, - "op": "DUP8", - "gas": 94107, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12815, - "op": "AND", - "gas": 94104, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12816, - "op": "SWAP1", - "gas": 94101, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12817, - "op": "PUSH4", - "gas": 94098, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12822, - "op": "SWAP1", - "gas": 94095, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12823, - "op": "PUSH2", - "gas": 94092, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12826, - "op": "SWAP1", - "gas": 94089, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000003229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12827, - "op": "DUP7", - "gas": 94086, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12828, - "op": "SWAP1", - "gas": 94083, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12829, - "op": "DUP7", - "gas": 94080, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12830, - "op": "SWAP1", - "gas": 94077, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12831, - "op": "DUP7", - "gas": 94074, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12832, - "op": "SWAP1", - "gas": 94071, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12833, - "op": "PUSH1", - "gas": 94068, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12835, - "op": "DUP2", - "gas": 94065, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12836, - "op": "ADD", - "gas": 94062, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12837, - "op": "PUSH2", - "gas": 94059, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12840, - "op": "JUMP", - "gas": 94056, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000005e06" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24070, - "op": "JUMPDEST", - "gas": 94048, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24071, - "op": "PUSH1", - "gas": 94047, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24073, - "op": "DUP6", - "gas": 94044, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24074, - "op": "DUP3", - "gas": 94041, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24075, - "op": "MSTORE", - "gas": 94038, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24076, - "op": "DUP5", - "gas": 94032, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24077, - "op": "PUSH1", - "gas": 94029, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24079, - "op": "DUP4", - "gas": 94026, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24080, - "op": "ADD", - "gas": 94023, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24081, - "op": "MSTORE", - "gas": 94020, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24082, - "op": "PUSH20", - "gas": 94014, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24103, - "op": "DUP5", - "gas": 94011, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24104, - "op": "AND", - "gas": 94008, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24105, - "op": "PUSH1", - "gas": 94005, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24107, - "op": "DUP4", - "gas": 94002, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24108, - "op": "ADD", - "gas": 93999, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24109, - "op": "MSTORE", - "gas": 93996, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000422" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24110, - "op": "PUSH1", - "gas": 93990, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24112, - "op": "PUSH1", - "gas": 93987, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24114, - "op": "DUP4", - "gas": 93984, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24115, - "op": "ADD", - "gas": 93981, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24116, - "op": "MSTORE", - "gas": 93978, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000442" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24117, - "op": "PUSH2", - "gas": 93972, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24120, - "op": "PUSH1", - "gas": 93969, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24122, - "op": "DUP4", - "gas": 93966, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24123, - "op": "ADD", - "gas": 93963, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24124, - "op": "DUP5", - "gas": 93960, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24125, - "op": "PUSH2", - "gas": 93957, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24128, - "op": "JUMP", - "gas": 93954, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000005950" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22864, - "op": "JUMPDEST", - "gas": 93946, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22865, - "op": "PUSH1", - "gas": 93945, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22867, - "op": "DUP2", - "gas": 93942, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22868, - "op": "MLOAD", - "gas": 93939, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22869, - "op": "DUP1", - "gas": 93936, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22870, - "op": "DUP5", - "gas": 93933, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22871, - "op": "MSTORE", - "gas": 93930, - "gasCost": 6, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000462" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22872, - "op": "PUSH2", - "gas": 93924, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22875, - "op": "DUP2", - "gas": 93921, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22876, - "op": "PUSH1", - "gas": 93918, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22878, - "op": "DUP7", - "gas": 93915, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22879, - "op": "ADD", - "gas": 93912, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000462" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22880, - "op": "PUSH1", - "gas": 93909, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22882, - "op": "DUP7", - "gas": 93906, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22883, - "op": "ADD", - "gas": 93903, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22884, - "op": "PUSH2", - "gas": 93900, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22887, - "op": "JUMP", - "gas": 93897, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000005f26" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24358, - "op": "JUMPDEST", - "gas": 93889, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24359, - "op": "PUSH1", - "gas": 93888, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24361, - "op": "JUMPDEST", - "gas": 93885, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24362, - "op": "DUP4", - "gas": 93884, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24363, - "op": "DUP2", - "gas": 93881, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24364, - "op": "LT", - "gas": 93878, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24365, - "op": "ISZERO", - "gas": 93875, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24366, - "op": "PUSH2", - "gas": 93872, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24369, - "op": "JUMPI", - "gas": 93869, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005f41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24385, - "op": "JUMPDEST", - "gas": 93859, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24386, - "op": "DUP4", - "gas": 93858, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24387, - "op": "DUP2", - "gas": 93855, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24388, - "op": "GT", - "gas": 93852, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24389, - "op": "ISZERO", - "gas": 93849, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24390, - "op": "PUSH2", - "gas": 93846, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 24393, - "op": "JUMPI", - "gas": 93843, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3157, - "op": "JUMPDEST", - "gas": 93833, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3158, - "op": "POP", - "gas": 93832, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3159, - "op": "POP", - "gas": 93830, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3160, - "op": "POP", - "gas": 93828, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3161, - "op": "POP", - "gas": 93826, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3162, - "op": "JUMP", - "gas": 93824, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22888, - "op": "JUMPDEST", - "gas": 93816, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22889, - "op": "PUSH1", - "gas": 93815, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22891, - "op": "ADD", - "gas": 93812, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22892, - "op": "PUSH32", - "gas": 93809, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22925, - "op": "AND", - "gas": 93806, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22926, - "op": "SWAP3", - "gas": 93803, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22927, - "op": "SWAP1", - "gas": 93800, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000462" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22928, - "op": "SWAP3", - "gas": 93797, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22929, - "op": "ADD", - "gas": 93794, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22930, - "op": "PUSH1", - "gas": 93791, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22932, - "op": "ADD", - "gas": 93788, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22933, - "op": "SWAP3", - "gas": 93785, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22934, - "op": "SWAP2", - "gas": 93782, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000003ef8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22935, - "op": "POP", - "gas": 93779, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22936, - "op": "POP", - "gas": 93777, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22937, - "op": "JUMP", - "gas": 93775, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16120, - "op": "JUMPDEST", - "gas": 93767, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16121, - "op": "SWAP7", - "gas": 93766, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16122, - "op": "SWAP6", - "gas": 93763, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16123, - "op": "POP", - "gas": 93760, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16124, - "op": "POP", - "gas": 93758, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16125, - "op": "POP", - "gas": 93756, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16126, - "op": "POP", - "gas": 93754, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16127, - "op": "POP", - "gas": 93752, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16128, - "op": "POP", - "gas": 93750, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16129, - "op": "JUMP", - "gas": 93748, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12841, - "op": "JUMPDEST", - "gas": 93740, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12842, - "op": "PUSH1", - "gas": 93739, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12844, - "op": "PUSH1", - "gas": 93736, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12846, - "op": "MLOAD", - "gas": 93733, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12847, - "op": "DUP1", - "gas": 93730, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12848, - "op": "DUP4", - "gas": 93727, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12849, - "op": "SUB", - "gas": 93724, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12850, - "op": "DUP2", - "gas": 93721, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12851, - "op": "PUSH1", - "gas": 93718, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12853, - "op": "DUP8", - "gas": 93715, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12854, - "op": "DUP1", - "gas": 93712, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12855, - "op": "EXTCODESIZE", - "gas": 93709, - "gasCost": 100, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12856, - "op": "ISZERO", - "gas": 93609, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002c1d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12857, - "op": "DUP1", - "gas": 93606, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12858, - "op": "ISZERO", - "gas": 93603, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12859, - "op": "PUSH2", - "gas": 93600, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12862, - "op": "JUMPI", - "gas": 93597, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003243" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12867, - "op": "JUMPDEST", - "gas": 93587, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12868, - "op": "POP", - "gas": 93586, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12869, - "op": "GAS", - "gas": 93584, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12870, - "op": "CALL", - "gas": 93582, - "gasCost": 92122, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000016d8e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 92022, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 92019, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 92016, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 92004, - "gasCost": 2, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 92002, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 91999, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 91996, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 91993, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 91983, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 91982, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 91980, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 91977, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 91975, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 91972, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 91969, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 91959, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 91956, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 91953, - "gasCost": 3, - "depth": 3, - "stack": [ - "022c0d9f00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 91950, - "gasCost": 3, - "depth": 3, - "stack": [ - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 91947, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 91944, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 91941, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000000000000000000000000000000000006a627842" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 91938, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 91935, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 249, - "op": "JUMPDEST", - "gas": 91925, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 250, - "op": "DUP1", - "gas": 91924, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 251, - "op": "PUSH4", - "gas": 91921, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 256, - "op": "GT", - "gas": 91918, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000023b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 257, - "op": "PUSH2", - "gas": 91915, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 260, - "op": "JUMPI", - "gas": 91912, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 358, - "op": "JUMPDEST", - "gas": 91902, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 359, - "op": "DUP1", - "gas": 91901, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 360, - "op": "PUSH4", - "gas": 91898, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 365, - "op": "GT", - "gas": 91895, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000095ea7b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 366, - "op": "PUSH2", - "gas": 91892, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 369, - "op": "JUMPI", - "gas": 91889, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 407, - "op": "JUMPDEST", - "gas": 91879, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 408, - "op": "DUP1", - "gas": 91878, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 409, - "op": "PUSH4", - "gas": 91875, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 414, - "op": "EQ", - "gas": 91872, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 415, - "op": "PUSH2", - "gas": 91869, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 418, - "op": "JUMPI", - "gas": 91866, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 446, - "op": "JUMPDEST", - "gas": 91856, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 447, - "op": "PUSH2", - "gas": 91855, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 450, - "op": "PUSH1", - "gas": 91852, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 452, - "op": "DUP1", - "gas": 91849, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 453, - "op": "CALLDATASIZE", - "gas": 91846, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 454, - "op": "SUB", - "gas": 91844, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 455, - "op": "PUSH1", - "gas": 91841, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 457, - "op": "DUP2", - "gas": 91838, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 458, - "op": "LT", - "gas": 91835, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 459, - "op": "ISZERO", - "gas": 91832, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 460, - "op": "PUSH2", - "gas": 91829, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 463, - "op": "JUMPI", - "gas": 91826, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001d4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 468, - "op": "JUMPDEST", - "gas": 91816, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 469, - "op": "DUP2", - "gas": 91815, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 470, - "op": "CALLDATALOAD", - "gas": 91812, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 471, - "op": "SWAP2", - "gas": 91809, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 472, - "op": "PUSH1", - "gas": 91806, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 474, - "op": "DUP2", - "gas": 91803, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 475, - "op": "ADD", - "gas": 91800, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 476, - "op": "CALLDATALOAD", - "gas": 91797, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 477, - "op": "SWAP2", - "gas": 91794, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 478, - "op": "PUSH20", - "gas": 91791, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 499, - "op": "PUSH1", - "gas": 91788, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 501, - "op": "DUP4", - "gas": 91785, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 502, - "op": "ADD", - "gas": 91782, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 503, - "op": "CALLDATALOAD", - "gas": 91779, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 504, - "op": "AND", - "gas": 91776, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 505, - "op": "SWAP2", - "gas": 91773, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 506, - "op": "SWAP1", - "gas": 91770, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 507, - "op": "DUP2", - "gas": 91767, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 508, - "op": "ADD", - "gas": 91764, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 509, - "op": "SWAP1", - "gas": 91761, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 510, - "op": "PUSH1", - "gas": 91758, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 512, - "op": "DUP2", - "gas": 91755, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 513, - "op": "ADD", - "gas": 91752, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 514, - "op": "PUSH1", - "gas": 91749, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 516, - "op": "DUP3", - "gas": 91746, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 517, - "op": "ADD", - "gas": 91743, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 518, - "op": "CALLDATALOAD", - "gas": 91740, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 519, - "op": "PUSH5", - "gas": 91737, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 525, - "op": "DUP2", - "gas": 91734, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 526, - "op": "GT", - "gas": 91731, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 527, - "op": "ISZERO", - "gas": 91728, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 528, - "op": "PUSH2", - "gas": 91725, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 531, - "op": "JUMPI", - "gas": 91722, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000218" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 536, - "op": "JUMPDEST", - "gas": 91712, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 537, - "op": "DUP3", - "gas": 91711, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 538, - "op": "ADD", - "gas": 91708, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 539, - "op": "DUP4", - "gas": 91705, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 540, - "op": "PUSH1", - "gas": 91702, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 542, - "op": "DUP3", - "gas": 91699, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 543, - "op": "ADD", - "gas": 91696, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 544, - "op": "GT", - "gas": 91693, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 545, - "op": "ISZERO", - "gas": 91690, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 546, - "op": "PUSH2", - "gas": 91687, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 549, - "op": "JUMPI", - "gas": 91684, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000022a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 554, - "op": "JUMPDEST", - "gas": 91674, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 555, - "op": "DUP1", - "gas": 91673, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 556, - "op": "CALLDATALOAD", - "gas": 91670, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 557, - "op": "SWAP1", - "gas": 91667, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 558, - "op": "PUSH1", - "gas": 91664, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 560, - "op": "ADD", - "gas": 91661, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 561, - "op": "SWAP2", - "gas": 91658, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 562, - "op": "DUP5", - "gas": 91655, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 563, - "op": "PUSH1", - "gas": 91652, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 565, - "op": "DUP4", - "gas": 91649, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 566, - "op": "MUL", - "gas": 91646, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 567, - "op": "DUP5", - "gas": 91641, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 568, - "op": "ADD", - "gas": 91638, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 569, - "op": "GT", - "gas": 91635, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 570, - "op": "PUSH5", - "gas": 91632, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 576, - "op": "DUP4", - "gas": 91629, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 577, - "op": "GT", - "gas": 91626, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 578, - "op": "OR", - "gas": 91623, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 579, - "op": "ISZERO", - "gas": 91620, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 580, - "op": "PUSH2", - "gas": 91617, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 583, - "op": "JUMPI", - "gas": 91614, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000024c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 588, - "op": "JUMPDEST", - "gas": 91604, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 589, - "op": "POP", - "gas": 91603, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 590, - "op": "SWAP1", - "gas": 91601, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 591, - "op": "SWAP3", - "gas": 91598, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 592, - "op": "POP", - "gas": 91595, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 593, - "op": "SWAP1", - "gas": 91593, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 594, - "op": "POP", - "gas": 91590, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 595, - "op": "PUSH2", - "gas": 91588, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 598, - "op": "JUMP", - "gas": 91585, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000683" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1667, - "op": "JUMPDEST", - "gas": 91577, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1668, - "op": "PUSH1", - "gas": 91576, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1670, - "op": "SLOAD", - "gas": 91573, - "gasCost": 2100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1671, - "op": "PUSH1", - "gas": 89473, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1673, - "op": "EQ", - "gas": 89470, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1674, - "op": "PUSH2", - "gas": 89467, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1677, - "op": "JUMPI", - "gas": 89464, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000006f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1780, - "op": "JUMPDEST", - "gas": 89454, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1781, - "op": "PUSH1", - "gas": 89453, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1783, - "op": "PUSH1", - "gas": 89450, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1785, - "op": "SSTORE", - "gas": 89447, - "gasCost": 2900, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1786, - "op": "DUP5", - "gas": 86547, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1787, - "op": "ISZERO", - "gas": 86544, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1788, - "op": "ISZERO", - "gas": 86541, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1789, - "op": "DUP1", - "gas": 86538, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1790, - "op": "PUSH2", - "gas": 86535, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1793, - "op": "JUMPI", - "gas": 86532, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000707" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1794, - "op": "POP", - "gas": 86522, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1795, - "op": "PUSH1", - "gas": 86520, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1797, - "op": "DUP5", - "gas": 86517, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1798, - "op": "GT", - "gas": 86514, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1799, - "op": "JUMPDEST", - "gas": 86511, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1800, - "op": "PUSH2", - "gas": 86510, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1803, - "op": "JUMPI", - "gas": 86507, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000075c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1884, - "op": "JUMPDEST", - "gas": 86497, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1885, - "op": "PUSH1", - "gas": 86496, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1887, - "op": "DUP1", - "gas": 86493, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1888, - "op": "PUSH2", - "gas": 86490, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1891, - "op": "PUSH2", - "gas": 86487, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1894, - "op": "JUMP", - "gas": 86484, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000000000d90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3472, - "op": "JUMPDEST", - "gas": 86476, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3473, - "op": "PUSH1", - "gas": 86475, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3475, - "op": "SLOAD", - "gas": 86472, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3476, - "op": "PUSH14", - "gas": 86372, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3491, - "op": "DUP1", - "gas": 86369, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3492, - "op": "DUP3", - "gas": 86366, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3493, - "op": "AND", - "gas": 86363, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3494, - "op": "SWAP3", - "gas": 86360, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3495, - "op": "PUSH15", - "gas": 86357, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3511, - "op": "DUP4", - "gas": 86354, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3512, - "op": "DIV", - "gas": 86351, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3513, - "op": "SWAP1", - "gas": 86346, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3514, - "op": "SWAP2", - "gas": 86343, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3515, - "op": "AND", - "gas": 86340, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000767", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3516, - "op": "SWAP2", - "gas": 86337, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000767", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3517, - "op": "PUSH29", - "gas": 86334, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3547, - "op": "SWAP1", - "gas": 86331, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3548, - "op": "DIV", - "gas": 86328, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3549, - "op": "PUSH4", - "gas": 86323, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3554, - "op": "AND", - "gas": 86320, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3555, - "op": "SWAP1", - "gas": 86317, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3556, - "op": "JUMP", - "gas": 86314, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000767" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1895, - "op": "JUMPDEST", - "gas": 86306, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1896, - "op": "POP", - "gas": 86305, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1897, - "op": "SWAP2", - "gas": 86303, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1898, - "op": "POP", - "gas": 86300, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1899, - "op": "SWAP2", - "gas": 86298, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1900, - "op": "POP", - "gas": 86295, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1901, - "op": "DUP2", - "gas": 86293, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1902, - "op": "PUSH14", - "gas": 86290, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1917, - "op": "AND", - "gas": 86287, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1918, - "op": "DUP8", - "gas": 86284, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1919, - "op": "LT", - "gas": 86281, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1920, - "op": "DUP1", - "gas": 86278, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1921, - "op": "ISZERO", - "gas": 86275, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1922, - "op": "PUSH2", - "gas": 86272, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1925, - "op": "JUMPI", - "gas": 86269, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000079a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1926, - "op": "POP", - "gas": 86259, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1927, - "op": "DUP1", - "gas": 86257, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1928, - "op": "PUSH14", - "gas": 86254, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1943, - "op": "AND", - "gas": 86251, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1944, - "op": "DUP7", - "gas": 86248, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1945, - "op": "LT", - "gas": 86245, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1946, - "op": "JUMPDEST", - "gas": 86242, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1947, - "op": "PUSH2", - "gas": 86241, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1950, - "op": "JUMPI", - "gas": 86238, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007ef" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2031, - "op": "JUMPDEST", - "gas": 86228, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2032, - "op": "PUSH1", - "gas": 86227, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2034, - "op": "SLOAD", - "gas": 86224, - "gasCost": 2100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2035, - "op": "PUSH1", - "gas": 84124, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2037, - "op": "SLOAD", - "gas": 84121, - "gasCost": 2100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2038, - "op": "PUSH1", - "gas": 82021, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2040, - "op": "SWAP2", - "gas": 82018, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2041, - "op": "DUP3", - "gas": 82015, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2042, - "op": "SWAP2", - "gas": 82012, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2043, - "op": "PUSH20", - "gas": 82009, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2064, - "op": "SWAP2", - "gas": 82006, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2065, - "op": "DUP3", - "gas": 82003, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2066, - "op": "AND", - "gas": 82000, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2067, - "op": "SWAP2", - "gas": 81997, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2068, - "op": "SWAP1", - "gas": 81994, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2069, - "op": "DUP2", - "gas": 81991, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2070, - "op": "AND", - "gas": 81988, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2071, - "op": "SWAP1", - "gas": 81985, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2072, - "op": "DUP10", - "gas": 81982, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2073, - "op": "AND", - "gas": 81979, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2074, - "op": "DUP3", - "gas": 81976, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2075, - "op": "EQ", - "gas": 81973, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2076, - "op": "DUP1", - "gas": 81970, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2077, - "op": "ISZERO", - "gas": 81967, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2078, - "op": "SWAP1", - "gas": 81964, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2079, - "op": "PUSH2", - "gas": 81961, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2082, - "op": "JUMPI", - "gas": 81958, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000854" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2083, - "op": "POP", - "gas": 81948, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2084, - "op": "DUP1", - "gas": 81946, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2085, - "op": "PUSH20", - "gas": 81943, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2106, - "op": "AND", - "gas": 81940, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2107, - "op": "DUP10", - "gas": 81937, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2108, - "op": "PUSH20", - "gas": 81934, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2129, - "op": "AND", - "gas": 81931, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2130, - "op": "EQ", - "gas": 81928, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2131, - "op": "ISZERO", - "gas": 81925, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2132, - "op": "JUMPDEST", - "gas": 81922, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2133, - "op": "PUSH2", - "gas": 81921, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2136, - "op": "JUMPI", - "gas": 81918, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008bf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2239, - "op": "JUMPDEST", - "gas": 81908, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2240, - "op": "DUP11", - "gas": 81907, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2241, - "op": "ISZERO", - "gas": 81904, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2242, - "op": "PUSH2", - "gas": 81901, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2245, - "op": "JUMPI", - "gas": 81898, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2256, - "op": "JUMPDEST", - "gas": 81888, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2257, - "op": "DUP10", - "gas": 81887, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2258, - "op": "ISZERO", - "gas": 81884, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2259, - "op": "PUSH2", - "gas": 81881, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2262, - "op": "JUMPI", - "gas": 81878, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2263, - "op": "PUSH2", - "gas": 81868, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2266, - "op": "DUP2", - "gas": 81865, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2267, - "op": "DUP11", - "gas": 81862, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2268, - "op": "DUP13", - "gas": 81859, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2269, - "op": "PUSH2", - "gas": 81856, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2272, - "op": "JUMP", - "gas": 81853, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001fdb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8155, - "op": "JUMPDEST", - "gas": 81845, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8156, - "op": "PUSH1", - "gas": 81844, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8158, - "op": "DUP1", - "gas": 81841, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8159, - "op": "MLOAD", - "gas": 81838, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8160, - "op": "DUP1", - "gas": 81835, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8161, - "op": "DUP3", - "gas": 81832, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8162, - "op": "ADD", - "gas": 81829, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8163, - "op": "DUP3", - "gas": 81826, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8164, - "op": "MSTORE", - "gas": 81823, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8165, - "op": "PUSH1", - "gas": 81820, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8167, - "op": "DUP2", - "gas": 81817, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8168, - "op": "MSTORE", - "gas": 81814, - "gasCost": 9, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000019", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8169, - "op": "PUSH32", - "gas": 81805, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8202, - "op": "PUSH1", - "gas": 81802, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8204, - "op": "SWAP2", - "gas": 81799, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8205, - "op": "DUP3", - "gas": 81796, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8206, - "op": "ADD", - "gas": 81793, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8207, - "op": "MSTORE", - "gas": 81790, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8208, - "op": "DUP2", - "gas": 81784, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8209, - "op": "MLOAD", - "gas": 81781, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8210, - "op": "PUSH20", - "gas": 81778, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8231, - "op": "DUP6", - "gas": 81775, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8232, - "op": "DUP2", - "gas": 81772, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8233, - "op": "AND", - "gas": 81769, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8234, - "op": "PUSH1", - "gas": 81766, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8236, - "op": "DUP4", - "gas": 81763, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8237, - "op": "ADD", - "gas": 81760, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8238, - "op": "MSTORE", - "gas": 81757, - "gasCost": 12, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8239, - "op": "PUSH1", - "gas": 81745, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8241, - "op": "DUP1", - "gas": 81742, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8242, - "op": "DUP4", - "gas": 81739, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8243, - "op": "ADD", - "gas": 81736, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8244, - "op": "DUP7", - "gas": 81733, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8245, - "op": "SWAP1", - "gas": 81730, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8246, - "op": "MSTORE", - "gas": 81727, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8247, - "op": "DUP5", - "gas": 81721, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8248, - "op": "MLOAD", - "gas": 81718, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8249, - "op": "DUP1", - "gas": 81715, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8250, - "op": "DUP5", - "gas": 81712, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8251, - "op": "SUB", - "gas": 81709, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8252, - "op": "SWAP1", - "gas": 81706, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8253, - "op": "SWAP2", - "gas": 81703, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8254, - "op": "ADD", - "gas": 81700, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8255, - "op": "DUP2", - "gas": 81697, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8256, - "op": "MSTORE", - "gas": 81694, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8257, - "op": "PUSH1", - "gas": 81691, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8259, - "op": "SWAP1", - "gas": 81688, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8260, - "op": "SWAP3", - "gas": 81685, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8261, - "op": "ADD", - "gas": 81682, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8262, - "op": "DUP5", - "gas": 81679, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8263, - "op": "MSTORE", - "gas": 81676, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8264, - "op": "SWAP2", - "gas": 81673, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8265, - "op": "DUP2", - "gas": 81670, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8266, - "op": "ADD", - "gas": 81667, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8267, - "op": "DUP1", - "gas": 81664, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8268, - "op": "MLOAD", - "gas": 81661, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8269, - "op": "PUSH28", - "gas": 81658, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8298, - "op": "AND", - "gas": 81655, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8299, - "op": "PUSH32", - "gas": 81652, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8332, - "op": "OR", - "gas": 81649, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "a9059cbb00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8333, - "op": "DUP2", - "gas": 81646, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8334, - "op": "MSTORE", - "gas": 81643, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8335, - "op": "SWAP3", - "gas": 81640, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8336, - "op": "MLOAD", - "gas": 81637, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8337, - "op": "DUP2", - "gas": 81634, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8338, - "op": "MLOAD", - "gas": 81631, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8339, - "op": "PUSH1", - "gas": 81628, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8341, - "op": "SWAP5", - "gas": 81625, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8342, - "op": "PUSH1", - "gas": 81622, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8344, - "op": "SWAP5", - "gas": 81619, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8345, - "op": "DUP10", - "gas": 81616, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8346, - "op": "AND", - "gas": 81613, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8347, - "op": "SWAP4", - "gas": 81610, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8348, - "op": "SWAP3", - "gas": 81607, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8349, - "op": "SWAP2", - "gas": 81604, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8350, - "op": "DUP3", - "gas": 81601, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8351, - "op": "SWAP2", - "gas": 81598, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8352, - "op": "SWAP1", - "gas": 81595, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8353, - "op": "DUP1", - "gas": 81592, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8354, - "op": "DUP4", - "gas": 81589, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8355, - "op": "DUP4", - "gas": 81586, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8356, - "op": "JUMPDEST", - "gas": 81583, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8357, - "op": "PUSH1", - "gas": 81582, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8359, - "op": "DUP4", - "gas": 81579, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8360, - "op": "LT", - "gas": 81576, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8361, - "op": "PUSH2", - "gas": 81573, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8364, - "op": "JUMPI", - "gas": 81570, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000020e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8365, - "op": "DUP1", - "gas": 81560, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8366, - "op": "MLOAD", - "gas": 81557, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8367, - "op": "DUP3", - "gas": 81554, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8368, - "op": "MSTORE", - "gas": 81551, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8369, - "op": "PUSH32", - "gas": 81545, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8402, - "op": "SWAP1", - "gas": 81542, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8403, - "op": "SWAP3", - "gas": 81539, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8404, - "op": "ADD", - "gas": 81536, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8405, - "op": "SWAP2", - "gas": 81533, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8406, - "op": "PUSH1", - "gas": 81530, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8408, - "op": "SWAP2", - "gas": 81527, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8409, - "op": "DUP3", - "gas": 81524, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8410, - "op": "ADD", - "gas": 81521, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8411, - "op": "SWAP2", - "gas": 81518, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8412, - "op": "ADD", - "gas": 81515, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8413, - "op": "PUSH2", - "gas": 81512, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8416, - "op": "JUMP", - "gas": 81509, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000020a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8356, - "op": "JUMPDEST", - "gas": 81501, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8357, - "op": "PUSH1", - "gas": 81500, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8359, - "op": "DUP4", - "gas": 81497, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8360, - "op": "LT", - "gas": 81494, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8361, - "op": "PUSH2", - "gas": 81491, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8364, - "op": "JUMPI", - "gas": 81488, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000020e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8365, - "op": "DUP1", - "gas": 81478, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8366, - "op": "MLOAD", - "gas": 81475, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8367, - "op": "DUP3", - "gas": 81472, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8368, - "op": "MSTORE", - "gas": 81469, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8369, - "op": "PUSH32", - "gas": 81463, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8402, - "op": "SWAP1", - "gas": 81460, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8403, - "op": "SWAP3", - "gas": 81457, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8404, - "op": "ADD", - "gas": 81454, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8405, - "op": "SWAP2", - "gas": 81451, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8406, - "op": "PUSH1", - "gas": 81448, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8408, - "op": "SWAP2", - "gas": 81445, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8409, - "op": "DUP3", - "gas": 81442, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8410, - "op": "ADD", - "gas": 81439, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8411, - "op": "SWAP2", - "gas": 81436, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8412, - "op": "ADD", - "gas": 81433, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8413, - "op": "PUSH2", - "gas": 81430, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8416, - "op": "JUMP", - "gas": 81427, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000020a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8356, - "op": "JUMPDEST", - "gas": 81419, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8357, - "op": "PUSH1", - "gas": 81418, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8359, - "op": "DUP4", - "gas": 81415, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8360, - "op": "LT", - "gas": 81412, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8361, - "op": "PUSH2", - "gas": 81409, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8364, - "op": "JUMPI", - "gas": 81406, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000020e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8417, - "op": "JUMPDEST", - "gas": 81396, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8418, - "op": "PUSH1", - "gas": 81395, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8420, - "op": "DUP4", - "gas": 81392, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8421, - "op": "PUSH1", - "gas": 81389, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8423, - "op": "SUB", - "gas": 81386, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8424, - "op": "PUSH2", - "gas": 81383, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8427, - "op": "EXP", - "gas": 81380, - "gasCost": 60, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8428, - "op": "SUB", - "gas": 81320, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8429, - "op": "DUP1", - "gas": 81317, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8430, - "op": "NOT", - "gas": 81314, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8431, - "op": "DUP3", - "gas": 81311, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8432, - "op": "MLOAD", - "gas": 81308, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8433, - "op": "AND", - "gas": 81305, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8434, - "op": "DUP2", - "gas": 81302, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8435, - "op": "DUP5", - "gas": 81299, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8436, - "op": "MLOAD", - "gas": 81296, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8437, - "op": "AND", - "gas": 81290, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8438, - "op": "DUP1", - "gas": 81287, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8439, - "op": "DUP3", - "gas": 81284, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8440, - "op": "OR", - "gas": 81281, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8441, - "op": "DUP6", - "gas": 81278, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8442, - "op": "MSTORE", - "gas": 81275, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8443, - "op": "POP", - "gas": 81272, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8444, - "op": "POP", - "gas": 81270, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8445, - "op": "POP", - "gas": 81268, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8446, - "op": "POP", - "gas": 81266, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8447, - "op": "POP", - "gas": 81264, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8448, - "op": "POP", - "gas": 81262, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8449, - "op": "SWAP1", - "gas": 81260, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8450, - "op": "POP", - "gas": 81257, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8451, - "op": "ADD", - "gas": 81255, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8452, - "op": "SWAP2", - "gas": 81252, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8453, - "op": "POP", - "gas": 81249, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8454, - "op": "POP", - "gas": 81247, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8455, - "op": "PUSH1", - "gas": 81245, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8457, - "op": "PUSH1", - "gas": 81242, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8459, - "op": "MLOAD", - "gas": 81239, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8460, - "op": "DUP1", - "gas": 81236, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8461, - "op": "DUP4", - "gas": 81233, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8462, - "op": "SUB", - "gas": 81230, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8463, - "op": "DUP2", - "gas": 81227, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8464, - "op": "PUSH1", - "gas": 81224, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8466, - "op": "DUP7", - "gas": 81221, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8467, - "op": "GAS", - "gas": 81218, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8468, - "op": "CALL", - "gas": 81216, - "gasCost": 79949, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000013d40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 79849, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 79846, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 79843, - "gasCost": 12, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 79831, - "gasCost": 2, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 79829, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 79826, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 79823, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 79820, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 79810, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 79809, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 79807, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 79804, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 79802, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 79799, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 79796, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 79786, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 79783, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 79780, - "gasCost": 3, - "depth": 4, - "stack": [ - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 79777, - "gasCost": 3, - "depth": 4, - "stack": [ - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 79774, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 79771, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 79768, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 79765, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 79762, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 43, - "op": "DUP1", - "gas": 79752, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 79749, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 49, - "op": "EQ", - "gas": 79746, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 79743, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 79740, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 79730, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 79727, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 79724, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 79721, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 79718, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 65, - "op": "DUP1", - "gas": 79708, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 66, - "op": "PUSH4", - "gas": 79705, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 71, - "op": "EQ", - "gas": 79702, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000095d89b41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 72, - "op": "PUSH2", - "gas": 79699, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 75, - "op": "JUMPI", - "gas": 79696, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 76, - "op": "DUP1", - "gas": 79686, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 77, - "op": "PUSH4", - "gas": 79683, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 82, - "op": "EQ", - "gas": 79680, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a457c2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 83, - "op": "PUSH2", - "gas": 79677, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 86, - "op": "JUMPI", - "gas": 79674, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000189" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 87, - "op": "DUP1", - "gas": 79664, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 88, - "op": "PUSH4", - "gas": 79661, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 93, - "op": "EQ", - "gas": 79658, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 79655, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 79652, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000019c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 412, - "op": "JUMPDEST", - "gas": 79642, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 413, - "op": "PUSH2", - "gas": 79641, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 416, - "op": "PUSH2", - "gas": 79638, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 419, - "op": "CALLDATASIZE", - "gas": 79635, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 420, - "op": "PUSH1", - "gas": 79633, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 422, - "op": "PUSH2", - "gas": 79630, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 425, - "op": "JUMP", - "gas": 79627, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000794" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1940, - "op": "JUMPDEST", - "gas": 79619, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1941, - "op": "PUSH1", - "gas": 79618, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1943, - "op": "DUP1", - "gas": 79615, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1944, - "op": "PUSH1", - "gas": 79612, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1946, - "op": "DUP4", - "gas": 79609, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1947, - "op": "DUP6", - "gas": 79606, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1948, - "op": "SUB", - "gas": 79603, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1949, - "op": "SLT", - "gas": 79600, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1950, - "op": "ISZERO", - "gas": 79597, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1951, - "op": "PUSH2", - "gas": 79594, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1954, - "op": "JUMPI", - "gas": 79591, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007a7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1959, - "op": "JUMPDEST", - "gas": 79581, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1960, - "op": "PUSH2", - "gas": 79580, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1963, - "op": "DUP4", - "gas": 79577, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1964, - "op": "PUSH2", - "gas": 79574, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1967, - "op": "JUMP", - "gas": 79571, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1912, - "op": "JUMPDEST", - "gas": 79563, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1913, - "op": "DUP1", - "gas": 79562, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1914, - "op": "CALLDATALOAD", - "gas": 79559, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1915, - "op": "PUSH1", - "gas": 79556, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1917, - "op": "PUSH1", - "gas": 79553, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1919, - "op": "PUSH1", - "gas": 79550, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1921, - "op": "SHL", - "gas": 79547, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1922, - "op": "SUB", - "gas": 79544, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1923, - "op": "DUP2", - "gas": 79541, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1924, - "op": "AND", - "gas": 79538, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1925, - "op": "DUP2", - "gas": 79535, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1926, - "op": "EQ", - "gas": 79532, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1927, - "op": "PUSH2", - "gas": 79529, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1930, - "op": "JUMPI", - "gas": 79526, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1935, - "op": "JUMPDEST", - "gas": 79516, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1936, - "op": "SWAP2", - "gas": 79515, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1937, - "op": "SWAP1", - "gas": 79512, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1938, - "op": "POP", - "gas": 79509, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1939, - "op": "JUMP", - "gas": 79507, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000007b0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1968, - "op": "JUMPDEST", - "gas": 79499, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1969, - "op": "SWAP5", - "gas": 79498, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1970, - "op": "PUSH1", - "gas": 79495, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1972, - "op": "SWAP4", - "gas": 79492, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1973, - "op": "SWAP1", - "gas": 79489, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1974, - "op": "SWAP4", - "gas": 79486, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1975, - "op": "ADD", - "gas": 79483, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1976, - "op": "CALLDATALOAD", - "gas": 79480, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1977, - "op": "SWAP4", - "gas": 79477, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1978, - "op": "POP", - "gas": 79474, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1979, - "op": "POP", - "gas": 79472, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1980, - "op": "POP", - "gas": 79470, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1981, - "op": "JUMP", - "gas": 79468, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 426, - "op": "JUMPDEST", - "gas": 79460, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 427, - "op": "PUSH2", - "gas": 79459, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 430, - "op": "JUMP", - "gas": 79456, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000423" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1059, - "op": "JUMPDEST", - "gas": 79448, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1060, - "op": "PUSH1", - "gas": 79447, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1062, - "op": "PUSH2", - "gas": 79444, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1065, - "op": "CALLER", - "gas": 79441, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1066, - "op": "DUP5", - "gas": 79439, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1067, - "op": "DUP5", - "gas": 79436, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1068, - "op": "PUSH2", - "gas": 79433, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1071, - "op": "JUMP", - "gas": 79430, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000554" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1364, - "op": "JUMPDEST", - "gas": 79422, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1365, - "op": "PUSH1", - "gas": 79421, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1367, - "op": "PUSH1", - "gas": 79418, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1369, - "op": "PUSH1", - "gas": 79415, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1371, - "op": "SHL", - "gas": 79412, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1372, - "op": "SUB", - "gas": 79409, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1373, - "op": "DUP4", - "gas": 79406, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1374, - "op": "AND", - "gas": 79403, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1375, - "op": "PUSH2", - "gas": 79400, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1378, - "op": "JUMPI", - "gas": 79397, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000005b8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1464, - "op": "JUMPDEST", - "gas": 79387, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1465, - "op": "PUSH1", - "gas": 79386, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1467, - "op": "PUSH1", - "gas": 79383, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1469, - "op": "PUSH1", - "gas": 79380, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1471, - "op": "SHL", - "gas": 79377, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1472, - "op": "SUB", - "gas": 79374, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1473, - "op": "DUP3", - "gas": 79371, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1474, - "op": "AND", - "gas": 79368, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1475, - "op": "PUSH2", - "gas": 79365, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1478, - "op": "JUMPI", - "gas": 79362, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000061a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1562, - "op": "JUMPDEST", - "gas": 79352, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1563, - "op": "PUSH1", - "gas": 79351, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1565, - "op": "PUSH1", - "gas": 79348, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1567, - "op": "PUSH1", - "gas": 79345, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1569, - "op": "SHL", - "gas": 79342, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1570, - "op": "SUB", - "gas": 79339, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1571, - "op": "DUP4", - "gas": 79336, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1572, - "op": "AND", - "gas": 79333, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1573, - "op": "PUSH1", - "gas": 79330, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1575, - "op": "SWAP1", - "gas": 79327, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1576, - "op": "DUP2", - "gas": 79324, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1577, - "op": "MSTORE", - "gas": 79321, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1578, - "op": "PUSH1", - "gas": 79318, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1580, - "op": "DUP2", - "gas": 79315, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1581, - "op": "SWAP1", - "gas": 79312, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1582, - "op": "MSTORE", - "gas": 79309, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1583, - "op": "PUSH1", - "gas": 79306, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1585, - "op": "SWAP1", - "gas": 79303, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1586, - "op": "SHA3", - "gas": 79300, - "gasCost": 42, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1587, - "op": "SLOAD", - "gas": 79258, - "gasCost": 2100, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1588, - "op": "DUP2", - "gas": 77158, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1589, - "op": "DUP2", - "gas": 77155, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1590, - "op": "LT", - "gas": 77152, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1591, - "op": "ISZERO", - "gas": 77149, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1592, - "op": "PUSH2", - "gas": 77146, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1595, - "op": "JUMPI", - "gas": 77143, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000692" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1682, - "op": "JUMPDEST", - "gas": 77133, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1683, - "op": "PUSH1", - "gas": 77132, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1685, - "op": "PUSH1", - "gas": 77129, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1687, - "op": "PUSH1", - "gas": 77126, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1689, - "op": "SHL", - "gas": 77123, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1690, - "op": "SUB", - "gas": 77120, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1691, - "op": "DUP1", - "gas": 77117, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1692, - "op": "DUP6", - "gas": 77114, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1693, - "op": "AND", - "gas": 77111, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1694, - "op": "PUSH1", - "gas": 77108, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1696, - "op": "SWAP1", - "gas": 77105, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1697, - "op": "DUP2", - "gas": 77102, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1698, - "op": "MSTORE", - "gas": 77099, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1699, - "op": "PUSH1", - "gas": 77096, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1701, - "op": "DUP2", - "gas": 77093, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1702, - "op": "SWAP1", - "gas": 77090, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1703, - "op": "MSTORE", - "gas": 77087, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1704, - "op": "PUSH1", - "gas": 77084, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1706, - "op": "DUP1", - "gas": 77081, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1707, - "op": "DUP3", - "gas": 77078, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1708, - "op": "SHA3", - "gas": 77075, - "gasCost": 42, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1709, - "op": "DUP6", - "gas": 77033, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1710, - "op": "DUP6", - "gas": 77030, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1711, - "op": "SUB", - "gas": 77027, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1712, - "op": "SWAP1", - "gas": 77024, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1713, - "op": "SSTORE", - "gas": 77021, - "gasCost": 2900, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1714, - "op": "SWAP2", - "gas": 74121, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1715, - "op": "DUP6", - "gas": 74118, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1716, - "op": "AND", - "gas": 74115, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1717, - "op": "DUP2", - "gas": 74112, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1718, - "op": "MSTORE", - "gas": 74109, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1719, - "op": "SWAP1", - "gas": 74106, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1720, - "op": "DUP2", - "gas": 74103, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1721, - "op": "SHA3", - "gas": 74100, - "gasCost": 42, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1722, - "op": "DUP1", - "gas": 74058, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1723, - "op": "SLOAD", - "gas": 74055, - "gasCost": 100, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1724, - "op": "DUP5", - "gas": 73955, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1725, - "op": "SWAP3", - "gas": 73952, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1726, - "op": "SWAP1", - "gas": 73949, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1727, - "op": "PUSH2", - "gas": 73946, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1730, - "op": "SWAP1", - "gas": 73943, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1731, - "op": "DUP5", - "gas": 73940, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1732, - "op": "SWAP1", - "gas": 73937, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1733, - "op": "PUSH2", - "gas": 73934, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1736, - "op": "JUMP", - "gas": 73931, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088a" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2186, - "op": "JUMPDEST", - "gas": 73923, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2187, - "op": "PUSH1", - "gas": 73922, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2189, - "op": "DUP3", - "gas": 73919, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2190, - "op": "NOT", - "gas": 73916, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2191, - "op": "DUP3", - "gas": 73913, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2192, - "op": "GT", - "gas": 73910, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2193, - "op": "ISZERO", - "gas": 73907, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2194, - "op": "PUSH2", - "gas": 73904, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2197, - "op": "JUMPI", - "gas": 73901, - "gasCost": 10, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008ab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2219, - "op": "JUMPDEST", - "gas": 73891, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2220, - "op": "POP", - "gas": 73890, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2221, - "op": "ADD", - "gas": 73888, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2222, - "op": "SWAP1", - "gas": 73885, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2223, - "op": "JUMP", - "gas": 73882, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000006c9" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1737, - "op": "JUMPDEST", - "gas": 73874, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1738, - "op": "SWAP3", - "gas": 73873, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1739, - "op": "POP", - "gas": 73870, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1740, - "op": "POP", - "gas": 73868, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1741, - "op": "DUP2", - "gas": 73866, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1742, - "op": "SWAP1", - "gas": 73863, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1743, - "op": "SSTORE", - "gas": 73860, - "gasCost": 20000, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1744, - "op": "POP", - "gas": 53860, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1745, - "op": "DUP3", - "gas": 53858, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1746, - "op": "PUSH1", - "gas": 53855, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1748, - "op": "PUSH1", - "gas": 53852, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1750, - "op": "PUSH1", - "gas": 53849, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1752, - "op": "SHL", - "gas": 53846, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1753, - "op": "SUB", - "gas": 53843, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1754, - "op": "AND", - "gas": 53840, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1755, - "op": "DUP5", - "gas": 53837, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1756, - "op": "PUSH1", - "gas": 53834, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1758, - "op": "PUSH1", - "gas": 53831, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1760, - "op": "PUSH1", - "gas": 53828, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1762, - "op": "SHL", - "gas": 53825, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1763, - "op": "SUB", - "gas": 53822, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1764, - "op": "AND", - "gas": 53819, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1765, - "op": "PUSH32", - "gas": 53816, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1798, - "op": "DUP5", - "gas": 53813, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1799, - "op": "PUSH1", - "gas": 53810, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1801, - "op": "MLOAD", - "gas": 53807, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1802, - "op": "PUSH2", - "gas": 53804, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1805, - "op": "SWAP2", - "gas": 53801, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000715" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1806, - "op": "DUP2", - "gas": 53798, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1807, - "op": "MSTORE", - "gas": 53795, - "gasCost": 9, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1808, - "op": "PUSH1", - "gas": 53786, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1810, - "op": "ADD", - "gas": 53783, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1811, - "op": "SWAP1", - "gas": 53780, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1812, - "op": "JUMP", - "gas": 53777, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000715" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1813, - "op": "JUMPDEST", - "gas": 53769, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1814, - "op": "PUSH1", - "gas": 53768, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1816, - "op": "MLOAD", - "gas": 53765, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1817, - "op": "DUP1", - "gas": 53762, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1818, - "op": "SWAP2", - "gas": 53759, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1819, - "op": "SUB", - "gas": 53756, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1820, - "op": "SWAP1", - "gas": 53753, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1821, - "op": "LOG3", - "gas": 53750, - "gasCost": 1756, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1822, - "op": "POP", - "gas": 51994, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1823, - "op": "POP", - "gas": 51992, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1824, - "op": "POP", - "gas": 51990, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1825, - "op": "POP", - "gas": 51988, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1826, - "op": "JUMP", - "gas": 51986, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 647, - "op": "JUMPDEST", - "gas": 51978, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 648, - "op": "POP", - "gas": 51977, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 649, - "op": "PUSH1", - "gas": 51975, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 651, - "op": "SWAP3", - "gas": 51972, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 652, - "op": "SWAP2", - "gas": 51969, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000df" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 653, - "op": "POP", - "gas": 51966, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 654, - "op": "POP", - "gas": 51964, - "gasCost": 2, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 655, - "op": "JUMP", - "gas": 51962, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 223, - "op": "JUMPDEST", - "gas": 51954, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 224, - "op": "PUSH1", - "gas": 51953, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 226, - "op": "MLOAD", - "gas": 51950, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 227, - "op": "SWAP1", - "gas": 51947, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 228, - "op": "ISZERO", - "gas": 51944, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 229, - "op": "ISZERO", - "gas": 51941, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 230, - "op": "DUP2", - "gas": 51938, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 231, - "op": "MSTORE", - "gas": 51935, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 232, - "op": "PUSH1", - "gas": 51932, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 234, - "op": "ADD", - "gas": 51929, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 235, - "op": "PUSH2", - "gas": 51926, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 238, - "op": "JUMP", - "gas": 51923, - "gasCost": 8, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 195, - "op": "JUMPDEST", - "gas": 51915, - "gasCost": 1, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 196, - "op": "PUSH1", - "gas": 51914, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 198, - "op": "MLOAD", - "gas": 51911, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 199, - "op": "DUP1", - "gas": 51908, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 200, - "op": "SWAP2", - "gas": 51905, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 201, - "op": "SUB", - "gas": 51902, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 51899, - "gasCost": 3, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 203, - "op": "RETURN", - "gas": 51896, - "gasCost": 0, - "depth": 4, - "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8469, - "op": "SWAP2", - "gas": 53163, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8470, - "op": "POP", - "gas": 53160, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000168", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8471, - "op": "POP", - "gas": 53158, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8472, - "op": "RETURNDATASIZE", - "gas": 53156, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8473, - "op": "DUP1", - "gas": 53154, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8474, - "op": "PUSH1", - "gas": 53151, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8476, - "op": "DUP2", - "gas": 53148, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8477, - "op": "EQ", - "gas": 53145, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8478, - "op": "PUSH2", - "gas": 53142, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8481, - "op": "JUMPI", - "gas": 53139, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002143" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8482, - "op": "PUSH1", - "gas": 53129, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8484, - "op": "MLOAD", - "gas": 53126, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8485, - "op": "SWAP2", - "gas": 53123, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8486, - "op": "POP", - "gas": 53120, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8487, - "op": "PUSH1", - "gas": 53118, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8489, - "op": "NOT", - "gas": 53115, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8490, - "op": "PUSH1", - "gas": 53112, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8492, - "op": "RETURNDATASIZE", - "gas": 53109, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8493, - "op": "ADD", - "gas": 53107, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8494, - "op": "AND", - "gas": 53104, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8495, - "op": "DUP3", - "gas": 53101, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8496, - "op": "ADD", - "gas": 53098, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8497, - "op": "PUSH1", - "gas": 53095, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8499, - "op": "MSTORE", - "gas": 53092, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8500, - "op": "RETURNDATASIZE", - "gas": 53089, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8501, - "op": "DUP3", - "gas": 53087, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8502, - "op": "MSTORE", - "gas": 53084, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8503, - "op": "RETURNDATASIZE", - "gas": 53081, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8504, - "op": "PUSH1", - "gas": 53079, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8506, - "op": "PUSH1", - "gas": 53076, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8508, - "op": "DUP5", - "gas": 53073, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8509, - "op": "ADD", - "gas": 53070, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8510, - "op": "RETURNDATACOPY", - "gas": 53067, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000020f0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8511, - "op": "PUSH2", - "gas": 53061, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8514, - "op": "JUMP", - "gas": 53058, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000002148" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8520, - "op": "JUMPDEST", - "gas": 53050, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8521, - "op": "POP", - "gas": 53049, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8522, - "op": "SWAP2", - "gas": 53047, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8523, - "op": "POP", - "gas": 53044, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8524, - "op": "SWAP2", - "gas": 53042, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8525, - "op": "POP", - "gas": 53039, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8526, - "op": "DUP2", - "gas": 53037, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8527, - "op": "DUP1", - "gas": 53034, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8528, - "op": "ISZERO", - "gas": 53031, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8529, - "op": "PUSH2", - "gas": 53028, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8532, - "op": "JUMPI", - "gas": 53025, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002176" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8533, - "op": "POP", - "gas": 53015, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8534, - "op": "DUP1", - "gas": 53013, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8535, - "op": "MLOAD", - "gas": 53010, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8536, - "op": "ISZERO", - "gas": 53007, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8537, - "op": "DUP1", - "gas": 53004, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8538, - "op": "PUSH2", - "gas": 53001, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8541, - "op": "JUMPI", - "gas": 52998, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002176" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8542, - "op": "POP", - "gas": 52988, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8543, - "op": "DUP1", - "gas": 52986, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8544, - "op": "DUP1", - "gas": 52983, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8545, - "op": "PUSH1", - "gas": 52980, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8547, - "op": "ADD", - "gas": 52977, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8548, - "op": "SWAP1", - "gas": 52974, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8549, - "op": "MLOAD", - "gas": 52971, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8550, - "op": "PUSH1", - "gas": 52968, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8552, - "op": "DUP2", - "gas": 52965, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8553, - "op": "LT", - "gas": 52962, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8554, - "op": "ISZERO", - "gas": 52959, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8555, - "op": "PUSH2", - "gas": 52956, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8558, - "op": "JUMPI", - "gas": 52953, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002173" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8563, - "op": "JUMPDEST", - "gas": 52943, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8564, - "op": "POP", - "gas": 52942, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8565, - "op": "MLOAD", - "gas": 52940, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8566, - "op": "JUMPDEST", - "gas": 52937, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8567, - "op": "PUSH2", - "gas": 52936, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8570, - "op": "JUMPI", - "gas": 52933, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000021e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8673, - "op": "JUMPDEST", - "gas": 52923, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8674, - "op": "POP", - "gas": 52922, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8675, - "op": "POP", - "gas": 52920, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8676, - "op": "POP", - "gas": 52918, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8677, - "op": "POP", - "gas": 52916, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8678, - "op": "POP", - "gas": 52914, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8679, - "op": "JUMP", - "gas": 52912, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2273, - "op": "JUMPDEST", - "gas": 52904, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2274, - "op": "DUP7", - "gas": 52903, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2275, - "op": "ISZERO", - "gas": 52900, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2276, - "op": "PUSH2", - "gas": 52897, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2279, - "op": "JUMPI", - "gas": 52894, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000009c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2499, - "op": "JUMPDEST", - "gas": 52884, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2500, - "op": "PUSH1", - "gas": 52883, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2502, - "op": "DUP1", - "gas": 52880, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2503, - "op": "MLOAD", - "gas": 52877, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2504, - "op": "PUSH32", - "gas": 52874, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2537, - "op": "DUP2", - "gas": 52871, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2538, - "op": "MSTORE", - "gas": 52868, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001ba986cab000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2539, - "op": "ADDRESS", - "gas": 52865, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2540, - "op": "PUSH1", - "gas": 52863, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2542, - "op": "DUP3", - "gas": 52860, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2543, - "op": "ADD", - "gas": 52857, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2544, - "op": "MSTORE", - "gas": 52854, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2545, - "op": "SWAP1", - "gas": 52851, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2546, - "op": "MLOAD", - "gas": 52848, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2547, - "op": "PUSH20", - "gas": 52845, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2568, - "op": "DUP5", - "gas": 52842, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2569, - "op": "AND", - "gas": 52839, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2570, - "op": "SWAP2", - "gas": 52836, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2571, - "op": "PUSH4", - "gas": 52833, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2576, - "op": "SWAP2", - "gas": 52830, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2577, - "op": "PUSH1", - "gas": 52827, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2579, - "op": "DUP1", - "gas": 52824, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2580, - "op": "DUP4", - "gas": 52821, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2581, - "op": "ADD", - "gas": 52818, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2582, - "op": "SWAP3", - "gas": 52815, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000188" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2583, - "op": "PUSH1", - "gas": 52812, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2585, - "op": "SWAP3", - "gas": 52809, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2586, - "op": "SWAP2", - "gas": 52806, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2587, - "op": "SWAP1", - "gas": 52803, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2588, - "op": "DUP3", - "gas": 52800, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2589, - "op": "SWAP1", - "gas": 52797, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2590, - "op": "SUB", - "gas": 52794, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2591, - "op": "ADD", - "gas": 52791, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2592, - "op": "DUP2", - "gas": 52788, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2593, - "op": "DUP7", - "gas": 52785, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2594, - "op": "DUP1", - "gas": 52782, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2595, - "op": "EXTCODESIZE", - "gas": 52779, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2596, - "op": "ISZERO", - "gas": 52679, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000088a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2597, - "op": "DUP1", - "gas": 52676, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2598, - "op": "ISZERO", - "gas": 52673, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2599, - "op": "PUSH2", - "gas": 52670, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2602, - "op": "JUMPI", - "gas": 52667, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a2f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2607, - "op": "JUMPDEST", - "gas": 52657, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2608, - "op": "POP", - "gas": 52656, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2609, - "op": "GAS", - "gas": 52654, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2610, - "op": "STATICCALL", - "gas": 52652, - "gasCost": 51831, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000cdac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 51731, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 51728, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 51725, - "gasCost": 12, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 51713, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 51710, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8, - "op": "LT", - "gas": 51708, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 51705, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 51702, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 51692, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 51689, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 16, - "op": "PUSH29", - "gas": 51686, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 46, - "op": "SWAP1", - "gas": 51683, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 47, - "op": "DIV", - "gas": 51680, - "gasCost": 5, - "depth": 4, - "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 48, - "op": "PUSH4", - "gas": 51675, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 53, - "op": "AND", - "gas": 51672, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 51669, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 51666, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 51663, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003659cfe6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 51660, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 51657, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 65, - "op": "DUP1", - "gas": 51647, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 66, - "op": "PUSH4", - "gas": 51644, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 71, - "op": "EQ", - "gas": 51641, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004f1ef286" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 72, - "op": "PUSH2", - "gas": 51638, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 75, - "op": "JUMPI", - "gas": 51635, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 76, - "op": "DUP1", - "gas": 51625, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 77, - "op": "PUSH4", - "gas": 51622, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 82, - "op": "EQ", - "gas": 51619, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c60da1b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 83, - "op": "PUSH2", - "gas": 51616, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 86, - "op": "JUMPI", - "gas": 51613, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 87, - "op": "DUP1", - "gas": 51603, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 88, - "op": "PUSH4", - "gas": 51600, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 93, - "op": "EQ", - "gas": 51597, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000008f283970" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 51594, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 51591, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 98, - "op": "DUP1", - "gas": 51581, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 99, - "op": "PUSH4", - "gas": 51578, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 104, - "op": "EQ", - "gas": 51575, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000f851a440" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 51572, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 108, - "op": "JUMPI", - "gas": 51569, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 109, - "op": "JUMPDEST", - "gas": 51559, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 110, - "op": "PUSH2", - "gas": 51558, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 113, - "op": "PUSH2", - "gas": 51555, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 116, - "op": "JUMP", - "gas": 51552, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 505, - "op": "JUMPDEST", - "gas": 51544, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 506, - "op": "PUSH2", - "gas": 51543, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 509, - "op": "PUSH2", - "gas": 51540, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 512, - "op": "JUMP", - "gas": 51537, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1398, - "op": "JUMPDEST", - "gas": 51529, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1399, - "op": "PUSH2", - "gas": 51528, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1402, - "op": "PUSH2", - "gas": 51525, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1405, - "op": "JUMP", - "gas": 51522, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1704, - "op": "JUMPDEST", - "gas": 51514, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1705, - "op": "PUSH1", - "gas": 51513, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1707, - "op": "DUP1", - "gas": 51510, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1708, - "op": "PUSH32", - "gas": 51507, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1741, - "op": "PUSH1", - "gas": 51504, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1743, - "op": "MUL", - "gas": 51501, - "gasCost": 5, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1744, - "op": "SWAP1", - "gas": 51496, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1745, - "op": "POP", - "gas": 51493, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1746, - "op": "DUP1", - "gas": 51491, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1747, - "op": "SLOAD", - "gas": 51488, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1748, - "op": "SWAP2", - "gas": 51388, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1749, - "op": "POP", - "gas": 51385, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1750, - "op": "POP", - "gas": 51383, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1751, - "op": "SWAP1", - "gas": 51381, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1752, - "op": "JUMP", - "gas": 51378, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1406, - "op": "JUMPDEST", - "gas": 51370, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1407, - "op": "PUSH20", - "gas": 51369, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1428, - "op": "AND", - "gas": 51366, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1429, - "op": "CALLER", - "gas": 51363, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1430, - "op": "PUSH20", - "gas": 51361, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1451, - "op": "AND", - "gas": 51358, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1452, - "op": "EQ", - "gas": 51355, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1453, - "op": "ISZERO", - "gas": 51352, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1454, - "op": "ISZERO", - "gas": 51349, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1455, - "op": "ISZERO", - "gas": 51346, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1456, - "op": "PUSH2", - "gas": 51343, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1459, - "op": "JUMPI", - "gas": 51340, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1607, - "op": "JUMPDEST", - "gas": 51330, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1608, - "op": "PUSH2", - "gas": 51329, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1611, - "op": "PUSH2", - "gas": 51326, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1614, - "op": "JUMP", - "gas": 51323, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1911, - "op": "JUMPDEST", - "gas": 51315, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1912, - "op": "JUMP", - "gas": 51314, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1615, - "op": "JUMPDEST", - "gas": 51306, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1616, - "op": "JUMP", - "gas": 51305, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 513, - "op": "JUMPDEST", - "gas": 51297, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 514, - "op": "PUSH2", - "gas": 51296, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 517, - "op": "PUSH2", - "gas": 51293, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 520, - "op": "PUSH2", - "gas": 51290, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 523, - "op": "JUMP", - "gas": 51287, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1617, - "op": "JUMPDEST", - "gas": 51279, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1618, - "op": "PUSH1", - "gas": 51278, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1620, - "op": "DUP1", - "gas": 51275, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1621, - "op": "PUSH32", - "gas": 51272, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1654, - "op": "PUSH1", - "gas": 51269, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1656, - "op": "MUL", - "gas": 51266, - "gasCost": 5, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1657, - "op": "SWAP1", - "gas": 51261, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1658, - "op": "POP", - "gas": 51258, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1659, - "op": "DUP1", - "gas": 51256, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1660, - "op": "SLOAD", - "gas": 51253, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1661, - "op": "SWAP2", - "gas": 51153, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1662, - "op": "POP", - "gas": 51150, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1663, - "op": "POP", - "gas": 51148, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1664, - "op": "SWAP1", - "gas": 51146, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1665, - "op": "JUMP", - "gas": 51143, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 524, - "op": "JUMPDEST", - "gas": 51135, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 525, - "op": "PUSH2", - "gas": 51134, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 528, - "op": "JUMP", - "gas": 51131, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1666, - "op": "JUMPDEST", - "gas": 51123, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1667, - "op": "CALLDATASIZE", - "gas": 51122, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1668, - "op": "PUSH1", - "gas": 51120, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1670, - "op": "DUP1", - "gas": 51117, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1671, - "op": "CALLDATACOPY", - "gas": 51114, - "gasCost": 9, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1672, - "op": "PUSH1", - "gas": 51105, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1674, - "op": "DUP1", - "gas": 51102, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1675, - "op": "CALLDATASIZE", - "gas": 51099, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1676, - "op": "PUSH1", - "gas": 51097, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1678, - "op": "DUP5", - "gas": 51094, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1679, - "op": "GAS", - "gas": 51091, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1680, - "op": "DELEGATECALL", - "gas": 51089, - "gasCost": 50293, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000c791" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 50193, - "gasCost": 3, - "depth": 5, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 50190, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 50187, - "gasCost": 12, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 50175, - "gasCost": 2, - "depth": 5, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 50173, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 50170, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 50167, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 50164, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 50154, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 50153, - "gasCost": 2, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 50151, - "gasCost": 3, - "depth": 5, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 50148, - "gasCost": 2, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 50146, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 50143, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 50140, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 50130, - "gasCost": 3, - "depth": 5, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 50127, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 50124, - "gasCost": 3, - "depth": 5, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 50121, - "gasCost": 3, - "depth": 5, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 50118, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 50115, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 50112, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007f2eecc3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 50109, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 50106, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 434, - "op": "JUMPDEST", - "gas": 50096, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 435, - "op": "DUP1", - "gas": 50095, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 436, - "op": "PUSH4", - "gas": 50092, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 441, - "op": "GT", - "gas": 50089, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 442, - "op": "PUSH2", - "gas": 50086, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 445, - "op": "JUMPI", - "gas": 50083, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 446, - "op": "DUP1", - "gas": 50073, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 447, - "op": "PUSH4", - "gas": 50070, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 452, - "op": "GT", - "gas": 50067, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004e44d956" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 453, - "op": "PUSH2", - "gas": 50064, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 456, - "op": "JUMPI", - "gas": 50061, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000022a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 457, - "op": "DUP1", - "gas": 50051, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 458, - "op": "PUSH4", - "gas": 50048, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 463, - "op": "GT", - "gas": 50045, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 464, - "op": "PUSH2", - "gas": 50042, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 467, - "op": "JUMPI", - "gas": 50039, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 468, - "op": "DUP1", - "gas": 50029, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 469, - "op": "PUSH4", - "gas": 50026, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 474, - "op": "EQ", - "gas": 50023, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 475, - "op": "PUSH2", - "gas": 50020, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 478, - "op": "JUMPI", - "gas": 50017, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 479, - "op": "DUP1", - "gas": 50007, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 480, - "op": "PUSH4", - "gas": 50004, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 485, - "op": "EQ", - "gas": 50001, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c975abb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 486, - "op": "PUSH2", - "gas": 49998, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 489, - "op": "JUMPI", - "gas": 49995, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 490, - "op": "DUP1", - "gas": 49985, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 491, - "op": "PUSH4", - "gas": 49982, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 496, - "op": "EQ", - "gas": 49979, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 497, - "op": "PUSH2", - "gas": 49976, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 500, - "op": "JUMPI", - "gas": 49973, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2276, - "op": "JUMPDEST", - "gas": 49963, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2277, - "op": "PUSH2", - "gas": 49962, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2280, - "op": "PUSH1", - "gas": 49959, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2282, - "op": "DUP1", - "gas": 49956, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2283, - "op": "CALLDATASIZE", - "gas": 49953, - "gasCost": 2, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2284, - "op": "SUB", - "gas": 49951, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2285, - "op": "PUSH1", - "gas": 49948, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2287, - "op": "DUP2", - "gas": 49945, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2288, - "op": "LT", - "gas": 49942, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2289, - "op": "ISZERO", - "gas": 49939, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2290, - "op": "PUSH2", - "gas": 49936, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2293, - "op": "JUMPI", - "gas": 49933, - "gasCost": 10, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2298, - "op": "JUMPDEST", - "gas": 49923, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2299, - "op": "POP", - "gas": 49922, - "gasCost": 2, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2300, - "op": "CALLDATALOAD", - "gas": 49920, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2301, - "op": "PUSH20", - "gas": 49917, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2322, - "op": "AND", - "gas": 49914, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2323, - "op": "PUSH2", - "gas": 49911, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2326, - "op": "JUMP", - "gas": 49908, - "gasCost": 8, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002798" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10136, - "op": "JUMPDEST", - "gas": 49900, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10137, - "op": "PUSH20", - "gas": 49899, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10158, - "op": "AND", - "gas": 49896, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10159, - "op": "PUSH1", - "gas": 49893, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10161, - "op": "SWAP1", - "gas": 49890, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10162, - "op": "DUP2", - "gas": 49887, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10163, - "op": "MSTORE", - "gas": 49884, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10164, - "op": "PUSH1", - "gas": 49881, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10166, - "op": "PUSH1", - "gas": 49878, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10168, - "op": "MSTORE", - "gas": 49875, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10169, - "op": "PUSH1", - "gas": 49872, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10171, - "op": "SWAP1", - "gas": 49869, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10172, - "op": "SHA3", - "gas": 49866, - "gasCost": 42, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10173, - "op": "SLOAD", - "gas": 49824, - "gasCost": 100, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10174, - "op": "SWAP1", - "gas": 49724, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10175, - "op": "JUMP", - "gas": 49721, - "gasCost": 8, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000040d" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1037, - "op": "JUMPDEST", - "gas": 49713, - "gasCost": 1, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1038, - "op": "PUSH1", - "gas": 49712, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1040, - "op": "DUP1", - "gas": 49709, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1041, - "op": "MLOAD", - "gas": 49706, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1042, - "op": "SWAP2", - "gas": 49703, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1043, - "op": "DUP3", - "gas": 49700, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1044, - "op": "MSTORE", - "gas": 49697, - "gasCost": 9, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1045, - "op": "MLOAD", - "gas": 49688, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1046, - "op": "SWAP1", - "gas": 49685, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1047, - "op": "DUP2", - "gas": 49682, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1048, - "op": "SWAP1", - "gas": 49679, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1049, - "op": "SUB", - "gas": 49676, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1050, - "op": "PUSH1", - "gas": 49673, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1052, - "op": "ADD", - "gas": 49670, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1053, - "op": "SWAP1", - "gas": 49667, - "gasCost": 3, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1054, - "op": "RETURN", - "gas": 49664, - "gasCost": 0, - "depth": 5, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1681, - "op": "RETURNDATASIZE", - "gas": 50460, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1682, - "op": "PUSH1", - "gas": 50458, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1684, - "op": "DUP1", - "gas": 50455, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1685, - "op": "RETURNDATACOPY", - "gas": 50452, - "gasCost": 6, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1686, - "op": "DUP1", - "gas": 50446, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1687, - "op": "PUSH1", - "gas": 50443, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1689, - "op": "DUP2", - "gas": 50440, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1690, - "op": "EQ", - "gas": 50437, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1691, - "op": "PUSH2", - "gas": 50434, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1694, - "op": "JUMPI", - "gas": 50431, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1695, - "op": "RETURNDATASIZE", - "gas": 50421, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1696, - "op": "PUSH1", - "gas": 50419, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1698, - "op": "RETURN", - "gas": 50416, - "gasCost": 0, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000004c864948ed5", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2611, - "op": "ISZERO", - "gas": 51237, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2612, - "op": "DUP1", - "gas": 51234, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2613, - "op": "ISZERO", - "gas": 51231, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2614, - "op": "PUSH2", - "gas": 51228, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2617, - "op": "JUMPI", - "gas": 51225, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a43" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2627, - "op": "JUMPDEST", - "gas": 51215, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2628, - "op": "POP", - "gas": 51214, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2629, - "op": "POP", - "gas": 51212, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2630, - "op": "POP", - "gas": 51210, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2631, - "op": "POP", - "gas": 51208, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2632, - "op": "PUSH1", - "gas": 51206, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2634, - "op": "MLOAD", - "gas": 51203, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2635, - "op": "RETURNDATASIZE", - "gas": 51200, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2636, - "op": "PUSH1", - "gas": 51198, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2638, - "op": "DUP2", - "gas": 51195, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2639, - "op": "LT", - "gas": 51192, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2640, - "op": "ISZERO", - "gas": 51189, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2641, - "op": "PUSH2", - "gas": 51186, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2644, - "op": "JUMPI", - "gas": 51183, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2649, - "op": "JUMPDEST", - "gas": 51173, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2650, - "op": "POP", - "gas": 51172, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2651, - "op": "MLOAD", - "gas": 51170, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2652, - "op": "PUSH1", - "gas": 51167, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2654, - "op": "DUP1", - "gas": 51164, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2655, - "op": "MLOAD", - "gas": 51161, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2656, - "op": "PUSH32", - "gas": 51158, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2689, - "op": "DUP2", - "gas": 51155, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2690, - "op": "MSTORE", - "gas": 51152, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2691, - "op": "ADDRESS", - "gas": 51149, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "000000007c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2692, - "op": "PUSH1", - "gas": 51147, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "000000007c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2694, - "op": "DUP3", - "gas": 51144, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "000000007c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2695, - "op": "ADD", - "gas": 51141, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "000000007c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2696, - "op": "MSTORE", - "gas": 51138, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a08231000000000000000000000000000000000000000000000000", - "000000007c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2697, - "op": "SWAP1", - "gas": 51135, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2698, - "op": "MLOAD", - "gas": 51132, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2699, - "op": "SWAP2", - "gas": 51129, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2700, - "op": "SWAP6", - "gas": 51126, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2701, - "op": "POP", - "gas": 51123, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2702, - "op": "PUSH20", - "gas": 51121, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2723, - "op": "DUP4", - "gas": 51118, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2724, - "op": "AND", - "gas": 51115, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2725, - "op": "SWAP2", - "gas": 51112, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2726, - "op": "PUSH4", - "gas": 51109, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2731, - "op": "SWAP2", - "gas": 51106, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2732, - "op": "PUSH1", - "gas": 51103, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2734, - "op": "DUP1", - "gas": 51100, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2735, - "op": "DUP3", - "gas": 51097, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2736, - "op": "ADD", - "gas": 51094, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2737, - "op": "SWAP3", - "gas": 51091, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000188" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2738, - "op": "PUSH1", - "gas": 51088, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2740, - "op": "SWAP3", - "gas": 51085, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2741, - "op": "SWAP1", - "gas": 51082, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2742, - "op": "SWAP2", - "gas": 51079, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2743, - "op": "SWAP1", - "gas": 51076, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2744, - "op": "DUP3", - "gas": 51073, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2745, - "op": "SWAP1", - "gas": 51070, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2746, - "op": "SUB", - "gas": 51067, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2747, - "op": "ADD", - "gas": 51064, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2748, - "op": "DUP2", - "gas": 51061, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2749, - "op": "DUP7", - "gas": 51058, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2750, - "op": "DUP1", - "gas": 51055, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2751, - "op": "EXTCODESIZE", - "gas": 51052, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2752, - "op": "ISZERO", - "gas": 50952, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2753, - "op": "DUP1", - "gas": 50949, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2754, - "op": "ISZERO", - "gas": 50946, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2755, - "op": "PUSH2", - "gas": 50943, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2758, - "op": "JUMPI", - "gas": 50940, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000acb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2763, - "op": "JUMPDEST", - "gas": 50930, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2764, - "op": "POP", - "gas": 50929, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2765, - "op": "GAS", - "gas": 50927, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2766, - "op": "STATICCALL", - "gas": 50925, - "gasCost": 50131, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000000000000c6ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", - "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 50031, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 50028, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 50025, - "gasCost": 12, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 50013, - "gasCost": 2, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 50011, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 50008, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 50005, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 50002, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 49992, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 49991, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 49989, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 49986, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 49984, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 49981, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 49978, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 49968, - "gasCost": 3, - "depth": 4, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 49965, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 49962, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 49959, - "gasCost": 3, - "depth": 4, - "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 49956, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 49953, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 49950, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 49947, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 49944, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 43, - "op": "DUP1", - "gas": 49934, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 49931, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 49, - "op": "EQ", - "gas": 49928, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 49925, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 49922, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 49912, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 49909, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 49906, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 49903, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 49900, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 344, - "op": "JUMPDEST", - "gas": 49890, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 345, - "op": "PUSH2", - "gas": 49889, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 348, - "op": "PUSH2", - "gas": 49886, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 351, - "op": "CALLDATASIZE", - "gas": 49883, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 49881, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 354, - "op": "PUSH2", - "gas": 49878, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 357, - "op": "JUMP", - "gas": 49875, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2042, - "op": "JUMPDEST", - "gas": 49867, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2043, - "op": "PUSH1", - "gas": 49866, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2045, - "op": "PUSH1", - "gas": 49863, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2047, - "op": "DUP3", - "gas": 49860, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2048, - "op": "DUP5", - "gas": 49857, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2049, - "op": "SUB", - "gas": 49854, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2050, - "op": "SLT", - "gas": 49851, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2051, - "op": "ISZERO", - "gas": 49848, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2052, - "op": "PUSH2", - "gas": 49845, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2055, - "op": "JUMPI", - "gas": 49842, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2060, - "op": "JUMPDEST", - "gas": 49832, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2061, - "op": "PUSH2", - "gas": 49831, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2064, - "op": "DUP3", - "gas": 49828, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2065, - "op": "PUSH2", - "gas": 49825, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2068, - "op": "JUMP", - "gas": 49822, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1912, - "op": "JUMPDEST", - "gas": 49814, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1913, - "op": "DUP1", - "gas": 49813, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1914, - "op": "CALLDATALOAD", - "gas": 49810, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1915, - "op": "PUSH1", - "gas": 49807, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1917, - "op": "PUSH1", - "gas": 49804, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1919, - "op": "PUSH1", - "gas": 49801, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1921, - "op": "SHL", - "gas": 49798, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1922, - "op": "SUB", - "gas": 49795, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1923, - "op": "DUP2", - "gas": 49792, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1924, - "op": "AND", - "gas": 49789, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1925, - "op": "DUP2", - "gas": 49786, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1926, - "op": "EQ", - "gas": 49783, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1927, - "op": "PUSH2", - "gas": 49780, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1930, - "op": "JUMPI", - "gas": 49777, - "gasCost": 10, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1935, - "op": "JUMPDEST", - "gas": 49767, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1936, - "op": "SWAP2", - "gas": 49766, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1937, - "op": "SWAP1", - "gas": 49763, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1938, - "op": "POP", - "gas": 49760, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 1939, - "op": "JUMP", - "gas": 49758, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2069, - "op": "JUMPDEST", - "gas": 49750, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2070, - "op": "SWAP4", - "gas": 49749, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2071, - "op": "SWAP3", - "gas": 49746, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2072, - "op": "POP", - "gas": 49743, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2073, - "op": "POP", - "gas": 49741, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2074, - "op": "POP", - "gas": 49739, - "gasCost": 2, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 2075, - "op": "JUMP", - "gas": 49737, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 358, - "op": "JUMPDEST", - "gas": 49729, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 359, - "op": "PUSH1", - "gas": 49728, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 361, - "op": "PUSH1", - "gas": 49725, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 363, - "op": "PUSH1", - "gas": 49722, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 365, - "op": "SHL", - "gas": 49719, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 366, - "op": "SUB", - "gas": 49716, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 367, - "op": "AND", - "gas": 49713, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 368, - "op": "PUSH1", - "gas": 49710, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 370, - "op": "SWAP1", - "gas": 49707, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 371, - "op": "DUP2", - "gas": 49704, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 372, - "op": "MSTORE", - "gas": 49701, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 373, - "op": "PUSH1", - "gas": 49698, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 375, - "op": "DUP2", - "gas": 49695, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 376, - "op": "SWAP1", - "gas": 49692, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 377, - "op": "MSTORE", - "gas": 49689, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 378, - "op": "PUSH1", - "gas": 49686, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 380, - "op": "SWAP1", - "gas": 49683, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 381, - "op": "SHA3", - "gas": 49680, - "gasCost": 42, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 382, - "op": "SLOAD", - "gas": 49638, - "gasCost": 100, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 383, - "op": "SWAP1", - "gas": 49538, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 384, - "op": "JUMP", - "gas": 49535, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 243, - "op": "JUMPDEST", - "gas": 49527, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 244, - "op": "PUSH1", - "gas": 49526, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 246, - "op": "MLOAD", - "gas": 49523, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 247, - "op": "SWAP1", - "gas": 49520, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 248, - "op": "DUP2", - "gas": 49517, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 249, - "op": "MSTORE", - "gas": 49514, - "gasCost": 9, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 250, - "op": "PUSH1", - "gas": 49505, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 252, - "op": "ADD", - "gas": 49502, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 253, - "op": "PUSH2", - "gas": 49499, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 256, - "op": "JUMP", - "gas": 49496, - "gasCost": 8, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 195, - "op": "JUMPDEST", - "gas": 49488, - "gasCost": 1, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 196, - "op": "PUSH1", - "gas": 49487, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 198, - "op": "MLOAD", - "gas": 49484, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 199, - "op": "DUP1", - "gas": 49481, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 200, - "op": "SWAP2", - "gas": 49478, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 201, - "op": "SUB", - "gas": 49475, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 49472, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 203, - "op": "RETURN", - "gas": 49469, - "gasCost": 0, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2767, - "op": "ISZERO", - "gas": 50263, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2768, - "op": "DUP1", - "gas": 50260, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2769, - "op": "ISZERO", - "gas": 50257, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2770, - "op": "PUSH2", - "gas": 50254, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2773, - "op": "JUMPI", - "gas": 50251, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000adf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2783, - "op": "JUMPDEST", - "gas": 50241, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2784, - "op": "POP", - "gas": 50240, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2785, - "op": "POP", - "gas": 50238, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2786, - "op": "POP", - "gas": 50236, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2787, - "op": "POP", - "gas": 50234, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2788, - "op": "PUSH1", - "gas": 50232, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2790, - "op": "MLOAD", - "gas": 50229, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2791, - "op": "RETURNDATASIZE", - "gas": 50226, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2792, - "op": "PUSH1", - "gas": 50224, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2794, - "op": "DUP2", - "gas": 50221, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2795, - "op": "LT", - "gas": 50218, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2796, - "op": "ISZERO", - "gas": 50215, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2797, - "op": "PUSH2", - "gas": 50212, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2800, - "op": "JUMPI", - "gas": 50209, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000af5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2805, - "op": "JUMPDEST", - "gas": 50199, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2806, - "op": "POP", - "gas": 50198, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2807, - "op": "MLOAD", - "gas": 50196, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2808, - "op": "SWAP3", - "gas": 50193, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2809, - "op": "POP", - "gas": 50190, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2810, - "op": "PUSH1", - "gas": 50188, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2812, - "op": "SWAP2", - "gas": 50185, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2813, - "op": "POP", - "gas": 50182, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2814, - "op": "POP", - "gas": 50180, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2815, - "op": "PUSH14", - "gas": 50178, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2830, - "op": "DUP6", - "gas": 50175, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2831, - "op": "AND", - "gas": 50172, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2832, - "op": "DUP11", - "gas": 50169, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2833, - "op": "SWAP1", - "gas": 50166, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2834, - "op": "SUB", - "gas": 50163, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2835, - "op": "DUP4", - "gas": 50160, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2836, - "op": "GT", - "gas": 50157, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2837, - "op": "PUSH2", - "gas": 50154, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2840, - "op": "JUMPI", - "gas": 50151, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2847, - "op": "JUMPDEST", - "gas": 50141, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2848, - "op": "DUP10", - "gas": 50140, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2849, - "op": "DUP6", - "gas": 50137, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2850, - "op": "PUSH14", - "gas": 50134, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2865, - "op": "AND", - "gas": 50131, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2866, - "op": "SUB", - "gas": 50128, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2867, - "op": "DUP4", - "gas": 50125, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2868, - "op": "SUB", - "gas": 50122, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2869, - "op": "JUMPDEST", - "gas": 50119, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2870, - "op": "SWAP1", - "gas": 50118, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2871, - "op": "POP", - "gas": 50115, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2872, - "op": "PUSH1", - "gas": 50113, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2874, - "op": "DUP10", - "gas": 50110, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2875, - "op": "DUP6", - "gas": 50107, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2876, - "op": "PUSH14", - "gas": 50104, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2891, - "op": "AND", - "gas": 50101, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2892, - "op": "SUB", - "gas": 50098, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2893, - "op": "DUP4", - "gas": 50095, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2894, - "op": "GT", - "gas": 50092, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2895, - "op": "PUSH2", - "gas": 50089, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2898, - "op": "JUMPI", - "gas": 50086, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000b59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2899, - "op": "PUSH1", - "gas": 50076, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2901, - "op": "PUSH2", - "gas": 50073, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2904, - "op": "JUMP", - "gas": 50070, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000b6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2927, - "op": "JUMPDEST", - "gas": 50062, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2928, - "op": "SWAP1", - "gas": 50061, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2929, - "op": "POP", - "gas": 50058, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2930, - "op": "PUSH1", - "gas": 50056, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2932, - "op": "DUP3", - "gas": 50053, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2933, - "op": "GT", - "gas": 50050, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2934, - "op": "DUP1", - "gas": 50047, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2935, - "op": "PUSH2", - "gas": 50044, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2938, - "op": "JUMPI", - "gas": 50041, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2944, - "op": "JUMPDEST", - "gas": 50031, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2945, - "op": "PUSH2", - "gas": 50030, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 2948, - "op": "JUMPI", - "gas": 50027, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000bd5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3029, - "op": "JUMPDEST", - "gas": 50017, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3030, - "op": "PUSH1", - "gas": 50016, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3032, - "op": "PUSH2", - "gas": 50013, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3035, - "op": "PUSH2", - "gas": 50010, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3038, - "op": "DUP5", - "gas": 50007, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3039, - "op": "PUSH1", - "gas": 50004, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3041, - "op": "PUSH4", - "gas": 50001, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3046, - "op": "PUSH2", - "gas": 49998, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3049, - "op": "AND", - "gas": 49995, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3050, - "op": "JUMP", - "gas": 49992, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49984, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49983, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49980, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49977, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49974, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49971, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49968, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49958, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49956, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49954, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49951, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49948, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49943, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49940, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49937, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49934, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49931, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49928, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49918, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49917, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49912, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49909, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49908, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49905, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49895, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49894, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49891, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49888, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49886, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49884, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3051, - "op": "JUMPDEST", - "gas": 49876, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3052, - "op": "PUSH2", - "gas": 49875, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3055, - "op": "DUP8", - "gas": 49872, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3056, - "op": "PUSH2", - "gas": 49869, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3059, - "op": "PUSH4", - "gas": 49866, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3064, - "op": "PUSH2", - "gas": 49863, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3067, - "op": "AND", - "gas": 49860, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3068, - "op": "JUMP", - "gas": 49857, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49849, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49848, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49845, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49842, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49839, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49836, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49833, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49823, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49821, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49819, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49816, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49813, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49808, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49805, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49802, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49799, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49796, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49793, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49783, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49782, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49777, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49774, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49773, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49770, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49760, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49759, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49756, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49753, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49751, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49749, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3069, - "op": "JUMPDEST", - "gas": 49741, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3070, - "op": "SWAP1", - "gas": 49740, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3071, - "op": "PUSH4", - "gas": 49737, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3076, - "op": "PUSH2", - "gas": 49734, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3079, - "op": "AND", - "gas": 49731, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "000000000000000000000000000000000000000000000000000000000000226e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3080, - "op": "JUMP", - "gas": 49728, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000000226e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8814, - "op": "JUMPDEST", - "gas": 49720, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8815, - "op": "DUP1", - "gas": 49719, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8816, - "op": "DUP3", - "gas": 49716, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8817, - "op": "SUB", - "gas": 49713, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8818, - "op": "DUP3", - "gas": 49710, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8819, - "op": "DUP2", - "gas": 49707, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8820, - "op": "GT", - "gas": 49704, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8821, - "op": "ISZERO", - "gas": 49701, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8822, - "op": "PUSH2", - "gas": 49698, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8825, - "op": "JUMPI", - "gas": 49695, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49685, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49684, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49681, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000c09" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49678, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49676, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49674, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3081, - "op": "JUMPDEST", - "gas": 49666, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3082, - "op": "SWAP1", - "gas": 49665, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3083, - "op": "POP", - "gas": 49662, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3084, - "op": "PUSH1", - "gas": 49660, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3086, - "op": "PUSH2", - "gas": 49657, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3089, - "op": "PUSH2", - "gas": 49654, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3092, - "op": "DUP5", - "gas": 49651, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3093, - "op": "PUSH1", - "gas": 49648, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3095, - "op": "PUSH4", - "gas": 49645, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3100, - "op": "PUSH2", - "gas": 49642, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3103, - "op": "AND", - "gas": 49639, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3104, - "op": "JUMP", - "gas": 49636, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49628, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49627, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49624, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49621, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49618, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49615, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49612, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49602, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49600, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49598, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49595, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49592, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49587, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49584, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49581, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49578, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49575, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49572, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49562, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49561, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49556, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49553, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49552, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49549, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49539, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49538, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49535, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49532, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49530, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49528, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3051, - "op": "JUMPDEST", - "gas": 49520, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3052, - "op": "PUSH2", - "gas": 49519, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3055, - "op": "DUP8", - "gas": 49516, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3056, - "op": "PUSH2", - "gas": 49513, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3059, - "op": "PUSH4", - "gas": 49510, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3064, - "op": "PUSH2", - "gas": 49507, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3067, - "op": "AND", - "gas": 49504, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3068, - "op": "JUMP", - "gas": 49501, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49493, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49492, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49489, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49486, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49483, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49480, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49477, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49467, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49465, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49463, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49460, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49457, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49452, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49449, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49446, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49443, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49440, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49437, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49427, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49426, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49421, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49418, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49417, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49414, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49404, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49403, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49400, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49397, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49395, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49393, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3069, - "op": "JUMPDEST", - "gas": 49385, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3070, - "op": "SWAP1", - "gas": 49384, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3071, - "op": "PUSH4", - "gas": 49381, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3076, - "op": "PUSH2", - "gas": 49378, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3079, - "op": "AND", - "gas": 49375, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "000000000000000000000000000000000000000000000000000000000000226e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3080, - "op": "JUMP", - "gas": 49372, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000226e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8814, - "op": "JUMPDEST", - "gas": 49364, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8815, - "op": "DUP1", - "gas": 49363, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8816, - "op": "DUP3", - "gas": 49360, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8817, - "op": "SUB", - "gas": 49357, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8818, - "op": "DUP3", - "gas": 49354, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8819, - "op": "DUP2", - "gas": 49351, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8820, - "op": "GT", - "gas": 49348, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8821, - "op": "ISZERO", - "gas": 49345, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8822, - "op": "PUSH2", - "gas": 49342, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8825, - "op": "JUMPI", - "gas": 49339, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49329, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49328, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49325, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49322, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49320, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49318, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3105, - "op": "JUMPDEST", - "gas": 49310, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3106, - "op": "SWAP1", - "gas": 49309, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3107, - "op": "POP", - "gas": 49306, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3108, - "op": "PUSH2", - "gas": 49304, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3111, - "op": "PUSH3", - "gas": 49301, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3115, - "op": "PUSH2", - "gas": 49298, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3118, - "op": "PUSH14", - "gas": 49295, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3133, - "op": "DUP12", - "gas": 49292, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3134, - "op": "DUP2", - "gas": 49289, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3135, - "op": "AND", - "gas": 49286, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3136, - "op": "SWAP1", - "gas": 49283, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3137, - "op": "DUP12", - "gas": 49280, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3138, - "op": "AND", - "gas": 49277, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3139, - "op": "PUSH4", - "gas": 49274, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3144, - "op": "PUSH2", - "gas": 49271, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3147, - "op": "AND", - "gas": 49268, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3148, - "op": "JUMP", - "gas": 49265, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49257, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49256, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49253, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49250, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49247, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49244, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49241, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49231, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49229, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49227, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49224, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49221, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49216, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49213, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49210, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49207, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49204, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49201, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49191, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49190, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49185, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49182, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49181, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49178, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49168, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49167, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49164, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000c4d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49161, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49159, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49157, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3149, - "op": "JUMPDEST", - "gas": 49149, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3150, - "op": "SWAP1", - "gas": 49148, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3151, - "op": "PUSH4", - "gas": 49145, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3156, - "op": "PUSH2", - "gas": 49142, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3159, - "op": "AND", - "gas": 49139, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3160, - "op": "JUMP", - "gas": 49136, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 49128, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 49127, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 49124, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 49121, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 49118, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 49115, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 49112, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 49102, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 49100, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 49098, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 49095, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 49092, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 49087, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 49084, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 49081, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 49078, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 49075, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 49072, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 49062, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 49061, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 49056, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 49053, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 49052, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 49049, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 49039, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 49038, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 49035, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 49032, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 49030, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 49028, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3161, - "op": "JUMPDEST", - "gas": 49020, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3162, - "op": "PUSH2", - "gas": 49019, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3165, - "op": "DUP4", - "gas": 49016, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3166, - "op": "DUP4", - "gas": 49013, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3167, - "op": "PUSH4", - "gas": 49010, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3172, - "op": "PUSH2", - "gas": 49007, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3175, - "op": "AND", - "gas": 49004, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3176, - "op": "JUMP", - "gas": 49001, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8680, - "op": "JUMPDEST", - "gas": 48993, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8681, - "op": "PUSH1", - "gas": 48992, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8683, - "op": "DUP2", - "gas": 48989, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8684, - "op": "ISZERO", - "gas": 48986, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8685, - "op": "DUP1", - "gas": 48983, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8686, - "op": "PUSH2", - "gas": 48980, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8689, - "op": "JUMPI", - "gas": 48977, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8690, - "op": "POP", - "gas": 48967, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8691, - "op": "POP", - "gas": 48965, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8692, - "op": "DUP1", - "gas": 48963, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8693, - "op": "DUP3", - "gas": 48960, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8694, - "op": "MUL", - "gas": 48957, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8695, - "op": "DUP3", - "gas": 48952, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8696, - "op": "DUP3", - "gas": 48949, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8697, - "op": "DUP3", - "gas": 48946, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8698, - "op": "DUP2", - "gas": 48943, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8699, - "op": "PUSH2", - "gas": 48940, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8702, - "op": "JUMPI", - "gas": 48937, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000002200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8704, - "op": "JUMPDEST", - "gas": 48927, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8705, - "op": "DIV", - "gas": 48926, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8706, - "op": "EQ", - "gas": 48921, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8707, - "op": "JUMPDEST", - "gas": 48918, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8708, - "op": "PUSH2", - "gas": 48917, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8711, - "op": "JUMPI", - "gas": 48914, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3574, - "op": "JUMPDEST", - "gas": 48904, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3575, - "op": "SWAP3", - "gas": 48903, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3576, - "op": "SWAP2", - "gas": 48900, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c69" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3577, - "op": "POP", - "gas": 48897, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3578, - "op": "POP", - "gas": 48895, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3579, - "op": "JUMP", - "gas": 48893, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3177, - "op": "JUMPDEST", - "gas": 48885, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3178, - "op": "LT", - "gas": 48884, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3179, - "op": "ISZERO", - "gas": 48881, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3180, - "op": "PUSH2", - "gas": 48878, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3183, - "op": "JUMPI", - "gas": 48875, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000cd6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3286, - "op": "JUMPDEST", - "gas": 48865, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3287, - "op": "POP", - "gas": 48864, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3288, - "op": "POP", - "gas": 48862, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3289, - "op": "PUSH2", - "gas": 48860, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3292, - "op": "DUP5", - "gas": 48857, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3293, - "op": "DUP5", - "gas": 48854, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3294, - "op": "DUP9", - "gas": 48851, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3295, - "op": "DUP9", - "gas": 48848, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3296, - "op": "PUSH2", - "gas": 48845, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3299, - "op": "JUMP", - "gas": 48842, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000022e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8928, - "op": "JUMPDEST", - "gas": 48834, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8929, - "op": "PUSH14", - "gas": 48833, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8944, - "op": "DUP5", - "gas": 48830, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8945, - "op": "GT", - "gas": 48827, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8946, - "op": "DUP1", - "gas": 48824, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8947, - "op": "ISZERO", - "gas": 48821, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8948, - "op": "SWAP1", - "gas": 48818, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8949, - "op": "PUSH2", - "gas": 48815, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8952, - "op": "JUMPI", - "gas": 48812, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000230c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8953, - "op": "POP", - "gas": 48802, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8954, - "op": "PUSH14", - "gas": 48800, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8969, - "op": "DUP4", - "gas": 48797, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8970, - "op": "GT", - "gas": 48794, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8971, - "op": "ISZERO", - "gas": 48791, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8972, - "op": "JUMPDEST", - "gas": 48788, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8973, - "op": "PUSH2", - "gas": 48787, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8976, - "op": "JUMPI", - "gas": 48784, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002377" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 9079, - "op": "JUMPDEST", - "gas": 48774, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 9080, - "op": "PUSH1", - "gas": 48773, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 9082, - "op": "SLOAD", - "gas": 48770, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9083, - "op": "PUSH4", - "gas": 48670, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9088, - "op": "TIMESTAMP", - "gas": 48667, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9089, - "op": "DUP2", - "gas": 48665, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9090, - "op": "AND", - "gas": 48662, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9091, - "op": "SWAP2", - "gas": 48659, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9092, - "op": "PUSH29", - "gas": 48656, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9122, - "op": "SWAP1", - "gas": 48653, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9123, - "op": "DIV", - "gas": 48650, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9124, - "op": "DUP2", - "gas": 48645, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9125, - "op": "AND", - "gas": 48642, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9126, - "op": "DUP3", - "gas": 48639, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9127, - "op": "SUB", - "gas": 48636, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9128, - "op": "SWAP1", - "gas": 48633, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9129, - "op": "DUP2", - "gas": 48630, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9130, - "op": "AND", - "gas": 48627, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9131, - "op": "ISZERO", - "gas": 48624, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9132, - "op": "DUP1", - "gas": 48621, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9133, - "op": "ISZERO", - "gas": 48618, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9134, - "op": "SWAP1", - "gas": 48615, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9135, - "op": "PUSH2", - "gas": 48612, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9138, - "op": "JUMPI", - "gas": 48609, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023c7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9139, - "op": "POP", - "gas": 48599, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9140, - "op": "PUSH14", - "gas": 48597, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9155, - "op": "DUP5", - "gas": 48594, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9156, - "op": "AND", - "gas": 48591, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9157, - "op": "ISZERO", - "gas": 48588, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9158, - "op": "ISZERO", - "gas": 48585, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9159, - "op": "JUMPDEST", - "gas": 48582, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9160, - "op": "DUP1", - "gas": 48581, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9161, - "op": "ISZERO", - "gas": 48578, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9162, - "op": "PUSH2", - "gas": 48575, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9165, - "op": "JUMPI", - "gas": 48572, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9166, - "op": "POP", - "gas": 48562, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9167, - "op": "PUSH14", - "gas": 48560, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9182, - "op": "DUP4", - "gas": 48557, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9183, - "op": "AND", - "gas": 48554, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9184, - "op": "ISZERO", - "gas": 48551, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9185, - "op": "ISZERO", - "gas": 48548, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9186, - "op": "JUMPDEST", - "gas": 48545, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9187, - "op": "ISZERO", - "gas": 48544, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9188, - "op": "PUSH2", - "gas": 48541, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9191, - "op": "JUMPI", - "gas": 48538, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002492" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9192, - "op": "DUP1", - "gas": 48528, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9193, - "op": "PUSH4", - "gas": 48525, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9198, - "op": "AND", - "gas": 48522, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9199, - "op": "PUSH2", - "gas": 48519, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9202, - "op": "DUP6", - "gas": 48516, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9203, - "op": "PUSH2", - "gas": 48513, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9206, - "op": "DUP7", - "gas": 48510, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9207, - "op": "PUSH2", - "gas": 48507, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9210, - "op": "JUMP", - "gas": 48504, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002a57" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10839, - "op": "JUMPDEST", - "gas": 48496, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10840, - "op": "PUSH14", - "gas": 48495, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10855, - "op": "AND", - "gas": 48492, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10856, - "op": "PUSH15", - "gas": 48489, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10872, - "op": "MUL", - "gas": 48486, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10873, - "op": "SWAP1", - "gas": 48481, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10874, - "op": "JUMP", - "gas": 48478, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023fb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9211, - "op": "JUMPDEST", - "gas": 48470, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9212, - "op": "PUSH28", - "gas": 48469, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9241, - "op": "AND", - "gas": 48466, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9242, - "op": "SWAP1", - "gas": 48463, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9243, - "op": "PUSH4", - "gas": 48460, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9248, - "op": "PUSH2", - "gas": 48457, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9251, - "op": "AND", - "gas": 48454, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000002a7b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9252, - "op": "JUMP", - "gas": 48451, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002a7b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10875, - "op": "JUMPDEST", - "gas": 48443, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10876, - "op": "PUSH1", - "gas": 48442, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10878, - "op": "PUSH14", - "gas": 48439, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10893, - "op": "DUP3", - "gas": 48436, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10894, - "op": "AND", - "gas": 48433, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10895, - "op": "PUSH28", - "gas": 48430, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10924, - "op": "DUP5", - "gas": 48427, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10925, - "op": "AND", - "gas": 48424, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10926, - "op": "DUP2", - "gas": 48421, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10927, - "op": "PUSH2", - "gas": 48418, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10930, - "op": "JUMPI", - "gas": 48415, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002ab4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10932, - "op": "JUMPDEST", - "gas": 48405, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10933, - "op": "DIV", - "gas": 48404, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10934, - "op": "SWAP4", - "gas": 48399, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10935, - "op": "SWAP3", - "gas": 48396, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002425" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10936, - "op": "POP", - "gas": 48393, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10937, - "op": "POP", - "gas": 48391, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10938, - "op": "POP", - "gas": 48389, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10939, - "op": "JUMP", - "gas": 48387, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9253, - "op": "JUMPDEST", - "gas": 48379, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9254, - "op": "PUSH1", - "gas": 48378, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9256, - "op": "DUP1", - "gas": 48375, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9257, - "op": "SLOAD", - "gas": 48372, - "gasCost": 2100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9258, - "op": "PUSH28", - "gas": 46272, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9287, - "op": "SWAP3", - "gas": 46269, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9288, - "op": "SWAP1", - "gas": 46266, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9289, - "op": "SWAP3", - "gas": 46263, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9290, - "op": "AND", - "gas": 46260, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9291, - "op": "SWAP3", - "gas": 46257, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9292, - "op": "SWAP1", - "gas": 46254, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9293, - "op": "SWAP3", - "gas": 46251, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9294, - "op": "MUL", - "gas": 46248, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9295, - "op": "ADD", - "gas": 46243, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000018e41729bd77d1dfbeedba7aeb98918121b87a43932e8e3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9296, - "op": "SWAP1", - "gas": 46240, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9297, - "op": "SSTORE", - "gas": 46237, - "gasCost": 2900, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9298, - "op": "PUSH4", - "gas": 43337, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9303, - "op": "DUP2", - "gas": 43334, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9304, - "op": "AND", - "gas": 43331, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9305, - "op": "PUSH2", - "gas": 43328, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9308, - "op": "DUP5", - "gas": 43325, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9309, - "op": "PUSH2", - "gas": 43322, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9312, - "op": "DUP8", - "gas": 43319, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9313, - "op": "PUSH2", - "gas": 43316, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9316, - "op": "JUMP", - "gas": 43313, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002a57" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10839, - "op": "JUMPDEST", - "gas": 43305, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10840, - "op": "PUSH14", - "gas": 43304, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10855, - "op": "AND", - "gas": 43301, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10856, - "op": "PUSH15", - "gas": 43298, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10872, - "op": "MUL", - "gas": 43295, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10873, - "op": "SWAP1", - "gas": 43290, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10874, - "op": "JUMP", - "gas": 43287, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023fb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9211, - "op": "JUMPDEST", - "gas": 43279, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9212, - "op": "PUSH28", - "gas": 43278, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9241, - "op": "AND", - "gas": 43275, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9242, - "op": "SWAP1", - "gas": 43272, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9243, - "op": "PUSH4", - "gas": 43269, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9248, - "op": "PUSH2", - "gas": 43266, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9251, - "op": "AND", - "gas": 43263, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000002a7b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9252, - "op": "JUMP", - "gas": 43260, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002a7b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10875, - "op": "JUMPDEST", - "gas": 43252, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10876, - "op": "PUSH1", - "gas": 43251, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10878, - "op": "PUSH14", - "gas": 43248, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10893, - "op": "DUP3", - "gas": 43245, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10894, - "op": "AND", - "gas": 43242, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10895, - "op": "PUSH28", - "gas": 43239, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10924, - "op": "DUP5", - "gas": 43236, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10925, - "op": "AND", - "gas": 43233, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10926, - "op": "DUP2", - "gas": 43230, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10927, - "op": "PUSH2", - "gas": 43227, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10930, - "op": "JUMPI", - "gas": 43224, - "gasCost": 10, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002ab4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10932, - "op": "JUMPDEST", - "gas": 43214, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10933, - "op": "DIV", - "gas": 43213, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10934, - "op": "SWAP4", - "gas": 43208, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10935, - "op": "SWAP3", - "gas": 43205, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002465" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10936, - "op": "POP", - "gas": 43202, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000004c860714d6e0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10937, - "op": "POP", - "gas": 43200, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10938, - "op": "POP", - "gas": 43198, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 10939, - "op": "JUMP", - "gas": 43196, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9317, - "op": "JUMPDEST", - "gas": 43188, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9318, - "op": "PUSH1", - "gas": 43187, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9320, - "op": "DUP1", - "gas": 43184, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9321, - "op": "SLOAD", - "gas": 43181, - "gasCost": 2100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9322, - "op": "PUSH28", - "gas": 41081, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9351, - "op": "SWAP3", - "gas": 41078, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9352, - "op": "SWAP1", - "gas": 41075, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9353, - "op": "SWAP3", - "gas": 41072, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9354, - "op": "AND", - "gas": 41069, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9355, - "op": "SWAP3", - "gas": 41066, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9356, - "op": "SWAP1", - "gas": 41063, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9357, - "op": "SWAP3", - "gas": 41060, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9358, - "op": "MUL", - "gas": 41057, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9359, - "op": "ADD", - "gas": 41052, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000002713aa238a8e546" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9360, - "op": "SWAP1", - "gas": 41049, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9361, - "op": "SSTORE", - "gas": 41046, - "gasCost": 2900, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9362, - "op": "JUMPDEST", - "gas": 38146, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9363, - "op": "PUSH1", - "gas": 38145, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9365, - "op": "DUP1", - "gas": 38142, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9366, - "op": "SLOAD", - "gas": 38139, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9367, - "op": "PUSH32", - "gas": 38039, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9400, - "op": "AND", - "gas": 38036, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "ffffffffffffffffffffffffffffffffffff0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9401, - "op": "PUSH14", - "gas": 38033, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9416, - "op": "DUP9", - "gas": 38030, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9417, - "op": "DUP2", - "gas": 38027, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9418, - "op": "AND", - "gas": 38024, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9419, - "op": "SWAP2", - "gas": 38021, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9420, - "op": "SWAP1", - "gas": 38018, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9421, - "op": "SWAP2", - "gas": 38015, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9422, - "op": "OR", - "gas": 38012, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9423, - "op": "PUSH32", - "gas": 38009, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9456, - "op": "AND", - "gas": 38006, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5", - "ffffffff0000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9457, - "op": "PUSH15", - "gas": 38003, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9473, - "op": "DUP9", - "gas": 38000, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9474, - "op": "DUP4", - "gas": 37997, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9475, - "op": "AND", - "gas": 37994, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9476, - "op": "DUP2", - "gas": 37991, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9477, - "op": "MUL", - "gas": 37988, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9478, - "op": "SWAP2", - "gas": 37983, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9479, - "op": "SWAP1", - "gas": 37980, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9480, - "op": "SWAP2", - "gas": 37977, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9481, - "op": "OR", - "gas": 37974, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9482, - "op": "PUSH28", - "gas": 37971, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9511, - "op": "AND", - "gas": 37968, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9512, - "op": "PUSH29", - "gas": 37965, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9542, - "op": "PUSH4", - "gas": 37962, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9547, - "op": "DUP8", - "gas": 37959, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9548, - "op": "AND", - "gas": 37956, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9549, - "op": "MUL", - "gas": 37953, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9550, - "op": "OR", - "gas": 37948, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "62dd08ac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9551, - "op": "SWAP3", - "gas": 37945, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9552, - "op": "DUP4", - "gas": 37942, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9553, - "op": "SWAP1", - "gas": 37939, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9554, - "op": "SSTORE", - "gas": 37936, - "gasCost": 2900, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000008" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9555, - "op": "PUSH1", - "gas": 35036, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9557, - "op": "DUP1", - "gas": 35033, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9558, - "op": "MLOAD", - "gas": 35030, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9559, - "op": "DUP5", - "gas": 35027, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9560, - "op": "DUP5", - "gas": 35024, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9561, - "op": "AND", - "gas": 35021, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9562, - "op": "DUP2", - "gas": 35018, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9563, - "op": "MSTORE", - "gas": 35015, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9564, - "op": "SWAP2", - "gas": 35012, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9565, - "op": "SWAP1", - "gas": 35009, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000010000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9566, - "op": "SWAP4", - "gas": 35006, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9567, - "op": "DIV", - "gas": 35003, - "gasCost": 5, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9568, - "op": "SWAP1", - "gas": 34998, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9569, - "op": "SWAP2", - "gas": 34995, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9570, - "op": "AND", - "gas": 34992, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9571, - "op": "PUSH1", - "gas": 34989, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9573, - "op": "DUP3", - "gas": 34986, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9574, - "op": "ADD", - "gas": 34983, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9575, - "op": "MSTORE", - "gas": 34980, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000184" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9576, - "op": "DUP2", - "gas": 34974, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9577, - "op": "MLOAD", - "gas": 34971, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9578, - "op": "PUSH32", - "gas": 34968, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9611, - "op": "SWAP3", - "gas": 34965, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9612, - "op": "SWAP2", - "gas": 34962, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9613, - "op": "DUP2", - "gas": 34959, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9614, - "op": "SWAP1", - "gas": 34956, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9615, - "op": "SUB", - "gas": 34953, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9616, - "op": "SWAP1", - "gas": 34950, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9617, - "op": "SWAP2", - "gas": 34947, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9618, - "op": "ADD", - "gas": 34944, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9619, - "op": "SWAP1", - "gas": 34941, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9620, - "op": "LOG1", - "gas": 34938, - "gasCost": 1262, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9621, - "op": "POP", - "gas": 33676, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9622, - "op": "POP", - "gas": 33674, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9623, - "op": "POP", - "gas": 33672, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9624, - "op": "POP", - "gas": 33670, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9625, - "op": "POP", - "gas": 33668, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9626, - "op": "POP", - "gas": 33666, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 9627, - "op": "JUMP", - "gas": 33664, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3300, - "op": "JUMPDEST", - "gas": 33656, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3301, - "op": "PUSH1", - "gas": 33655, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3303, - "op": "DUP1", - "gas": 33652, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3304, - "op": "MLOAD", - "gas": 33649, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3305, - "op": "DUP4", - "gas": 33646, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3306, - "op": "DUP2", - "gas": 33643, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3307, - "op": "MSTORE", - "gas": 33640, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed500000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3308, - "op": "PUSH1", - "gas": 33637, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3310, - "op": "DUP2", - "gas": 33634, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3311, - "op": "ADD", - "gas": 33631, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3312, - "op": "DUP4", - "gas": 33628, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000184" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3313, - "op": "SWAP1", - "gas": 33625, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000184", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3314, - "op": "MSTORE", - "gas": 33622, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000184" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000003d12be22e33902da041", - "4f8da3ec00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3315, - "op": "DUP1", - "gas": 33619, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3316, - "op": "DUP3", - "gas": 33616, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3317, - "op": "ADD", - "gas": 33613, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3318, - "op": "DUP14", - "gas": 33610, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3319, - "op": "SWAP1", - "gas": 33607, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3320, - "op": "MSTORE", - "gas": 33604, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3321, - "op": "PUSH1", - "gas": 33598, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3323, - "op": "DUP2", - "gas": 33595, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3324, - "op": "ADD", - "gas": 33592, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3325, - "op": "DUP13", - "gas": 33589, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3326, - "op": "SWAP1", - "gas": 33586, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001c4", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3327, - "op": "MSTORE", - "gas": 33583, - "gasCost": 6, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3328, - "op": "SWAP1", - "gas": 33577, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3329, - "op": "MLOAD", - "gas": 33574, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3330, - "op": "PUSH20", - "gas": 33571, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3351, - "op": "DUP12", - "gas": 33568, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3352, - "op": "AND", - "gas": 33565, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3353, - "op": "SWAP2", - "gas": 33562, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3354, - "op": "CALLER", - "gas": 33559, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3355, - "op": "SWAP2", - "gas": 33557, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3356, - "op": "PUSH32", - "gas": 33554, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3389, - "op": "SWAP2", - "gas": 33551, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3390, - "op": "DUP2", - "gas": 33548, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3391, - "op": "SWAP1", - "gas": 33545, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3392, - "op": "SUB", - "gas": 33542, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3393, - "op": "PUSH1", - "gas": 33539, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3395, - "op": "ADD", - "gas": 33536, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3396, - "op": "SWAP1", - "gas": 33533, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3397, - "op": "LOG3", - "gas": 33530, - "gasCost": 2524, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3398, - "op": "POP", - "gas": 31006, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3399, - "op": "POP", - "gas": 31004, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3400, - "op": "PUSH1", - "gas": 31002, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3402, - "op": "PUSH1", - "gas": 30999, - "gasCost": 3, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 3404, - "op": "SSTORE", - "gas": 30996, - "gasCost": 100, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000000c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3405, - "op": "POP", - "gas": 30896, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3406, - "op": "POP", - "gas": 30894, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3407, - "op": "POP", - "gas": 30892, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3408, - "op": "POP", - "gas": 30890, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3409, - "op": "POP", - "gas": 30888, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3410, - "op": "POP", - "gas": 30886, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3411, - "op": "POP", - "gas": 30884, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3412, - "op": "POP", - "gas": 30882, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3413, - "op": "POP", - "gas": 30880, - "gasCost": 2, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 3414, - "op": "JUMP", - "gas": 30878, - "gasCost": 8, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 599, - "op": "JUMPDEST", - "gas": 30870, - "gasCost": 1, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 600, - "op": "STOP", - "gas": 30869, - "gasCost": 0, - "depth": 3, - "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000100000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12871, - "op": "ISZERO", - "gas": 32329, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12872, - "op": "DUP1", - "gas": 32326, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12873, - "op": "ISZERO", - "gas": 32323, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12874, - "op": "PUSH2", - "gas": 32320, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12877, - "op": "JUMPI", - "gas": 32317, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003257" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12887, - "op": "JUMPDEST", - "gas": 32307, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12888, - "op": "POP", - "gas": 32306, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12889, - "op": "POP", - "gas": 32304, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12890, - "op": "PUSH1", - "gas": 32302, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12892, - "op": "SWAP1", - "gas": 32299, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12893, - "op": "SWAP12", - "gas": 32296, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12894, - "op": "ADD", - "gas": 32293, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12895, - "op": "SWAP11", - "gas": 32290, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12896, - "op": "POP", - "gas": 32287, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12897, - "op": "PUSH2", - "gas": 32285, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12900, - "op": "SWAP10", - "gas": 32282, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002f6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12901, - "op": "POP", - "gas": 32279, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12902, - "op": "POP", - "gas": 32277, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12903, - "op": "POP", - "gas": 32275, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12904, - "op": "POP", - "gas": 32273, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12905, - "op": "POP", - "gas": 32271, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12906, - "op": "POP", - "gas": 32269, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12907, - "op": "POP", - "gas": 32267, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12908, - "op": "POP", - "gas": 32265, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12909, - "op": "POP", - "gas": 32263, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12910, - "op": "POP", - "gas": 32261, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12911, - "op": "JUMP", - "gas": 32259, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12142, - "op": "JUMPDEST", - "gas": 32251, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12143, - "op": "PUSH1", - "gas": 32250, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12145, - "op": "DUP4", - "gas": 32247, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12146, - "op": "MLOAD", - "gas": 32244, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12147, - "op": "SUB", - "gas": 32241, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12148, - "op": "DUP2", - "gas": 32238, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12149, - "op": "LT", - "gas": 32235, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12150, - "op": "ISZERO", - "gas": 32232, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12151, - "op": "PUSH2", - "gas": 32229, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12154, - "op": "JUMPI", - "gas": 32226, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000146a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5226, - "op": "JUMPDEST", - "gas": 32216, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5227, - "op": "POP", - "gas": 32215, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5228, - "op": "POP", - "gas": 32213, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5229, - "op": "POP", - "gas": 32211, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5230, - "op": "JUMP", - "gas": 32209, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4493, - "op": "JUMPDEST", - "gas": 32201, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4494, - "op": "PUSH2", - "gas": 32200, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4497, - "op": "DUP2", - "gas": 32197, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4498, - "op": "DUP8", - "gas": 32194, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4499, - "op": "DUP8", - "gas": 32191, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4500, - "op": "PUSH32", - "gas": 32188, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4533, - "op": "DUP2", - "gas": 32185, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4534, - "op": "ADD", - "gas": 32182, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4535, - "op": "DUP2", - "gas": 32179, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4536, - "op": "DUP2", - "gas": 32176, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4537, - "op": "LT", - "gas": 32173, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4538, - "op": "PUSH2", - "gas": 32170, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4541, - "op": "JUMPI", - "gas": 32167, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000011bf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4543, - "op": "JUMPDEST", - "gas": 32157, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4544, - "op": "SWAP1", - "gas": 32156, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4545, - "op": "POP", - "gas": 32153, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4546, - "op": "PUSH1", - "gas": 32151, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4548, - "op": "MUL", - "gas": 32148, - "gasCost": 5, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4549, - "op": "ADD", - "gas": 32143, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4550, - "op": "PUSH1", - "gas": 32140, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4552, - "op": "DUP2", - "gas": 32137, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4553, - "op": "ADD", - "gas": 32134, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4554, - "op": "SWAP1", - "gas": 32131, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4555, - "op": "PUSH2", - "gas": 32128, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4558, - "op": "SWAP2", - "gas": 32125, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000011d4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4559, - "op": "SWAP1", - "gas": 32122, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4560, - "op": "PUSH2", - "gas": 32119, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4563, - "op": "JUMP", - "gas": 32116, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20459, - "op": "JUMPDEST", - "gas": 32108, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20460, - "op": "PUSH1", - "gas": 32107, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20462, - "op": "PUSH1", - "gas": 32104, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20464, - "op": "DUP3", - "gas": 32101, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20465, - "op": "DUP5", - "gas": 32098, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20466, - "op": "SUB", - "gas": 32095, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20467, - "op": "SLT", - "gas": 32092, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20468, - "op": "ISZERO", - "gas": 32089, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20469, - "op": "PUSH2", - "gas": 32086, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20472, - "op": "JUMPI", - "gas": 32083, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20476, - "op": "JUMPDEST", - "gas": 32073, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20477, - "op": "DUP2", - "gas": 32072, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 32069, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20479, - "op": "PUSH2", - "gas": 32066, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20482, - "op": "DUP2", - "gas": 32063, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20483, - "op": "PUSH2", - "gas": 32060, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20486, - "op": "JUMP", - "gas": 32057, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24402, - "op": "JUMPDEST", - "gas": 32049, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24403, - "op": "PUSH20", - "gas": 32048, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24424, - "op": "DUP2", - "gas": 32045, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24425, - "op": "AND", - "gas": 32042, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24426, - "op": "DUP2", - "gas": 32039, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24427, - "op": "EQ", - "gas": 32036, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24428, - "op": "PUSH2", - "gas": 32033, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 24431, - "op": "JUMPI", - "gas": 32030, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5241, - "op": "JUMPDEST", - "gas": 32020, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5242, - "op": "POP", - "gas": 32019, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5243, - "op": "JUMP", - "gas": 32017, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20487, - "op": "JUMPDEST", - "gas": 32009, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20488, - "op": "SWAP4", - "gas": 32008, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20489, - "op": "SWAP3", - "gas": 32005, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20490, - "op": "POP", - "gas": 32002, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20491, - "op": "POP", - "gas": 32000, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20492, - "op": "POP", - "gas": 31998, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20493, - "op": "JUMP", - "gas": 31996, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4564, - "op": "JUMPDEST", - "gas": 31988, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4565, - "op": "PUSH20", - "gas": 31987, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4586, - "op": "AND", - "gas": 31984, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4587, - "op": "PUSH4", - "gas": 31981, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4592, - "op": "DUP8", - "gas": 31978, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4593, - "op": "PUSH1", - "gas": 31975, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4595, - "op": "MLOAD", - "gas": 31972, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4596, - "op": "DUP3", - "gas": 31969, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4597, - "op": "PUSH4", - "gas": 31966, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4602, - "op": "AND", - "gas": 31963, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4603, - "op": "PUSH1", - "gas": 31960, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4605, - "op": "SHL", - "gas": 31957, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4606, - "op": "DUP2", - "gas": 31954, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "70a0823100000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4607, - "op": "MSTORE", - "gas": 31951, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "70a0823100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4608, - "op": "PUSH1", - "gas": 31948, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4610, - "op": "ADD", - "gas": 31945, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4611, - "op": "PUSH2", - "gas": 31942, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4614, - "op": "SWAP2", - "gas": 31939, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000000000000000000000000000000000000000120c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4615, - "op": "SWAP1", - "gas": 31936, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4616, - "op": "PUSH2", - "gas": 31933, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4619, - "op": "JUMP", - "gas": 31930, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000005a3c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23100, - "op": "JUMPDEST", - "gas": 31922, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23101, - "op": "PUSH20", - "gas": 31921, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23122, - "op": "SWAP2", - "gas": 31918, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23123, - "op": "SWAP1", - "gas": 31915, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23124, - "op": "SWAP2", - "gas": 31912, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23125, - "op": "AND", - "gas": 31909, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23126, - "op": "DUP2", - "gas": 31906, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23127, - "op": "MSTORE", - "gas": 31903, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23128, - "op": "PUSH1", - "gas": 31900, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23130, - "op": "ADD", - "gas": 31897, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23131, - "op": "SWAP1", - "gas": 31894, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 23132, - "op": "JUMP", - "gas": 31891, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "000000000000000000000000000000000000000000000000000000000000120c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4620, - "op": "JUMPDEST", - "gas": 31883, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4621, - "op": "PUSH1", - "gas": 31882, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4623, - "op": "PUSH1", - "gas": 31879, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4625, - "op": "MLOAD", - "gas": 31876, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4626, - "op": "DUP1", - "gas": 31873, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4627, - "op": "DUP4", - "gas": 31870, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4628, - "op": "SUB", - "gas": 31867, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4629, - "op": "DUP2", - "gas": 31864, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4630, - "op": "DUP7", - "gas": 31861, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4631, - "op": "DUP1", - "gas": 31858, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4632, - "op": "EXTCODESIZE", - "gas": 31855, - "gasCost": 100, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4633, - "op": "ISZERO", - "gas": 31755, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4634, - "op": "DUP1", - "gas": 31752, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4635, - "op": "ISZERO", - "gas": 31749, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4636, - "op": "PUSH2", - "gas": 31746, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4639, - "op": "JUMPI", - "gas": 31743, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001224" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4644, - "op": "JUMPDEST", - "gas": 31733, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4645, - "op": "POP", - "gas": 31732, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4646, - "op": "GAS", - "gas": 31730, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4647, - "op": "STATICCALL", - "gas": 31728, - "gasCost": 31234, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000007bf0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 31134, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 31131, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 31128, - "gasCost": 12, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 31116, - "gasCost": 2, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 6, - "op": "DUP1", - "gas": 31114, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 31111, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 31108, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 31105, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 31095, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 17, - "op": "POP", - "gas": 31094, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 31092, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 31089, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 21, - "op": "LT", - "gas": 31087, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 31084, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 31081, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 31071, - "gasCost": 3, - "depth": 3, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 31068, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 31065, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 31, - "op": "SHR", - "gas": 31062, - "gasCost": 3, - "depth": 3, - "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 32, - "op": "DUP1", - "gas": 31059, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 31056, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 38, - "op": "GT", - "gas": 31053, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 31050, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 31047, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 43, - "op": "DUP1", - "gas": 31037, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 31034, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 49, - "op": "EQ", - "gas": 31031, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 31028, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 31025, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 54, - "op": "DUP1", - "gas": 31015, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 31012, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 60, - "op": "EQ", - "gas": 31009, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 31006, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 31003, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 344, - "op": "JUMPDEST", - "gas": 30993, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 345, - "op": "PUSH2", - "gas": 30992, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 348, - "op": "PUSH2", - "gas": 30989, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 351, - "op": "CALLDATASIZE", - "gas": 30986, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 30984, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 354, - "op": "PUSH2", - "gas": 30981, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 357, - "op": "JUMP", - "gas": 30978, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2042, - "op": "JUMPDEST", - "gas": 30970, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2043, - "op": "PUSH1", - "gas": 30969, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2045, - "op": "PUSH1", - "gas": 30966, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2047, - "op": "DUP3", - "gas": 30963, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2048, - "op": "DUP5", - "gas": 30960, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2049, - "op": "SUB", - "gas": 30957, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2050, - "op": "SLT", - "gas": 30954, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2051, - "op": "ISZERO", - "gas": 30951, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2052, - "op": "PUSH2", - "gas": 30948, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2055, - "op": "JUMPI", - "gas": 30945, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2060, - "op": "JUMPDEST", - "gas": 30935, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2061, - "op": "PUSH2", - "gas": 30934, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2064, - "op": "DUP3", - "gas": 30931, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2065, - "op": "PUSH2", - "gas": 30928, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2068, - "op": "JUMP", - "gas": 30925, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1912, - "op": "JUMPDEST", - "gas": 30917, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1913, - "op": "DUP1", - "gas": 30916, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1914, - "op": "CALLDATALOAD", - "gas": 30913, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1915, - "op": "PUSH1", - "gas": 30910, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1917, - "op": "PUSH1", - "gas": 30907, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1919, - "op": "PUSH1", - "gas": 30904, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1921, - "op": "SHL", - "gas": 30901, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1922, - "op": "SUB", - "gas": 30898, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1923, - "op": "DUP2", - "gas": 30895, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1924, - "op": "AND", - "gas": 30892, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1925, - "op": "DUP2", - "gas": 30889, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1926, - "op": "EQ", - "gas": 30886, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1927, - "op": "PUSH2", - "gas": 30883, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1930, - "op": "JUMPI", - "gas": 30880, - "gasCost": 10, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1935, - "op": "JUMPDEST", - "gas": 30870, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1936, - "op": "SWAP2", - "gas": 30869, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1937, - "op": "SWAP1", - "gas": 30866, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1938, - "op": "POP", - "gas": 30863, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 1939, - "op": "JUMP", - "gas": 30861, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2069, - "op": "JUMPDEST", - "gas": 30853, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2070, - "op": "SWAP4", - "gas": 30852, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2071, - "op": "SWAP3", - "gas": 30849, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2072, - "op": "POP", - "gas": 30846, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2073, - "op": "POP", - "gas": 30844, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2074, - "op": "POP", - "gas": 30842, - "gasCost": 2, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 2075, - "op": "JUMP", - "gas": 30840, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 358, - "op": "JUMPDEST", - "gas": 30832, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 359, - "op": "PUSH1", - "gas": 30831, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 361, - "op": "PUSH1", - "gas": 30828, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 363, - "op": "PUSH1", - "gas": 30825, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 365, - "op": "SHL", - "gas": 30822, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 366, - "op": "SUB", - "gas": 30819, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 367, - "op": "AND", - "gas": 30816, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 368, - "op": "PUSH1", - "gas": 30813, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 370, - "op": "SWAP1", - "gas": 30810, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 371, - "op": "DUP2", - "gas": 30807, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 372, - "op": "MSTORE", - "gas": 30804, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 373, - "op": "PUSH1", - "gas": 30801, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 375, - "op": "DUP2", - "gas": 30798, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 376, - "op": "SWAP1", - "gas": 30795, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 377, - "op": "MSTORE", - "gas": 30792, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 378, - "op": "PUSH1", - "gas": 30789, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 380, - "op": "SWAP1", - "gas": 30786, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 381, - "op": "SHA3", - "gas": 30783, - "gasCost": 42, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 382, - "op": "SLOAD", - "gas": 30741, - "gasCost": 100, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 383, - "op": "SWAP1", - "gas": 30641, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 384, - "op": "JUMP", - "gas": 30638, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 243, - "op": "JUMPDEST", - "gas": 30630, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 244, - "op": "PUSH1", - "gas": 30629, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 246, - "op": "MLOAD", - "gas": 30626, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 247, - "op": "SWAP1", - "gas": 30623, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 248, - "op": "DUP2", - "gas": 30620, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 249, - "op": "MSTORE", - "gas": 30617, - "gasCost": 9, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 250, - "op": "PUSH1", - "gas": 30608, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 252, - "op": "ADD", - "gas": 30605, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 253, - "op": "PUSH2", - "gas": 30602, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 256, - "op": "JUMP", - "gas": 30599, - "gasCost": 8, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 195, - "op": "JUMPDEST", - "gas": 30591, - "gasCost": 1, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 196, - "op": "PUSH1", - "gas": 30590, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 198, - "op": "MLOAD", - "gas": 30587, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 199, - "op": "DUP1", - "gas": 30584, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 200, - "op": "SWAP2", - "gas": 30581, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 201, - "op": "SUB", - "gas": 30578, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 30575, - "gasCost": 3, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 203, - "op": "RETURN", - "gas": 30572, - "gasCost": 0, - "depth": 3, - "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4648, - "op": "ISZERO", - "gas": 31066, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4649, - "op": "DUP1", - "gas": 31063, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4650, - "op": "ISZERO", - "gas": 31060, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4651, - "op": "PUSH2", - "gas": 31057, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4654, - "op": "JUMPI", - "gas": 31054, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001238" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4664, - "op": "JUMPDEST", - "gas": 31044, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4665, - "op": "POP", - "gas": 31043, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4666, - "op": "POP", - "gas": 31041, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4667, - "op": "POP", - "gas": 31039, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4668, - "op": "POP", - "gas": 31037, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4669, - "op": "PUSH1", - "gas": 31035, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4671, - "op": "MLOAD", - "gas": 31032, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4672, - "op": "RETURNDATASIZE", - "gas": 31029, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4673, - "op": "PUSH1", - "gas": 31027, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4675, - "op": "NOT", - "gas": 31024, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4676, - "op": "PUSH1", - "gas": 31021, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4678, - "op": "DUP3", - "gas": 31018, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4679, - "op": "ADD", - "gas": 31015, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4680, - "op": "AND", - "gas": 31012, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4681, - "op": "DUP3", - "gas": 31009, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4682, - "op": "ADD", - "gas": 31006, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4683, - "op": "DUP1", - "gas": 31003, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4684, - "op": "PUSH1", - "gas": 31000, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4686, - "op": "MSTORE", - "gas": 30997, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4687, - "op": "POP", - "gas": 30994, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4688, - "op": "DUP2", - "gas": 30992, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4689, - "op": "ADD", - "gas": 30989, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4690, - "op": "SWAP1", - "gas": 30986, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4691, - "op": "PUSH2", - "gas": 30983, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4694, - "op": "SWAP2", - "gas": 30980, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4695, - "op": "SWAP1", - "gas": 30977, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4696, - "op": "PUSH2", - "gas": 30974, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4699, - "op": "JUMP", - "gas": 30971, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000057d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22483, - "op": "JUMPDEST", - "gas": 30963, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22484, - "op": "PUSH1", - "gas": 30962, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22486, - "op": "PUSH1", - "gas": 30959, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22488, - "op": "DUP3", - "gas": 30956, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22489, - "op": "DUP5", - "gas": 30953, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22490, - "op": "SUB", - "gas": 30950, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22491, - "op": "SLT", - "gas": 30947, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22492, - "op": "ISZERO", - "gas": 30944, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22493, - "op": "PUSH2", - "gas": 30941, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22496, - "op": "JUMPI", - "gas": 30938, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22500, - "op": "JUMPDEST", - "gas": 30928, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22501, - "op": "POP", - "gas": 30927, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22502, - "op": "MLOAD", - "gas": 30925, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22503, - "op": "SWAP2", - "gas": 30922, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22504, - "op": "SWAP1", - "gas": 30919, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22505, - "op": "POP", - "gas": 30916, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22506, - "op": "JUMP", - "gas": 30914, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000000000000125c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4700, - "op": "JUMPDEST", - "gas": 30906, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4701, - "op": "SWAP1", - "gas": 30905, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4702, - "op": "PUSH2", - "gas": 30902, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4705, - "op": "JUMP", - "gas": 30899, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003270" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12912, - "op": "JUMPDEST", - "gas": 30891, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12913, - "op": "DUP1", - "gas": 30890, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12914, - "op": "DUP3", - "gas": 30887, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12915, - "op": "SUB", - "gas": 30884, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12916, - "op": "DUP3", - "gas": 30881, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12917, - "op": "DUP2", - "gas": 30878, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12918, - "op": "GT", - "gas": 30875, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12919, - "op": "ISZERO", - "gas": 30872, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12920, - "op": "PUSH2", - "gas": 30869, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 12923, - "op": "JUMPI", - "gas": 30866, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8225, - "op": "JUMPDEST", - "gas": 30856, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8226, - "op": "SWAP3", - "gas": 30855, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8227, - "op": "SWAP2", - "gas": 30852, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8228, - "op": "POP", - "gas": 30849, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8229, - "op": "POP", - "gas": 30847, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 8230, - "op": "JUMP", - "gas": 30845, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4706, - "op": "JUMPDEST", - "gas": 30837, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4707, - "op": "SWAP3", - "gas": 30836, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4708, - "op": "POP", - "gas": 30833, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4709, - "op": "DUP7", - "gas": 30831, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4710, - "op": "DUP4", - "gas": 30828, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4711, - "op": "LT", - "gas": 30825, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4712, - "op": "ISZERO", - "gas": 30822, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4713, - "op": "PUSH2", - "gas": 30819, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4716, - "op": "JUMPI", - "gas": 30816, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000129e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4766, - "op": "JUMPDEST", - "gas": 30806, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4767, - "op": "POP", - "gas": 30805, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4768, - "op": "POP", - "gas": 30803, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4769, - "op": "SWAP6", - "gas": 30801, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4770, - "op": "SWAP5", - "gas": 30798, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000367" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4771, - "op": "POP", - "gas": 30795, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4772, - "op": "POP", - "gas": 30793, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4773, - "op": "POP", - "gas": 30791, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4774, - "op": "POP", - "gas": 30789, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4775, - "op": "POP", - "gas": 30787, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 4776, - "op": "JUMP", - "gas": 30785, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 871, - "op": "JUMPDEST", - "gas": 30777, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 872, - "op": "PUSH1", - "gas": 30776, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 874, - "op": "MLOAD", - "gas": 30773, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 875, - "op": "PUSH2", - "gas": 30770, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 878, - "op": "SWAP2", - "gas": 30767, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000374" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 879, - "op": "SWAP1", - "gas": 30764, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 880, - "op": "PUSH2", - "gas": 30761, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 883, - "op": "JUMP", - "gas": 30758, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000005dfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24061, - "op": "JUMPDEST", - "gas": 30750, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24062, - "op": "SWAP1", - "gas": 30749, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24063, - "op": "DUP2", - "gas": 30746, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24064, - "op": "MSTORE", - "gas": 30743, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabf0f9", - "98f20000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24065, - "op": "PUSH1", - "gas": 30740, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24067, - "op": "ADD", - "gas": 30737, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24068, - "op": "SWAP1", - "gas": 30734, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "000000000000000000000000000000000000000000000000000000000000041e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24069, - "op": "JUMP", - "gas": 30731, - "gasCost": 8, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "0000000000000000000000000000000000000000000000000000000000000374" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 884, - "op": "JUMPDEST", - "gas": 30723, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 885, - "op": "PUSH1", - "gas": 30722, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 887, - "op": "MLOAD", - "gas": 30719, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 888, - "op": "DUP1", - "gas": 30716, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 889, - "op": "SWAP2", - "gas": 30713, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 890, - "op": "SUB", - "gas": 30710, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe", - "000000000000000000000000000000000000000000000000000000000000041e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 891, - "op": "SWAP1", - "gas": 30707, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 892, - "op": "RETURN", - "gas": 30704, - "gasCost": 0, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cab0000", - "000000000000000000000000000000000000034ada3bd6a2edc0ba986cabba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6738, - "op": "SWAP2", - "gas": 33087, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6739, - "op": "POP", - "gas": 33084, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6740, - "op": "POP", - "gas": 33082, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6741, - "op": "RETURNDATASIZE", - "gas": 33080, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6742, - "op": "DUP1", - "gas": 33078, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6743, - "op": "PUSH1", - "gas": 33075, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6745, - "op": "DUP2", - "gas": 33072, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6746, - "op": "EQ", - "gas": 33069, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6747, - "op": "PUSH2", - "gas": 33066, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6750, - "op": "JUMPI", - "gas": 33063, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001a80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6751, - "op": "PUSH1", - "gas": 33053, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6753, - "op": "MLOAD", - "gas": 33050, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6754, - "op": "SWAP2", - "gas": 33047, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6755, - "op": "POP", - "gas": 33044, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6756, - "op": "PUSH1", - "gas": 33042, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6758, - "op": "NOT", - "gas": 33039, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6759, - "op": "PUSH1", - "gas": 33036, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6761, - "op": "RETURNDATASIZE", - "gas": 33033, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6762, - "op": "ADD", - "gas": 33031, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6763, - "op": "AND", - "gas": 33028, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6764, - "op": "DUP3", - "gas": 33025, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6765, - "op": "ADD", - "gas": 33022, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6766, - "op": "PUSH1", - "gas": 33019, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6768, - "op": "MSTORE", - "gas": 33016, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6769, - "op": "RETURNDATASIZE", - "gas": 33013, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6770, - "op": "DUP3", - "gas": 33011, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6771, - "op": "MSTORE", - "gas": 33008, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "472b43f300000000000000000000000000000000000000000000000000000000", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6772, - "op": "RETURNDATASIZE", - "gas": 33005, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6773, - "op": "PUSH1", - "gas": 33003, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6775, - "op": "PUSH1", - "gas": 33000, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6777, - "op": "DUP5", - "gas": 32997, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6778, - "op": "ADD", - "gas": 32994, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6779, - "op": "RETURNDATACOPY", - "gas": 32991, - "gasCost": 6, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "042341670000000000000000000000000000000000000000034a6e670d07a930", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6780, - "op": "PUSH2", - "gas": 32985, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6783, - "op": "JUMP", - "gas": 32982, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000001a85" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6789, - "op": "JUMPDEST", - "gas": 32974, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6790, - "op": "POP", - "gas": 32973, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6791, - "op": "SWAP2", - "gas": 32971, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6792, - "op": "POP", - "gas": 32968, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6793, - "op": "SWAP2", - "gas": 32966, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6794, - "op": "POP", - "gas": 32963, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6795, - "op": "DUP2", - "gas": 32961, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6796, - "op": "PUSH2", - "gas": 32958, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6799, - "op": "JUMPI", - "gas": 32955, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001aeb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6891, - "op": "JUMPDEST", - "gas": 32945, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6892, - "op": "DUP1", - "gas": 32944, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6893, - "op": "DUP5", - "gas": 32941, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6894, - "op": "DUP5", - "gas": 32938, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6895, - "op": "DUP2", - "gas": 32935, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6896, - "op": "MLOAD", - "gas": 32932, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6897, - "op": "DUP2", - "gas": 32929, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6898, - "op": "LT", - "gas": 32926, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6899, - "op": "PUSH2", - "gas": 32923, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6902, - "op": "JUMPI", - "gas": 32920, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001af8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6904, - "op": "JUMPDEST", - "gas": 32910, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6905, - "op": "PUSH1", - "gas": 32909, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6907, - "op": "SWAP1", - "gas": 32906, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6908, - "op": "DUP2", - "gas": 32903, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6909, - "op": "MUL", - "gas": 32900, - "gasCost": 5, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6910, - "op": "SWAP2", - "gas": 32895, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6911, - "op": "SWAP1", - "gas": 32892, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6912, - "op": "SWAP2", - "gas": 32889, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6913, - "op": "ADD", - "gas": 32886, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6914, - "op": "ADD", - "gas": 32883, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6915, - "op": "MSTORE", - "gas": 32880, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6916, - "op": "POP", - "gas": 32877, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6917, - "op": "POP", - "gas": 32875, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6918, - "op": "PUSH1", - "gas": 32873, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6920, - "op": "ADD", - "gas": 32870, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6921, - "op": "PUSH2", - "gas": 32867, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6924, - "op": "JUMP", - "gas": 32864, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001a0d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6669, - "op": "JUMPDEST", - "gas": 32856, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6670, - "op": "DUP3", - "gas": 32855, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6671, - "op": "DUP2", - "gas": 32852, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6672, - "op": "LT", - "gas": 32849, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6673, - "op": "ISZERO", - "gas": 32846, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6674, - "op": "PUSH2", - "gas": 32843, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6677, - "op": "JUMPI", - "gas": 32840, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001b0d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6925, - "op": "JUMPDEST", - "gas": 32830, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6926, - "op": "POP", - "gas": 32829, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6927, - "op": "SWAP3", - "gas": 32827, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6928, - "op": "SWAP2", - "gas": 32824, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c3d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6929, - "op": "POP", - "gas": 32821, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6930, - "op": "POP", - "gas": 32819, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 6931, - "op": "JUMP", - "gas": 32817, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3133, - "op": "JUMPDEST", - "gas": 32809, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3134, - "op": "SWAP2", - "gas": 32808, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3135, - "op": "POP", - "gas": 32805, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3136, - "op": "JUMPDEST", - "gas": 32803, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3137, - "op": "POP", - "gas": 32802, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3138, - "op": "SWAP4", - "gas": 32800, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3139, - "op": "SWAP3", - "gas": 32797, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3140, - "op": "POP", - "gas": 32794, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000062dd0903" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3141, - "op": "POP", - "gas": 32792, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3142, - "op": "POP", - "gas": 32790, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3143, - "op": "JUMP", - "gas": 32788, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 990, - "op": "JUMPDEST", - "gas": 32780, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 991, - "op": "PUSH1", - "gas": 32779, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 993, - "op": "MLOAD", - "gas": 32776, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 994, - "op": "PUSH2", - "gas": 32773, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 997, - "op": "SWAP2", - "gas": 32770, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000374" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 998, - "op": "SWAP1", - "gas": 32767, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 999, - "op": "PUSH2", - "gas": 32764, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 1002, - "op": "JUMP", - "gas": 32761, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000005afc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23292, - "op": "JUMPDEST", - "gas": 32753, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23293, - "op": "PUSH1", - "gas": 32752, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23295, - "op": "PUSH1", - "gas": 32749, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23297, - "op": "DUP1", - "gas": 32746, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23298, - "op": "DUP4", - "gas": 32743, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23299, - "op": "ADD", - "gas": 32740, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23300, - "op": "DUP2", - "gas": 32737, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23301, - "op": "DUP5", - "gas": 32734, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23302, - "op": "MSTORE", - "gas": 32731, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "315acfa200000000000000000000000000000000000000000000000000000000", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23303, - "op": "DUP1", - "gas": 32728, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23304, - "op": "DUP6", - "gas": 32725, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23305, - "op": "MLOAD", - "gas": 32722, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23306, - "op": "DUP1", - "gas": 32719, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23307, - "op": "DUP4", - "gas": 32716, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23308, - "op": "MSTORE", - "gas": 32713, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000080000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23309, - "op": "PUSH1", - "gas": 32710, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23311, - "op": "DUP7", - "gas": 32707, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23312, - "op": "ADD", - "gas": 32704, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23313, - "op": "SWAP2", - "gas": 32701, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23314, - "op": "POP", - "gas": 32698, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23315, - "op": "PUSH1", - "gas": 32696, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23317, - "op": "DUP5", - "gas": 32693, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23318, - "op": "DUP3", - "gas": 32690, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23319, - "op": "MUL", - "gas": 32687, - "gasCost": 5, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23320, - "op": "DUP8", - "gas": 32682, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23321, - "op": "ADD", - "gas": 32679, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23322, - "op": "ADD", - "gas": 32676, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23323, - "op": "SWAP3", - "gas": 32673, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23324, - "op": "POP", - "gas": 32670, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23325, - "op": "DUP4", - "gas": 32668, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23326, - "op": "DUP8", - "gas": 32665, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23327, - "op": "ADD", - "gas": 32662, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23328, - "op": "DUP6", - "gas": 32659, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23329, - "op": "JUMPDEST", - "gas": 32656, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23330, - "op": "DUP3", - "gas": 32655, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23331, - "op": "DUP2", - "gas": 32652, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23332, - "op": "LT", - "gas": 32649, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23333, - "op": "ISZERO", - "gas": 32646, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23334, - "op": "PUSH2", - "gas": 32643, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23337, - "op": "JUMPI", - "gas": 32640, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b6d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23338, - "op": "PUSH32", - "gas": 32630, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23371, - "op": "DUP9", - "gas": 32627, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23372, - "op": "DUP7", - "gas": 32624, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23373, - "op": "SUB", - "gas": 32621, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23374, - "op": "ADD", - "gas": 32618, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23375, - "op": "DUP5", - "gas": 32615, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23376, - "op": "MSTORE", - "gas": 32612, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23377, - "op": "PUSH2", - "gas": 32609, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23380, - "op": "DUP6", - "gas": 32606, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23381, - "op": "DUP4", - "gas": 32603, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23382, - "op": "MLOAD", - "gas": 32600, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23383, - "op": "PUSH2", - "gas": 32597, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23386, - "op": "JUMP", - "gas": 32594, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005950" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22864, - "op": "JUMPDEST", - "gas": 32586, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22865, - "op": "PUSH1", - "gas": 32585, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22867, - "op": "DUP2", - "gas": 32582, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22868, - "op": "MLOAD", - "gas": 32579, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22869, - "op": "DUP1", - "gas": 32576, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22870, - "op": "DUP5", - "gas": 32573, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22871, - "op": "MSTORE", - "gas": 32570, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22872, - "op": "PUSH2", - "gas": 32567, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22875, - "op": "DUP2", - "gas": 32564, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22876, - "op": "PUSH1", - "gas": 32561, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22878, - "op": "DUP7", - "gas": 32558, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22879, - "op": "ADD", - "gas": 32555, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22880, - "op": "PUSH1", - "gas": 32552, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22882, - "op": "DUP7", - "gas": 32549, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22883, - "op": "ADD", - "gas": 32546, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22884, - "op": "PUSH2", - "gas": 32543, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22887, - "op": "JUMP", - "gas": 32540, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000005f26" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24358, - "op": "JUMPDEST", - "gas": 32532, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24359, - "op": "PUSH1", - "gas": 32531, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24361, - "op": "JUMPDEST", - "gas": 32528, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24362, - "op": "DUP4", - "gas": 32527, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24363, - "op": "DUP2", - "gas": 32524, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24364, - "op": "LT", - "gas": 32521, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24365, - "op": "ISZERO", - "gas": 32518, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24366, - "op": "PUSH2", - "gas": 32515, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24369, - "op": "JUMPI", - "gas": 32512, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005f41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24370, - "op": "DUP2", - "gas": 32502, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24371, - "op": "DUP2", - "gas": 32499, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24372, - "op": "ADD", - "gas": 32496, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24373, - "op": "MLOAD", - "gas": 32493, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24374, - "op": "DUP4", - "gas": 32490, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24375, - "op": "DUP3", - "gas": 32487, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24376, - "op": "ADD", - "gas": 32484, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24377, - "op": "MSTORE", - "gas": 32481, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24378, - "op": "PUSH1", - "gas": 32478, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24380, - "op": "ADD", - "gas": 32475, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24381, - "op": "PUSH2", - "gas": 32472, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24384, - "op": "JUMP", - "gas": 32469, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005f29" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24361, - "op": "JUMPDEST", - "gas": 32461, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24362, - "op": "DUP4", - "gas": 32460, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24363, - "op": "DUP2", - "gas": 32457, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24364, - "op": "LT", - "gas": 32454, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24365, - "op": "ISZERO", - "gas": 32451, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24366, - "op": "PUSH2", - "gas": 32448, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24369, - "op": "JUMPI", - "gas": 32445, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005f41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24385, - "op": "JUMPDEST", - "gas": 32435, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24386, - "op": "DUP4", - "gas": 32434, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24387, - "op": "DUP2", - "gas": 32431, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24388, - "op": "GT", - "gas": 32428, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24389, - "op": "ISZERO", - "gas": 32425, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24390, - "op": "PUSH2", - "gas": 32422, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24393, - "op": "JUMPI", - "gas": 32419, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3157, - "op": "JUMPDEST", - "gas": 32409, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3158, - "op": "POP", - "gas": 32408, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3159, - "op": "POP", - "gas": 32406, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3160, - "op": "POP", - "gas": 32404, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3161, - "op": "POP", - "gas": 32402, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 3162, - "op": "JUMP", - "gas": 32400, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22888, - "op": "JUMPDEST", - "gas": 32392, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22889, - "op": "PUSH1", - "gas": 32391, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22891, - "op": "ADD", - "gas": 32388, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22892, - "op": "PUSH32", - "gas": 32385, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22925, - "op": "AND", - "gas": 32382, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000003f", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22926, - "op": "SWAP3", - "gas": 32379, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22927, - "op": "SWAP1", - "gas": 32376, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22928, - "op": "SWAP3", - "gas": 32373, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22929, - "op": "ADD", - "gas": 32370, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22930, - "op": "PUSH1", - "gas": 32367, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22932, - "op": "ADD", - "gas": 32364, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22933, - "op": "SWAP3", - "gas": 32361, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22934, - "op": "SWAP2", - "gas": 32358, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005b5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22935, - "op": "POP", - "gas": 32355, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22936, - "op": "POP", - "gas": 32353, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 22937, - "op": "JUMP", - "gas": 32351, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23387, - "op": "JUMPDEST", - "gas": 32343, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23388, - "op": "SWAP5", - "gas": 32342, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23389, - "op": "POP", - "gas": 32339, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23390, - "op": "SWAP3", - "gas": 32337, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23391, - "op": "DUP6", - "gas": 32334, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23392, - "op": "ADD", - "gas": 32331, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23393, - "op": "SWAP3", - "gas": 32328, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23394, - "op": "SWAP1", - "gas": 32325, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23395, - "op": "DUP6", - "gas": 32322, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23396, - "op": "ADD", - "gas": 32319, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23397, - "op": "SWAP1", - "gas": 32316, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23398, - "op": "PUSH1", - "gas": 32313, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23400, - "op": "ADD", - "gas": 32310, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23401, - "op": "PUSH2", - "gas": 32307, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23404, - "op": "JUMP", - "gas": 32304, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005b21" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23329, - "op": "JUMPDEST", - "gas": 32296, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23330, - "op": "DUP3", - "gas": 32295, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23331, - "op": "DUP2", - "gas": 32292, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23332, - "op": "LT", - "gas": 32289, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23333, - "op": "ISZERO", - "gas": 32286, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23334, - "op": "PUSH2", - "gas": 32283, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23337, - "op": "JUMPI", - "gas": 32280, - "gasCost": 10, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005b6d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23405, - "op": "JUMPDEST", - "gas": 32270, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23406, - "op": "POP", - "gas": 32269, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23407, - "op": "SWAP3", - "gas": 32267, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23408, - "op": "SWAP8", - "gas": 32264, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23409, - "op": "SWAP7", - "gas": 32261, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000374" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23410, - "op": "POP", - "gas": 32258, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23411, - "op": "POP", - "gas": 32256, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23412, - "op": "POP", - "gas": 32254, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23413, - "op": "POP", - "gas": 32252, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23414, - "op": "POP", - "gas": 32250, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23415, - "op": "POP", - "gas": 32248, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23416, - "op": "POP", - "gas": 32246, - "gasCost": 2, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 23417, - "op": "JUMP", - "gas": 32244, - "gasCost": 8, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 884, - "op": "JUMPDEST", - "gas": 32236, - "gasCost": 1, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 885, - "op": "PUSH1", - "gas": 32235, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 887, - "op": "MLOAD", - "gas": 32232, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 888, - "op": "DUP1", - "gas": 32229, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 889, - "op": "SWAP2", - "gas": 32226, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 890, - "op": "SUB", - "gas": 32223, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 891, - "op": "SWAP1", - "gas": 32220, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 892, - "op": "RETURN", - "gas": 32217, - "gasCost": 0, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - } - ], - "gas": 137858, - "failed": false, - "returnValue": "00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" -} -`); diff --git a/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTrace.ts b/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTrace.ts deleted file mode 100644 index bb569d385b..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTrace.ts +++ /dev/null @@ -1,2469 +0,0 @@ -import { TurboGethTrace } from "./types"; - -// This trace belongs to the tx 0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4 -// from mainnet. It calls Dai's balanceOf(cDai). -// It was generated using TurboGeth 2021.02.04 -export const trace: TurboGethTrace = { - gas: 22734, - failed: false, - returnValue: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 2302, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 2299, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 2296, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 2284, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 2282, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 2279, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 2276, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 2273, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 2263, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 2262, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 2260, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 2257, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 2255, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 2252, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 2249, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 2239, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 2236, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 2233, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 2230, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 2227, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 2224, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "GT", - gas: 2221, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007ecebe00", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 2218, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 2215, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 184, - op: "JUMPDEST", - gas: 2205, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 185, - op: "DUP1", - gas: 2204, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 186, - op: "PUSH4", - gas: 2201, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 191, - op: "GT", - gas: 2198, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 192, - op: "PUSH2", - gas: 2195, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 195, - op: "JUMPI", - gas: 2192, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000010a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 196, - op: "DUP1", - gas: 2182, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 197, - op: "PUSH4", - gas: 2179, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 202, - op: "EQ", - gas: 2176, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 203, - op: "PUSH2", - gas: 2173, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 206, - op: "JUMPI", - gas: 2170, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 207, - op: "DUP1", - gas: 2160, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 208, - op: "PUSH4", - gas: 2157, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 213, - op: "EQ", - gas: 2154, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 214, - op: "PUSH2", - gas: 2151, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 217, - op: "JUMPI", - gas: 2148, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000316", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 218, - op: "DUP1", - gas: 2138, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 219, - op: "PUSH4", - gas: 2135, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 224, - op: "EQ", - gas: 2132, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000040c10f19", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 225, - op: "PUSH2", - gas: 2129, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 228, - op: "JUMPI", - gas: 2126, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000334", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 229, - op: "DUP1", - gas: 2116, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 230, - op: "PUSH4", - gas: 2113, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 235, - op: "EQ", - gas: 2110, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000054fd4d50", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 236, - op: "PUSH2", - gas: 2107, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 239, - op: "JUMPI", - gas: 2104, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000382", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 240, - op: "DUP1", - gas: 2094, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 241, - op: "PUSH4", - gas: 2091, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 246, - op: "EQ", - gas: 2088, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000065fae35e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 247, - op: "PUSH2", - gas: 2085, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 250, - op: "JUMPI", - gas: 2082, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000405", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 251, - op: "DUP1", - gas: 2072, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 252, - op: "PUSH4", - gas: 2069, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 257, - op: "EQ", - gas: 2066, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 258, - op: "PUSH2", - gas: 2063, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 261, - op: "JUMPI", - gas: 2060, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000449", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1097, - op: "JUMPDEST", - gas: 2050, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1098, - op: "PUSH2", - gas: 2049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1101, - op: "PUSH1", - gas: 2046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1103, - op: "DUP1", - gas: 2043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1104, - op: "CALLDATASIZE", - gas: 2040, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1105, - op: "SUB", - gas: 2038, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1106, - op: "PUSH1", - gas: 2035, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1108, - op: "DUP2", - gas: 2032, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1109, - op: "LT", - gas: 2029, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1110, - op: "ISZERO", - gas: 2026, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1111, - op: "PUSH2", - gas: 2023, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1114, - op: "JUMPI", - gas: 2020, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000045f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1119, - op: "JUMPDEST", - gas: 2010, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1120, - op: "DUP2", - gas: 2009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1121, - op: "ADD", - gas: 2006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1122, - op: "SWAP1", - gas: 2003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1123, - op: "DUP1", - gas: 2000, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1124, - op: "DUP1", - gas: 1997, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1125, - op: "CALLDATALOAD", - gas: 1994, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1126, - op: "PUSH20", - gas: 1991, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1147, - op: "AND", - gas: 1988, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1148, - op: "SWAP1", - gas: 1985, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1149, - op: "PUSH1", - gas: 1982, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1151, - op: "ADD", - gas: 1979, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1152, - op: "SWAP1", - gas: 1976, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1153, - op: "SWAP3", - gas: 1973, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1154, - op: "SWAP2", - gas: 1970, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1155, - op: "SWAP1", - gas: 1967, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1156, - op: "POP", - gas: 1964, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1157, - op: "POP", - gas: 1962, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1158, - op: "POP", - gas: 1960, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1159, - op: "PUSH2", - gas: 1958, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1162, - op: "JUMP", - gas: 1955, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000000000000000000000000000000000000000128f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4751, - op: "JUMPDEST", - gas: 1947, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4752, - op: "PUSH1", - gas: 1946, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4754, - op: "PUSH1", - gas: 1943, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4756, - op: "MSTORE", - gas: 1940, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4757, - op: "DUP1", - gas: 1937, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4758, - op: "PUSH1", - gas: 1934, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4760, - op: "MSTORE", - gas: 1931, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4761, - op: "PUSH1", - gas: 1928, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4763, - op: "PUSH1", - gas: 1925, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4765, - op: "SHA3", - gas: 1922, - gasCost: 42, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4766, - op: "PUSH1", - gas: 1880, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4768, - op: "SWAP2", - gas: 1877, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4769, - op: "POP", - gas: 1874, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4770, - op: "SWAP1", - gas: 1872, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4771, - op: "POP", - gas: 1869, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4772, - op: "SLOAD", - gas: 1867, - gasCost: 800, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4773, - op: "DUP2", - gas: 1067, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4774, - op: "JUMP", - gas: 1064, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1163, - op: "JUMPDEST", - gas: 1056, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1164, - op: "PUSH1", - gas: 1055, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1166, - op: "MLOAD", - gas: 1052, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1167, - op: "DUP1", - gas: 1049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1168, - op: "DUP3", - gas: 1046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1169, - op: "DUP2", - gas: 1043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1170, - op: "MSTORE", - gas: 1040, - gasCost: 9, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1171, - op: "PUSH1", - gas: 1031, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1173, - op: "ADD", - gas: 1028, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1174, - op: "SWAP2", - gas: 1025, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1175, - op: "POP", - gas: 1022, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1176, - op: "POP", - gas: 1020, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1177, - op: "PUSH1", - gas: 1018, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1179, - op: "MLOAD", - gas: 1015, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1180, - op: "DUP1", - gas: 1012, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1181, - op: "SWAP2", - gas: 1009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1182, - op: "SUB", - gas: 1006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1183, - op: "SWAP1", - gas: 1003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1184, - op: "RETURN", - gas: 1000, - gasCost: 0, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts b/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts deleted file mode 100644 index c8a1b4225d..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts +++ /dev/null @@ -1,2470 +0,0 @@ -import { GethTrace } from "./types"; - -// This trace belongs to the tx 0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4 -// from mainnet. It calls Dai's balanceOf(cDai). -// It was generated using Geth 1.9.25 - -export const trace: GethTrace = { - gas: 22734, - failed: false, - returnValue: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 2302, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 2299, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 2296, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 2284, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 2282, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 2279, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 2276, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 2273, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 2263, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 2262, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 2260, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 2257, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 2255, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 2252, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 2249, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 2239, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 2236, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 2233, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 2230, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 2227, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 2224, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "GT", - gas: 2221, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007ecebe00", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 2218, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 2215, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 184, - op: "JUMPDEST", - gas: 2205, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 185, - op: "DUP1", - gas: 2204, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 186, - op: "PUSH4", - gas: 2201, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 191, - op: "GT", - gas: 2198, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 192, - op: "PUSH2", - gas: 2195, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 195, - op: "JUMPI", - gas: 2192, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000010a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 196, - op: "DUP1", - gas: 2182, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 197, - op: "PUSH4", - gas: 2179, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 202, - op: "EQ", - gas: 2176, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 203, - op: "PUSH2", - gas: 2173, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 206, - op: "JUMPI", - gas: 2170, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 207, - op: "DUP1", - gas: 2160, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 208, - op: "PUSH4", - gas: 2157, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 213, - op: "EQ", - gas: 2154, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 214, - op: "PUSH2", - gas: 2151, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 217, - op: "JUMPI", - gas: 2148, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000316", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 218, - op: "DUP1", - gas: 2138, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 219, - op: "PUSH4", - gas: 2135, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 224, - op: "EQ", - gas: 2132, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000040c10f19", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 225, - op: "PUSH2", - gas: 2129, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 228, - op: "JUMPI", - gas: 2126, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000334", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 229, - op: "DUP1", - gas: 2116, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 230, - op: "PUSH4", - gas: 2113, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 235, - op: "EQ", - gas: 2110, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000054fd4d50", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 236, - op: "PUSH2", - gas: 2107, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 239, - op: "JUMPI", - gas: 2104, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000382", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 240, - op: "DUP1", - gas: 2094, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 241, - op: "PUSH4", - gas: 2091, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 246, - op: "EQ", - gas: 2088, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000065fae35e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 247, - op: "PUSH2", - gas: 2085, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 250, - op: "JUMPI", - gas: 2082, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000405", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 251, - op: "DUP1", - gas: 2072, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 252, - op: "PUSH4", - gas: 2069, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 257, - op: "EQ", - gas: 2066, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 258, - op: "PUSH2", - gas: 2063, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 261, - op: "JUMPI", - gas: 2060, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000449", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1097, - op: "JUMPDEST", - gas: 2050, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1098, - op: "PUSH2", - gas: 2049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1101, - op: "PUSH1", - gas: 2046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1103, - op: "DUP1", - gas: 2043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1104, - op: "CALLDATASIZE", - gas: 2040, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1105, - op: "SUB", - gas: 2038, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1106, - op: "PUSH1", - gas: 2035, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1108, - op: "DUP2", - gas: 2032, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1109, - op: "LT", - gas: 2029, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1110, - op: "ISZERO", - gas: 2026, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1111, - op: "PUSH2", - gas: 2023, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1114, - op: "JUMPI", - gas: 2020, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000045f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1119, - op: "JUMPDEST", - gas: 2010, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1120, - op: "DUP2", - gas: 2009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1121, - op: "ADD", - gas: 2006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1122, - op: "SWAP1", - gas: 2003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1123, - op: "DUP1", - gas: 2000, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1124, - op: "DUP1", - gas: 1997, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1125, - op: "CALLDATALOAD", - gas: 1994, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1126, - op: "PUSH20", - gas: 1991, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1147, - op: "AND", - gas: 1988, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1148, - op: "SWAP1", - gas: 1985, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1149, - op: "PUSH1", - gas: 1982, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1151, - op: "ADD", - gas: 1979, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1152, - op: "SWAP1", - gas: 1976, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1153, - op: "SWAP3", - gas: 1973, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1154, - op: "SWAP2", - gas: 1970, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1155, - op: "SWAP1", - gas: 1967, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1156, - op: "POP", - gas: 1964, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1157, - op: "POP", - gas: 1962, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1158, - op: "POP", - gas: 1960, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1159, - op: "PUSH2", - gas: 1958, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1162, - op: "JUMP", - gas: 1955, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000000000000000000000000000000000000000128f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4751, - op: "JUMPDEST", - gas: 1947, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4752, - op: "PUSH1", - gas: 1946, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4754, - op: "PUSH1", - gas: 1943, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4756, - op: "MSTORE", - gas: 1940, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4757, - op: "DUP1", - gas: 1937, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4758, - op: "PUSH1", - gas: 1934, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4760, - op: "MSTORE", - gas: 1931, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4761, - op: "PUSH1", - gas: 1928, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4763, - op: "PUSH1", - gas: 1925, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4765, - op: "SHA3", - gas: 1922, - gasCost: 42, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4766, - op: "PUSH1", - gas: 1880, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4768, - op: "SWAP2", - gas: 1877, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4769, - op: "POP", - gas: 1874, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4770, - op: "SWAP1", - gas: 1872, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4771, - op: "POP", - gas: 1869, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4772, - op: "SLOAD", - gas: 1867, - gasCost: 800, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4773, - op: "DUP2", - gas: 1067, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4774, - op: "JUMP", - gas: 1064, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1163, - op: "JUMPDEST", - gas: 1056, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1164, - op: "PUSH1", - gas: 1055, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1166, - op: "MLOAD", - gas: 1052, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1167, - op: "DUP1", - gas: 1049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1168, - op: "DUP3", - gas: 1046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1169, - op: "DUP2", - gas: 1043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1170, - op: "MSTORE", - gas: 1040, - gasCost: 9, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1171, - op: "PUSH1", - gas: 1031, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1173, - op: "ADD", - gas: 1028, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1174, - op: "SWAP2", - gas: 1025, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1175, - op: "POP", - gas: 1022, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1176, - op: "POP", - gas: 1020, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1177, - op: "PUSH1", - gas: 1018, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1179, - op: "MLOAD", - gas: 1015, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1180, - op: "DUP1", - gas: 1012, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1181, - op: "SWAP2", - gas: 1009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1182, - op: "SUB", - gas: 1006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1183, - op: "SWAP1", - gas: 1003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1184, - op: "RETURN", - gas: 1000, - gasCost: 0, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/mainnetRevertTrace.ts b/packages/hardhat-core/test/fixture-debug-traces/mainnetRevertTrace.ts deleted file mode 100644 index 3e93d5a926..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/mainnetRevertTrace.ts +++ /dev/null @@ -1,49237 +0,0 @@ -import { TurboGethTrace } from "./types"; - -// This trace belongs to the tx 0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148 -// from mainnet. -// It was generated using TurboGeth 2021.02.04 -export const trace: TurboGethTrace = { - gas: 28853, - failed: true, - returnValue: "", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 133331, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 133328, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 133325, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "PUSH1", - gas: 133313, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "CALLDATASIZE", - gas: 133310, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "LT", - gas: 133308, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 9, - op: "PUSH2", - gas: 133305, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 12, - op: "JUMPI", - gas: 133302, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000018f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 13, - op: "PUSH1", - gas: 133292, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 15, - op: "CALLDATALOAD", - gas: 133289, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "PUSH1", - gas: 133286, - gasCost: 3, - depth: 1, - stack: [ - "7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "SHR", - gas: 133283, - gasCost: 3, - depth: 1, - stack: [ - "7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 19, - op: "DUP1", - gas: 133280, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "PUSH4", - gas: 133277, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "GT", - gas: 133274, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000008803dbee", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH2", - gas: 133271, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "JUMPI", - gas: 133268, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d6", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 214, - op: "JUMPDEST", - gas: 133258, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 215, - op: "DUP1", - gas: 133257, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 216, - op: "PUSH4", - gas: 133254, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 221, - op: "GT", - gas: 133251, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000004a25d94a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 222, - op: "PUSH2", - gas: 133248, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 225, - op: "JUMPI", - gas: 133245, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000138", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 226, - op: "DUP1", - gas: 133235, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 227, - op: "PUSH4", - gas: 133232, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 232, - op: "GT", - gas: 133229, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "00000000000000000000000000000000000000000000000000000000791ac947", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 233, - op: "PUSH2", - gas: 133226, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 236, - op: "JUMPI", - gas: 133223, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000112", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 237, - op: "DUP1", - gas: 133213, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 238, - op: "PUSH4", - gas: 133210, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 243, - op: "EQ", - gas: 133207, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "00000000000000000000000000000000000000000000000000000000791ac947", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 244, - op: "PUSH2", - gas: 133204, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 247, - op: "JUMPI", - gas: 133201, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000741", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 248, - op: "DUP1", - gas: 133191, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 249, - op: "PUSH4", - gas: 133188, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 254, - op: "EQ", - gas: 133185, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 255, - op: "PUSH2", - gas: 133182, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 258, - op: "JUMPI", - gas: 133179, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007e6", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2022, - op: "JUMPDEST", - gas: 133169, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2023, - op: "PUSH2", - gas: 133168, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2026, - op: "PUSH1", - gas: 133165, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2028, - op: "DUP1", - gas: 133162, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2029, - op: "CALLDATASIZE", - gas: 133159, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2030, - op: "SUB", - gas: 133157, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2031, - op: "PUSH1", - gas: 133154, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2033, - op: "DUP2", - gas: 133151, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2034, - op: "LT", - gas: 133148, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2035, - op: "ISZERO", - gas: 133145, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2036, - op: "PUSH2", - gas: 133142, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2039, - op: "JUMPI", - gas: 133139, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007fc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2044, - op: "JUMPDEST", - gas: 133129, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2045, - op: "DUP2", - gas: 133128, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2046, - op: "CALLDATALOAD", - gas: 133125, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2047, - op: "SWAP2", - gas: 133122, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2048, - op: "SWAP1", - gas: 133119, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2049, - op: "DUP2", - gas: 133116, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2050, - op: "ADD", - gas: 133113, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2051, - op: "SWAP1", - gas: 133110, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2052, - op: "PUSH1", - gas: 133107, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2054, - op: "DUP2", - gas: 133104, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2055, - op: "ADD", - gas: 133101, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2056, - op: "PUSH1", - gas: 133098, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2058, - op: "DUP3", - gas: 133095, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2059, - op: "ADD", - gas: 133092, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2060, - op: "CALLDATALOAD", - gas: 133089, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2061, - op: "PUSH5", - gas: 133086, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2067, - op: "DUP2", - gas: 133083, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2068, - op: "GT", - gas: 133080, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2069, - op: "ISZERO", - gas: 133077, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2070, - op: "PUSH2", - gas: 133074, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2073, - op: "JUMPI", - gas: 133071, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000081e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2078, - op: "JUMPDEST", - gas: 133061, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2079, - op: "DUP3", - gas: 133060, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2080, - op: "ADD", - gas: 133057, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2081, - op: "DUP4", - gas: 133054, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2082, - op: "PUSH1", - gas: 133051, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2084, - op: "DUP3", - gas: 133048, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2085, - op: "ADD", - gas: 133045, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2086, - op: "GT", - gas: 133042, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2087, - op: "ISZERO", - gas: 133039, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2088, - op: "PUSH2", - gas: 133036, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2091, - op: "JUMPI", - gas: 133033, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000830", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2096, - op: "JUMPDEST", - gas: 133023, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2097, - op: "DUP1", - gas: 133022, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2098, - op: "CALLDATALOAD", - gas: 133019, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2099, - op: "SWAP1", - gas: 133016, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2100, - op: "PUSH1", - gas: 133013, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2102, - op: "ADD", - gas: 133010, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2103, - op: "SWAP2", - gas: 133007, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2104, - op: "DUP5", - gas: 133004, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2105, - op: "PUSH1", - gas: 133001, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2107, - op: "DUP4", - gas: 132998, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2108, - op: "MUL", - gas: 132995, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2109, - op: "DUP5", - gas: 132990, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2110, - op: "ADD", - gas: 132987, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2111, - op: "GT", - gas: 132984, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2112, - op: "PUSH5", - gas: 132981, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2118, - op: "DUP4", - gas: 132978, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2119, - op: "GT", - gas: 132975, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2120, - op: "OR", - gas: 132972, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2121, - op: "ISZERO", - gas: 132969, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2122, - op: "PUSH2", - gas: 132966, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2125, - op: "JUMPI", - gas: 132963, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000852", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2130, - op: "JUMPDEST", - gas: 132953, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2131, - op: "SWAP2", - gas: 132952, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2132, - op: "SWAP4", - gas: 132949, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2133, - op: "POP", - gas: 132946, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2134, - op: "SWAP2", - gas: 132944, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2135, - op: "POP", - gas: 132941, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2136, - op: "PUSH20", - gas: 132939, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2157, - op: "DUP2", - gas: 132936, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2158, - op: "CALLDATALOAD", - gas: 132933, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2159, - op: "AND", - gas: 132930, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2160, - op: "SWAP1", - gas: 132927, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2161, - op: "PUSH1", - gas: 132924, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000044", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2163, - op: "ADD", - gas: 132921, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2164, - op: "CALLDATALOAD", - gas: 132918, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000064", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2165, - op: "PUSH2", - gas: 132915, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 2168, - op: "JUMP", - gas: 132912, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000002105", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8453, - op: "JUMPDEST", - gas: 132904, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8454, - op: "PUSH1", - gas: 132903, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8456, - op: "DUP2", - gas: 132900, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8457, - op: "TIMESTAMP", - gas: 132897, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8458, - op: "DUP2", - gas: 132895, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000603d3623", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8459, - op: "LT", - gas: 132892, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000603d3623", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8460, - op: "ISZERO", - gas: 132889, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8461, - op: "PUSH2", - gas: 132886, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8464, - op: "JUMPI", - gas: 132883, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002177", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8567, - op: "JUMPDEST", - gas: 132873, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8568, - op: "PUSH32", - gas: 132872, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8601, - op: "PUSH20", - gas: 132869, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8622, - op: "AND", - gas: 132866, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8623, - op: "DUP7", - gas: 132863, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8624, - op: "DUP7", - gas: 132860, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8625, - op: "PUSH1", - gas: 132857, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8627, - op: "DUP2", - gas: 132854, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8628, - op: "DUP2", - gas: 132851, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8629, - op: "LT", - gas: 132848, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8630, - op: "PUSH2", - gas: 132845, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8633, - op: "JUMPI", - gas: 132842, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000021bb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8635, - op: "JUMPDEST", - gas: 132832, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8636, - op: "SWAP1", - gas: 132831, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8637, - op: "POP", - gas: 132828, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8638, - op: "PUSH1", - gas: 132826, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8640, - op: "MUL", - gas: 132823, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8641, - op: "ADD", - gas: 132818, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8642, - op: "CALLDATALOAD", - gas: 132815, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8643, - op: "PUSH20", - gas: 132812, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8664, - op: "AND", - gas: 132809, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8665, - op: "PUSH20", - gas: 132806, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8686, - op: "AND", - gas: 132803, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8687, - op: "EQ", - gas: 132800, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8688, - op: "PUSH2", - gas: 132797, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8691, - op: "JUMPI", - gas: 132794, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000225a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8794, - op: "JUMPDEST", - gas: 132784, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8795, - op: "PUSH2", - gas: 132783, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8798, - op: "PUSH32", - gas: 132780, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8831, - op: "CALLVALUE", - gas: 132777, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8832, - op: "DUP9", - gas: 132775, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8833, - op: "DUP9", - gas: 132772, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8834, - op: "DUP1", - gas: 132769, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8835, - op: "DUP1", - gas: 132766, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8836, - op: "PUSH1", - gas: 132763, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8838, - op: "MUL", - gas: 132760, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8839, - op: "PUSH1", - gas: 132755, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8841, - op: "ADD", - gas: 132752, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8842, - op: "PUSH1", - gas: 132749, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8844, - op: "MLOAD", - gas: 132746, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8845, - op: "SWAP1", - gas: 132743, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8846, - op: "DUP2", - gas: 132740, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8847, - op: "ADD", - gas: 132737, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8848, - op: "PUSH1", - gas: 132734, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8850, - op: "MSTORE", - gas: 132731, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8851, - op: "DUP1", - gas: 132728, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8852, - op: "SWAP4", - gas: 132725, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8853, - op: "SWAP3", - gas: 132722, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8854, - op: "SWAP2", - gas: 132719, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8855, - op: "SWAP1", - gas: 132716, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8856, - op: "DUP2", - gas: 132713, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8857, - op: "DUP2", - gas: 132710, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - storage: {}, - }, - { - pc: 8858, - op: "MSTORE", - gas: 132707, - gasCost: 9, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8859, - op: "PUSH1", - gas: 132698, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8861, - op: "ADD", - gas: 132695, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8862, - op: "DUP4", - gas: 132692, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8863, - op: "DUP4", - gas: 132689, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8864, - op: "PUSH1", - gas: 132686, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8866, - op: "MUL", - gas: 132683, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8867, - op: "DUP1", - gas: 132678, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8868, - op: "DUP3", - gas: 132675, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8869, - op: "DUP5", - gas: 132672, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 8870, - op: "CALLDATACOPY", - gas: 132669, - gasCost: 15, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8871, - op: "PUSH1", - gas: 132654, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8873, - op: "SWAP3", - gas: 132651, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8874, - op: "ADD", - gas: 132648, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8875, - op: "SWAP2", - gas: 132645, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8876, - op: "SWAP1", - gas: 132642, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8877, - op: "SWAP2", - gas: 132639, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - storage: {}, - }, - { - pc: 8878, - op: "MSTORE", - gas: 132636, - gasCost: 6, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8879, - op: "POP", - gas: 132630, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8880, - op: "PUSH2", - gas: 132628, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8883, - op: "SWAP3", - gas: 132625, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000003f60", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8884, - op: "POP", - gas: 132622, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8885, - op: "POP", - gas: 132620, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8886, - op: "POP", - gas: 132618, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8887, - op: "JUMP", - gas: 132616, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16224, - op: "JUMPDEST", - gas: 132608, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16225, - op: "PUSH1", - gas: 132607, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16227, - op: "PUSH1", - gas: 132604, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16229, - op: "DUP3", - gas: 132601, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16230, - op: "MLOAD", - gas: 132598, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16231, - op: "LT", - gas: 132595, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16232, - op: "ISZERO", - gas: 132592, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16233, - op: "PUSH2", - gas: 132589, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16236, - op: "JUMPI", - gas: 132586, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fd3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16339, - op: "JUMPDEST", - gas: 132576, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16340, - op: "DUP2", - gas: 132575, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16341, - op: "MLOAD", - gas: 132572, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16342, - op: "PUSH8", - gas: 132569, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16351, - op: "DUP2", - gas: 132566, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16352, - op: "GT", - gas: 132563, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16353, - op: "DUP1", - gas: 132560, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16354, - op: "ISZERO", - gas: 132557, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16355, - op: "PUSH2", - gas: 132554, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16358, - op: "JUMPI", - gas: 132551, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003feb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16363, - op: "JUMPDEST", - gas: 132541, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16364, - op: "POP", - gas: 132540, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16365, - op: "PUSH1", - gas: 132538, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16367, - op: "MLOAD", - gas: 132535, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16368, - op: "SWAP1", - gas: 132532, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16369, - op: "DUP1", - gas: 132529, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16370, - op: "DUP3", - gas: 132526, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16371, - op: "MSTORE", - gas: 132523, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16372, - op: "DUP1", - gas: 132520, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16373, - op: "PUSH1", - gas: 132517, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16375, - op: "MUL", - gas: 132514, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16376, - op: "PUSH1", - gas: 132509, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16378, - op: "ADD", - gas: 132506, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16379, - op: "DUP3", - gas: 132503, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16380, - op: "ADD", - gas: 132500, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16381, - op: "PUSH1", - gas: 132497, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16383, - op: "MSTORE", - gas: 132494, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16384, - op: "DUP1", - gas: 132491, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16385, - op: "ISZERO", - gas: 132488, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16386, - op: "PUSH2", - gas: 132485, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16389, - op: "JUMPI", - gas: 132482, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004015", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16390, - op: "DUP2", - gas: 132472, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16391, - op: "PUSH1", - gas: 132469, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16393, - op: "ADD", - gas: 132466, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16394, - op: "PUSH1", - gas: 132463, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16396, - op: "DUP3", - gas: 132460, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16397, - op: "MUL", - gas: 132457, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16398, - op: "DUP1", - gas: 132452, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16399, - op: "CALLDATASIZE", - gas: 132449, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16400, - op: "DUP4", - gas: 132447, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - storage: {}, - }, - { - pc: 16401, - op: "CALLDATACOPY", - gas: 132444, - gasCost: 15, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16402, - op: "ADD", - gas: 132429, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16403, - op: "SWAP1", - gas: 132426, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16404, - op: "POP", - gas: 132423, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16405, - op: "JUMPDEST", - gas: 132421, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16406, - op: "POP", - gas: 132420, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16407, - op: "SWAP1", - gas: 132418, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16408, - op: "POP", - gas: 132415, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16409, - op: "DUP3", - gas: 132413, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16410, - op: "DUP2", - gas: 132410, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16411, - op: "PUSH1", - gas: 132407, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16413, - op: "DUP2", - gas: 132404, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16414, - op: "MLOAD", - gas: 132401, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16415, - op: "DUP2", - gas: 132398, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16416, - op: "LT", - gas: 132395, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16417, - op: "PUSH2", - gas: 132392, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16420, - op: "JUMPI", - gas: 132389, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004026", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16422, - op: "JUMPDEST", - gas: 132379, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16423, - op: "PUSH1", - gas: 132378, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16425, - op: "MUL", - gas: 132375, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16426, - op: "PUSH1", - gas: 132370, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16428, - op: "ADD", - gas: 132367, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16429, - op: "ADD", - gas: 132364, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16430, - op: "DUP2", - gas: 132361, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16431, - op: "DUP2", - gas: 132358, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16432, - op: "MSTORE", - gas: 132355, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16433, - op: "POP", - gas: 132352, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16434, - op: "POP", - gas: 132350, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16435, - op: "PUSH1", - gas: 132348, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16437, - op: "JUMPDEST", - gas: 132345, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16438, - op: "PUSH1", - gas: 132344, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16440, - op: "DUP4", - gas: 132341, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16441, - op: "MLOAD", - gas: 132338, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16442, - op: "SUB", - gas: 132335, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16443, - op: "DUP2", - gas: 132332, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16444, - op: "LT", - gas: 132329, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16445, - op: "ISZERO", - gas: 132326, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16446, - op: "PUSH2", - gas: 132323, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16449, - op: "JUMPI", - gas: 132320, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040be", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16450, - op: "PUSH1", - gas: 132310, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16452, - op: "DUP1", - gas: 132307, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16453, - op: "PUSH2", - gas: 132304, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16456, - op: "DUP8", - gas: 132301, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16457, - op: "DUP7", - gas: 132298, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16458, - op: "DUP6", - gas: 132295, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16459, - op: "DUP2", - gas: 132292, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16460, - op: "MLOAD", - gas: 132289, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16461, - op: "DUP2", - gas: 132286, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16462, - op: "LT", - gas: 132283, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16463, - op: "PUSH2", - gas: 132280, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16466, - op: "JUMPI", - gas: 132277, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004054", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16468, - op: "JUMPDEST", - gas: 132267, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16469, - op: "PUSH1", - gas: 132266, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16471, - op: "MUL", - gas: 132263, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16472, - op: "PUSH1", - gas: 132258, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16474, - op: "ADD", - gas: 132255, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16475, - op: "ADD", - gas: 132252, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16476, - op: "MLOAD", - gas: 132249, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16477, - op: "DUP8", - gas: 132246, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16478, - op: "DUP7", - gas: 132243, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16479, - op: "PUSH1", - gas: 132240, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16481, - op: "ADD", - gas: 132237, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16482, - op: "DUP2", - gas: 132234, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16483, - op: "MLOAD", - gas: 132231, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16484, - op: "DUP2", - gas: 132228, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16485, - op: "LT", - gas: 132225, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16486, - op: "PUSH2", - gas: 132222, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16489, - op: "JUMPI", - gas: 132219, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000406b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16491, - op: "JUMPDEST", - gas: 132209, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16492, - op: "PUSH1", - gas: 132208, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16494, - op: "MUL", - gas: 132205, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16495, - op: "PUSH1", - gas: 132200, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16497, - op: "ADD", - gas: 132197, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16498, - op: "ADD", - gas: 132194, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16499, - op: "MLOAD", - gas: 132191, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16500, - op: "PUSH2", - gas: 132188, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16503, - op: "JUMP", - gas: 132185, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000052eb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21227, - op: "JUMPDEST", - gas: 132177, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21228, - op: "PUSH1", - gas: 132176, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21230, - op: "DUP1", - gas: 132173, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21231, - op: "PUSH1", - gas: 132170, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21233, - op: "PUSH2", - gas: 132167, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21236, - op: "DUP6", - gas: 132164, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21237, - op: "DUP6", - gas: 132161, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21238, - op: "PUSH2", - gas: 132158, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21241, - op: "JUMP", - gas: 132155, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004d9f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19871, - op: "JUMPDEST", - gas: 132147, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19872, - op: "PUSH1", - gas: 132146, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19874, - op: "DUP1", - gas: 132143, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19875, - op: "DUP3", - gas: 132140, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19876, - op: "PUSH20", - gas: 132137, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19897, - op: "AND", - gas: 132134, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19898, - op: "DUP5", - gas: 132131, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19899, - op: "PUSH20", - gas: 132128, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19920, - op: "AND", - gas: 132125, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19921, - op: "EQ", - gas: 132122, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19922, - op: "ISZERO", - gas: 132119, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19923, - op: "PUSH2", - gas: 132116, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19926, - op: "JUMPI", - gas: 132113, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e27", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20007, - op: "JUMPDEST", - gas: 132103, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20008, - op: "DUP3", - gas: 132102, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20009, - op: "PUSH20", - gas: 132099, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20030, - op: "AND", - gas: 132096, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20031, - op: "DUP5", - gas: 132093, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20032, - op: "PUSH20", - gas: 132090, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20053, - op: "AND", - gas: 132087, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20054, - op: "LT", - gas: 132084, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20055, - op: "PUSH2", - gas: 132081, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20058, - op: "JUMPI", - gas: 132078, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004e61", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20059, - op: "DUP3", - gas: 132068, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20060, - op: "DUP5", - gas: 132065, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20061, - op: "PUSH2", - gas: 132062, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20064, - op: "JUMP", - gas: 132059, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000004e64", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20068, - op: "JUMPDEST", - gas: 132051, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20069, - op: "SWAP1", - gas: 132050, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20070, - op: "SWAP3", - gas: 132047, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20071, - op: "POP", - gas: 132044, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20072, - op: "SWAP1", - gas: 132042, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20073, - op: "POP", - gas: 132039, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20074, - op: "PUSH20", - gas: 132037, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20095, - op: "DUP3", - gas: 132034, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20096, - op: "AND", - gas: 132031, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20097, - op: "PUSH2", - gas: 132028, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20100, - op: "JUMPI", - gas: 132025, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004eeb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20203, - op: "JUMPDEST", - gas: 132015, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20204, - op: "SWAP3", - gas: 132014, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20205, - op: "POP", - gas: 132011, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20206, - op: "SWAP3", - gas: 132009, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20207, - op: "SWAP1", - gas: 132006, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000052fa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20208, - op: "POP", - gas: 132003, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000052fa", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20209, - op: "JUMP", - gas: 132001, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000052fa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21242, - op: "JUMPDEST", - gas: 131993, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21243, - op: "POP", - gas: 131992, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21244, - op: "SWAP1", - gas: 131990, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21245, - op: "POP", - gas: 131987, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21246, - op: "PUSH1", - gas: 131985, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21248, - op: "DUP1", - gas: 131982, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21249, - op: "PUSH2", - gas: 131979, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21252, - op: "DUP9", - gas: 131976, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21253, - op: "DUP9", - gas: 131973, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21254, - op: "DUP9", - gas: 131970, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21255, - op: "PUSH2", - gas: 131967, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21258, - op: "JUMP", - gas: 131964, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000040c6", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16582, - op: "JUMPDEST", - gas: 131956, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16583, - op: "PUSH1", - gas: 131955, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16585, - op: "DUP1", - gas: 131952, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16586, - op: "PUSH1", - gas: 131949, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16588, - op: "PUSH2", - gas: 131946, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16591, - op: "DUP6", - gas: 131943, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16592, - op: "DUP6", - gas: 131940, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16593, - op: "PUSH2", - gas: 131937, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16596, - op: "JUMP", - gas: 131934, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004d9f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19871, - op: "JUMPDEST", - gas: 131926, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19872, - op: "PUSH1", - gas: 131925, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19874, - op: "DUP1", - gas: 131922, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19875, - op: "DUP3", - gas: 131919, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19876, - op: "PUSH20", - gas: 131916, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19897, - op: "AND", - gas: 131913, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19898, - op: "DUP5", - gas: 131910, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19899, - op: "PUSH20", - gas: 131907, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19920, - op: "AND", - gas: 131904, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19921, - op: "EQ", - gas: 131901, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19922, - op: "ISZERO", - gas: 131898, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19923, - op: "PUSH2", - gas: 131895, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 19926, - op: "JUMPI", - gas: 131892, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e27", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20007, - op: "JUMPDEST", - gas: 131882, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20008, - op: "DUP3", - gas: 131881, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20009, - op: "PUSH20", - gas: 131878, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20030, - op: "AND", - gas: 131875, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20031, - op: "DUP5", - gas: 131872, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20032, - op: "PUSH20", - gas: 131869, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20053, - op: "AND", - gas: 131866, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20054, - op: "LT", - gas: 131863, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20055, - op: "PUSH2", - gas: 131860, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20058, - op: "JUMPI", - gas: 131857, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004e61", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20059, - op: "DUP3", - gas: 131847, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20060, - op: "DUP5", - gas: 131844, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20061, - op: "PUSH2", - gas: 131841, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20064, - op: "JUMP", - gas: 131838, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000004e64", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20068, - op: "JUMPDEST", - gas: 131830, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20069, - op: "SWAP1", - gas: 131829, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20070, - op: "SWAP3", - gas: 131826, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20071, - op: "POP", - gas: 131823, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20072, - op: "SWAP1", - gas: 131821, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20073, - op: "POP", - gas: 131818, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20074, - op: "PUSH20", - gas: 131816, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20095, - op: "DUP3", - gas: 131813, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20096, - op: "AND", - gas: 131810, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20097, - op: "PUSH2", - gas: 131807, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20100, - op: "JUMPI", - gas: 131804, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004eeb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20203, - op: "JUMPDEST", - gas: 131794, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20204, - op: "SWAP3", - gas: 131793, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20205, - op: "POP", - gas: 131790, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20206, - op: "SWAP3", - gas: 131788, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20207, - op: "SWAP1", - gas: 131785, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000040d5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20208, - op: "POP", - gas: 131782, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000040d5", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20209, - op: "JUMP", - gas: 131780, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000040d5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16597, - op: "JUMPDEST", - gas: 131772, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16598, - op: "PUSH1", - gas: 131771, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16600, - op: "DUP1", - gas: 131768, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16601, - op: "MLOAD", - gas: 131765, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16602, - op: "PUSH32", - gas: 131762, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16635, - op: "PUSH1", - gas: 131759, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16637, - op: "SWAP5", - gas: 131756, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16638, - op: "DUP6", - gas: 131753, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16639, - op: "SHL", - gas: 131750, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16640, - op: "DUP2", - gas: 131747, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16641, - op: "AND", - gas: 131744, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16642, - op: "PUSH1", - gas: 131741, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16644, - op: "DUP1", - gas: 131738, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16645, - op: "DUP5", - gas: 131735, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16646, - op: "ADD", - gas: 131732, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16647, - op: "SWAP2", - gas: 131729, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16648, - op: "SWAP1", - gas: 131726, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000020", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16649, - op: "SWAP2", - gas: 131723, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16650, - op: "MSTORE", - gas: 131720, - gasCost: 9, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16651, - op: "SWAP4", - gas: 131711, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16652, - op: "DUP6", - gas: 131708, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16653, - op: "SHL", - gas: 131705, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16654, - op: "DUP2", - gas: 131702, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16655, - op: "AND", - gas: 131699, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16656, - op: "PUSH1", - gas: 131696, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16658, - op: "DUP4", - gas: 131693, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16659, - op: "ADD", - gas: 131690, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16660, - op: "MSTORE", - gas: 131687, - gasCost: 6, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000174", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16661, - op: "DUP3", - gas: 131681, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16662, - op: "MLOAD", - gas: 131678, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16663, - op: "PUSH1", - gas: 131675, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16665, - op: "DUP2", - gas: 131672, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16666, - op: "DUP5", - gas: 131669, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16667, - op: "SUB", - gas: 131666, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16668, - op: "ADD", - gas: 131663, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16669, - op: "DUP2", - gas: 131660, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16670, - op: "MSTORE", - gas: 131657, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16671, - op: "PUSH1", - gas: 131654, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16673, - op: "DUP4", - gas: 131651, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000048", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16674, - op: "ADD", - gas: 131648, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16675, - op: "DUP5", - gas: 131645, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16676, - op: "MSTORE", - gas: 131642, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16677, - op: "DUP1", - gas: 131639, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16678, - op: "MLOAD", - gas: 131636, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16679, - op: "SWAP1", - gas: 131633, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16680, - op: "DUP6", - gas: 131630, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16681, - op: "ADD", - gas: 131627, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16682, - op: "SHA3", - gas: 131624, - gasCost: 42, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000160", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16683, - op: "PUSH32", - gas: 131582, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16716, - op: "PUSH1", - gas: 131579, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16718, - op: "DUP5", - gas: 131576, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16719, - op: "ADD", - gas: 131573, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16720, - op: "MSTORE", - gas: 131570, - gasCost: 9, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16721, - op: "SWAP11", - gas: 131561, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16722, - op: "SWAP1", - gas: 131558, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16723, - op: "SWAP5", - gas: 131555, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16724, - op: "SHL", - gas: 131552, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16725, - op: "SWAP1", - gas: 131549, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16726, - op: "SWAP4", - gas: 131546, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16727, - op: "AND", - gas: 131543, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16728, - op: "PUSH1", - gas: 131540, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16730, - op: "DUP5", - gas: 131537, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16731, - op: "ADD", - gas: 131534, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16732, - op: "MSTORE", - gas: 131531, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16733, - op: "PUSH1", - gas: 131528, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16735, - op: "DUP4", - gas: 131525, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16736, - op: "ADD", - gas: 131522, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16737, - op: "SWAP9", - gas: 131519, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001bd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16738, - op: "SWAP1", - gas: 131516, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001bd", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16739, - op: "SWAP9", - gas: 131513, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001bd", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16740, - op: "MSTORE", - gas: 131510, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "00000000000000000000000000000000000000000000000000000000000001bd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16741, - op: "PUSH32", - gas: 131507, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16774, - op: "PUSH1", - gas: 131504, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16776, - op: "DUP1", - gas: 131501, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16777, - op: "DUP5", - gas: 131498, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16778, - op: "ADD", - gas: 131495, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16779, - op: "SWAP2", - gas: 131492, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000001dd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16780, - op: "SWAP1", - gas: 131489, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001dd", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16781, - op: "SWAP2", - gas: 131486, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001dd", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16782, - op: "MSTORE", - gas: 131483, - gasCost: 6, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "00000000000000000000000000000000000000000000000000000000000001dd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16783, - op: "DUP9", - gas: 131477, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16784, - op: "MLOAD", - gas: 131474, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16785, - op: "DUP1", - gas: 131471, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16786, - op: "DUP5", - gas: 131468, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16787, - op: "SUB", - gas: 131465, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16788, - op: "SWAP1", - gas: 131462, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16789, - op: "SWAP2", - gas: 131459, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16790, - op: "ADD", - gas: 131456, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16791, - op: "DUP2", - gas: 131453, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16792, - op: "MSTORE", - gas: 131450, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16793, - op: "PUSH1", - gas: 131447, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16795, - op: "SWAP1", - gas: 131444, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000000bd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16796, - op: "SWAP3", - gas: 131441, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16797, - op: "ADD", - gas: 131438, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000140", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16798, - op: "SWAP1", - gas: 131435, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16799, - op: "SWAP8", - gas: 131432, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16800, - op: "MSTORE", - gas: 131429, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16801, - op: "DUP1", - gas: 131426, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16802, - op: "MLOAD", - gas: 131423, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16803, - op: "SWAP7", - gas: 131420, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16804, - op: "ADD", - gas: 131417, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16805, - op: "SWAP6", - gas: 131414, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16806, - op: "SWAP1", - gas: 131411, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001a8", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16807, - op: "SWAP6", - gas: 131408, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001a8", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16808, - op: "SHA3", - gas: 131405, - gasCost: 48, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000001a8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16809, - op: "SWAP6", - gas: 131357, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16810, - op: "SWAP5", - gas: 131354, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16811, - op: "POP", - gas: 131351, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16812, - op: "POP", - gas: 131349, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16813, - op: "POP", - gas: 131347, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16814, - op: "POP", - gas: 131345, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16815, - op: "POP", - gas: 131343, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16816, - op: "JUMP", - gas: 131341, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21259, - op: "JUMPDEST", - gas: 131333, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21260, - op: "PUSH20", - gas: 131332, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21281, - op: "AND", - gas: 131329, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21282, - op: "PUSH4", - gas: 131326, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21287, - op: "PUSH1", - gas: 131323, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21289, - op: "MLOAD", - gas: 131320, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21290, - op: "DUP2", - gas: 131317, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21291, - op: "PUSH4", - gas: 131314, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21296, - op: "AND", - gas: 131311, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21297, - op: "PUSH1", - gas: 131308, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21299, - op: "SHL", - gas: 131305, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21300, - op: "DUP2", - gas: 131302, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0902f1ac00000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21301, - op: "MSTORE", - gas: 131299, - gasCost: 6, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21302, - op: "PUSH1", - gas: 131293, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21304, - op: "ADD", - gas: 131290, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21305, - op: "PUSH1", - gas: 131287, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21307, - op: "PUSH1", - gas: 131284, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21309, - op: "MLOAD", - gas: 131281, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21310, - op: "DUP1", - gas: 131278, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21311, - op: "DUP4", - gas: 131275, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21312, - op: "SUB", - gas: 131272, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21313, - op: "DUP2", - gas: 131269, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21314, - op: "DUP7", - gas: 131266, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21315, - op: "DUP1", - gas: 131263, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21316, - op: "EXTCODESIZE", - gas: 131260, - gasCost: 700, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21317, - op: "ISZERO", - gas: 130560, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000002c1d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21318, - op: "DUP1", - gas: 130557, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21319, - op: "ISZERO", - gas: 130554, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21320, - op: "PUSH2", - gas: 130551, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21323, - op: "JUMPI", - gas: 130548, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005350", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21328, - op: "JUMPDEST", - gas: 130538, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21329, - op: "POP", - gas: 130537, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21330, - op: "GAS", - gas: 130535, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21331, - op: "STATICCALL", - gas: 130533, - gasCost: 128505, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000001fde5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 0, - op: "PUSH1", - gas: 127799, - gasCost: 3, - depth: 2, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 127796, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 127793, - gasCost: 12, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 127781, - gasCost: 2, - depth: 2, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 127779, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 127776, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 127773, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 127770, - gasCost: 10, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 127760, - gasCost: 1, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 127759, - gasCost: 2, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 127757, - gasCost: 3, - depth: 2, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 127754, - gasCost: 2, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 127752, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 127749, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 127746, - gasCost: 10, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 127736, - gasCost: 3, - depth: 2, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 127733, - gasCost: 3, - depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 127730, - gasCost: 3, - depth: 2, - stack: [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 127727, - gasCost: 3, - depth: 2, - stack: [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 127724, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 127721, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "GT", - gas: 127718, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000006a627842", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 127715, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 127712, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 249, - op: "JUMPDEST", - gas: 127702, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 250, - op: "DUP1", - gas: 127701, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 251, - op: "PUSH4", - gas: 127698, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 256, - op: "GT", - gas: 127695, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000023b872dd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 257, - op: "PUSH2", - gas: 127692, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 260, - op: "JUMPI", - gas: 127689, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 358, - op: "JUMPDEST", - gas: 127679, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 359, - op: "DUP1", - gas: 127678, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 360, - op: "PUSH4", - gas: 127675, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 365, - op: "GT", - gas: 127672, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000095ea7b3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 366, - op: "PUSH2", - gas: 127669, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 369, - op: "JUMPI", - gas: 127666, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 407, - op: "JUMPDEST", - gas: 127656, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 408, - op: "DUP1", - gas: 127655, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 409, - op: "PUSH4", - gas: 127652, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 414, - op: "EQ", - gas: 127649, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 415, - op: "PUSH2", - gas: 127646, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 418, - op: "JUMPI", - gas: 127643, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001be", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 419, - op: "DUP1", - gas: 127633, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 420, - op: "PUSH4", - gas: 127630, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 425, - op: "EQ", - gas: 127627, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000006fdde03", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 426, - op: "PUSH2", - gas: 127624, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 429, - op: "JUMPI", - gas: 127621, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000259", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 430, - op: "DUP1", - gas: 127611, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 431, - op: "PUSH4", - gas: 127608, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 436, - op: "EQ", - gas: 127605, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 437, - op: "PUSH2", - gas: 127602, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 440, - op: "JUMPI", - gas: 127599, - gasCost: 10, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002d6", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 726, - op: "JUMPDEST", - gas: 127589, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 727, - op: "PUSH2", - gas: 127588, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 730, - op: "PUSH2", - gas: 127585, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 733, - op: "JUMP", - gas: 127582, - gasCost: 8, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000d90", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 3472, - op: "JUMPDEST", - gas: 127574, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 3473, - op: "PUSH1", - gas: 127573, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 3475, - op: "SLOAD", - gas: 127570, - gasCost: 800, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000008", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3476, - op: "PUSH14", - gas: 126770, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3491, - op: "DUP1", - gas: 126767, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3492, - op: "DUP3", - gas: 126764, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3493, - op: "AND", - gas: 126761, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3494, - op: "SWAP3", - gas: 126758, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3495, - op: "PUSH15", - gas: 126755, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3511, - op: "DUP4", - gas: 126752, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3512, - op: "DIV", - gas: 126749, - gasCost: 5, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3513, - op: "SWAP1", - gas: 126744, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3514, - op: "SWAP2", - gas: 126741, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3515, - op: "AND", - gas: 126738, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3516, - op: "SWAP2", - gas: 126735, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3517, - op: "PUSH29", - gas: 126732, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3547, - op: "SWAP1", - gas: 126729, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "0000000100000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3548, - op: "DIV", - gas: 126726, - gasCost: 5, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000100000000000000000000000000000000000000000000000000000000", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3549, - op: "PUSH4", - gas: 126721, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3554, - op: "AND", - gas: 126718, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3555, - op: "SWAP1", - gas: 126715, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 3556, - op: "JUMP", - gas: 126712, - gasCost: 8, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000000002de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 734, - op: "JUMPDEST", - gas: 126704, - gasCost: 1, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 735, - op: "PUSH1", - gas: 126703, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 737, - op: "DUP1", - gas: 126700, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 738, - op: "MLOAD", - gas: 126697, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 739, - op: "PUSH14", - gas: 126694, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 754, - op: "SWAP5", - gas: 126691, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 755, - op: "DUP6", - gas: 126688, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 756, - op: "AND", - gas: 126685, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 757, - op: "DUP2", - gas: 126682, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 758, - op: "MSTORE", - gas: 126679, - gasCost: 9, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 759, - op: "SWAP3", - gas: 126670, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 760, - op: "SWAP1", - gas: 126667, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 761, - op: "SWAP4", - gas: 126664, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 762, - op: "AND", - gas: 126661, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 763, - op: "PUSH1", - gas: 126658, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 765, - op: "DUP4", - gas: 126655, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 766, - op: "ADD", - gas: 126652, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 767, - op: "MSTORE", - gas: 126649, - gasCost: 6, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 768, - op: "PUSH4", - gas: 126643, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 773, - op: "AND", - gas: 126640, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 774, - op: "DUP2", - gas: 126637, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 775, - op: "DUP4", - gas: 126634, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 776, - op: "ADD", - gas: 126631, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 777, - op: "MSTORE", - gas: 126628, - gasCost: 6, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 778, - op: "SWAP1", - gas: 126622, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 779, - op: "MLOAD", - gas: 126619, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 780, - op: "SWAP1", - gas: 126616, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 781, - op: "DUP2", - gas: 126613, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 782, - op: "SWAP1", - gas: 126610, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 783, - op: "SUB", - gas: 126607, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 784, - op: "PUSH1", - gas: 126604, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 786, - op: "ADD", - gas: 126601, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 787, - op: "SWAP1", - gas: 126598, - gasCost: 3, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 788, - op: "RETURN", - gas: 126595, - gasCost: 0, - depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, - }, - { - pc: 21332, - op: "ISZERO", - gas: 128623, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21333, - op: "DUP1", - gas: 128620, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21334, - op: "ISZERO", - gas: 128617, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21335, - op: "PUSH2", - gas: 128614, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21338, - op: "JUMPI", - gas: 128611, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005364", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21348, - op: "JUMPDEST", - gas: 128601, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21349, - op: "POP", - gas: 128600, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21350, - op: "POP", - gas: 128598, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21351, - op: "POP", - gas: 128596, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21352, - op: "POP", - gas: 128594, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21353, - op: "PUSH1", - gas: 128592, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21355, - op: "MLOAD", - gas: 128589, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21356, - op: "RETURNDATASIZE", - gas: 128586, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21357, - op: "PUSH1", - gas: 128584, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21359, - op: "DUP2", - gas: 128581, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21360, - op: "LT", - gas: 128578, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21361, - op: "ISZERO", - gas: 128575, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21362, - op: "PUSH2", - gas: 128572, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21365, - op: "JUMPI", - gas: 128569, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000537a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21370, - op: "JUMPDEST", - gas: 128559, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21371, - op: "POP", - gas: 128558, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21372, - op: "DUP1", - gas: 128556, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21373, - op: "MLOAD", - gas: 128553, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21374, - op: "PUSH1", - gas: 128550, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21376, - op: "SWAP1", - gas: 128547, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21377, - op: "SWAP2", - gas: 128544, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21378, - op: "ADD", - gas: 128541, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21379, - op: "MLOAD", - gas: 128538, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000021d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21380, - op: "PUSH14", - gas: 128535, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21395, - op: "SWAP2", - gas: 128532, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21396, - op: "DUP3", - gas: 128529, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21397, - op: "AND", - gas: 128526, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21398, - op: "SWAP4", - gas: 128523, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21399, - op: "POP", - gas: 128520, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21400, - op: "AND", - gas: 128518, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21401, - op: "SWAP1", - gas: 128515, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21402, - op: "POP", - gas: 128512, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21403, - op: "PUSH20", - gas: 128510, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21424, - op: "DUP8", - gas: 128507, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21425, - op: "DUP2", - gas: 128504, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21426, - op: "AND", - gas: 128501, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21427, - op: "SWAP1", - gas: 128498, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21428, - op: "DUP5", - gas: 128495, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21429, - op: "AND", - gas: 128492, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21430, - op: "EQ", - gas: 128489, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21431, - op: "PUSH2", - gas: 128486, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21434, - op: "JUMPI", - gas: 128483, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000053c1", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21435, - op: "DUP1", - gas: 128473, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21436, - op: "DUP3", - gas: 128470, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21437, - op: "PUSH2", - gas: 128467, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21440, - op: "JUMP", - gas: 128464, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000053c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21444, - op: "JUMPDEST", - gas: 128456, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21445, - op: "SWAP1", - gas: 128455, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21446, - op: "SWAP10", - gas: 128452, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21447, - op: "SWAP1", - gas: 128449, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21448, - op: "SWAP9", - gas: 128446, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21449, - op: "POP", - gas: 128443, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21450, - op: "SWAP7", - gas: 128441, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21451, - op: "POP", - gas: 128438, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21452, - op: "POP", - gas: 128436, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21453, - op: "POP", - gas: 128434, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21454, - op: "POP", - gas: 128432, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21455, - op: "POP", - gas: 128430, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21456, - op: "POP", - gas: 128428, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21457, - op: "POP", - gas: 128426, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21458, - op: "JUMP", - gas: 128424, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16504, - op: "JUMPDEST", - gas: 128416, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16505, - op: "SWAP2", - gas: 128415, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16506, - op: "POP", - gas: 128412, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16507, - op: "SWAP2", - gas: 128410, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16508, - op: "POP", - gas: 128407, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16509, - op: "PUSH2", - gas: 128405, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16512, - op: "DUP5", - gas: 128402, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16513, - op: "DUP5", - gas: 128399, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16514, - op: "DUP2", - gas: 128396, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16515, - op: "MLOAD", - gas: 128393, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16516, - op: "DUP2", - gas: 128390, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16517, - op: "LT", - gas: 128387, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16518, - op: "PUSH2", - gas: 128384, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16521, - op: "JUMPI", - gas: 128381, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000408b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16523, - op: "JUMPDEST", - gas: 128371, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16524, - op: "PUSH1", - gas: 128370, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16526, - op: "MUL", - gas: 128367, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16527, - op: "PUSH1", - gas: 128362, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16529, - op: "ADD", - gas: 128359, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16530, - op: "ADD", - gas: 128356, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16531, - op: "MLOAD", - gas: 128353, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16532, - op: "DUP4", - gas: 128350, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16533, - op: "DUP4", - gas: 128347, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16534, - op: "PUSH2", - gas: 128344, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16537, - op: "JUMP", - gas: 128341, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000003e3c", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15932, - op: "JUMPDEST", - gas: 128333, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15933, - op: "PUSH1", - gas: 128332, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15935, - op: "DUP1", - gas: 128329, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15936, - op: "DUP5", - gas: 128326, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15937, - op: "GT", - gas: 128323, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15938, - op: "PUSH2", - gas: 128320, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 15941, - op: "JUMPI", - gas: 128317, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003e96", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16022, - op: "JUMPDEST", - gas: 128307, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16023, - op: "PUSH1", - gas: 128306, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16025, - op: "DUP4", - gas: 128303, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16026, - op: "GT", - gas: 128300, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16027, - op: "DUP1", - gas: 128297, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16028, - op: "ISZERO", - gas: 128294, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16029, - op: "PUSH2", - gas: 128291, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16032, - op: "JUMPI", - gas: 128288, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ea6", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16033, - op: "POP", - gas: 128278, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16034, - op: "PUSH1", - gas: 128276, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16036, - op: "DUP3", - gas: 128273, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16037, - op: "GT", - gas: 128270, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16038, - op: "JUMPDEST", - gas: 128267, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16039, - op: "PUSH2", - gas: 128266, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16042, - op: "JUMPI", - gas: 128263, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003efb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16123, - op: "JUMPDEST", - gas: 128253, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16124, - op: "PUSH1", - gas: 128252, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16126, - op: "PUSH2", - gas: 128249, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16129, - op: "DUP6", - gas: 128246, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16130, - op: "PUSH2", - gas: 128243, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16133, - op: "PUSH4", - gas: 128240, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16138, - op: "PUSH2", - gas: 128237, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16141, - op: "AND", - gas: 128234, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16142, - op: "JUMP", - gas: 128231, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20979, - op: "JUMPDEST", - gas: 128223, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20980, - op: "PUSH1", - gas: 128222, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20982, - op: "DUP2", - gas: 128219, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20983, - op: "ISZERO", - gas: 128216, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20984, - op: "DUP1", - gas: 128213, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20985, - op: "PUSH2", - gas: 128210, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20988, - op: "JUMPI", - gas: 128207, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20989, - op: "POP", - gas: 128197, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20990, - op: "POP", - gas: 128195, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20991, - op: "DUP1", - gas: 128193, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20992, - op: "DUP3", - gas: 128190, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20993, - op: "MUL", - gas: 128187, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20994, - op: "DUP3", - gas: 128182, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20995, - op: "DUP3", - gas: 128179, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20996, - op: "DUP3", - gas: 128176, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20997, - op: "DUP2", - gas: 128173, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20998, - op: "PUSH2", - gas: 128170, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21001, - op: "JUMPI", - gas: 128167, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000000000520b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21003, - op: "JUMPDEST", - gas: 128157, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21004, - op: "DIV", - gas: 128156, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21005, - op: "EQ", - gas: 128151, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21006, - op: "JUMPDEST", - gas: 128148, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21007, - op: "PUSH2", - gas: 128147, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21010, - op: "JUMPI", - gas: 128144, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5012, - op: "JUMPDEST", - gas: 128134, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5013, - op: "SWAP3", - gas: 128133, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5014, - op: "SWAP2", - gas: 128130, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000003f0f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5015, - op: "POP", - gas: 128127, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5016, - op: "POP", - gas: 128125, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000000000000000003e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5017, - op: "JUMP", - gas: 128123, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16143, - op: "JUMPDEST", - gas: 128115, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16144, - op: "SWAP1", - gas: 128114, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16145, - op: "POP", - gas: 128111, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16146, - op: "PUSH1", - gas: 128109, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16148, - op: "PUSH2", - gas: 128106, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16151, - op: "DUP3", - gas: 128103, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16152, - op: "DUP6", - gas: 128100, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16153, - op: "PUSH4", - gas: 128097, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16158, - op: "PUSH2", - gas: 128094, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16161, - op: "AND", - gas: 128091, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16162, - op: "JUMP", - gas: 128088, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20979, - op: "JUMPDEST", - gas: 128080, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20980, - op: "PUSH1", - gas: 128079, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20982, - op: "DUP2", - gas: 128076, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20983, - op: "ISZERO", - gas: 128073, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20984, - op: "DUP1", - gas: 128070, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20985, - op: "PUSH2", - gas: 128067, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20988, - op: "JUMPI", - gas: 128064, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20989, - op: "POP", - gas: 128054, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20990, - op: "POP", - gas: 128052, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20991, - op: "DUP1", - gas: 128050, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20992, - op: "DUP3", - gas: 128047, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20993, - op: "MUL", - gas: 128044, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20994, - op: "DUP3", - gas: 128039, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20995, - op: "DUP3", - gas: 128036, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20996, - op: "DUP3", - gas: 128033, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20997, - op: "DUP2", - gas: 128030, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20998, - op: "PUSH2", - gas: 128027, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21001, - op: "JUMPI", - gas: 128024, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000520b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21003, - op: "JUMPDEST", - gas: 128014, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21004, - op: "DIV", - gas: 128013, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21005, - op: "EQ", - gas: 128008, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21006, - op: "JUMPDEST", - gas: 128005, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21007, - op: "PUSH2", - gas: 128004, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21010, - op: "JUMPI", - gas: 128001, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5012, - op: "JUMPDEST", - gas: 127991, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5013, - op: "SWAP3", - gas: 127990, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5014, - op: "SWAP2", - gas: 127987, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000003f23", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5015, - op: "POP", - gas: 127984, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5016, - op: "POP", - gas: 127982, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5017, - op: "JUMP", - gas: 127980, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16163, - op: "JUMPDEST", - gas: 127972, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16164, - op: "SWAP1", - gas: 127971, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16165, - op: "POP", - gas: 127968, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16166, - op: "PUSH1", - gas: 127966, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16168, - op: "PUSH2", - gas: 127963, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16171, - op: "DUP4", - gas: 127960, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16172, - op: "PUSH2", - gas: 127957, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16175, - op: "DUP9", - gas: 127954, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16176, - op: "PUSH2", - gas: 127951, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16179, - op: "PUSH4", - gas: 127948, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16184, - op: "PUSH2", - gas: 127945, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16187, - op: "AND", - gas: 127942, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16188, - op: "JUMP", - gas: 127939, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000051f3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20979, - op: "JUMPDEST", - gas: 127931, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20980, - op: "PUSH1", - gas: 127930, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20982, - op: "DUP2", - gas: 127927, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20983, - op: "ISZERO", - gas: 127924, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20984, - op: "DUP1", - gas: 127921, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20985, - op: "PUSH2", - gas: 127918, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20988, - op: "JUMPI", - gas: 127915, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20989, - op: "POP", - gas: 127905, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20990, - op: "POP", - gas: 127903, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20991, - op: "DUP1", - gas: 127901, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20992, - op: "DUP3", - gas: 127898, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20993, - op: "MUL", - gas: 127895, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20994, - op: "DUP3", - gas: 127890, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20995, - op: "DUP3", - gas: 127887, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20996, - op: "DUP3", - gas: 127884, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20997, - op: "DUP2", - gas: 127881, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 20998, - op: "PUSH2", - gas: 127878, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21001, - op: "JUMPI", - gas: 127875, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000000000000520b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21003, - op: "JUMPDEST", - gas: 127865, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21004, - op: "DIV", - gas: 127864, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21005, - op: "EQ", - gas: 127859, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21006, - op: "JUMPDEST", - gas: 127856, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21007, - op: "PUSH2", - gas: 127855, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21010, - op: "JUMPI", - gas: 127852, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5012, - op: "JUMPDEST", - gas: 127842, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5013, - op: "SWAP3", - gas: 127841, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5014, - op: "SWAP2", - gas: 127838, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000003f3d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5015, - op: "POP", - gas: 127835, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5016, - op: "POP", - gas: 127833, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "00000000000000000000000000000000000000000000000000000000000003e8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5017, - op: "JUMP", - gas: 127831, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16189, - op: "JUMPDEST", - gas: 127823, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16190, - op: "SWAP1", - gas: 127822, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16191, - op: "PUSH4", - gas: 127819, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16196, - op: "PUSH2", - gas: 127816, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16199, - op: "AND", - gas: 127813, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000005279", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16200, - op: "JUMP", - gas: 127810, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000005279", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21113, - op: "JUMPDEST", - gas: 127802, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21114, - op: "DUP1", - gas: 127801, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21115, - op: "DUP3", - gas: 127798, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21116, - op: "ADD", - gas: 127795, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21117, - op: "DUP3", - gas: 127792, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21118, - op: "DUP2", - gas: 127789, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21119, - op: "LT", - gas: 127786, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21120, - op: "ISZERO", - gas: 127783, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21121, - op: "PUSH2", - gas: 127780, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21124, - op: "JUMPI", - gas: 127777, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5012, - op: "JUMPDEST", - gas: 127767, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5013, - op: "SWAP3", - gas: 127766, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5014, - op: "SWAP2", - gas: 127763, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f49", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5015, - op: "POP", - gas: 127760, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5016, - op: "POP", - gas: 127758, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 5017, - op: "JUMP", - gas: 127756, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16201, - op: "JUMPDEST", - gas: 127748, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16202, - op: "SWAP1", - gas: 127747, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16203, - op: "POP", - gas: 127744, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16204, - op: "DUP1", - gas: 127742, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16205, - op: "DUP3", - gas: 127739, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16206, - op: "DUP2", - gas: 127736, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16207, - op: "PUSH2", - gas: 127733, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16210, - op: "JUMPI", - gas: 127730, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f54", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16212, - op: "JUMPDEST", - gas: 127720, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16213, - op: "DIV", - gas: 127719, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16214, - op: "SWAP8", - gas: 127714, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16215, - op: "SWAP7", - gas: 127711, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "000000000000000000000000000000000000000000000000000000000000409a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16216, - op: "POP", - gas: 127708, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16217, - op: "POP", - gas: 127706, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16218, - op: "POP", - gas: 127704, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16219, - op: "POP", - gas: 127702, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16220, - op: "POP", - gas: 127700, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16221, - op: "POP", - gas: 127698, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16222, - op: "POP", - gas: 127696, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16223, - op: "JUMP", - gas: 127694, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16538, - op: "JUMPDEST", - gas: 127686, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16539, - op: "DUP5", - gas: 127685, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16540, - op: "DUP5", - gas: 127682, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16541, - op: "PUSH1", - gas: 127679, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16543, - op: "ADD", - gas: 127676, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16544, - op: "DUP2", - gas: 127673, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16545, - op: "MLOAD", - gas: 127670, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16546, - op: "DUP2", - gas: 127667, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16547, - op: "LT", - gas: 127664, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16548, - op: "PUSH2", - gas: 127661, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16551, - op: "JUMPI", - gas: 127658, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000040a9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16553, - op: "JUMPDEST", - gas: 127648, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16554, - op: "PUSH1", - gas: 127647, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16556, - op: "SWAP1", - gas: 127644, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16557, - op: "DUP2", - gas: 127641, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16558, - op: "MUL", - gas: 127638, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16559, - op: "SWAP2", - gas: 127633, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16560, - op: "SWAP1", - gas: 127630, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16561, - op: "SWAP2", - gas: 127627, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16562, - op: "ADD", - gas: 127624, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16563, - op: "ADD", - gas: 127621, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16564, - op: "MSTORE", - gas: 127618, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16565, - op: "POP", - gas: 127615, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16566, - op: "POP", - gas: 127613, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16567, - op: "PUSH1", - gas: 127611, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16569, - op: "ADD", - gas: 127608, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16570, - op: "PUSH2", - gas: 127605, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16573, - op: "JUMP", - gas: 127602, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004035", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16437, - op: "JUMPDEST", - gas: 127594, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16438, - op: "PUSH1", - gas: 127593, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16440, - op: "DUP4", - gas: 127590, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16441, - op: "MLOAD", - gas: 127587, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16442, - op: "SUB", - gas: 127584, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16443, - op: "DUP2", - gas: 127581, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16444, - op: "LT", - gas: 127578, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16445, - op: "ISZERO", - gas: 127575, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16446, - op: "PUSH2", - gas: 127572, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16449, - op: "JUMPI", - gas: 127569, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000040be", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16574, - op: "JUMPDEST", - gas: 127559, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16575, - op: "POP", - gas: 127558, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16576, - op: "SWAP4", - gas: 127556, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16577, - op: "SWAP3", - gas: 127553, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000022b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16578, - op: "POP", - gas: 127550, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16579, - op: "POP", - gas: 127548, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16580, - op: "POP", - gas: 127546, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 16581, - op: "JUMP", - gas: 127544, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8888, - op: "JUMPDEST", - gas: 127536, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8889, - op: "SWAP2", - gas: 127535, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8890, - op: "POP", - gas: 127532, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8891, - op: "DUP7", - gas: 127530, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8892, - op: "DUP3", - gas: 127527, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8893, - op: "PUSH1", - gas: 127524, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8895, - op: "DUP5", - gas: 127521, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8896, - op: "MLOAD", - gas: 127518, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8897, - op: "SUB", - gas: 127515, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8898, - op: "DUP2", - gas: 127512, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8899, - op: "MLOAD", - gas: 127509, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8900, - op: "DUP2", - gas: 127506, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8901, - op: "LT", - gas: 127503, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8902, - op: "PUSH2", - gas: 127500, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8905, - op: "JUMPI", - gas: 127497, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000022cb", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8907, - op: "JUMPDEST", - gas: 127487, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8908, - op: "PUSH1", - gas: 127486, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8910, - op: "MUL", - gas: 127483, - gasCost: 5, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8911, - op: "PUSH1", - gas: 127478, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8913, - op: "ADD", - gas: 127475, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8914, - op: "ADD", - gas: 127472, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8915, - op: "MLOAD", - gas: 127469, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8916, - op: "LT", - gas: 127466, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8917, - op: "ISZERO", - gas: 127463, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8918, - op: "PUSH2", - gas: 127460, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8921, - op: "JUMPI", - gas: 127457, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000232a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8922, - op: "PUSH1", - gas: 127447, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8924, - op: "MLOAD", - gas: 127444, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8925, - op: "PUSH32", - gas: 127441, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8958, - op: "DUP2", - gas: 127438, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8959, - op: "MSTORE", - gas: 127435, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "08c379a000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8960, - op: "PUSH1", - gas: 127432, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8962, - op: "ADD", - gas: 127429, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8963, - op: "DUP1", - gas: 127426, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8964, - op: "DUP1", - gas: 127423, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8965, - op: "PUSH1", - gas: 127420, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8967, - op: "ADD", - gas: 127417, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8968, - op: "DUP3", - gas: 127414, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8969, - op: "DUP2", - gas: 127411, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8970, - op: "SUB", - gas: 127408, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8971, - op: "DUP3", - gas: 127405, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8972, - op: "MSTORE", - gas: 127402, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8973, - op: "PUSH1", - gas: 127399, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8975, - op: "DUP2", - gas: 127396, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000002b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8976, - op: "MSTORE", - gas: 127393, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000002b", - "0000000000000000000000000000000000000000000000000000000000000221", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8977, - op: "PUSH1", - gas: 127390, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8979, - op: "ADD", - gas: 127387, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8980, - op: "DUP1", - gas: 127384, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8981, - op: "PUSH2", - gas: 127381, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8984, - op: "PUSH1", - gas: 127378, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000005508", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8986, - op: "SWAP2", - gas: 127375, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000005508", - "000000000000000000000000000000000000000000000000000000000000002b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 8987, - op: "CODECOPY", - gas: 127372, - gasCost: 12, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "000000000000000000000000000000000000000000000000000000000000002b", - "0000000000000000000000000000000000000000000000000000000000005508", - "0000000000000000000000000000000000000000000000000000000000000241", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b000000000000000000000000000000000000000000000000603d35de000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8988, - op: "PUSH1", - gas: 127360, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8990, - op: "ADD", - gas: 127357, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8991, - op: "SWAP2", - gas: 127354, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000281", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8992, - op: "POP", - gas: 127351, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8993, - op: "POP", - gas: 127349, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000201", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8994, - op: "PUSH1", - gas: 127347, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8996, - op: "MLOAD", - gas: 127344, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8997, - op: "DUP1", - gas: 127341, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8998, - op: "SWAP2", - gas: 127338, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 8999, - op: "SUB", - gas: 127335, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000281", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 9000, - op: "SWAP1", - gas: 127332, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 9001, - op: "REVERT", - gas: 127329, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000001fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f08c379", - "a000000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", - "55545055545f414d4f554e540000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/modifiesStateTrace.ts b/packages/hardhat-core/test/fixture-debug-traces/modifiesStateTrace.ts deleted file mode 100644 index a5f4877c83..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/modifiesStateTrace.ts +++ /dev/null @@ -1,1711 +0,0 @@ -import { RpcDebugTraceOutput } from "../../src/internal/hardhat-network/provider/output"; - -export const trace: RpcDebugTraceOutput = { - gas: 44945, - failed: false, - returnValue: "", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 5978796, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 5978793, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 5978790, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "PUSH1", - gas: 5978778, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "CALLDATASIZE", - gas: 5978775, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "LT", - gas: 5978773, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 9, - op: "PUSH2", - gas: 5978770, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 12, - op: "JUMPI", - gas: 5978767, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 13, - op: "PUSH1", - gas: 5978757, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 15, - op: "CALLDATALOAD", - gas: 5978754, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "PUSH1", - gas: 5978751, - gasCost: 3, - depth: 1, - stack: [ - "1b334ecc00000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "SHR", - gas: 5978748, - gasCost: 3, - depth: 1, - stack: [ - "1b334ecc00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 19, - op: "DUP1", - gas: 5978745, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "PUSH4", - gas: 5978742, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "EQ", - gas: 5978739, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH2", - gas: 5978736, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "JUMPI", - gas: 5978733, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000039", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 57, - op: "JUMPDEST", - gas: 5978723, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 58, - op: "PUSH2", - gas: 5978722, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 61, - op: "PUSH1", - gas: 5978719, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 63, - op: "DUP1", - gas: 5978716, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 64, - op: "CALLDATASIZE", - gas: 5978713, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 65, - op: "SUB", - gas: 5978711, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 66, - op: "PUSH1", - gas: 5978708, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 68, - op: "DUP2", - gas: 5978705, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 69, - op: "LT", - gas: 5978702, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 70, - op: "ISZERO", - gas: 5978699, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 71, - op: "PUSH2", - gas: 5978696, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 74, - op: "JUMPI", - gas: 5978693, - gasCost: 10, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000004f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 79, - op: "JUMPDEST", - gas: 5978683, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 80, - op: "DUP2", - gas: 5978682, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 81, - op: "ADD", - gas: 5978679, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 82, - op: "SWAP1", - gas: 5978676, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 83, - op: "DUP1", - gas: 5978673, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 84, - op: "DUP1", - gas: 5978670, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 85, - op: "CALLDATALOAD", - gas: 5978667, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 86, - op: "SWAP1", - gas: 5978664, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 87, - op: "PUSH1", - gas: 5978661, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 89, - op: "ADD", - gas: 5978658, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 90, - op: "SWAP1", - gas: 5978655, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 91, - op: "SWAP3", - gas: 5978652, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 92, - op: "SWAP2", - gas: 5978649, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 93, - op: "SWAP1", - gas: 5978646, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 94, - op: "POP", - gas: 5978643, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 95, - op: "POP", - gas: 5978641, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 96, - op: "POP", - gas: 5978639, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 97, - op: "PUSH2", - gas: 5978637, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 100, - op: "JUMP", - gas: 5978634, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 195, - op: "JUMPDEST", - gas: 5978626, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 196, - op: "PUSH1", - gas: 5978625, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 198, - op: "SLOAD", - gas: 5978622, - gasCost: 2100, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 199, - op: "PUSH32", - gas: 5976522, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 232, - op: "DUP3", - gas: 5976519, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 233, - op: "PUSH1", - gas: 5976516, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 235, - op: "MLOAD", - gas: 5976513, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 236, - op: "DUP1", - gas: 5976510, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 237, - op: "DUP3", - gas: 5976507, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 238, - op: "DUP2", - gas: 5976504, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 239, - op: "MSTORE", - gas: 5976501, - gasCost: 9, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 240, - op: "PUSH1", - gas: 5976492, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 242, - op: "ADD", - gas: 5976489, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 243, - op: "SWAP2", - gas: 5976486, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 244, - op: "POP", - gas: 5976483, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 245, - op: "POP", - gas: 5976481, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 246, - op: "PUSH1", - gas: 5976479, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 248, - op: "MLOAD", - gas: 5976476, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 249, - op: "DUP1", - gas: 5976473, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 250, - op: "SWAP2", - gas: 5976470, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 251, - op: "SUB", - gas: 5976467, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 252, - op: "SWAP1", - gas: 5976464, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 253, - op: "LOG2", - gas: 5976461, - gasCost: 1381, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 254, - op: "DUP1", - gas: 5975080, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 255, - op: "PUSH1", - gas: 5975077, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 257, - op: "DUP2", - gas: 5975074, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 258, - op: "SWAP1", - gas: 5975071, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, - }, - { - pc: 259, - op: "SSTORE", - gas: 5975068, - gasCost: 20000, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - { - pc: 260, - op: "POP", - gas: 5955068, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - { - pc: 261, - op: "POP", - gas: 5955066, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - { - pc: 262, - op: "JUMP", - gas: 5955064, - gasCost: 8, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - { - pc: 101, - op: "JUMPDEST", - gas: 5955056, - gasCost: 1, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - { - pc: 102, - op: "STOP", - gas: 5955055, - gasCost: 0, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessage.ts b/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessage.ts deleted file mode 100644 index 8c30becf67..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessage.ts +++ /dev/null @@ -1,10109 +0,0 @@ -import { GethTrace } from "../types"; - -// Trace generated using Geth 1.12.2 - -export const trace: GethTrace = { - gas: 24495, - failed: false, - returnValue: - "0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 49978936, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 49978933, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 49978930, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 49978918, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 49978916, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 49978913, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 49978910, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 49978907, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 49978897, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 49978896, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 49978894, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 49978891, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 49978889, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 49978886, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 49978883, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000041", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 49978873, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 49978870, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 49978867, - gasCost: 3, - depth: 1, - stack: [ - "ce6d41de00000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 49978864, - gasCost: 3, - depth: 1, - stack: [ - "ce6d41de00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 49978861, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 49978858, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "EQ", - gas: 49978855, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 49978852, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 49978849, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000046", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 43, - op: "DUP1", - gas: 49978839, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 44, - op: "PUSH4", - gas: 49978836, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 49, - op: "EQ", - gas: 49978833, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 50, - op: "PUSH2", - gas: 49978830, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 53, - op: "JUMPI", - gas: 49978827, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000062", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 98, - op: "JUMPDEST", - gas: 49978817, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 99, - op: "PUSH2", - gas: 49978816, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 102, - op: "PUSH2", - gas: 49978813, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 105, - op: "JUMP", - gas: 49978810, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "00000000000000000000000000000000000000000000000000000000000000e5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 229, - op: "JUMPDEST", - gas: 49978802, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 230, - op: "PUSH1", - gas: 49978801, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 232, - op: "PUSH1", - gas: 49978798, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 234, - op: "DUP1", - gas: 49978795, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 235, - op: "SLOAD", - gas: 49978792, - gasCost: 2100, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 236, - op: "PUSH2", - gas: 49976692, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 239, - op: "SWAP1", - gas: 49976689, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000f4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 240, - op: "PUSH2", - gas: 49976686, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 243, - op: "JUMP", - gas: 49976683, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000003e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 992, - op: "JUMPDEST", - gas: 49976675, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 993, - op: "PUSH1", - gas: 49976674, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 995, - op: "PUSH1", - gas: 49976671, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 997, - op: "DUP3", - gas: 49976668, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 998, - op: "DIV", - gas: 49976665, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 999, - op: "SWAP1", - gas: 49976660, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1000, - op: "POP", - gas: 49976657, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1001, - op: "PUSH1", - gas: 49976655, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1003, - op: "DUP3", - gas: 49976652, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1004, - op: "AND", - gas: 49976649, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1005, - op: "DUP1", - gas: 49976646, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1006, - op: "PUSH2", - gas: 49976643, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1009, - op: "JUMPI", - gas: 49976640, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003f8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1010, - op: "PUSH1", - gas: 49976630, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1012, - op: "DUP3", - gas: 49976627, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1013, - op: "AND", - gas: 49976624, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1014, - op: "SWAP2", - gas: 49976621, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1015, - op: "POP", - gas: 49976618, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1016, - op: "JUMPDEST", - gas: 49976616, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1017, - op: "PUSH1", - gas: 49976615, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1019, - op: "DUP3", - gas: 49976612, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1020, - op: "LT", - gas: 49976609, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1021, - op: "DUP2", - gas: 49976606, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1022, - op: "SUB", - gas: 49976603, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1023, - op: "PUSH2", - gas: 49976600, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1026, - op: "JUMPI", - gas: 49976597, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000040b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1035, - op: "JUMPDEST", - gas: 49976587, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1036, - op: "POP", - gas: 49976586, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1037, - op: "SWAP2", - gas: 49976584, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1038, - op: "SWAP1", - gas: 49976581, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000f4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1039, - op: "POP", - gas: 49976578, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1040, - op: "JUMP", - gas: 49976576, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000f4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 244, - op: "JUMPDEST", - gas: 49976568, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 245, - op: "DUP1", - gas: 49976567, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 246, - op: "PUSH1", - gas: 49976564, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 248, - op: "ADD", - gas: 49976561, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000001f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 249, - op: "PUSH1", - gas: 49976558, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 251, - op: "DUP1", - gas: 49976555, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 252, - op: "SWAP2", - gas: 49976552, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 253, - op: "DIV", - gas: 49976549, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000033", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 254, - op: "MUL", - gas: 49976544, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 255, - op: "PUSH1", - gas: 49976539, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 257, - op: "ADD", - gas: 49976536, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 258, - op: "PUSH1", - gas: 49976533, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 260, - op: "MLOAD", - gas: 49976530, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 261, - op: "SWAP1", - gas: 49976527, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 262, - op: "DUP2", - gas: 49976524, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 263, - op: "ADD", - gas: 49976521, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 264, - op: "PUSH1", - gas: 49976518, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 266, - op: "MSTORE", - gas: 49976515, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 267, - op: "DUP1", - gas: 49976512, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 268, - op: "SWAP3", - gas: 49976509, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 269, - op: "SWAP2", - gas: 49976506, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 270, - op: "SWAP1", - gas: 49976503, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 271, - op: "DUP2", - gas: 49976500, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 272, - op: "DUP2", - gas: 49976497, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 273, - op: "MSTORE", - gas: 49976494, - gasCost: 9, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 274, - op: "PUSH1", - gas: 49976485, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 276, - op: "ADD", - gas: 49976482, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 277, - op: "DUP3", - gas: 49976479, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 278, - op: "DUP1", - gas: 49976476, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 279, - op: "SLOAD", - gas: 49976473, - gasCost: 100, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 280, - op: "PUSH2", - gas: 49976373, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 283, - op: "SWAP1", - gas: 49976370, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 284, - op: "PUSH2", - gas: 49976367, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 287, - op: "JUMP", - gas: 49976364, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000003e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 992, - op: "JUMPDEST", - gas: 49976356, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 993, - op: "PUSH1", - gas: 49976355, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 995, - op: "PUSH1", - gas: 49976352, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 997, - op: "DUP3", - gas: 49976349, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 998, - op: "DIV", - gas: 49976346, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 999, - op: "SWAP1", - gas: 49976341, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1000, - op: "POP", - gas: 49976338, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1001, - op: "PUSH1", - gas: 49976336, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1003, - op: "DUP3", - gas: 49976333, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1004, - op: "AND", - gas: 49976330, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1005, - op: "DUP1", - gas: 49976327, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1006, - op: "PUSH2", - gas: 49976324, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1009, - op: "JUMPI", - gas: 49976321, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003f8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1010, - op: "PUSH1", - gas: 49976311, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1012, - op: "DUP3", - gas: 49976308, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1013, - op: "AND", - gas: 49976305, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1014, - op: "SWAP2", - gas: 49976302, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1015, - op: "POP", - gas: 49976299, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1016, - op: "JUMPDEST", - gas: 49976297, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1017, - op: "PUSH1", - gas: 49976296, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1019, - op: "DUP3", - gas: 49976293, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1020, - op: "LT", - gas: 49976290, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1021, - op: "DUP2", - gas: 49976287, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1022, - op: "SUB", - gas: 49976284, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1023, - op: "PUSH2", - gas: 49976281, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1026, - op: "JUMPI", - gas: 49976278, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000040b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1035, - op: "JUMPDEST", - gas: 49976268, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1036, - op: "POP", - gas: 49976267, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1037, - op: "SWAP2", - gas: 49976265, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1038, - op: "SWAP1", - gas: 49976262, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1039, - op: "POP", - gas: 49976259, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 1040, - op: "JUMP", - gas: 49976257, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 288, - op: "JUMPDEST", - gas: 49976249, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 289, - op: "DUP1", - gas: 49976248, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 290, - op: "ISZERO", - gas: 49976245, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 291, - op: "PUSH2", - gas: 49976242, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 294, - op: "JUMPI", - gas: 49976239, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000016d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 295, - op: "DUP1", - gas: 49976229, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 296, - op: "PUSH1", - gas: 49976226, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 298, - op: "LT", - gas: 49976223, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000001f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 299, - op: "PUSH2", - gas: 49976220, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 302, - op: "JUMPI", - gas: 49976217, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 303, - op: "PUSH2", - gas: 49976207, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 306, - op: "DUP1", - gas: 49976204, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 307, - op: "DUP4", - gas: 49976201, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 308, - op: "SLOAD", - gas: 49976198, - gasCost: 100, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 309, - op: "DIV", - gas: 49976098, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 310, - op: "MUL", - gas: 49976093, - gasCost: 5, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0048656c6c6f2066726f6d20636f6e7472616374210000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 311, - op: "DUP4", - gas: 49976088, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 312, - op: "MSTORE", - gas: 49976085, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 313, - op: "SWAP2", - gas: 49976079, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 314, - op: "PUSH1", - gas: 49976076, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 316, - op: "ADD", - gas: 49976073, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 317, - op: "SWAP2", - gas: 49976070, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 318, - op: "PUSH2", - gas: 49976067, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 321, - op: "JUMP", - gas: 49976064, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000016d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 365, - op: "JUMPDEST", - gas: 49976056, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 366, - op: "POP", - gas: 49976055, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 367, - op: "POP", - gas: 49976053, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 368, - op: "POP", - gas: 49976051, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 369, - op: "POP", - gas: 49976049, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 370, - op: "POP", - gas: 49976047, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 371, - op: "SWAP1", - gas: 49976045, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 372, - op: "POP", - gas: 49976042, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 373, - op: "SWAP1", - gas: 49976040, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 374, - op: "JUMP", - gas: 49976037, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000006a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 106, - op: "JUMPDEST", - gas: 49976029, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 107, - op: "PUSH1", - gas: 49976028, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 109, - op: "MLOAD", - gas: 49976025, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 110, - op: "PUSH2", - gas: 49976022, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 113, - op: "SWAP2", - gas: 49976019, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000077", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 114, - op: "SWAP1", - gas: 49976016, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 115, - op: "PUSH2", - gas: 49976013, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 118, - op: "JUMP", - gas: 49976010, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000002fd", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 765, - op: "JUMPDEST", - gas: 49976002, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 766, - op: "PUSH1", - gas: 49976001, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 768, - op: "PUSH1", - gas: 49975998, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 770, - op: "DUP3", - gas: 49975995, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 771, - op: "ADD", - gas: 49975992, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 772, - op: "SWAP1", - gas: 49975989, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 773, - op: "POP", - gas: 49975986, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 774, - op: "DUP2", - gas: 49975984, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 775, - op: "DUP2", - gas: 49975981, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 776, - op: "SUB", - gas: 49975978, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 777, - op: "PUSH1", - gas: 49975975, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 779, - op: "DUP4", - gas: 49975972, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 780, - op: "ADD", - gas: 49975969, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 781, - op: "MSTORE", - gas: 49975966, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 782, - op: "PUSH2", - gas: 49975960, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 785, - op: "DUP2", - gas: 49975957, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 786, - op: "DUP5", - gas: 49975954, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 787, - op: "PUSH2", - gas: 49975951, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 790, - op: "JUMP", - gas: 49975948, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000002c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 708, - op: "JUMPDEST", - gas: 49975940, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 709, - op: "PUSH1", - gas: 49975939, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 711, - op: "PUSH2", - gas: 49975936, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 714, - op: "DUP3", - gas: 49975933, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 715, - op: "PUSH2", - gas: 49975930, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 718, - op: "JUMP", - gas: 49975927, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000026d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 621, - op: "JUMPDEST", - gas: 49975919, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 622, - op: "PUSH1", - gas: 49975918, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 624, - op: "DUP2", - gas: 49975915, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 625, - op: "MLOAD", - gas: 49975912, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 626, - op: "SWAP1", - gas: 49975909, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 627, - op: "POP", - gas: 49975906, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 628, - op: "SWAP2", - gas: 49975904, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 629, - op: "SWAP1", - gas: 49975901, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000002cf", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 630, - op: "POP", - gas: 49975898, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 631, - op: "JUMP", - gas: 49975896, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002cf", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 719, - op: "JUMPDEST", - gas: 49975888, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 720, - op: "PUSH2", - gas: 49975887, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 723, - op: "DUP2", - gas: 49975884, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 724, - op: "DUP6", - gas: 49975881, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 725, - op: "PUSH2", - gas: 49975878, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 728, - op: "JUMP", - gas: 49975875, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000278", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 632, - op: "JUMPDEST", - gas: 49975867, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 633, - op: "PUSH1", - gas: 49975866, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 635, - op: "DUP3", - gas: 49975863, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 636, - op: "DUP3", - gas: 49975860, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 637, - op: "MSTORE", - gas: 49975857, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 638, - op: "PUSH1", - gas: 49975851, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 640, - op: "DUP3", - gas: 49975848, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 641, - op: "ADD", - gas: 49975845, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 642, - op: "SWAP1", - gas: 49975842, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 643, - op: "POP", - gas: 49975839, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 644, - op: "SWAP3", - gas: 49975837, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 645, - op: "SWAP2", - gas: 49975834, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000002d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 646, - op: "POP", - gas: 49975831, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 647, - op: "POP", - gas: 49975829, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 648, - op: "JUMP", - gas: 49975827, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 729, - op: "JUMPDEST", - gas: 49975819, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 730, - op: "SWAP4", - gas: 49975818, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 731, - op: "POP", - gas: 49975815, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 732, - op: "PUSH2", - gas: 49975813, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 735, - op: "DUP2", - gas: 49975810, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 736, - op: "DUP6", - gas: 49975807, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 737, - op: "PUSH1", - gas: 49975804, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 739, - op: "DUP7", - gas: 49975801, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 740, - op: "ADD", - gas: 49975798, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 741, - op: "PUSH2", - gas: 49975795, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 744, - op: "JUMP", - gas: 49975792, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000289", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 649, - op: "JUMPDEST", - gas: 49975784, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 650, - op: "PUSH1", - gas: 49975783, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 652, - op: "JUMPDEST", - gas: 49975780, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 653, - op: "DUP4", - gas: 49975779, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 654, - op: "DUP2", - gas: 49975776, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 655, - op: "LT", - gas: 49975773, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 656, - op: "ISZERO", - gas: 49975770, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 657, - op: "PUSH2", - gas: 49975767, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 660, - op: "JUMPI", - gas: 49975764, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 661, - op: "DUP1", - gas: 49975754, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 662, - op: "DUP3", - gas: 49975751, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 663, - op: "ADD", - gas: 49975748, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 664, - op: "MLOAD", - gas: 49975745, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 665, - op: "DUP2", - gas: 49975742, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 666, - op: "DUP5", - gas: 49975739, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 667, - op: "ADD", - gas: 49975736, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 668, - op: "MSTORE", - gas: 49975733, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 669, - op: "PUSH1", - gas: 49975727, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 671, - op: "DUP2", - gas: 49975724, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 672, - op: "ADD", - gas: 49975721, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 673, - op: "SWAP1", - gas: 49975718, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 674, - op: "POP", - gas: 49975715, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 675, - op: "PUSH2", - gas: 49975713, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 678, - op: "JUMP", - gas: 49975710, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000028c", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 652, - op: "JUMPDEST", - gas: 49975702, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 653, - op: "DUP4", - gas: 49975701, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 654, - op: "DUP2", - gas: 49975698, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 655, - op: "LT", - gas: 49975695, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 656, - op: "ISZERO", - gas: 49975692, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 657, - op: "PUSH2", - gas: 49975689, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 660, - op: "JUMPI", - gas: 49975686, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 679, - op: "JUMPDEST", - gas: 49975676, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 680, - op: "PUSH1", - gas: 49975675, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 682, - op: "DUP5", - gas: 49975672, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 683, - op: "DUP5", - gas: 49975669, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 684, - op: "ADD", - gas: 49975666, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 685, - op: "MSTORE", - gas: 49975663, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000114", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 686, - op: "POP", - gas: 49975657, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 687, - op: "POP", - gas: 49975655, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 688, - op: "POP", - gas: 49975653, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 689, - op: "POP", - gas: 49975651, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 690, - op: "JUMP", - gas: 49975649, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 745, - op: "JUMPDEST", - gas: 49975641, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 746, - op: "PUSH2", - gas: 49975640, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 749, - op: "DUP2", - gas: 49975637, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 750, - op: "PUSH2", - gas: 49975634, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 753, - op: "JUMP", - gas: 49975631, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002b3", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 691, - op: "JUMPDEST", - gas: 49975623, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 692, - op: "PUSH1", - gas: 49975622, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 694, - op: "PUSH1", - gas: 49975619, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 696, - op: "NOT", - gas: 49975616, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 697, - op: "PUSH1", - gas: 49975613, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 699, - op: "DUP4", - gas: 49975610, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 700, - op: "ADD", - gas: 49975607, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 701, - op: "AND", - gas: 49975604, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000033", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 702, - op: "SWAP1", - gas: 49975601, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 703, - op: "POP", - gas: 49975598, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 704, - op: "SWAP2", - gas: 49975596, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 705, - op: "SWAP1", - gas: 49975593, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 706, - op: "POP", - gas: 49975590, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 707, - op: "JUMP", - gas: 49975588, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 754, - op: "JUMPDEST", - gas: 49975580, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 755, - op: "DUP5", - gas: 49975579, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 756, - op: "ADD", - gas: 49975576, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 757, - op: "SWAP2", - gas: 49975573, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 758, - op: "POP", - gas: 49975570, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 759, - op: "POP", - gas: 49975568, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000014", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 760, - op: "SWAP3", - gas: 49975566, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 761, - op: "SWAP2", - gas: 49975563, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000317", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 762, - op: "POP", - gas: 49975560, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 763, - op: "POP", - gas: 49975558, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 764, - op: "JUMP", - gas: 49975556, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 791, - op: "JUMPDEST", - gas: 49975548, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 792, - op: "SWAP1", - gas: 49975547, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 793, - op: "POP", - gas: 49975544, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 794, - op: "SWAP3", - gas: 49975542, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 795, - op: "SWAP2", - gas: 49975539, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000077", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 796, - op: "POP", - gas: 49975536, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 797, - op: "POP", - gas: 49975534, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 798, - op: "JUMP", - gas: 49975532, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 119, - op: "JUMPDEST", - gas: 49975524, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 120, - op: "PUSH1", - gas: 49975523, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 122, - op: "MLOAD", - gas: 49975520, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 123, - op: "DUP1", - gas: 49975517, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 124, - op: "SWAP2", - gas: 49975514, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 125, - op: "SUB", - gas: 49975511, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 126, - op: "SWAP1", - gas: 49975508, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - { - pc: 127, - op: "RETURN", - gas: 49975505, - gasCost: 0, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts b/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts deleted file mode 100644 index b34c9d2fa1..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts +++ /dev/null @@ -1,2371 +0,0 @@ -import { GethTrace } from "../types"; - -// Trace generated using Geth 1.12.2 - -export const trace: GethTrace = { - gas: 24495, - failed: false, - returnValue: - "0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 49978936, - gasCost: 3, - depth: 1, - }, - { - pc: 2, - op: "PUSH1", - gas: 49978933, - gasCost: 3, - depth: 1, - }, - { - pc: 4, - op: "MSTORE", - gas: 49978930, - gasCost: 12, - depth: 1, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 49978918, - gasCost: 2, - depth: 1, - }, - { - pc: 6, - op: "DUP1", - gas: 49978916, - gasCost: 3, - depth: 1, - }, - { - pc: 7, - op: "ISZERO", - gas: 49978913, - gasCost: 3, - depth: 1, - }, - { - pc: 8, - op: "PUSH2", - gas: 49978910, - gasCost: 3, - depth: 1, - }, - { - pc: 11, - op: "JUMPI", - gas: 49978907, - gasCost: 10, - depth: 1, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 49978897, - gasCost: 1, - depth: 1, - }, - { - pc: 17, - op: "POP", - gas: 49978896, - gasCost: 2, - depth: 1, - }, - { - pc: 18, - op: "PUSH1", - gas: 49978894, - gasCost: 3, - depth: 1, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 49978891, - gasCost: 2, - depth: 1, - }, - { - pc: 21, - op: "LT", - gas: 49978889, - gasCost: 3, - depth: 1, - }, - { - pc: 22, - op: "PUSH2", - gas: 49978886, - gasCost: 3, - depth: 1, - }, - { - pc: 25, - op: "JUMPI", - gas: 49978883, - gasCost: 10, - depth: 1, - }, - { - pc: 26, - op: "PUSH1", - gas: 49978873, - gasCost: 3, - depth: 1, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 49978870, - gasCost: 3, - depth: 1, - }, - { - pc: 29, - op: "PUSH1", - gas: 49978867, - gasCost: 3, - depth: 1, - }, - { - pc: 31, - op: "SHR", - gas: 49978864, - gasCost: 3, - depth: 1, - }, - { - pc: 32, - op: "DUP1", - gas: 49978861, - gasCost: 3, - depth: 1, - }, - { - pc: 33, - op: "PUSH4", - gas: 49978858, - gasCost: 3, - depth: 1, - }, - { - pc: 38, - op: "EQ", - gas: 49978855, - gasCost: 3, - depth: 1, - }, - { - pc: 39, - op: "PUSH2", - gas: 49978852, - gasCost: 3, - depth: 1, - }, - { - pc: 42, - op: "JUMPI", - gas: 49978849, - gasCost: 10, - depth: 1, - }, - { - pc: 43, - op: "DUP1", - gas: 49978839, - gasCost: 3, - depth: 1, - }, - { - pc: 44, - op: "PUSH4", - gas: 49978836, - gasCost: 3, - depth: 1, - }, - { - pc: 49, - op: "EQ", - gas: 49978833, - gasCost: 3, - depth: 1, - }, - { - pc: 50, - op: "PUSH2", - gas: 49978830, - gasCost: 3, - depth: 1, - }, - { - pc: 53, - op: "JUMPI", - gas: 49978827, - gasCost: 10, - depth: 1, - }, - { - pc: 98, - op: "JUMPDEST", - gas: 49978817, - gasCost: 1, - depth: 1, - }, - { - pc: 99, - op: "PUSH2", - gas: 49978816, - gasCost: 3, - depth: 1, - }, - { - pc: 102, - op: "PUSH2", - gas: 49978813, - gasCost: 3, - depth: 1, - }, - { - pc: 105, - op: "JUMP", - gas: 49978810, - gasCost: 8, - depth: 1, - }, - { - pc: 229, - op: "JUMPDEST", - gas: 49978802, - gasCost: 1, - depth: 1, - }, - { - pc: 230, - op: "PUSH1", - gas: 49978801, - gasCost: 3, - depth: 1, - }, - { - pc: 232, - op: "PUSH1", - gas: 49978798, - gasCost: 3, - depth: 1, - }, - { - pc: 234, - op: "DUP1", - gas: 49978795, - gasCost: 3, - depth: 1, - }, - { - pc: 235, - op: "SLOAD", - gas: 49978792, - gasCost: 2100, - depth: 1, - }, - { - pc: 236, - op: "PUSH2", - gas: 49976692, - gasCost: 3, - depth: 1, - }, - { - pc: 239, - op: "SWAP1", - gas: 49976689, - gasCost: 3, - depth: 1, - }, - { - pc: 240, - op: "PUSH2", - gas: 49976686, - gasCost: 3, - depth: 1, - }, - { - pc: 243, - op: "JUMP", - gas: 49976683, - gasCost: 8, - depth: 1, - }, - { - pc: 992, - op: "JUMPDEST", - gas: 49976675, - gasCost: 1, - depth: 1, - }, - { - pc: 993, - op: "PUSH1", - gas: 49976674, - gasCost: 3, - depth: 1, - }, - { - pc: 995, - op: "PUSH1", - gas: 49976671, - gasCost: 3, - depth: 1, - }, - { - pc: 997, - op: "DUP3", - gas: 49976668, - gasCost: 3, - depth: 1, - }, - { - pc: 998, - op: "DIV", - gas: 49976665, - gasCost: 5, - depth: 1, - }, - { - pc: 999, - op: "SWAP1", - gas: 49976660, - gasCost: 3, - depth: 1, - }, - { - pc: 1000, - op: "POP", - gas: 49976657, - gasCost: 2, - depth: 1, - }, - { - pc: 1001, - op: "PUSH1", - gas: 49976655, - gasCost: 3, - depth: 1, - }, - { - pc: 1003, - op: "DUP3", - gas: 49976652, - gasCost: 3, - depth: 1, - }, - { - pc: 1004, - op: "AND", - gas: 49976649, - gasCost: 3, - depth: 1, - }, - { - pc: 1005, - op: "DUP1", - gas: 49976646, - gasCost: 3, - depth: 1, - }, - { - pc: 1006, - op: "PUSH2", - gas: 49976643, - gasCost: 3, - depth: 1, - }, - { - pc: 1009, - op: "JUMPI", - gas: 49976640, - gasCost: 10, - depth: 1, - }, - { - pc: 1010, - op: "PUSH1", - gas: 49976630, - gasCost: 3, - depth: 1, - }, - { - pc: 1012, - op: "DUP3", - gas: 49976627, - gasCost: 3, - depth: 1, - }, - { - pc: 1013, - op: "AND", - gas: 49976624, - gasCost: 3, - depth: 1, - }, - { - pc: 1014, - op: "SWAP2", - gas: 49976621, - gasCost: 3, - depth: 1, - }, - { - pc: 1015, - op: "POP", - gas: 49976618, - gasCost: 2, - depth: 1, - }, - { - pc: 1016, - op: "JUMPDEST", - gas: 49976616, - gasCost: 1, - depth: 1, - }, - { - pc: 1017, - op: "PUSH1", - gas: 49976615, - gasCost: 3, - depth: 1, - }, - { - pc: 1019, - op: "DUP3", - gas: 49976612, - gasCost: 3, - depth: 1, - }, - { - pc: 1020, - op: "LT", - gas: 49976609, - gasCost: 3, - depth: 1, - }, - { - pc: 1021, - op: "DUP2", - gas: 49976606, - gasCost: 3, - depth: 1, - }, - { - pc: 1022, - op: "SUB", - gas: 49976603, - gasCost: 3, - depth: 1, - }, - { - pc: 1023, - op: "PUSH2", - gas: 49976600, - gasCost: 3, - depth: 1, - }, - { - pc: 1026, - op: "JUMPI", - gas: 49976597, - gasCost: 10, - depth: 1, - }, - { - pc: 1035, - op: "JUMPDEST", - gas: 49976587, - gasCost: 1, - depth: 1, - }, - { - pc: 1036, - op: "POP", - gas: 49976586, - gasCost: 2, - depth: 1, - }, - { - pc: 1037, - op: "SWAP2", - gas: 49976584, - gasCost: 3, - depth: 1, - }, - { - pc: 1038, - op: "SWAP1", - gas: 49976581, - gasCost: 3, - depth: 1, - }, - { - pc: 1039, - op: "POP", - gas: 49976578, - gasCost: 2, - depth: 1, - }, - { - pc: 1040, - op: "JUMP", - gas: 49976576, - gasCost: 8, - depth: 1, - }, - { - pc: 244, - op: "JUMPDEST", - gas: 49976568, - gasCost: 1, - depth: 1, - }, - { - pc: 245, - op: "DUP1", - gas: 49976567, - gasCost: 3, - depth: 1, - }, - { - pc: 246, - op: "PUSH1", - gas: 49976564, - gasCost: 3, - depth: 1, - }, - { - pc: 248, - op: "ADD", - gas: 49976561, - gasCost: 3, - depth: 1, - }, - { - pc: 249, - op: "PUSH1", - gas: 49976558, - gasCost: 3, - depth: 1, - }, - { - pc: 251, - op: "DUP1", - gas: 49976555, - gasCost: 3, - depth: 1, - }, - { - pc: 252, - op: "SWAP2", - gas: 49976552, - gasCost: 3, - depth: 1, - }, - { - pc: 253, - op: "DIV", - gas: 49976549, - gasCost: 5, - depth: 1, - }, - { - pc: 254, - op: "MUL", - gas: 49976544, - gasCost: 5, - depth: 1, - }, - { - pc: 255, - op: "PUSH1", - gas: 49976539, - gasCost: 3, - depth: 1, - }, - { - pc: 257, - op: "ADD", - gas: 49976536, - gasCost: 3, - depth: 1, - }, - { - pc: 258, - op: "PUSH1", - gas: 49976533, - gasCost: 3, - depth: 1, - }, - { - pc: 260, - op: "MLOAD", - gas: 49976530, - gasCost: 3, - depth: 1, - }, - { - pc: 261, - op: "SWAP1", - gas: 49976527, - gasCost: 3, - depth: 1, - }, - { - pc: 262, - op: "DUP2", - gas: 49976524, - gasCost: 3, - depth: 1, - }, - { - pc: 263, - op: "ADD", - gas: 49976521, - gasCost: 3, - depth: 1, - }, - { - pc: 264, - op: "PUSH1", - gas: 49976518, - gasCost: 3, - depth: 1, - }, - { - pc: 266, - op: "MSTORE", - gas: 49976515, - gasCost: 3, - depth: 1, - }, - { - pc: 267, - op: "DUP1", - gas: 49976512, - gasCost: 3, - depth: 1, - }, - { - pc: 268, - op: "SWAP3", - gas: 49976509, - gasCost: 3, - depth: 1, - }, - { - pc: 269, - op: "SWAP2", - gas: 49976506, - gasCost: 3, - depth: 1, - }, - { - pc: 270, - op: "SWAP1", - gas: 49976503, - gasCost: 3, - depth: 1, - }, - { - pc: 271, - op: "DUP2", - gas: 49976500, - gasCost: 3, - depth: 1, - }, - { - pc: 272, - op: "DUP2", - gas: 49976497, - gasCost: 3, - depth: 1, - }, - { - pc: 273, - op: "MSTORE", - gas: 49976494, - gasCost: 9, - depth: 1, - }, - { - pc: 274, - op: "PUSH1", - gas: 49976485, - gasCost: 3, - depth: 1, - }, - { - pc: 276, - op: "ADD", - gas: 49976482, - gasCost: 3, - depth: 1, - }, - { - pc: 277, - op: "DUP3", - gas: 49976479, - gasCost: 3, - depth: 1, - }, - { - pc: 278, - op: "DUP1", - gas: 49976476, - gasCost: 3, - depth: 1, - }, - { - pc: 279, - op: "SLOAD", - gas: 49976473, - gasCost: 100, - depth: 1, - }, - { - pc: 280, - op: "PUSH2", - gas: 49976373, - gasCost: 3, - depth: 1, - }, - { - pc: 283, - op: "SWAP1", - gas: 49976370, - gasCost: 3, - depth: 1, - }, - { - pc: 284, - op: "PUSH2", - gas: 49976367, - gasCost: 3, - depth: 1, - }, - { - pc: 287, - op: "JUMP", - gas: 49976364, - gasCost: 8, - depth: 1, - }, - { - pc: 992, - op: "JUMPDEST", - gas: 49976356, - gasCost: 1, - depth: 1, - }, - { - pc: 993, - op: "PUSH1", - gas: 49976355, - gasCost: 3, - depth: 1, - }, - { - pc: 995, - op: "PUSH1", - gas: 49976352, - gasCost: 3, - depth: 1, - }, - { - pc: 997, - op: "DUP3", - gas: 49976349, - gasCost: 3, - depth: 1, - }, - { - pc: 998, - op: "DIV", - gas: 49976346, - gasCost: 5, - depth: 1, - }, - { - pc: 999, - op: "SWAP1", - gas: 49976341, - gasCost: 3, - depth: 1, - }, - { - pc: 1000, - op: "POP", - gas: 49976338, - gasCost: 2, - depth: 1, - }, - { - pc: 1001, - op: "PUSH1", - gas: 49976336, - gasCost: 3, - depth: 1, - }, - { - pc: 1003, - op: "DUP3", - gas: 49976333, - gasCost: 3, - depth: 1, - }, - { - pc: 1004, - op: "AND", - gas: 49976330, - gasCost: 3, - depth: 1, - }, - { - pc: 1005, - op: "DUP1", - gas: 49976327, - gasCost: 3, - depth: 1, - }, - { - pc: 1006, - op: "PUSH2", - gas: 49976324, - gasCost: 3, - depth: 1, - }, - { - pc: 1009, - op: "JUMPI", - gas: 49976321, - gasCost: 10, - depth: 1, - }, - { - pc: 1010, - op: "PUSH1", - gas: 49976311, - gasCost: 3, - depth: 1, - }, - { - pc: 1012, - op: "DUP3", - gas: 49976308, - gasCost: 3, - depth: 1, - }, - { - pc: 1013, - op: "AND", - gas: 49976305, - gasCost: 3, - depth: 1, - }, - { - pc: 1014, - op: "SWAP2", - gas: 49976302, - gasCost: 3, - depth: 1, - }, - { - pc: 1015, - op: "POP", - gas: 49976299, - gasCost: 2, - depth: 1, - }, - { - pc: 1016, - op: "JUMPDEST", - gas: 49976297, - gasCost: 1, - depth: 1, - }, - { - pc: 1017, - op: "PUSH1", - gas: 49976296, - gasCost: 3, - depth: 1, - }, - { - pc: 1019, - op: "DUP3", - gas: 49976293, - gasCost: 3, - depth: 1, - }, - { - pc: 1020, - op: "LT", - gas: 49976290, - gasCost: 3, - depth: 1, - }, - { - pc: 1021, - op: "DUP2", - gas: 49976287, - gasCost: 3, - depth: 1, - }, - { - pc: 1022, - op: "SUB", - gas: 49976284, - gasCost: 3, - depth: 1, - }, - { - pc: 1023, - op: "PUSH2", - gas: 49976281, - gasCost: 3, - depth: 1, - }, - { - pc: 1026, - op: "JUMPI", - gas: 49976278, - gasCost: 10, - depth: 1, - }, - { - pc: 1035, - op: "JUMPDEST", - gas: 49976268, - gasCost: 1, - depth: 1, - }, - { - pc: 1036, - op: "POP", - gas: 49976267, - gasCost: 2, - depth: 1, - }, - { - pc: 1037, - op: "SWAP2", - gas: 49976265, - gasCost: 3, - depth: 1, - }, - { - pc: 1038, - op: "SWAP1", - gas: 49976262, - gasCost: 3, - depth: 1, - }, - { - pc: 1039, - op: "POP", - gas: 49976259, - gasCost: 2, - depth: 1, - }, - { - pc: 1040, - op: "JUMP", - gas: 49976257, - gasCost: 8, - depth: 1, - }, - { - pc: 288, - op: "JUMPDEST", - gas: 49976249, - gasCost: 1, - depth: 1, - }, - { - pc: 289, - op: "DUP1", - gas: 49976248, - gasCost: 3, - depth: 1, - }, - { - pc: 290, - op: "ISZERO", - gas: 49976245, - gasCost: 3, - depth: 1, - }, - { - pc: 291, - op: "PUSH2", - gas: 49976242, - gasCost: 3, - depth: 1, - }, - { - pc: 294, - op: "JUMPI", - gas: 49976239, - gasCost: 10, - depth: 1, - }, - { - pc: 295, - op: "DUP1", - gas: 49976229, - gasCost: 3, - depth: 1, - }, - { - pc: 296, - op: "PUSH1", - gas: 49976226, - gasCost: 3, - depth: 1, - }, - { - pc: 298, - op: "LT", - gas: 49976223, - gasCost: 3, - depth: 1, - }, - { - pc: 299, - op: "PUSH2", - gas: 49976220, - gasCost: 3, - depth: 1, - }, - { - pc: 302, - op: "JUMPI", - gas: 49976217, - gasCost: 10, - depth: 1, - }, - { - pc: 303, - op: "PUSH2", - gas: 49976207, - gasCost: 3, - depth: 1, - }, - { - pc: 306, - op: "DUP1", - gas: 49976204, - gasCost: 3, - depth: 1, - }, - { - pc: 307, - op: "DUP4", - gas: 49976201, - gasCost: 3, - depth: 1, - }, - { - pc: 308, - op: "SLOAD", - gas: 49976198, - gasCost: 100, - depth: 1, - }, - { - pc: 309, - op: "DIV", - gas: 49976098, - gasCost: 5, - depth: 1, - }, - { - pc: 310, - op: "MUL", - gas: 49976093, - gasCost: 5, - depth: 1, - }, - { - pc: 311, - op: "DUP4", - gas: 49976088, - gasCost: 3, - depth: 1, - }, - { - pc: 312, - op: "MSTORE", - gas: 49976085, - gasCost: 6, - depth: 1, - }, - { - pc: 313, - op: "SWAP2", - gas: 49976079, - gasCost: 3, - depth: 1, - }, - { - pc: 314, - op: "PUSH1", - gas: 49976076, - gasCost: 3, - depth: 1, - }, - { - pc: 316, - op: "ADD", - gas: 49976073, - gasCost: 3, - depth: 1, - }, - { - pc: 317, - op: "SWAP2", - gas: 49976070, - gasCost: 3, - depth: 1, - }, - { - pc: 318, - op: "PUSH2", - gas: 49976067, - gasCost: 3, - depth: 1, - }, - { - pc: 321, - op: "JUMP", - gas: 49976064, - gasCost: 8, - depth: 1, - }, - { - pc: 365, - op: "JUMPDEST", - gas: 49976056, - gasCost: 1, - depth: 1, - }, - { - pc: 366, - op: "POP", - gas: 49976055, - gasCost: 2, - depth: 1, - }, - { - pc: 367, - op: "POP", - gas: 49976053, - gasCost: 2, - depth: 1, - }, - { - pc: 368, - op: "POP", - gas: 49976051, - gasCost: 2, - depth: 1, - }, - { - pc: 369, - op: "POP", - gas: 49976049, - gasCost: 2, - depth: 1, - }, - { - pc: 370, - op: "POP", - gas: 49976047, - gasCost: 2, - depth: 1, - }, - { - pc: 371, - op: "SWAP1", - gas: 49976045, - gasCost: 3, - depth: 1, - }, - { - pc: 372, - op: "POP", - gas: 49976042, - gasCost: 2, - depth: 1, - }, - { - pc: 373, - op: "SWAP1", - gas: 49976040, - gasCost: 3, - depth: 1, - }, - { - pc: 374, - op: "JUMP", - gas: 49976037, - gasCost: 8, - depth: 1, - }, - { - pc: 106, - op: "JUMPDEST", - gas: 49976029, - gasCost: 1, - depth: 1, - }, - { - pc: 107, - op: "PUSH1", - gas: 49976028, - gasCost: 3, - depth: 1, - }, - { - pc: 109, - op: "MLOAD", - gas: 49976025, - gasCost: 3, - depth: 1, - }, - { - pc: 110, - op: "PUSH2", - gas: 49976022, - gasCost: 3, - depth: 1, - }, - { - pc: 113, - op: "SWAP2", - gas: 49976019, - gasCost: 3, - depth: 1, - }, - { - pc: 114, - op: "SWAP1", - gas: 49976016, - gasCost: 3, - depth: 1, - }, - { - pc: 115, - op: "PUSH2", - gas: 49976013, - gasCost: 3, - depth: 1, - }, - { - pc: 118, - op: "JUMP", - gas: 49976010, - gasCost: 8, - depth: 1, - }, - { - pc: 765, - op: "JUMPDEST", - gas: 49976002, - gasCost: 1, - depth: 1, - }, - { - pc: 766, - op: "PUSH1", - gas: 49976001, - gasCost: 3, - depth: 1, - }, - { - pc: 768, - op: "PUSH1", - gas: 49975998, - gasCost: 3, - depth: 1, - }, - { - pc: 770, - op: "DUP3", - gas: 49975995, - gasCost: 3, - depth: 1, - }, - { - pc: 771, - op: "ADD", - gas: 49975992, - gasCost: 3, - depth: 1, - }, - { - pc: 772, - op: "SWAP1", - gas: 49975989, - gasCost: 3, - depth: 1, - }, - { - pc: 773, - op: "POP", - gas: 49975986, - gasCost: 2, - depth: 1, - }, - { - pc: 774, - op: "DUP2", - gas: 49975984, - gasCost: 3, - depth: 1, - }, - { - pc: 775, - op: "DUP2", - gas: 49975981, - gasCost: 3, - depth: 1, - }, - { - pc: 776, - op: "SUB", - gas: 49975978, - gasCost: 3, - depth: 1, - }, - { - pc: 777, - op: "PUSH1", - gas: 49975975, - gasCost: 3, - depth: 1, - }, - { - pc: 779, - op: "DUP4", - gas: 49975972, - gasCost: 3, - depth: 1, - }, - { - pc: 780, - op: "ADD", - gas: 49975969, - gasCost: 3, - depth: 1, - }, - { - pc: 781, - op: "MSTORE", - gas: 49975966, - gasCost: 6, - depth: 1, - }, - { - pc: 782, - op: "PUSH2", - gas: 49975960, - gasCost: 3, - depth: 1, - }, - { - pc: 785, - op: "DUP2", - gas: 49975957, - gasCost: 3, - depth: 1, - }, - { - pc: 786, - op: "DUP5", - gas: 49975954, - gasCost: 3, - depth: 1, - }, - { - pc: 787, - op: "PUSH2", - gas: 49975951, - gasCost: 3, - depth: 1, - }, - { - pc: 790, - op: "JUMP", - gas: 49975948, - gasCost: 8, - depth: 1, - }, - { - pc: 708, - op: "JUMPDEST", - gas: 49975940, - gasCost: 1, - depth: 1, - }, - { - pc: 709, - op: "PUSH1", - gas: 49975939, - gasCost: 3, - depth: 1, - }, - { - pc: 711, - op: "PUSH2", - gas: 49975936, - gasCost: 3, - depth: 1, - }, - { - pc: 714, - op: "DUP3", - gas: 49975933, - gasCost: 3, - depth: 1, - }, - { - pc: 715, - op: "PUSH2", - gas: 49975930, - gasCost: 3, - depth: 1, - }, - { - pc: 718, - op: "JUMP", - gas: 49975927, - gasCost: 8, - depth: 1, - }, - { - pc: 621, - op: "JUMPDEST", - gas: 49975919, - gasCost: 1, - depth: 1, - }, - { - pc: 622, - op: "PUSH1", - gas: 49975918, - gasCost: 3, - depth: 1, - }, - { - pc: 624, - op: "DUP2", - gas: 49975915, - gasCost: 3, - depth: 1, - }, - { - pc: 625, - op: "MLOAD", - gas: 49975912, - gasCost: 3, - depth: 1, - }, - { - pc: 626, - op: "SWAP1", - gas: 49975909, - gasCost: 3, - depth: 1, - }, - { - pc: 627, - op: "POP", - gas: 49975906, - gasCost: 2, - depth: 1, - }, - { - pc: 628, - op: "SWAP2", - gas: 49975904, - gasCost: 3, - depth: 1, - }, - { - pc: 629, - op: "SWAP1", - gas: 49975901, - gasCost: 3, - depth: 1, - }, - { - pc: 630, - op: "POP", - gas: 49975898, - gasCost: 2, - depth: 1, - }, - { - pc: 631, - op: "JUMP", - gas: 49975896, - gasCost: 8, - depth: 1, - }, - { - pc: 719, - op: "JUMPDEST", - gas: 49975888, - gasCost: 1, - depth: 1, - }, - { - pc: 720, - op: "PUSH2", - gas: 49975887, - gasCost: 3, - depth: 1, - }, - { - pc: 723, - op: "DUP2", - gas: 49975884, - gasCost: 3, - depth: 1, - }, - { - pc: 724, - op: "DUP6", - gas: 49975881, - gasCost: 3, - depth: 1, - }, - { - pc: 725, - op: "PUSH2", - gas: 49975878, - gasCost: 3, - depth: 1, - }, - { - pc: 728, - op: "JUMP", - gas: 49975875, - gasCost: 8, - depth: 1, - }, - { - pc: 632, - op: "JUMPDEST", - gas: 49975867, - gasCost: 1, - depth: 1, - }, - { - pc: 633, - op: "PUSH1", - gas: 49975866, - gasCost: 3, - depth: 1, - }, - { - pc: 635, - op: "DUP3", - gas: 49975863, - gasCost: 3, - depth: 1, - }, - { - pc: 636, - op: "DUP3", - gas: 49975860, - gasCost: 3, - depth: 1, - }, - { - pc: 637, - op: "MSTORE", - gas: 49975857, - gasCost: 6, - depth: 1, - }, - { - pc: 638, - op: "PUSH1", - gas: 49975851, - gasCost: 3, - depth: 1, - }, - { - pc: 640, - op: "DUP3", - gas: 49975848, - gasCost: 3, - depth: 1, - }, - { - pc: 641, - op: "ADD", - gas: 49975845, - gasCost: 3, - depth: 1, - }, - { - pc: 642, - op: "SWAP1", - gas: 49975842, - gasCost: 3, - depth: 1, - }, - { - pc: 643, - op: "POP", - gas: 49975839, - gasCost: 2, - depth: 1, - }, - { - pc: 644, - op: "SWAP3", - gas: 49975837, - gasCost: 3, - depth: 1, - }, - { - pc: 645, - op: "SWAP2", - gas: 49975834, - gasCost: 3, - depth: 1, - }, - { - pc: 646, - op: "POP", - gas: 49975831, - gasCost: 2, - depth: 1, - }, - { - pc: 647, - op: "POP", - gas: 49975829, - gasCost: 2, - depth: 1, - }, - { - pc: 648, - op: "JUMP", - gas: 49975827, - gasCost: 8, - depth: 1, - }, - { - pc: 729, - op: "JUMPDEST", - gas: 49975819, - gasCost: 1, - depth: 1, - }, - { - pc: 730, - op: "SWAP4", - gas: 49975818, - gasCost: 3, - depth: 1, - }, - { - pc: 731, - op: "POP", - gas: 49975815, - gasCost: 2, - depth: 1, - }, - { - pc: 732, - op: "PUSH2", - gas: 49975813, - gasCost: 3, - depth: 1, - }, - { - pc: 735, - op: "DUP2", - gas: 49975810, - gasCost: 3, - depth: 1, - }, - { - pc: 736, - op: "DUP6", - gas: 49975807, - gasCost: 3, - depth: 1, - }, - { - pc: 737, - op: "PUSH1", - gas: 49975804, - gasCost: 3, - depth: 1, - }, - { - pc: 739, - op: "DUP7", - gas: 49975801, - gasCost: 3, - depth: 1, - }, - { - pc: 740, - op: "ADD", - gas: 49975798, - gasCost: 3, - depth: 1, - }, - { - pc: 741, - op: "PUSH2", - gas: 49975795, - gasCost: 3, - depth: 1, - }, - { - pc: 744, - op: "JUMP", - gas: 49975792, - gasCost: 8, - depth: 1, - }, - { - pc: 649, - op: "JUMPDEST", - gas: 49975784, - gasCost: 1, - depth: 1, - }, - { - pc: 650, - op: "PUSH1", - gas: 49975783, - gasCost: 3, - depth: 1, - }, - { - pc: 652, - op: "JUMPDEST", - gas: 49975780, - gasCost: 1, - depth: 1, - }, - { - pc: 653, - op: "DUP4", - gas: 49975779, - gasCost: 3, - depth: 1, - }, - { - pc: 654, - op: "DUP2", - gas: 49975776, - gasCost: 3, - depth: 1, - }, - { - pc: 655, - op: "LT", - gas: 49975773, - gasCost: 3, - depth: 1, - }, - { - pc: 656, - op: "ISZERO", - gas: 49975770, - gasCost: 3, - depth: 1, - }, - { - pc: 657, - op: "PUSH2", - gas: 49975767, - gasCost: 3, - depth: 1, - }, - { - pc: 660, - op: "JUMPI", - gas: 49975764, - gasCost: 10, - depth: 1, - }, - { - pc: 661, - op: "DUP1", - gas: 49975754, - gasCost: 3, - depth: 1, - }, - { - pc: 662, - op: "DUP3", - gas: 49975751, - gasCost: 3, - depth: 1, - }, - { - pc: 663, - op: "ADD", - gas: 49975748, - gasCost: 3, - depth: 1, - }, - { - pc: 664, - op: "MLOAD", - gas: 49975745, - gasCost: 3, - depth: 1, - }, - { - pc: 665, - op: "DUP2", - gas: 49975742, - gasCost: 3, - depth: 1, - }, - { - pc: 666, - op: "DUP5", - gas: 49975739, - gasCost: 3, - depth: 1, - }, - { - pc: 667, - op: "ADD", - gas: 49975736, - gasCost: 3, - depth: 1, - }, - { - pc: 668, - op: "MSTORE", - gas: 49975733, - gasCost: 6, - depth: 1, - }, - { - pc: 669, - op: "PUSH1", - gas: 49975727, - gasCost: 3, - depth: 1, - }, - { - pc: 671, - op: "DUP2", - gas: 49975724, - gasCost: 3, - depth: 1, - }, - { - pc: 672, - op: "ADD", - gas: 49975721, - gasCost: 3, - depth: 1, - }, - { - pc: 673, - op: "SWAP1", - gas: 49975718, - gasCost: 3, - depth: 1, - }, - { - pc: 674, - op: "POP", - gas: 49975715, - gasCost: 2, - depth: 1, - }, - { - pc: 675, - op: "PUSH2", - gas: 49975713, - gasCost: 3, - depth: 1, - }, - { - pc: 678, - op: "JUMP", - gas: 49975710, - gasCost: 8, - depth: 1, - }, - { - pc: 652, - op: "JUMPDEST", - gas: 49975702, - gasCost: 1, - depth: 1, - }, - { - pc: 653, - op: "DUP4", - gas: 49975701, - gasCost: 3, - depth: 1, - }, - { - pc: 654, - op: "DUP2", - gas: 49975698, - gasCost: 3, - depth: 1, - }, - { - pc: 655, - op: "LT", - gas: 49975695, - gasCost: 3, - depth: 1, - }, - { - pc: 656, - op: "ISZERO", - gas: 49975692, - gasCost: 3, - depth: 1, - }, - { - pc: 657, - op: "PUSH2", - gas: 49975689, - gasCost: 3, - depth: 1, - }, - { - pc: 660, - op: "JUMPI", - gas: 49975686, - gasCost: 10, - depth: 1, - }, - { - pc: 679, - op: "JUMPDEST", - gas: 49975676, - gasCost: 1, - depth: 1, - }, - { - pc: 680, - op: "PUSH1", - gas: 49975675, - gasCost: 3, - depth: 1, - }, - { - pc: 682, - op: "DUP5", - gas: 49975672, - gasCost: 3, - depth: 1, - }, - { - pc: 683, - op: "DUP5", - gas: 49975669, - gasCost: 3, - depth: 1, - }, - { - pc: 684, - op: "ADD", - gas: 49975666, - gasCost: 3, - depth: 1, - }, - { - pc: 685, - op: "MSTORE", - gas: 49975663, - gasCost: 6, - depth: 1, - }, - { - pc: 686, - op: "POP", - gas: 49975657, - gasCost: 2, - depth: 1, - }, - { - pc: 687, - op: "POP", - gas: 49975655, - gasCost: 2, - depth: 1, - }, - { - pc: 688, - op: "POP", - gas: 49975653, - gasCost: 2, - depth: 1, - }, - { - pc: 689, - op: "POP", - gas: 49975651, - gasCost: 2, - depth: 1, - }, - { - pc: 690, - op: "JUMP", - gas: 49975649, - gasCost: 8, - depth: 1, - }, - { - pc: 745, - op: "JUMPDEST", - gas: 49975641, - gasCost: 1, - depth: 1, - }, - { - pc: 746, - op: "PUSH2", - gas: 49975640, - gasCost: 3, - depth: 1, - }, - { - pc: 749, - op: "DUP2", - gas: 49975637, - gasCost: 3, - depth: 1, - }, - { - pc: 750, - op: "PUSH2", - gas: 49975634, - gasCost: 3, - depth: 1, - }, - { - pc: 753, - op: "JUMP", - gas: 49975631, - gasCost: 8, - depth: 1, - }, - { - pc: 691, - op: "JUMPDEST", - gas: 49975623, - gasCost: 1, - depth: 1, - }, - { - pc: 692, - op: "PUSH1", - gas: 49975622, - gasCost: 3, - depth: 1, - }, - { - pc: 694, - op: "PUSH1", - gas: 49975619, - gasCost: 3, - depth: 1, - }, - { - pc: 696, - op: "NOT", - gas: 49975616, - gasCost: 3, - depth: 1, - }, - { - pc: 697, - op: "PUSH1", - gas: 49975613, - gasCost: 3, - depth: 1, - }, - { - pc: 699, - op: "DUP4", - gas: 49975610, - gasCost: 3, - depth: 1, - }, - { - pc: 700, - op: "ADD", - gas: 49975607, - gasCost: 3, - depth: 1, - }, - { - pc: 701, - op: "AND", - gas: 49975604, - gasCost: 3, - depth: 1, - }, - { - pc: 702, - op: "SWAP1", - gas: 49975601, - gasCost: 3, - depth: 1, - }, - { - pc: 703, - op: "POP", - gas: 49975598, - gasCost: 2, - depth: 1, - }, - { - pc: 704, - op: "SWAP2", - gas: 49975596, - gasCost: 3, - depth: 1, - }, - { - pc: 705, - op: "SWAP1", - gas: 49975593, - gasCost: 3, - depth: 1, - }, - { - pc: 706, - op: "POP", - gas: 49975590, - gasCost: 2, - depth: 1, - }, - { - pc: 707, - op: "JUMP", - gas: 49975588, - gasCost: 8, - depth: 1, - }, - { - pc: 754, - op: "JUMPDEST", - gas: 49975580, - gasCost: 1, - depth: 1, - }, - { - pc: 755, - op: "DUP5", - gas: 49975579, - gasCost: 3, - depth: 1, - }, - { - pc: 756, - op: "ADD", - gas: 49975576, - gasCost: 3, - depth: 1, - }, - { - pc: 757, - op: "SWAP2", - gas: 49975573, - gasCost: 3, - depth: 1, - }, - { - pc: 758, - op: "POP", - gas: 49975570, - gasCost: 2, - depth: 1, - }, - { - pc: 759, - op: "POP", - gas: 49975568, - gasCost: 2, - depth: 1, - }, - { - pc: 760, - op: "SWAP3", - gas: 49975566, - gasCost: 3, - depth: 1, - }, - { - pc: 761, - op: "SWAP2", - gas: 49975563, - gasCost: 3, - depth: 1, - }, - { - pc: 762, - op: "POP", - gas: 49975560, - gasCost: 2, - depth: 1, - }, - { - pc: 763, - op: "POP", - gas: 49975558, - gasCost: 2, - depth: 1, - }, - { - pc: 764, - op: "JUMP", - gas: 49975556, - gasCost: 8, - depth: 1, - }, - { - pc: 791, - op: "JUMPDEST", - gas: 49975548, - gasCost: 1, - depth: 1, - }, - { - pc: 792, - op: "SWAP1", - gas: 49975547, - gasCost: 3, - depth: 1, - }, - { - pc: 793, - op: "POP", - gas: 49975544, - gasCost: 2, - depth: 1, - }, - { - pc: 794, - op: "SWAP3", - gas: 49975542, - gasCost: 3, - depth: 1, - }, - { - pc: 795, - op: "SWAP2", - gas: 49975539, - gasCost: 3, - depth: 1, - }, - { - pc: 796, - op: "POP", - gas: 49975536, - gasCost: 2, - depth: 1, - }, - { - pc: 797, - op: "POP", - gas: 49975534, - gasCost: 2, - depth: 1, - }, - { - pc: 798, - op: "JUMP", - gas: 49975532, - gasCost: 8, - depth: 1, - }, - { - pc: 119, - op: "JUMPDEST", - gas: 49975524, - gasCost: 1, - depth: 1, - }, - { - pc: 120, - op: "PUSH1", - gas: 49975523, - gasCost: 3, - depth: 1, - }, - { - pc: 122, - op: "MLOAD", - gas: 49975520, - gasCost: 3, - depth: 1, - }, - { - pc: 123, - op: "DUP1", - gas: 49975517, - gasCost: 3, - depth: 1, - }, - { - pc: 124, - op: "SWAP2", - gas: 49975514, - gasCost: 3, - depth: 1, - }, - { - pc: 125, - op: "SUB", - gas: 49975511, - gasCost: 3, - depth: 1, - }, - { - pc: 126, - op: "SWAP1", - gas: 49975508, - gasCost: 3, - depth: 1, - }, - { - pc: 127, - op: "RETURN", - gas: 49975505, - gasCost: 0, - depth: 1, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAThrowError.ts b/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAThrowError.ts deleted file mode 100644 index 5be81755a5..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/traceCall/contractAThrowError.ts +++ /dev/null @@ -1,5215 +0,0 @@ -import { GethTrace } from "../types"; - -// Trace generated using Geth 1.12.2 - -export const trace: GethTrace = { - gas: 21919, - failed: true, - returnValue: - "08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000294e756d626572206d7573742062652067726561746572207468616e206f7220657175616c20746f20350000000000000000000000000000000000000000000000", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 49978796, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 49978793, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 49978790, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 49978778, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 49978776, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 49978773, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 49978770, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 49978767, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 49978757, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 49978756, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 49978754, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 49978751, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 49978749, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 49978746, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 49978743, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000041", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 49978733, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 49978730, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 49978727, - gasCost: 3, - depth: 1, - stack: [ - "922af8a700000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 49978724, - gasCost: 3, - depth: 1, - stack: [ - "922af8a700000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 49978721, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 49978718, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "EQ", - gas: 49978715, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 49978712, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 49978709, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000046", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 70, - op: "JUMPDEST", - gas: 49978699, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 71, - op: "PUSH2", - gas: 49978698, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 74, - op: "PUSH1", - gas: 49978695, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 76, - op: "DUP1", - gas: 49978692, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 77, - op: "CALLDATASIZE", - gas: 49978689, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 78, - op: "SUB", - gas: 49978687, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 79, - op: "DUP2", - gas: 49978684, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 80, - op: "ADD", - gas: 49978681, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 81, - op: "SWAP1", - gas: 49978678, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 82, - op: "PUSH2", - gas: 49978675, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 85, - op: "SWAP2", - gas: 49978672, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000005b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 86, - op: "SWAP1", - gas: 49978669, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 87, - op: "PUSH2", - gas: 49978666, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 90, - op: "JUMP", - gas: 49978663, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000240", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 576, - op: "JUMPDEST", - gas: 49978655, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 577, - op: "PUSH1", - gas: 49978654, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 579, - op: "PUSH1", - gas: 49978651, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 581, - op: "DUP3", - gas: 49978648, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 582, - op: "DUP5", - gas: 49978645, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 583, - op: "SUB", - gas: 49978642, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 584, - op: "SLT", - gas: 49978639, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 585, - op: "ISZERO", - gas: 49978636, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 586, - op: "PUSH2", - gas: 49978633, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 589, - op: "JUMPI", - gas: 49978630, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000256", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 598, - op: "JUMPDEST", - gas: 49978620, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 599, - op: "PUSH1", - gas: 49978619, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 601, - op: "PUSH2", - gas: 49978616, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 604, - op: "DUP5", - gas: 49978613, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 605, - op: "DUP3", - gas: 49978610, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 606, - op: "DUP6", - gas: 49978607, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 607, - op: "ADD", - gas: 49978604, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 608, - op: "PUSH2", - gas: 49978601, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 611, - op: "JUMP", - gas: 49978598, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000022b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 555, - op: "JUMPDEST", - gas: 49978590, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 556, - op: "PUSH1", - gas: 49978589, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 558, - op: "DUP2", - gas: 49978586, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 559, - op: "CALLDATALOAD", - gas: 49978583, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 560, - op: "SWAP1", - gas: 49978580, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 561, - op: "POP", - gas: 49978577, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 562, - op: "PUSH2", - gas: 49978575, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 565, - op: "DUP2", - gas: 49978572, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 566, - op: "PUSH2", - gas: 49978569, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 569, - op: "JUMP", - gas: 49978566, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000214", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 532, - op: "JUMPDEST", - gas: 49978558, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 533, - op: "PUSH2", - gas: 49978557, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 536, - op: "DUP2", - gas: 49978554, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 537, - op: "PUSH2", - gas: 49978551, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 540, - op: "JUMP", - gas: 49978548, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000020a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 522, - op: "JUMPDEST", - gas: 49978540, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 523, - op: "PUSH1", - gas: 49978539, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 525, - op: "DUP2", - gas: 49978536, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 526, - op: "SWAP1", - gas: 49978533, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 527, - op: "POP", - gas: 49978530, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 528, - op: "SWAP2", - gas: 49978528, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 529, - op: "SWAP1", - gas: 49978525, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 530, - op: "POP", - gas: 49978522, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 531, - op: "JUMP", - gas: 49978520, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 541, - op: "JUMPDEST", - gas: 49978512, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 542, - op: "DUP2", - gas: 49978511, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 543, - op: "EQ", - gas: 49978508, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 544, - op: "PUSH2", - gas: 49978505, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 547, - op: "JUMPI", - gas: 49978502, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000228", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 552, - op: "JUMPDEST", - gas: 49978492, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 553, - op: "POP", - gas: 49978491, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 554, - op: "JUMP", - gas: 49978489, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 570, - op: "JUMPDEST", - gas: 49978481, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 571, - op: "SWAP3", - gas: 49978480, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 572, - op: "SWAP2", - gas: 49978477, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000264", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 573, - op: "POP", - gas: 49978474, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 574, - op: "POP", - gas: 49978472, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 575, - op: "JUMP", - gas: 49978470, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 612, - op: "JUMPDEST", - gas: 49978462, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 613, - op: "SWAP2", - gas: 49978461, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 614, - op: "POP", - gas: 49978458, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 615, - op: "POP", - gas: 49978456, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 616, - op: "SWAP3", - gas: 49978454, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 617, - op: "SWAP2", - gas: 49978451, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000005b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 618, - op: "POP", - gas: 49978448, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 619, - op: "POP", - gas: 49978446, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 620, - op: "JUMP", - gas: 49978444, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 91, - op: "JUMPDEST", - gas: 49978436, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 92, - op: "PUSH2", - gas: 49978435, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 95, - op: "JUMP", - gas: 49978432, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000009e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 158, - op: "JUMPDEST", - gas: 49978424, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 159, - op: "PUSH1", - gas: 49978423, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 161, - op: "DUP2", - gas: 49978420, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000005", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 162, - op: "LT", - gas: 49978417, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 163, - op: "ISZERO", - gas: 49978414, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 164, - op: "PUSH2", - gas: 49978411, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 167, - op: "JUMPI", - gas: 49978408, - gasCost: 10, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 168, - op: "PUSH1", - gas: 49978398, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 170, - op: "MLOAD", - gas: 49978395, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 171, - op: "PUSH32", - gas: 49978392, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 204, - op: "DUP2", - gas: 49978389, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 205, - op: "MSTORE", - gas: 49978386, - gasCost: 9, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 206, - op: "PUSH1", - gas: 49978377, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 208, - op: "ADD", - gas: 49978374, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 209, - op: "PUSH2", - gas: 49978371, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 212, - op: "SWAP1", - gas: 49978368, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 213, - op: "PUSH2", - gas: 49978365, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 216, - op: "JUMP", - gas: 49978362, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000391", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 913, - op: "JUMPDEST", - gas: 49978354, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 914, - op: "PUSH1", - gas: 49978353, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 916, - op: "PUSH1", - gas: 49978350, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 918, - op: "DUP3", - gas: 49978347, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 919, - op: "ADD", - gas: 49978344, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 920, - op: "SWAP1", - gas: 49978341, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 921, - op: "POP", - gas: 49978338, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 922, - op: "DUP2", - gas: 49978336, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 923, - op: "DUP2", - gas: 49978333, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 924, - op: "SUB", - gas: 49978330, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 925, - op: "PUSH1", - gas: 49978327, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 927, - op: "DUP4", - gas: 49978324, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 928, - op: "ADD", - gas: 49978321, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 929, - op: "MSTORE", - gas: 49978318, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 930, - op: "PUSH2", - gas: 49978312, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 933, - op: "DUP2", - gas: 49978309, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 934, - op: "PUSH2", - gas: 49978306, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 937, - op: "JUMP", - gas: 49978303, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "000000000000000000000000000000000000000000000000000000000000036e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 878, - op: "JUMPDEST", - gas: 49978295, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 879, - op: "PUSH1", - gas: 49978294, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 881, - op: "PUSH2", - gas: 49978291, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 884, - op: "PUSH1", - gas: 49978288, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 886, - op: "DUP4", - gas: 49978285, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 887, - op: "PUSH2", - gas: 49978282, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 890, - op: "JUMP", - gas: 49978279, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000278", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 632, - op: "JUMPDEST", - gas: 49978271, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 633, - op: "PUSH1", - gas: 49978270, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 635, - op: "DUP3", - gas: 49978267, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 636, - op: "DUP3", - gas: 49978264, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000029", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 637, - op: "MSTORE", - gas: 49978261, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 638, - op: "PUSH1", - gas: 49978255, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 640, - op: "DUP3", - gas: 49978252, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 641, - op: "ADD", - gas: 49978249, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 642, - op: "SWAP1", - gas: 49978246, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 643, - op: "POP", - gas: 49978243, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 644, - op: "SWAP3", - gas: 49978241, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 645, - op: "SWAP2", - gas: 49978238, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "000000000000000000000000000000000000000000000000000000000000037b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 646, - op: "POP", - gas: 49978235, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000029", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 647, - op: "POP", - gas: 49978233, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 648, - op: "JUMP", - gas: 49978231, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 891, - op: "JUMPDEST", - gas: 49978223, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 892, - op: "SWAP2", - gas: 49978222, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 893, - op: "POP", - gas: 49978219, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 894, - op: "PUSH2", - gas: 49978217, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 897, - op: "DUP3", - gas: 49978214, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 898, - op: "PUSH2", - gas: 49978211, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 901, - op: "JUMP", - gas: 49978208, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000031f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 799, - op: "JUMPDEST", - gas: 49978200, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 800, - op: "PUSH32", - gas: 49978199, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 833, - op: "PUSH1", - gas: 49978196, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 835, - op: "DUP3", - gas: 49978193, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 836, - op: "ADD", - gas: 49978190, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 837, - op: "MSTORE", - gas: 49978187, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000002900000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 838, - op: "PUSH32", - gas: 49978181, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f72206500000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 871, - op: "PUSH1", - gas: 49978178, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f72206500000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 873, - op: "DUP3", - gas: 49978175, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f72206500000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 874, - op: "ADD", - gas: 49978172, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f72206500000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 875, - op: "MSTORE", - gas: 49978169, - gasCost: 6, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f72206500000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 876, - op: "POP", - gas: 49978163, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 877, - op: "JUMP", - gas: 49978161, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 902, - op: "JUMPDEST", - gas: 49978153, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 903, - op: "PUSH1", - gas: 49978152, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 905, - op: "DUP3", - gas: 49978149, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 906, - op: "ADD", - gas: 49978146, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 907, - op: "SWAP1", - gas: 49978143, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 908, - op: "POP", - gas: 49978140, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 909, - op: "SWAP2", - gas: 49978138, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 910, - op: "SWAP1", - gas: 49978135, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000003aa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 911, - op: "POP", - gas: 49978132, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 912, - op: "JUMP", - gas: 49978130, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000003aa", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 938, - op: "JUMPDEST", - gas: 49978122, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 939, - op: "SWAP1", - gas: 49978121, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 940, - op: "POP", - gas: 49978118, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 941, - op: "SWAP2", - gas: 49978116, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 942, - op: "SWAP1", - gas: 49978113, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 943, - op: "POP", - gas: 49978110, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 944, - op: "JUMP", - gas: 49978108, - gasCost: 8, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 217, - op: "JUMPDEST", - gas: 49978100, - gasCost: 1, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 218, - op: "PUSH1", - gas: 49978099, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 220, - op: "MLOAD", - gas: 49978096, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 221, - op: "DUP1", - gas: 49978093, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 222, - op: "SWAP2", - gas: 49978090, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 223, - op: "SUB", - gas: 49978087, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000104", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 224, - op: "SWAP1", - gas: 49978084, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 225, - op: "REVERT", - gas: 49978081, - gasCost: 0, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "000000294e756d626572206d7573742062652067726561746572207468616e20", - "6f7220657175616c20746f203500000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - ], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/traceCall/ethTransfer.ts b/packages/hardhat-core/test/fixture-debug-traces/traceCall/ethTransfer.ts deleted file mode 100644 index aa452c63bf..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/traceCall/ethTransfer.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { GethTrace } from "../types"; - -// Trace generated using Geth 1.12.2 - -export const trace: GethTrace = { - gas: 21000, - failed: false, - returnValue: "", - structLogs: [], -}; diff --git a/packages/hardhat-core/test/fixture-debug-traces/types.ts b/packages/hardhat-core/test/fixture-debug-traces/types.ts deleted file mode 100644 index 0d395b7359..0000000000 --- a/packages/hardhat-core/test/fixture-debug-traces/types.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { - RpcDebugTraceOutput, - RpcStructLog, -} from "../../src/internal/hardhat-network/provider/output"; - -export type GethTrace = Omit & { - structLogs: Array>; -}; - -export type TurboGethTrace = GethTrace; diff --git a/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-from-old-block/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-from-old-block/hardhat.config.js deleted file mode 100644 index 41ddc2d38c..0000000000 --- a/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-from-old-block/hardhat.config.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - networks: { - hardhat: { - forking: { - url: process.env.ALCHEMY_URL, - blockNumber: 2463000, - }, - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-tangerine-whistle/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-tangerine-whistle/hardhat.config.js deleted file mode 100644 index ea9c1f0cd4..0000000000 --- a/packages/hardhat-core/test/fixture-projects/hardhat-network-fork-tangerine-whistle/hardhat.config.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - networks: { - hardhat: { - hardfork: "tangerineWhistle", - forking: { - url: process.env.ALCHEMY_URL, - }, - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/hardhat-network-initial-date/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/hardhat-network-initial-date/hardhat.config.js deleted file mode 100644 index 05ee71d46c..0000000000 --- a/packages/hardhat-core/test/fixture-projects/hardhat-network-initial-date/hardhat.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - networks: { - hardhat: { - initialDate: "2019-03-06T00:00:00", - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/hardhat-network-spurious-dragon/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/hardhat-network-spurious-dragon/hardhat.config.js deleted file mode 100644 index 469a3bc4dc..0000000000 --- a/packages/hardhat-core/test/fixture-projects/hardhat-network-spurious-dragon/hardhat.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - networks: { - hardhat: { - hardfork: "spuriousDragon", - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/hardhat-network-with-custom-coinbase/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/hardhat-network-with-custom-coinbase/hardhat.config.js deleted file mode 100644 index 27702ebba7..0000000000 --- a/packages/hardhat-core/test/fixture-projects/hardhat-network-with-custom-coinbase/hardhat.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - networks: { - hardhat: { - coinbase: "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/mnemonic-with-passphrase/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/mnemonic-with-passphrase/hardhat.config.js deleted file mode 100644 index dce3014e7f..0000000000 --- a/packages/hardhat-core/test/fixture-projects/mnemonic-with-passphrase/hardhat.config.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - networks: { - hardhat: { - accounts: { - mnemonic: - "drum alarm man enrich torch mule shine vessel struggle mention lend broken crowd six good", - passphrase: "my password", - }, - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/mnemonic-without-passphrase/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/mnemonic-without-passphrase/hardhat.config.js deleted file mode 100644 index ddaaec2b3e..0000000000 --- a/packages/hardhat-core/test/fixture-projects/mnemonic-without-passphrase/hardhat.config.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - networks: { - hardhat: { - accounts: { - mnemonic: - "drum alarm man enrich torch mule shine vessel struggle mention lend broken crowd six good", - }, - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/non-default-chainid/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/non-default-chainid/hardhat.config.js deleted file mode 100644 index 991b5667dd..0000000000 --- a/packages/hardhat-core/test/fixture-projects/non-default-chainid/hardhat.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - solidity: "0.5.15", - networks: { - hardhat: { - chainId: 1000, - }, - }, -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/package.json deleted file mode 100644 index afb1d75a08..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/buidler-plugin/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "buidler-plugin", - "version": "1.2.3", - "peerDependencies": { - "@nomiclabs/buidler": "^1.4.0" - } -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/package.json deleted file mode 100644 index bff5d7bffd..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "pack1", - "version": "2.1.0" -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function-default-export.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function-default-export.js deleted file mode 100644 index 9d49b564f0..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function-default-export.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports.default = function () { - global.loaded = true; -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function.js deleted file mode 100644 index b85fb1dea7..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-with-function.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function () { - global.loaded = true; -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-without-function.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-without-function.js deleted file mode 100644 index ccd153e1a8..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/pack1/plugin-without-function.js +++ /dev/null @@ -1 +0,0 @@ -global.loaded = true; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/package.json deleted file mode 100644 index 97124f4460..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/prerelease/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "prerelease", - "version": "2.1.0-rc.0" -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/package.json deleted file mode 100644 index 0b31881afc..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-missing-pack/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "requires-missing-pack", - "version": "1.0.0", - "peerDependencies": { - "non-existent": "^0.0.1" - } -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/package.json deleted file mode 100644 index cb0b567588..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-other-version-pack1/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "requires-other-version-pack1", - "version": "1.0.0", - "peerDependencies": { - "pack1": "^0.0.1" - } -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/package.json deleted file mode 100644 index 3170a7d55f..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-pack1/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "requires-pack1", - "version": "1.2.3", - "peerDependencies": { - "pack1": "^2.0.1" - } -} diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/index.js b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/index.js deleted file mode 100644 index 2714b45b13..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/index.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - global.loaded = true; -}; diff --git a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/package.json b/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/package.json deleted file mode 100644 index 596a285850..0000000000 --- a/packages/hardhat-core/test/fixture-projects/plugin-loading-project/node_modules/requires-prerelease/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "requires-pack1", - "version": "1.2.3", - "peerDependencies": { - "prerelease": "^2.0.0" - } -} diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/A.sol b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/A.sol deleted file mode 100644 index 7a8d147078..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/A.sol +++ /dev/null @@ -1,8 +0,0 @@ -pragma solidity ^0.5.6 - -import "@scope/package/contracts/File.sol"; - -contract A { - int a; -} - diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/ImportNested.sol b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/ImportNested.sol deleted file mode 100644 index dde88fb6b7..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/contracts/ImportNested.sol +++ /dev/null @@ -1,5 +0,0 @@ -pragma solidity ^0.5.6 - -import "@scope/package/contracts/nested/dir/Importer.sol"; - -contract ImportNested {} diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/File.sol b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/File.sol deleted file mode 100644 index 033c2a38a2..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/File.sol +++ /dev/null @@ -1,6 +0,0 @@ -pragma solidity ^0.5.6 - -contract File { - string file = "bar"; -} - diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/A.sol b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/A.sol deleted file mode 100644 index 8eae6c1092..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/A.sol +++ /dev/null @@ -1,4 +0,0 @@ -pragma solidity ^0.5.6 - -contract A {} - diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/dir/Importer.sol b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/dir/Importer.sol deleted file mode 100644 index 3af1b8a2be..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/contracts/nested/dir/Importer.sol +++ /dev/null @@ -1,5 +0,0 @@ -pragma solidity ^0.5.6 - -import "../A.sol"; - -contract Importer {} diff --git a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/package.json b/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/package.json deleted file mode 100644 index 11eb3e9d45..0000000000 --- a/packages/hardhat-core/test/fixture-projects/scoped-dependency-project/node_modules/@scope/package/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "@scope/package", - "version": "1.2.3" -} diff --git a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/.gitignore b/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/.gitignore deleted file mode 100644 index e7f801166c..0000000000 --- a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -artifacts/ -cache/ diff --git a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/contracts/Contract.sol b/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/contracts/Contract.sol deleted file mode 100644 index d99afa2ec1..0000000000 --- a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/contracts/Contract.sol +++ /dev/null @@ -1,7 +0,0 @@ -pragma solidity ^0.5.0; - -contract Contract { - constructor() public { - revert(); - } -} diff --git a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/hardhat.config.js deleted file mode 100644 index 565dd811da..0000000000 --- a/packages/hardhat-core/test/fixture-projects/solidity-stack-traces-integration/hardhat.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/fixture-projects/unlimited-contract-size/hardhat.config.js b/packages/hardhat-core/test/fixture-projects/unlimited-contract-size/hardhat.config.js deleted file mode 100644 index bb0004a9a7..0000000000 --- a/packages/hardhat-core/test/fixture-projects/unlimited-contract-size/hardhat.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - networks: { - hardhat: { - allowUnlimitedContractSize: true, - }, - }, - solidity: "0.5.15", -}; diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/MiningTimer.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/MiningTimer.ts deleted file mode 100644 index 23843fc214..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/MiningTimer.ts +++ /dev/null @@ -1,232 +0,0 @@ -import { assert } from "chai"; -import sinon from "sinon"; - -import { MiningTimer } from "../../../../src/internal/hardhat-network/provider/MiningTimer"; -import { sleep } from "../helpers/sleep"; - -describe("Mining Timer", () => { - const defaultBlockTime = 10000; - let miningTimer: MiningTimer; - let mineFunction: sinon.SinonSpy; - let sinonClock: sinon.SinonFakeTimers; - - beforeEach(() => { - mineFunction = sinon.fake(); - - miningTimer = new MiningTimer(defaultBlockTime, mineFunction); - - sinonClock = sinon.useFakeTimers({ - now: Date.now(), - toFake: ["setTimeout", "clearTimeout"], - }); - }); - - afterEach(() => { - sinonClock.restore(); - }); - - describe("construction", function () { - it("throws when blockTime passed to the constructor is negative", () => { - assert.throws( - () => new MiningTimer(-1, mineFunction), - Error, - "Block time cannot be negative" - ); - }); - - it("throws when blockTime range is invalid", () => { - assert.throws( - () => new MiningTimer([2000, 1000], mineFunction), - Error, - "Invalid block time range" - ); - }); - }); - - describe("setBlockTime", () => { - it("sets a new block time (fixed interval)", () => { - const newBlockTime = 15000; - - miningTimer.setBlockTime(newBlockTime); - - const actualBlockTime = miningTimer.getBlockTime(); - - assert.equal(actualBlockTime, newBlockTime); - }); - - it("sets a new block time (range)", () => { - const newBlockTime: [number, number] = [0, 2000]; - - miningTimer.setBlockTime(newBlockTime); - - const actualBlockTime = miningTimer.getBlockTime(); - - assert.equal(actualBlockTime, newBlockTime); - }); - - it("triggers a new loop when mining timer is running", async () => { - const newBlockTime = Math.ceil(defaultBlockTime / 2); - - miningTimer.start(); - - await sinonClock.tickAsync(defaultBlockTime - 500); - - miningTimer.setBlockTime(newBlockTime); - - await sinonClock.tickAsync(500); - - const currentBlockTime = miningTimer.getBlockTime(); - - assert.equal(currentBlockTime, newBlockTime); - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(newBlockTime - 500); - assert.isTrue(mineFunction.calledOnce); - }); - - it("triggers a new loop when new block time is the same as the old one", async () => { - miningTimer.start(); - - await sinonClock.tickAsync(defaultBlockTime - 500); - - miningTimer.setBlockTime(defaultBlockTime); - - await sinonClock.tickAsync(500); - - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(defaultBlockTime - 500); - assert.isTrue(mineFunction.calledOnce); - }); - - it("stops when the new block time is 0", async function () { - miningTimer.start(); - - await sinonClock.tickAsync(defaultBlockTime - 500); - - miningTimer.setBlockTime(0); - - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(defaultBlockTime + 500); - assert.isTrue(mineFunction.notCalled); - }); - - it("throws when the new block time is negative", () => { - assert.throws( - () => miningTimer.setBlockTime(-1), - Error, - "Block time cannot be negative" - ); - }); - - it("throws when the new block time is an invalid range", () => { - assert.throws( - () => miningTimer.setBlockTime([3000, 2000]), - Error, - "Invalid block time range" - ); - }); - }); - - describe("start", () => { - it("starts the loop", async () => { - miningTimer.start(); - - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.calledOnce); - }); - - it("the loop executes the callback over time", async () => { - miningTimer.start(); - - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.calledOnce); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.calledTwice); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.calledThrice); - }); - - it("the loop awaits for async callback execution before looping again", async () => { - const interval = 500; - let callCount = 0; - - const newMineFunction = async (): Promise => { - await sleep(100); - callCount++; - }; - - miningTimer = new MiningTimer(interval, newMineFunction); - - miningTimer.start(); - - await sinonClock.tickAsync(interval); - - assert.equal(callCount, 0); - - await sinonClock.tickAsync(90); - - assert.equal(callCount, 0); - - await sinonClock.tickAsync(10); - - assert.equal(callCount, 1); - - await sinonClock.tickAsync(interval + 50); - - assert.equal(callCount, 1); - - await sinonClock.tickAsync(50); - - assert.equal(callCount, 2); - }); - - it("multiple start calls don't affect the loop", async () => { - miningTimer.start(); - - await sinonClock.tickAsync(defaultBlockTime - 500); - - miningTimer.start(); - - assert.isTrue(mineFunction.notCalled); - - await sinonClock.tickAsync(500); - - assert.isTrue(mineFunction.calledOnce); - }); - }); - - describe("stop", () => { - it("stops the loop", async () => { - miningTimer.start(); - - assert.isTrue(mineFunction.notCalled); - - miningTimer.stop(); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.notCalled); - }); - - it("stops the loop after a couple of callback executions", async () => { - miningTimer.start(); - - await sinonClock.tickAsync(2 * defaultBlockTime); - - assert.isTrue(mineFunction.calledTwice); - - mineFunction.resetHistory(); - miningTimer.stop(); - - await sinonClock.tickAsync(defaultBlockTime); - assert.isTrue(mineFunction.notCalled); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/baseFeePerGas.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/baseFeePerGas.ts deleted file mode 100644 index 514ebd206f..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/baseFeePerGas.ts +++ /dev/null @@ -1,255 +0,0 @@ -import { assert } from "chai"; -import { Block } from "@nomicfoundation/ethereumjs-block"; -import { Common } from "@nomicfoundation/ethereumjs-common"; - -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { PROVIDERS } from "../helpers/providers"; -import { - numberToRpcQuantity, - rpcQuantityToBigInt, -} from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { EthereumProvider } from "../../../../src/types"; -import { makeForkClient } from "../../../../src/internal/hardhat-network/provider/utils/makeForkClient"; -import { ALCHEMY_URL } from "../../../setup"; -import { rpcToBlockData } from "./utils/rpcToBlockData"; - -async function getLatestBaseFeePerGas(provider: EthereumProvider) { - const block = await provider.send("eth_getBlockByNumber", ["latest", false]); - - if (block.baseFeePerGas === undefined) { - return undefined; - } - - return rpcQuantityToBigInt(block.baseFeePerGas); -} - -async function assertLatestBaseFeePerGas( - provider: EthereumProvider, - expectedBaseFeePerGas: bigint -) { - const baseFeePerGas = await getLatestBaseFeePerGas(provider); - - assert.isDefined(baseFeePerGas); - assert.equal(baseFeePerGas, expectedBaseFeePerGas); -} - -async function sendValueTransferTx(provider: EthereumProvider, sender: string) { - await provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - gas: numberToRpcQuantity(21000), - }, - ]); -} - -async function mineBlockWithValueTransferTxs( - provider: EthereumProvider, - valueTransferTxs: number -) { - await provider.send("evm_setAutomine", [false]); - const [sender] = await provider.send("eth_accounts"); - - for (let i = 0; i < valueTransferTxs; i++) { - await sendValueTransferTx(provider, sender); - } - - await provider.send("evm_mine"); - - await provider.send("evm_setAutomine", [true]); -} - -describe("Block's baseFeePerGas", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - describe("Initial base fee per gas", function () { - if (!isFork) { - describe("When not forking from a remote network the first block must have the right value", function () { - describe("With an initialBaseFeePerGas config value", function () { - useProvider({ initialBaseFeePerGas: 123n }); - - it("should use the given value", async function () { - await assertLatestBaseFeePerGas(this.provider, 123n); - }); - }); - - describe("Without an initialBaseFeePerGas config value", function () { - useProvider({}); - - it("should use the initial base fee from the EIP (i.e. 1gwei)", async function () { - await assertLatestBaseFeePerGas(this.provider, 1_000_000_000n); - }); - }); - }); - } else { - describe("When forking from a remote network the forked block must have the right value", function () { - describe("With an initialBaseFeePerGas config value", function () { - useProvider({ initialBaseFeePerGas: 123123n }); - - it("should use the given value", async function () { - await mineBlockWithValueTransferTxs(this.provider, 0); - await assertLatestBaseFeePerGas(this.provider, 123123n); - }); - }); - - describe("Without an initialBaseFeePerGas config value", function () { - useProvider(); - - it("Should use the same base fee as the one remote networks's forked block", async function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - return; - } - - const blockNumber = await this.provider.send("eth_blockNumber"); - const { forkClient } = await makeForkClient({ - jsonRpcUrl: ALCHEMY_URL!, - }); - - const remoteLatestBlockBaseFeePerGas = - await forkClient.getBlockByNumber( - rpcQuantityToBigInt(blockNumber) - ); - await assertLatestBaseFeePerGas( - this.provider, - remoteLatestBlockBaseFeePerGas!.baseFeePerGas! - ); - }); - - for (const hardfork of [ - "london", - "arrowGlacier", - "shanghai", - "cancun", - ]) { - it(`should compute the next base fee correctly when ${hardfork} is activated`, async function () { - const latestBlockRpc = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - if (hardfork !== "shanghai") { - delete latestBlockRpc.withdrawals; - delete latestBlockRpc.withdrawalsRoot; - } - - if (hardfork !== "cancun") { - delete latestBlockRpc.blobGasUsed; - delete latestBlockRpc.excessBlobGas; - delete latestBlockRpc.parentBeaconBlockRoot; - } - - const latestBlockData = rpcToBlockData({ - ...latestBlockRpc, - transactions: [], - }); - - const latestBlock = Block.fromBlockData( - { - header: latestBlockData.header, - }, - { - common: new Common({ - chain: "mainnet", - hardfork, - }), - } - ); - - const expectedNextBaseFee = - latestBlock.header.calcNextBaseFee(); - - await this.provider.send("evm_mine"); - - await assertLatestBaseFeePerGas( - this.provider, - expectedNextBaseFee - ); - }); - } - }); - }); - } - }); - - describe("Base fee adjustment", function () { - // These tests will run 6 blocks: - // The first one will be empty, - // The second one will be 1/4 filled - // The third one will be 1/2 filled, matching the gas target exactly - // The forth will be 3/4 filled - // The fifth will be completely filled - // - // All of the tests have a blockGasLimit of 21_000 * 4, so blocks can - // only accept 4 value transfer txs. - // - // The initialBaseFeePerGas is 1_000_000_000, so the gas fee of the - // blocks will be: - // 1. 1_000_000_000 -- empty - // 2. 875_000_000 -- 1/4 full - // 3. 820_312_500 -- 1/2 full - // 4. 820_312_500 -- 3/4 full - // 5. 871_582_031 -- full - // 6. 980529784 -- doesn't matter if full or not - - async function validateTheNext6BlocksBaseFeePerGas( - provider: EthereumProvider - ) { - await assertLatestBaseFeePerGas(provider, 1_000_000_000n); - - await mineBlockWithValueTransferTxs(provider, 1); - - await assertLatestBaseFeePerGas(provider, 875_000_000n); - - await mineBlockWithValueTransferTxs(provider, 2); - - await assertLatestBaseFeePerGas(provider, 820_312_500n); - - await mineBlockWithValueTransferTxs(provider, 3); - - await assertLatestBaseFeePerGas(provider, 820_312_500n); - - await mineBlockWithValueTransferTxs(provider, 4); - - await assertLatestBaseFeePerGas(provider, 871_582_031n); - - await mineBlockWithValueTransferTxs(provider, 0); - - await assertLatestBaseFeePerGas(provider, 980_529_784n); - } - - if (!isFork) { - describe("When not forking", function () { - useProvider({ - blockGasLimit: 21000n * 4n, - initialBaseFeePerGas: 1_000_000_000n, - }); - - it("should update the baseFeePerGas starting with the first block", async function () { - await validateTheNext6BlocksBaseFeePerGas(this.provider); - }); - }); - } else { - describe("When forking", function () { - useProvider({ - blockGasLimit: 21000n * 4n, - initialBaseFeePerGas: 1_000_000_000n, - }); - - it("should update the baseFeePerGas starting with the first block", async function () { - // We mine an empty block first, to make the scenario match the non-forking one - await mineBlockWithValueTransferTxs(this.provider, 0); - await validateTheNext6BlocksBaseFeePerGas(this.provider); - }); - }); - } - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/error-object.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/error-object.ts deleted file mode 100644 index 3dcd1664e5..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/error-object.ts +++ /dev/null @@ -1,245 +0,0 @@ -import { TransactionFactory } from "@nomicfoundation/ethereumjs-tx"; -import { assert } from "chai"; - -import { rpcQuantityToNumber } from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_REVERT_CONTRACT } from "../helpers/contracts"; -import { setCWD } from "../helpers/cwd"; -import { - DEFAULT_ACCOUNTS, - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../helpers/providers"; -import { deployContract } from "../helpers/transactions"; -import { useHelpers } from "../helpers/useHelpers"; - -// `Error("a reason")` encoded -const REVERT_REASON_STRING = - "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000086120726561736f6e000000000000000000000000000000000000000000000000"; -const REVERT_CUSTOM_ERROR = "0x4e7254d6"; - -// The error thrown by the provider when a transaction reverts has extra information, like the -// transaction hash (if the method is eth_send[Raw]Transaction) and the raw return data. -// -// The positions of these values in the error object (and even the key names) can be different, -// depending on if the provider is the in-process one or an http provider. We did it this way -// to make ethers work correctly both for v5 and v6, and for hardhat-chai-matchers reasons. - -describe("error object in JSON-RPC response", function () { - PROVIDERS.forEach(({ name, useProvider, isFork, isJsonRpc }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - - describe("should have the right fields", function () { - useProvider(); - useHelpers(); - - it("when using eth_sendTransaction", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - let transactionReverted = false; - try { - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - } catch (error: any) { - transactionReverted = true; - - if (isJsonRpc) { - assert.isObject(error.data); - assert.equal(error.data.data, REVERT_REASON_STRING); - assert.equal(error.data.message, error.message); - assert.isString(error.data.txHash); - assert.hasAllKeys(error.data, ["data", "message", "txHash"]); - } else { - assert.equal(error.data, REVERT_REASON_STRING); - assert.isString(error.transactionHash); - } - } - - assert.isTrue( - transactionReverted, - "Transaction should have reverted" - ); - }); - - it("when using eth_sendTransaction and a custom error is thrown", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - let transactionReverted = false; - try { - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_REVERT_CONTRACT.selectors.customError}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - } catch (error: any) { - transactionReverted = true; - - if (isJsonRpc) { - assert.isObject(error.data); - assert.equal(error.data.data, REVERT_CUSTOM_ERROR); - assert.equal(error.data.message, error.message); - assert.isString(error.data.txHash); - assert.hasAllKeys(error.data, ["data", "message", "txHash"]); - } else { - assert.equal(error.data, REVERT_CUSTOM_ERROR); - assert.isString(error.transactionHash); - } - } - - assert.isTrue( - transactionReverted, - "Transaction should have reverted" - ); - }); - - it("when using eth_sendRawTransaction", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - let transactionReverted = false; - try { - // don't use remote base fee - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x10", - ]); - - // build tx - const nonce = rpcQuantityToNumber( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - "latest", - ]) - ); - const tx = TransactionFactory.fromTxData( - { - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}`, - nonce, - gasLimit: 1_000_000, - gasPrice: 10_000_000_000, - }, - { common: (this.hardhatNetworkProvider as any)._common } - ).sign(Buffer.from(DEFAULT_ACCOUNTS[0].privateKey.slice(2), "hex")); - - const rawTx = `0x${Buffer.from(tx.serialize()).toString("hex")}`; - - // send tx - await this.provider.send("eth_sendRawTransaction", [rawTx]); - } catch (error: any) { - transactionReverted = true; - - if (isJsonRpc) { - assert.isObject(error.data); - assert.equal(error.data.data, REVERT_REASON_STRING); - assert.equal(error.data.message, error.message); - assert.isString(error.data.txHash); - assert.hasAllKeys(error.data, ["data", "message", "txHash"]); - } else { - assert.equal(error.data, REVERT_REASON_STRING); - assert.isString(error.transactionHash); - } - } - - assert.isTrue( - transactionReverted, - "Transaction should have reverted" - ); - }); - - it("when using eth_call", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - let transactionReverted = false; - try { - await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - } catch (error: any) { - transactionReverted = true; - - if (isJsonRpc) { - assert.isObject(error.data); - assert.equal(error.data.data, REVERT_REASON_STRING); - assert.equal(error.data.message, error.message); - assert.isUndefined(error.data.txHash); - assert.hasAllKeys(error.data, ["data", "message"]); - } else { - assert.equal(error.data, REVERT_REASON_STRING); - assert.isUndefined(error.transactionHash); - } - } - - assert.isTrue( - transactionReverted, - "Transaction should have reverted" - ); - }); - - it("when using eth_estimateGas", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - let transactionReverted = false; - try { - await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - } catch (error: any) { - transactionReverted = true; - - if (isJsonRpc) { - assert.isObject(error.data); - assert.equal(error.data.data, REVERT_REASON_STRING); - assert.equal(error.data.message, error.message); - assert.isUndefined(error.data.txHash); - assert.hasAllKeys(error.data, ["data", "message"]); - } else { - assert.equal(error.data, REVERT_REASON_STRING); - assert.isUndefined(error.transactionHash); - } - } - - assert.isTrue( - transactionReverted, - "Transaction should have reverted" - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/forked-provider.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/forked-provider.ts deleted file mode 100644 index d4edc42b11..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/forked-provider.ts +++ /dev/null @@ -1,536 +0,0 @@ -import { bytesToHex as bufferToHex } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcDataToBigInt, - rpcQuantityToBigInt, - rpcQuantityToNumber, -} from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { InvalidInputError } from "../../../../src/internal/core/providers/errors"; -import { LegacyRpcTransactionOutput } from "../../../../src/internal/hardhat-network/provider/output"; -import { ALCHEMY_URL } from "../../../setup"; -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { - assertQuantity, - assertTransactionFailure, -} from "../helpers/assertions"; -import { - BITFINEX_WALLET_ADDRESS, - BLOCK_NUMBER_OF_10496585, - DAI_ADDRESS, - EMPTY_ACCOUNT_ADDRESS, - FIRST_TX_HASH_OF_10496585, - UNISWAP_FACTORY_ADDRESS, - WETH_ADDRESS, -} from "../helpers/constants"; -import { EXAMPLE_CONTRACT } from "../helpers/contracts"; -import { setCWD } from "../helpers/cwd"; -import { hexStripZeros } from "../helpers/hexStripZeros"; -import { leftPad32 } from "../helpers/leftPad32"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - FORKED_PROVIDERS, -} from "../helpers/providers"; -import { deployContract } from "../helpers/transactions"; - -const WETH_DEPOSIT_SELECTOR = "0xd0e30db0"; - -describe("Forked provider", function () { - FORKED_PROVIDERS.forEach(({ rpcProvider, useProvider }) => { - workaroundWindowsCiFailures.call(this, { isFork: true }); - - describe(`Using ${rpcProvider}`, function () { - setCWD(); - useProvider(); - - let gasPrice: string; - beforeEach(async function () { - gasPrice = await this.provider.send("eth_gasPrice"); - }); - - describe("eth_blockNumber", () => { - it("returns the current block number", async function () { - const blockNumber = await this.provider.send("eth_blockNumber"); - const minBlockNumber = 10494745; // mainnet block number at 20.07.2020 - assert.isAtLeast(rpcQuantityToNumber(blockNumber), minBlockNumber); - }); - }); - - describe("eth_call", function () { - it("can get DAI total supply", async function () { - const daiTotalSupplySelector = "0x18160ddd"; - const result = await this.provider.send("eth_call", [ - { to: DAI_ADDRESS.toString(), data: daiTotalSupplySelector }, - ]); - - const bnResult = BigInt(result); - assert.isTrue(bnResult > 0n); - }); - - describe("when used in the context of a past block", () => { - describe("when the block number is greater than the fork block number", () => { - it("does not affect previously added data", async function () { - const forkBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const firstState = leftPad32("0xdeadbeef"); - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + firstState, - }, - ]); - - const temporaryState = leftPad32("0xfeedface"); - await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: - EXAMPLE_CONTRACT.selectors.modifiesState + temporaryState, - }, - numberToRpcQuantity(forkBlockNumber + 1), - ]); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - "latest", - ]), - `0x${firstState}` - ); - }); - }); - - describe("when the block number is less or equal to the fork block number", () => { - it("does not affect previously added storage data", async function () { - const forkBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("hardhat_impersonateAccount", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - - const getWrappedBalance = async () => { - const balanceOfSelector = `0x70a08231${leftPad32( - BITFINEX_WALLET_ADDRESS.toString() - )}`; - return rpcDataToBigInt( - await this.provider.send("eth_call", [ - { to: WETH_ADDRESS.toString(), data: balanceOfSelector }, - ]) - ).toString(); - }; - - await this.provider.send("eth_sendTransaction", [ - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: WETH_ADDRESS.toString(), - data: WETH_DEPOSIT_SELECTOR, - value: numberToRpcQuantity(123), - gas: numberToRpcQuantity(50000), - maxFeePerGas: gasPrice, - }, - ]); - const balance = await getWrappedBalance(); - - await this.provider.send("eth_call", [ - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: WETH_ADDRESS.toString(), - data: WETH_DEPOSIT_SELECTOR, - value: numberToRpcQuantity(321), - }, - numberToRpcQuantity(forkBlockNumber - 3), - ]); - - assert.equal(await getWrappedBalance(), balance); - }); - - it("does not affect previously added balance data", async function () { - const forkBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("hardhat_impersonateAccount", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: EMPTY_ACCOUNT_ADDRESS.toString(), - value: numberToRpcQuantity(123), - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - ]); - - await this.provider.send("eth_call", [ - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: EMPTY_ACCOUNT_ADDRESS.toString(), - value: numberToRpcQuantity(321), - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - const balance = await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - ]); - assert.equal(rpcQuantityToNumber(balance), 123); - }); - }); - }); - }); - - describe("eth_getBalance", function () { - it("can get the balance of the WETH contract", async function () { - const result = await this.provider.send("eth_getBalance", [ - WETH_ADDRESS.toString(), - ]); - assert.isTrue(rpcQuantityToBigInt(result) > 0n); - }); - }); - - describe("eth_sendTransaction", () => { - it("supports Ether transfers to remote accounts", async function () { - const result = await this.provider.send("eth_getBalance", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - const initialBalance = rpcQuantityToBigInt(result); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: BITFINEX_WALLET_ADDRESS.toString(), - value: numberToRpcQuantity(100), - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - ]); - const balance = await this.provider.send("eth_getBalance", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - assertQuantity(balance, initialBalance + 100n); - }); - - it("supports wrapping of Ether", async function () { - const wethBalanceOfSelector = `0x70a08231${leftPad32( - DEFAULT_ACCOUNTS_ADDRESSES[0] - )}`; - - const getWrappedBalance = async () => - rpcDataToBigInt( - await this.provider.send("eth_call", [ - { to: WETH_ADDRESS.toString(), data: wethBalanceOfSelector }, - ]) - ); - - const initialBalance = await getWrappedBalance(); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: WETH_ADDRESS.toString(), - data: WETH_DEPOSIT_SELECTOR, - value: numberToRpcQuantity(100), - gas: numberToRpcQuantity(50000), - maxFeePerGas: gasPrice, - }, - ]); - const balance = await getWrappedBalance(); - assert.equal(balance, initialBalance + 100n); - }); - }); - - describe("eth_getTransactionByHash", () => { - it("supports local transactions", async function () { - const transactionHash = await this.provider.send( - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - ] - ); - - const transaction = await this.provider.send( - "eth_getTransactionByHash", - [transactionHash] - ); - - assert.equal(transaction.from, DEFAULT_ACCOUNTS_ADDRESSES[0]); - assert.equal(transaction.to, DEFAULT_ACCOUNTS_ADDRESSES[1]); - assert.equal(transaction.value, numberToRpcQuantity(1)); - assert.equal(transaction.gas, numberToRpcQuantity(21000)); - assert.equal(transaction.maxFeePerGas, gasPrice); - }); - - it("supports remote transactions", async function () { - const transaction = await this.provider.send( - "eth_getTransactionByHash", - [bufferToHex(FIRST_TX_HASH_OF_10496585)] - ); - - assert.equal( - transaction.from, - "0x4e87582f5e48f3e505b7d3b544972399ad9f2e5f" - ); - assert.equal( - transaction.to, - "0xdac17f958d2ee523a2206206994597c13d831ec7" - ); - }); - }); - - describe("eth_getTransactionCount", () => { - it("should have a non-zero nonce for the first unlocked account", async function () { - // this test works because the first unlocked accounts used by these - // tests happen to have transactions in mainnet - const [account] = await this.provider.send("eth_accounts"); - - const transactionCount = await this.provider.send( - "eth_getTransactionCount", - [account] - ); - - assert.isTrue(rpcQuantityToBigInt(transactionCount) > 0); - }); - }); - - describe("eth_getTransactionReceipt", () => { - it("supports local transactions", async function () { - const transactionHash = await this.provider.send( - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - ] - ); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [transactionHash] - ); - - assert.equal(receipt.from, DEFAULT_ACCOUNTS_ADDRESSES[0]); - assert.equal(receipt.to, DEFAULT_ACCOUNTS_ADDRESSES[1]); - assert.equal(receipt.gasUsed, numberToRpcQuantity(21000)); - }); - - it("supports remote transactions", async function () { - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [bufferToHex(FIRST_TX_HASH_OF_10496585)] - ); - - assert.equal( - receipt.from, - "0x4e87582f5e48f3e505b7d3b544972399ad9f2e5f" - ); - assert.equal( - receipt.to, - "0xdac17f958d2ee523a2206206994597c13d831ec7" - ); - }); - }); - - describe("eth_getLogs", () => { - it("can get remote logs", async function () { - const logs = await this.provider.send("eth_getLogs", [ - { - fromBlock: numberToRpcQuantity(BLOCK_NUMBER_OF_10496585), - toBlock: numberToRpcQuantity(BLOCK_NUMBER_OF_10496585), - }, - ]); - - assert.equal(logs.length, 205); - }); - }); - - describe("evm_revert", () => { - it("can revert the state of WETH contract to a previous snapshot", async function () { - const getWethBalance = async () => - this.provider.send("eth_getBalance", [WETH_ADDRESS.toString()]); - - const initialBalance = await getWethBalance(); - const snapshotId = await this.provider.send("evm_snapshot", []); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: WETH_ADDRESS.toString(), - data: WETH_DEPOSIT_SELECTOR, - value: numberToRpcQuantity(100), - gas: numberToRpcQuantity(50000), - maxFeePerGas: gasPrice, - }, - ]); - assert.notEqual(await getWethBalance(), initialBalance); - - const reverted = await this.provider.send("evm_revert", [snapshotId]); - assert.isTrue(reverted); - assert.equal(await getWethBalance(), initialBalance); - }); - }); - - describe("hardhat_impersonateAccount", () => { - const oneEtherQuantity = numberToRpcQuantity(10n ** 18n); - - it("allows to impersonate a remote EOA", async function () { - await this.provider.send("hardhat_impersonateAccount", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: EMPTY_ACCOUNT_ADDRESS.toString(), - value: oneEtherQuantity, - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - ]); - const balance = await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - ]); - assert.equal(balance, oneEtherQuantity); - }); - - it("allows to impersonate a remote contract account", async function () { - // Get Uniswap DAI exchange address - const getExchangeSelector = `0x06f2bf62${leftPad32( - DAI_ADDRESS.toString() - )}`; - const result = await this.provider.send("eth_call", [ - { - to: UNISWAP_FACTORY_ADDRESS.toString(), - data: getExchangeSelector, - }, - ]); - const daiExchangeAddress = hexStripZeros(result); - - // Impersonate the DAI exchange contract - await this.provider.send("hardhat_impersonateAccount", [ - daiExchangeAddress, - ]); - - // Transfer 10^18 DAI from the exchange contract to the EMPTY_ACCOUNT_ADDRESS - const transferRawData = `0xa9059cbb${leftPad32( - EMPTY_ACCOUNT_ADDRESS.toString() - )}${leftPad32(oneEtherQuantity)}`; - - await this.provider.send("eth_sendTransaction", [ - { - from: daiExchangeAddress, - to: DAI_ADDRESS.toString(), - gas: numberToRpcQuantity(200_000), - maxFeePerGas: gasPrice, - data: transferRawData, - }, - ]); - - // Check DAI balance of EMPTY_ACCOUNT_ADDRESS - const balanceOfSelector = `0x70a08231${leftPad32( - EMPTY_ACCOUNT_ADDRESS.toString() - )}`; - - const daiBalance = await this.provider.send("eth_call", [ - { to: DAI_ADDRESS.toString(), data: balanceOfSelector }, - ]); - - assert.equal(hexStripZeros(daiBalance), oneEtherQuantity); - }); - }); - - describe("hardhat_stopImpersonatingAccount", () => { - it("disables account impersonating", async function () { - await this.provider.send("hardhat_impersonateAccount", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - await this.provider.send("hardhat_stopImpersonatingAccount", [ - BITFINEX_WALLET_ADDRESS.toString(), - ]); - - await assertTransactionFailure( - this.provider, - { - from: BITFINEX_WALLET_ADDRESS.toString(), - to: EMPTY_ACCOUNT_ADDRESS.toString(), - value: numberToRpcQuantity(100), - gas: numberToRpcQuantity(21000), - maxFeePerGas: gasPrice, - }, - "unknown account", - InvalidInputError.CODE - ); - }); - }); - - describe("blocks timestamps", () => { - it("should use a timestamp relative to the forked block timestamp", async function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - } - - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: 11565019, // first block of 2021 - }, - }, - ]); - - await this.provider.send("evm_mine"); - - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const timestamp = rpcQuantityToNumber(block.timestamp); - const date = new Date(timestamp * 1000); - - // check that the new block date is 2021-Jan-01 - assert.equal(date.getUTCDate(), 1); - assert.equal(date.getUTCMonth(), 0); - assert.equal(date.getUTCFullYear(), 2021); - }); - }); - - it("legacy transactions before the berlin hardfork should have type 0", async function () { - // last tx before the berlin hardfork - const txHash = - "0x8cd030cb5c760d76badf6e44b87b00210219a2180f044376f2ed3041d1f7e27b"; - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(tx.type, "0x0"); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/forking-different-hardfork.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/forking-different-hardfork.ts deleted file mode 100644 index ca93ff2bd6..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/forking-different-hardfork.ts +++ /dev/null @@ -1,670 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcDataToBigInt, -} from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { DAI_ADDRESS } from "../helpers/constants"; -import { setCWD } from "../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - FORKED_PROVIDERS, -} from "../helpers/providers"; - -const TOTAL_SUPPLY_SELECTOR = "0x18160ddd"; - -// mainnet hardforks -const CANCUN_HARDFORK_BLOCK_NUMBER = 19_426_589; -const SHANGHAI_HARDFORK_BLOCK_NUMBER = 17_034_870; -const MERGE_HARDFORK_BLOCK_NUMBER = 15_537_394; - -// sepolia hardforks (for temporary testing) -// const CANCUN_HARDFORK_BLOCK_NUMBER = 5_187_023; -// const SHANGHAI_HARDFORK_BLOCK_NUMBER = 2_990_908; - -// this block should have a non-empty list of withdrawals -const BLOCK_WITH_WITHDRAWALS = 17_034_920; - -const BLOCK_WITH_WITHDRAWALS_EXPECTED_ROOT = - "0x23bf85b92f3a2695d13463d84de157c3f43d0fe201348d638693fcfa87734d5e"; - -const BEACON_ROOT_ADDRESS = "0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"; - -describe("Forking a block with a different hardfork", function () { - FORKED_PROVIDERS.forEach(({ rpcProvider, useProvider }) => { - workaroundWindowsCiFailures.call(this, { isFork: true }); - - describe(`Using ${rpcProvider}`, function () { - setCWD(); - - describe("before and after shanghai", function () { - describe("shanghai hardfork", function () { - const hardfork = "shanghai"; - - describe("forking a 'shanghai' block", function () { - const forkBlockNumber = SHANGHAI_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - hardfork, - forkBlockNumber, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should have shanghai fields in blocks before and after the fork", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(BLOCK_WITH_WITHDRAWALS), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.equal( - blockBeforeFork.withdrawalsRoot, - BLOCK_WITH_WITHDRAWALS_EXPECTED_ROOT - ); - assert.isNotEmpty(blockBeforeFork.withdrawals); - - assert.isDefined(blockAfterFork.withdrawalsRoot); - assert.isDefined(blockAfterFork.withdrawals); - }); - }); - - describe("forking a 'merge' block", function () { - const forkBlockNumber = MERGE_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - forkBlockNumber, - hardfork, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 6378560137543824474512862351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 6378560137543824474512862351n - ); - }); - - it("should have shanghai fields in blocks after the fork but not before", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.isUndefined(blockBeforeFork.withdrawalsRoot); - assert.isUndefined(blockBeforeFork.withdrawals); - assert.isDefined(blockAfterFork.withdrawalsRoot); - assert.isDefined(blockAfterFork.withdrawals); - }); - }); - }); - - describe("merge hardfork", function () { - const hardfork = "merge"; - - describe("forking a 'shanghai' block", function () { - const forkBlockNumber = SHANGHAI_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - forkBlockNumber, - hardfork, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should have shanghai fields in blocks before the fork but not after", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(BLOCK_WITH_WITHDRAWALS), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.equal( - blockBeforeFork.withdrawalsRoot, - BLOCK_WITH_WITHDRAWALS_EXPECTED_ROOT - ); - assert.isNotEmpty(blockBeforeFork.withdrawals); - - assert.isUndefined(blockAfterFork.withdrawalsRoot); - assert.isUndefined(blockAfterFork.withdrawals); - }); - }); - - describe("forking a 'merge' block", function () { - const forkBlockNumber = MERGE_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - forkBlockNumber, - hardfork, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 6378560137543824474512862351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 6378560137543824474512862351n - ); - }); - - it("shouldn't have shanghai fields in blocks before or after the fork", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.isUndefined(blockBeforeFork.withdrawalsRoot); - assert.isUndefined(blockBeforeFork.withdrawals); - assert.isUndefined(blockAfterFork.withdrawalsRoot); - assert.isUndefined(blockAfterFork.withdrawals); - }); - }); - }); - }); - - describe("before and after cancun", function () { - describe("cancun hardfork", function () { - const hardfork = "cancun"; - - describe("forking a 'cancun' block", function () { - const forkBlockNumber = CANCUN_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - hardfork, - forkBlockNumber, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 3199311553579684551316799022n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 3199311553579684551316799022n - ); - }); - - it("should have cancun fields in blocks before and after the fork", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.equal( - blockBeforeFork.parentBeaconBlockRoot, - "0xff1a9fb2f5412756e7302c1662e8ee815e41f11da51da5471c57782a5ac6139a" - ); - assert.equal(blockBeforeFork.blobGasUsed, "0x80000"); - assert.equal(blockBeforeFork.excessBlobGas, "0x0"); - - assert.equal( - blockAfterFork.parentBeaconBlockRoot, - "0xdd8876ba5af271ae9d93ececb192d6a7b4e6094ca5999756336279fd796b8619" - ); - assert.equal(blockAfterFork.blobGasUsed, "0x0"); - assert.equal(blockAfterFork.excessBlobGas, "0x0"); - }); - - it("should have code in the beacon root contract", async function () { - const beaconRootCode = await this.provider.send("eth_getCode", [ - BEACON_ROOT_ADDRESS, - ]); - - assert.notEqual(beaconRootCode, "0x"); - }); - }); - - describe("forking a 'shanghai' block", function () { - const forkBlockNumber = SHANGHAI_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - hardfork, - forkBlockNumber, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should have cancun fields in blocks after the fork but not before", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.isUndefined(blockBeforeFork.parentBeaconBlockRoot); - assert.isUndefined(blockBeforeFork.blobGasUsed); - assert.isUndefined(blockBeforeFork.excessBlobGas); - - assert.equal( - blockAfterFork.parentBeaconBlockRoot, - "0xdd8876ba5af271ae9d93ececb192d6a7b4e6094ca5999756336279fd796b8619" - ); - assert.equal(blockAfterFork.blobGasUsed, "0x0"); - assert.equal(blockAfterFork.excessBlobGas, "0x0"); - }); - - it("should have code in the beacon root contract", async function () { - const beaconRootCode = await this.provider.send("eth_getCode", [ - BEACON_ROOT_ADDRESS, - ]); - - assert.notEqual(beaconRootCode, "0x"); - }); - }); - }); - - describe("shanghai hardfork", function () { - const hardfork = "shanghai"; - - describe("forking a 'cancun' block", function () { - const forkBlockNumber = CANCUN_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - hardfork, - forkBlockNumber, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 3199311553579684551316799022n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 3199311553579684551316799022n - ); - }); - - it("should have cancun fields in blocks before the fork but not after", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.equal( - blockBeforeFork.parentBeaconBlockRoot, - "0xff1a9fb2f5412756e7302c1662e8ee815e41f11da51da5471c57782a5ac6139a" - ); - assert.equal(blockBeforeFork.blobGasUsed, "0x80000"); - assert.equal(blockBeforeFork.excessBlobGas, "0x0"); - - assert.isUndefined(blockAfterFork.parentBeaconBlockRoot); - assert.isUndefined(blockAfterFork.blobGasUsed); - assert.isUndefined(blockAfterFork.excessBlobGas); - }); - }); - - describe("forking a 'shanghai' block", function () { - const forkBlockNumber = SHANGHAI_HARDFORK_BLOCK_NUMBER + 100; - - useProvider({ - hardfork, - forkBlockNumber, - }); - - it("should mine transactions", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - }); - - it("should make calls in the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("should make calls in blocks before the forked block", async function () { - const daiSupply = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DAI_ADDRESS.toString(), - data: TOTAL_SUPPLY_SELECTOR, - }, - numberToRpcQuantity(forkBlockNumber - 1), - ]); - - assert.equal( - rpcDataToBigInt(daiSupply), - 5022305384218217259061852351n - ); - }); - - it("shouldn't have cancun fields in blocks before or after the fork", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - const blockBeforeFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber - 1), false] - ); - - const blockAfterFork = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assert.isUndefined(blockBeforeFork.parentBeaconBlockRoot); - assert.isUndefined(blockBeforeFork.blobGasUsed); - assert.isUndefined(blockBeforeFork.excessBlobGas); - - assert.isUndefined(blockAfterFork.parentBeaconBlockRoot); - assert.isUndefined(blockAfterFork.blobGasUsed); - assert.isUndefined(blockAfterFork.excessBlobGas); - }); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/hardhat-network-options.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/hardhat-network-options.ts deleted file mode 100644 index 5df867379f..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/hardhat-network-options.ts +++ /dev/null @@ -1,210 +0,0 @@ -import { assert } from "chai"; - -import { numberToRpcQuantity } from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { InternalError } from "../../../../src/internal/core/providers/errors"; -import { - dateToTimestampSeconds, - parseDateString, -} from "../../../../src/internal/util/date"; -import { HardhatNetworkConfig } from "../../../../src/types"; -import { useEnvironment } from "../../../helpers/environment"; -import { expectErrorAsync } from "../../../helpers/errors"; -import { useFixtureProject } from "../../../helpers/project"; -import { ALCHEMY_URL } from "../../../setup"; - -describe("Hardhat Network special options", function () { - describe("allowUnlimitedContractSize", function () { - // This is the compilation output of https://github.com/ethereum/solidity/blob/4d791b2679283d173896d118730c8b598bd2b7f6/test/libsolidity/syntaxTests/bytecode_too_large.sol - const CONTRACT_BYTECODE = - "0x608060405234801561001057600080fd5b50616a84806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806326121ff014610030575b600080fd5b6100386100b3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561007857808201518184015260208101905061005d565b50505050905090810190601f1680156100a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6060604051806169a0016040528061697881526020016100d7616978913990509056fe2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2ea26469706673582212207c2f2f4d2002540f429dd6b99ffb3cb582d14063b38b0e4ff2bef669fba70d0d64736f6c63430006010033"; - - describe("When the setting is true", function () { - useFixtureProject("unlimited-contract-size"); - useEnvironment(); - - it("Should allow contracts larger than the EIP-170 limit", async function () { - const [sender] = await this.env.network.provider.send("eth_accounts"); - await this.env.network.provider.send("eth_sendTransaction", [ - { - from: sender, - gas: numberToRpcQuantity(8000000), - data: CONTRACT_BYTECODE, - }, - ]); - }); - }); - - describe("When the setting is false", function () { - useFixtureProject("default-config-project"); - useEnvironment(); - - it("Should not allow contracts larger than the EIP-170 limit", async function () { - const [sender] = await this.env.network.provider.send("eth_accounts"); - await expectErrorAsync( - () => - this.env.network.provider.send("eth_sendTransaction", [ - { - from: sender, - gas: numberToRpcQuantity(8000000), - data: CONTRACT_BYTECODE, - }, - ]), - /trying to deploy a contract whose code is too large/ - ); - }); - }); - }); - - describe("initialDate", function () { - useFixtureProject("hardhat-network-initial-date"); - useEnvironment(); - - it("Should set the blockchain date to the initialDate", async function () { - const firstBlock = await this.env.network.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - await this.env.network.provider.send("evm_mine", []); - - const secondBlock = await this.env.network.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - const hardhatNetworkConfig = this.env.config.networks - .hardhat as HardhatNetworkConfig; - const initialDateString = hardhatNetworkConfig.initialDate!; - const initialDate = dateToTimestampSeconds( - parseDateString(initialDateString) - ); - - assert.equal(firstBlock.timestamp, initialDate); - // We don't know the exact timestamp of the second one, but we can cap it - assert.isAtLeast(+secondBlock.timestamp, initialDate + 1); - assert.isBelow(+secondBlock.timestamp, initialDate + 20); - }); - }); - - describe("hardfork", function () { - describe("When not forking", function () { - useFixtureProject("hardhat-network-spurious-dragon"); - useEnvironment(); - - // We skip this test as we are temporally disabling older hardforks due - // to a bug in EthereumJS. - // TODO: Remove the skip once the DefaultStateManager is fixed - it.skip("should accept hardforks as late as chainstart and use them", async function () { - const [sender] = await this.env.network.provider.send("eth_accounts"); - await assert.isRejected( - this.env.network.provider.send("eth_sendTransaction", [ - { - from: sender, - // This is a deployment with a constructor that just executes CHAIN_ID - // which was added in Istanbul - data: "0x46", - }, - ]), - "Transaction reverted" - ); - }); - }); - - describe("When forking", function () { - if (ALCHEMY_URL === undefined) { - return; - } - - // We skip this test as we are temporally disabling older hardforks due - // to a bug in EthereumJS. - // TODO: Remove the skip once the DefaultStateManager is fixed - describe.skip("Local hardfork validation", function () { - useFixtureProject("hardhat-network-fork-tangerine-whistle"); - useEnvironment(); - - it("Shouldn't work with hardforks before spurious dragon", async function () { - await assert.isRejected( - this.env.network.provider.send("eth_accounts"), - InternalError, - "Invalid hardfork" - ); - }); - }); - - describe("Remote hardfork validation", function () { - useFixtureProject("hardhat-network-fork-from-old-block"); - useEnvironment(); - - it("Shouldn't work with block numbers from before spurious dragon", async function () { - await assert.isRejected( - this.env.network.provider.send("eth_accounts"), - "Cannot fork mainnet from block" - ); - }); - }); - }); - }); - - describe("coinbase", function () { - useFixtureProject("hardhat-network-with-custom-coinbase"); - useEnvironment(); - - it("Should use the 0 address for the genesis block", async function () { - const block = await this.env.network.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(0), false] - ); - - assert.equal(block.miner, "0x0000000000000000000000000000000000000000"); - }); - - it("Should use the coinbase address for the new blocks", async function () { - await this.env.network.provider.send("evm_mine"); - - const block = await this.env.network.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(1), false] - ); - - assert.equal(block.miner, this.env.config.networks.hardhat.coinbase); - }); - }); - - describe("accounts", function () { - describe("mnemonic without passphrase", function () { - useFixtureProject("mnemonic-without-passphrase"); - useEnvironment(); - - it("should generate the correct accounts", async function () { - const [a1, a2] = await this.env.network.provider.send("eth_accounts"); - - assert.equal( - a1.toLowerCase(), - "0x57d27a673dbd70f12cbc32211c86af726683ce25" - ); - assert.equal( - a2.toLowerCase(), - "0x075d1d9101a6ed3dcdc2f41c401cf638a7bbe053" - ); - }); - }); - - describe("mnemonic with a passphrase", function () { - useFixtureProject("mnemonic-with-passphrase"); - useEnvironment(); - - it("should generate the correct accounts", async function () { - const [a1, a2] = await this.env.network.provider.send("eth_accounts"); - - assert.equal( - a1.toLowerCase(), - "0x43da4d822743814bf08648631afe7854bb57d8dc" - ); - assert.equal( - a2.toLowerCase(), - "0x1df58751bbe561bae7a82b55485c0e076748eedb" - ); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/integration.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/integration.ts deleted file mode 100644 index 9f1e0e38aa..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/integration.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { assert } from "chai"; -import fsExtra from "fs-extra"; - -import { useEnvironment } from "../../../helpers/environment"; -import { useFixtureProject } from "../../../helpers/project"; - -describe("Provider integration tests", function () { - describe("Solidity stack traces", function () { - useFixtureProject("solidity-stack-traces-integration"); - useEnvironment(); - - it("Should compile", async function () { - await this.env.run("compile"); - const artifact = await fsExtra.readJSON( - "artifacts/contracts/Contract.sol/Contract.json" - ); - - try { - await this.env.network.provider.send("eth_sendTransaction", [ - { - data: artifact.bytecode, - }, - ]); - } catch (error: any) { - assert.include(error.stack, "Contract.sol:"); - - // These exceptions should not have a code property, or Ethereum libs - // treat them as JSON-RPC responses, capturing them and loosing their - // stack trace. - assert.isUndefined(error.code); - - return; - } - - assert.fail("Exception expected but not thrown"); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/interval-mining-provider.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/interval-mining-provider.ts deleted file mode 100644 index bfe746673e..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/interval-mining-provider.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { assert } from "chai"; - -import { rpcQuantityToNumber } from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { ALCHEMY_URL } from "../../../setup"; -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../helpers/cwd"; -import { INTERVAL_MINING_PROVIDERS } from "../helpers/providers"; -import { sleep } from "../helpers/sleep"; - -describe("Interval mining provider", function () { - INTERVAL_MINING_PROVIDERS.forEach(({ name, useProvider, isFork }) => { - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - const safeBlockInThePast = 11_200_000; - const blockTime = 100; - const blockWaitTime = blockTime + 10; - - const getBlockNumber = async () => { - return rpcQuantityToNumber( - await this.ctx.provider.send("eth_blockNumber") - ); - }; - - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - }); - - setCWD(); - useProvider(); - - describe("initialization", () => { - it("starts interval mining automatically", async function () { - const firstBlock = await getBlockNumber(); // this triggers provider initialization - - await sleep(blockWaitTime); - const secondBlock = await getBlockNumber(); - - await sleep(blockWaitTime); - const thirdBlock = await getBlockNumber(); - - assert.equal(secondBlock, firstBlock + 1); - assert.equal(thirdBlock, firstBlock + 2); - }); - }); - - describe("hardhat_reset", function () { - if (isFork) { - testForkedProviderBehaviour(); - } else { - testNormalProviderBehaviour(); - } - - function testForkedProviderBehaviour() { - it("starts interval mining", async function () { - const firstBlock = await getBlockNumber(); - - await sleep(blockWaitTime); - const secondBlockBeforeReset = await getBlockNumber(); - - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - - await sleep(blockWaitTime); - const secondBlockAfterReset = await getBlockNumber(); - - await sleep(blockWaitTime); - const thirdBlock = await getBlockNumber(); - - assert.equal(secondBlockBeforeReset, firstBlock + 1); - assert.equal(secondBlockAfterReset, safeBlockInThePast + 1); - assert.equal(thirdBlock, safeBlockInThePast + 2); - }); - } - - function testNormalProviderBehaviour() { - it("starts interval mining", async function () { - const firstBlock = await getBlockNumber(); - - await sleep(blockWaitTime); - const secondBlockBeforeReset = await getBlockNumber(); - - await this.provider.send("hardhat_reset"); - - await sleep(blockWaitTime); - const secondBlockAfterReset = await getBlockNumber(); - - await sleep(blockWaitTime); - const thirdBlock = await getBlockNumber(); - - assert.equal(secondBlockBeforeReset, firstBlock + 1); - assert.equal(secondBlockAfterReset, firstBlock + 1); - assert.equal(thirdBlock, firstBlock + 2); - }); - } - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/logs.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/logs.ts deleted file mode 100644 index 6ebaa1a976..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/logs.ts +++ /dev/null @@ -1,1218 +0,0 @@ -import { assert } from "chai"; -import chalk from "chalk"; - -import { - numberToRpcQuantity, - rpcQuantityToBigInt, -} from "../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_CONTRACT, EXAMPLE_READ_CONTRACT } from "../helpers/contracts"; -import { setCWD } from "../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../helpers/providers"; -import { deployContract } from "../helpers/transactions"; -import { useHelpers } from "../helpers/useHelpers"; -import { ansiColor } from "./utils/color"; - -// eslint-disable prefer-template - -describe("Provider logs", function () { - PROVIDERS.forEach(({ isFork, name, useProvider }) => { - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - useHelpers(); - - let gasPrice: bigint; - beforeEach(async function () { - gasPrice = - 2n * rpcQuantityToBigInt(await this.provider.send("eth_gasPrice")); - - this.logger.reset(); - }); - - describe("automine enabled without pending txs", function () { - describe("simple rpc methods", function () { - it("should log basic methods", async function () { - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber", chalk.green), - ]); - }); - - it("should not log private methods", async function () { - await this.provider.send("hardhat_getStackTraceFailuresCount", []); - await this.provider.send("hardhat_setLoggingEnabled", [true]); - - assert.lengthOf(this.logger.lines, 0); - }); - - it("collapse successive calls to the same method", async function () { - await this.provider.send("eth_blockNumber"); - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (2)", chalk.green), - ]); - - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (3)", chalk.green), - ]); - }); - - it("should stop collapsing when a different method is called", async function () { - await this.provider.send("eth_blockNumber"); - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (2)", chalk.green), - ]); - - await this.provider.send("eth_accounts"); - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (2)", chalk.green), - ansiColor(this.provider, "eth_accounts", chalk.green), - ansiColor(this.provider, "eth_blockNumber", chalk.green), - ]); - }); - - it("should work when a failed method is called in the middle", async function () { - await this.provider.send("eth_blockNumber"); - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (2)", chalk.green), - ]); - - await this.provider.send("eth_nonExistentMethod").catch(() => {}); - await this.provider.send("eth_blockNumber"); - - assert.deepEqual(this.logger.lines, [ - ansiColor(this.provider, "eth_blockNumber (2)", chalk.green), - ansiColor( - this.provider, - "eth_nonExistentMethod - Method not supported", - chalk.red - ), - ansiColor(this.provider, "eth_blockNumber", chalk.green), - ]); - }); - }); - - describe("eth_sendTransaction", function () { - it("should print a successful transaction", async function () { - await this.sendTx({ gasPrice }); - - assert.lengthOf(this.logger.lines, 8); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Transaction:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[2], /^ From: \s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To: \s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ Value: \s+0 ETH$/); - assert.match(this.logger.lines[5], /^ Gas used: \s+21000 of \d+$/); - assert.match(this.logger.lines[6], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[7], ""); - } - }); - - it("should print an OOG transaction", async function () { - await this.sendTx({ - to: "0x0000000000000000000000000000000000000001", - gasPrice, - }).catch(() => {}); // ignore failure - - assert.lengthOf(this.logger.lines, 11); - - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.red) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Precompile call:\s+$/); - assert.match(this.logger.lines[2], /^ Transaction:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[3], /^ From:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ To:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[5], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[6], /^ Gas used:\s+21000 of \d+$/); - assert.match(this.logger.lines[7], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[8], ""); - assert.match(this.logger.lines[9], /^ TransactionExecutionError: Transaction ran out of gas/); - assert.equal(this.logger.lines[10], ""); - } - }); - - it("should print a contract deployment", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `0x${EXAMPLE_CONTRACT.bytecode.object}`, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - - assert.lengthOf(this.logger.lines, 9); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Contract deployment:\s+$/); - assert.match(this.logger.lines[2], /^ Contract address:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ Transaction:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[4], /^ From:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[5], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[6], /^ Gas used:\s+\d+ of \d+$/); - assert.match(this.logger.lines[7], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[8], ""); - } - }); - }); - - describe("eth_sendRawTransaction", function () { - // set lower baseFeePerGas to avoid having to re-create the raw tx - useProvider({ initialBaseFeePerGas: 1n }); - - it("should print a successful transaction", async function () { - // send 0 eth from the DEFAULT_ACCOUNTS[1] - await this.provider.send("eth_sendRawTransaction", [ - "0xf861800282520894ce9efd622e568b3a21b19532c77fc76c93c34bd4808082011aa01ba553fa3c8de65b6ea9fcda3edf3b47a88defbda1069d4337df4241f0e04291a042805fecce14a43feff65a32c88dd328a4bc0633fb7a33f9ea065451f00e789b", - ]); - - assert.lengthOf(this.logger.lines, 8); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendRawTransaction", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Transaction:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[2], /^ From:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[5], /^ Gas used:\s+21000 of \d+$/); - assert.match(this.logger.lines[6], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[7], ""); - } - }); - - it("should print a failed transaction", async function () { - await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - this.logger.reset(); - - // this sends a tx with value to a non-payable method of EXAMPLE_READ_CONTRACT - await this.provider - .send("eth_sendRawTransaction", [ - "0xf865010282c3509412ce8137a40021419ad22124561e67133eda10c501847877a79782011aa0d32f92a6272331b105f4fa7c8c87fba2bebd25fcb59b8bcc1e9e505bd2c9916ca0768e99f497949014ffaa122a109759246717232f29c4c28bd45f7dcc975820c9", - ]) - .catch(() => {}); - - assert.lengthOf(this.logger.lines, 11); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendRawTransaction", chalk.red) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Contract call:\s+$/); - assert.match(this.logger.lines[2], /^ Transaction:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[3], /^ From:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ To:\s+0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[5], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[6], /^ Gas used:\s+\d+ of \d+$/); - assert.match(this.logger.lines[7], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[8], ""); - assert.match(this.logger.lines[9], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[10], ""); - } - }); - }); - - describe("eth_call", function () { - it("should print a successful call", async function () { - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - this.logger.reset(); - - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - gas: numberToRpcQuantity(1000000), - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - ]); - - assert.lengthOf(this.logger.lines, 5); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_call", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Contract call: $/); - assert.match(this.logger.lines[2], /^ From: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To: 0x[0-9a-f]{40}$/); - assert.equal(this.logger.lines[4], ""); - } - }); - - it("should print a failed call", async function () { - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - this.logger.reset(); - - await this.provider - .send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - gas: numberToRpcQuantity(1000000), - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: numberToRpcQuantity(1), - }, - ]) - .catch(() => {}); - - assert.lengthOf(this.logger.lines, 8); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_call", chalk.red) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Contract call: $/); - assert.match(this.logger.lines[2], /^ From: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ Value: 1 wei$/); - assert.equal(this.logger.lines[5], ""); - assert.match(this.logger.lines[6], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[7], ""); - } - }); - - it("should warn when calling an account that is not a contract", async function () { - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x0000000000000000000000000000000000000000", - gas: numberToRpcQuantity(21000), - }, - ]); - - assert.lengthOf(this.logger.lines, 5); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_call", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ WARNING: Calling an account which is not a contract$/); - assert.match(this.logger.lines[2], /^ From: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To: 0x[0-9a-f]{40}$/); - assert.equal(this.logger.lines[4], ""); - } - }); - }); - - describe("eth_estimateGas", function () { - it("shouldn't print anything when the gas estimation is successful", async function () { - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - this.logger.reset(); - - await this.provider.send("eth_estimateGas", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - gas: numberToRpcQuantity(1000000), - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - ]); - - assert.lengthOf(this.logger.lines, 1); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_estimateGas", chalk.green) - ); - }); - - it("should print extra details when the gas estimation fails", async function () { - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - this.logger.reset(); - - await this.provider - .send("eth_estimateGas", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - gas: numberToRpcQuantity(1000000), - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: numberToRpcQuantity(1), - }, - ]) - .catch(() => {}); - - assert.lengthOf(this.logger.lines, 8); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_estimateGas", chalk.red) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Contract call: $/); - assert.match(this.logger.lines[2], /^ From: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[3], /^ To: 0x[0-9a-f]{40}$/); - assert.match(this.logger.lines[4], /^ Value: 1 wei$/); - assert.equal(this.logger.lines[5], ""); - assert.match(this.logger.lines[6], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[7], ""); - } - }); - }); - }); - - describe("automine enabled with pending txs", function () { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - this.logger.reset(); - }); - - it("one pending tx, sent tx at the end of the block", async function () { - await this.sendTx({ - nonce: 0, - gasPrice, - }); - - await this.provider.send("evm_setAutomine", [true]); - - this.logger.reset(); - - await this.sendTx({ - nonce: 1, - gasPrice, - }); - - // prettier-ignore - { - assert.equal(this.logger.lines[0 ], ansiColor(this.provider, "eth_sendTransaction", chalk.green)); - assert.match(this.logger.lines[1 ], /^ There were other pending transactions mined in the same block:$/); - assert.equal(this.logger.lines[2 ], ""); - assert.match(this.logger.lines[3 ], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[4 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[5 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[6 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[8 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[9 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[10], ""); - assert.match(this.logger.lines[11], /^ Transaction:\s+(\u001b\[1m)?0x[0-9a-f]{64}/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Currently sent transaction:$/); - assert.equal(this.logger.lines[18], ""); - assert.match(this.logger.lines[19], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[20], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[21], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[22], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[23], /^ Gas used:\s+21000 of 21000$/); - assert.match(this.logger.lines[24], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[25], ""); - } - }); - - it("one pending tx, sent tx at the start of the block", async function () { - await this.sendTx({ - nonce: 1, - gasPrice, - }); - - await this.provider.send("evm_setAutomine", [true]); - - this.logger.reset(); - - await this.sendTx({ - nonce: 0, - gasPrice, - }); - - assert.lengthOf(this.logger.lines, 26); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.green) - ); - // prettier-ignore - { - assert.equal(this.logger.lines[1 ], " There were other pending transactions mined in the same block:"); - assert.equal(this.logger.lines[2 ], ""); - assert.match(this.logger.lines[3 ], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[4 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[5 ], /^ Transaction:\s+(\u001b\[1m)?0x[0-9a-f]{64}/); - assert.match(this.logger.lines[6 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[8 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[9 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[10], ""); - assert.match(this.logger.lines[11], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Currently sent transaction:$/); - assert.equal(this.logger.lines[18], ""); - assert.match(this.logger.lines[19], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[20], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[21], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[22], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[23], /^ Gas used:\s+21000 of 21000$/); - assert.match(this.logger.lines[24], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[25], ""); - } - }); - - it("three pending txs, two txs per block, sent tx in second block", async function () { - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(45000), - ]); - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - - await this.provider.send("evm_setAutomine", [true]); - - this.logger.reset(); - - await this.sendTx({ gasPrice }); - - assert.lengthOf(this.logger.lines, 40); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.green) - ); - // prettier-ignore - { - assert.equal(this.logger.lines[1 ], " There were other pending transactions. More than one block had to be mined:"); - assert.equal(this.logger.lines[2 ], ""); - assert.match(this.logger.lines[3 ], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[4 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[5 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[6 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[8 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[9 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[10], ""); - assert.match(this.logger.lines[11], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[18], /^ Base fee: \d+$/); - assert.match(this.logger.lines[19], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[20], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[21], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[22], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[23], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[24], ""); - assert.match(this.logger.lines[25], /^ Transaction:\s+(\u001b\[1m)?0x[0-9a-f]{64}/); - assert.match(this.logger.lines[26], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[27], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[28], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[29], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[30], ""); - assert.match(this.logger.lines[31], /^ Currently sent transaction:$/); - assert.equal(this.logger.lines[32], ""); - assert.match(this.logger.lines[33], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[34], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[35], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[36], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[37], /^ Gas used:\s+21000 of 21000$/); - assert.match(this.logger.lines[38], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[39], ""); - } - }); - - it("three pending txs, two txs per block, sent tx can be mined immediately", async function () { - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(45000), - ]); - await this.sendTx({ nonce: 1, gasPrice }); - await this.sendTx({ nonce: 2, gasPrice }); - await this.sendTx({ nonce: 3, gasPrice }); - - await this.provider.send("evm_setAutomine", [true]); - - this.logger.reset(); - - await this.sendTx({ nonce: 0, gasPrice }); - - assert.lengthOf(this.logger.lines, 40); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.green) - ); - // prettier-ignore - { - assert.equal(this.logger.lines[1 ], " There were other pending transactions. More than one block had to be mined:"); - assert.equal(this.logger.lines[2 ], ""); - assert.match(this.logger.lines[3 ], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[4 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[5 ], /^ Transaction:\s+(\u001b\[1m)?0x[0-9a-f]{64}/); - assert.match(this.logger.lines[6 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[8 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[9 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[10], ""); - assert.match(this.logger.lines[11], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[18], /^ Base fee: \d+$/); - assert.match(this.logger.lines[19], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[20], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[21], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[22], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[23], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[24], ""); - assert.match(this.logger.lines[25], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[26], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[27], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[28], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[29], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[30], ""); - assert.match(this.logger.lines[31], /^ Currently sent transaction:$/); - assert.equal(this.logger.lines[32], ""); - assert.match(this.logger.lines[33], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[34], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[35], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[36], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[37], /^ Gas used:\s+21000 of 21000$/); - assert.match(this.logger.lines[38], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[39], ""); - } - }); - - it("should show the stack trace in the block list and at the end", async function () { - await this.provider.send("evm_setAutomine", [true]); - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - await this.provider.send("evm_setAutomine", [false]); - - await this.sendTx({ gasPrice }); - - await this.provider.send("evm_setAutomine", [true]); - this.logger.reset(); - - await this.sendTx({ - to: address, - gas: 1000000, - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: 1, - gasPrice, - }).catch(() => {}); - - assert.lengthOf(this.logger.lines, 32); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "eth_sendTransaction", chalk.red) - ); - // prettier-ignore - { - assert.equal(this.logger.lines[ 1], " There were other pending transactions mined in the same block:"); - assert.equal(this.logger.lines[ 2], ""); - assert.match(this.logger.lines[ 3], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.match(this.logger.lines[ 4], /^ Base fee: \d+$/); - assert.match(this.logger.lines[ 5], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[ 6], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[ 7], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[ 8], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[ 9], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[10], ""); - assert.match(this.logger.lines[11], /^ Transaction:\s+(\u001b\[1m)?0x[0-9a-f]{64}/); - assert.match(this.logger.lines[12], /^ Contract call:\s+/); - assert.match(this.logger.lines[13], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[15], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[16], /^ Gas used:\s+21109 of 1000000$/); - assert.equal(this.logger.lines[17], ""); - assert.match(this.logger.lines[18], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[19], ""); - assert.match(this.logger.lines[20], /^ Currently sent transaction:$/); - assert.equal(this.logger.lines[21], ""); - assert.match(this.logger.lines[22], /^ Contract call:\s+/); - assert.match(this.logger.lines[23], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[24], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[25], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[26], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[27], /^ Gas used:\s+21109 of 1000000$/); - assert.match(this.logger.lines[28], /^ Block #\d+:\s+0x[0-9a-f]{64}$/); - assert.equal(this.logger.lines[29], ""); - assert.match(this.logger.lines[30], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[31], ""); - } - }); - }); - - describe("hardhat_intervalMine", function () { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - this.logger.reset(); - }); - - it("should only print the mined block when there are no pending txs", async function () { - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 1); - assert.match( - this.logger.lines[0], - /Mined empty block #\d+ with base fee \d+$/ - ); - }); - - it("should collapse the mined block info", async function () { - await this.provider.send("hardhat_intervalMine", []); - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 1); - assert.match( - this.logger.lines[0], - /Mined empty block range #\d+ to #\d+/ - ); - }); - - it("should stop collapsing when a different method is called", async function () { - await this.provider.send("hardhat_intervalMine", []); - await this.provider.send("hardhat_intervalMine", []); - await this.provider.send("eth_blockNumber"); - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 3); - - // prettier-ignore - { - assert.match(this.logger.lines[0], /Mined empty block range #\d+ to #\d+/); - assert.equal(this.logger.lines[1], ansiColor(this.provider, "eth_blockNumber", chalk.green)); - assert.match(this.logger.lines[2], /Mined empty block #\d+ with base fee \d+$/); - } - }); - - it("should print a block with one transaction", async function () { - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 9); - // prettier-ignore - { - assert.match(this.logger.lines[0], /^Mined block #\d+$/); - assert.match(this.logger.lines[1], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[2], /^ Base fee: \d+$/); - assert.match(this.logger.lines[3], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[4], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[5], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[7], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[8], ""); - } - }); - - it("should print a block with two transactions", async function () { - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 15); - // prettier-ignore - { - assert.match(this.logger.lines[0], /^Mined block #\d+$/); - assert.match(this.logger.lines[1 ], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[2 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[3 ], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[4 ], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[5 ], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[7 ], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[8 ], ""); - assert.match(this.logger.lines[9 ], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[10], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[11], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[12], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[13], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[14], ""); - } - }); - - it("should print stack traces", async function () { - await this.provider.send("evm_setAutomine", [true]); - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - await this.provider.send("evm_setAutomine", [false]); - - await this.sendTx({ gasPrice }); - await this.sendTx({ - to: address, - gas: 1000000, - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: 1, - gasPrice, - }).catch(() => {}); - - this.logger.reset(); - - await this.provider.send("hardhat_intervalMine", []); - - assert.lengthOf(this.logger.lines, 18); - // prettier-ignore - { - assert.match(this.logger.lines[0], /^Mined block #\d+$/); - assert.match(this.logger.lines[1 ], /^ Block:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[2 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[3 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[4 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[5 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[7 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[8 ], ""); - assert.match(this.logger.lines[9 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[10], /^ Contract call:\s+$/); - assert.match(this.logger.lines[11], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[12], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[14], /^ Gas used:\s+21109 of 1000000$/); - assert.equal(this.logger.lines[15], ""); - assert.match(this.logger.lines[16], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[17], ""); - } - }); - }); - - describe("evm_mine", function () { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - this.logger.reset(); - }); - - it("should only print the mined block when there are no pending txs", async function () { - await this.provider.send("evm_mine", []); - - assert.lengthOf(this.logger.lines, 3); - - // prettier-ignore - { - assert.equal(this.logger.lines[0], ansiColor(this.provider, "evm_mine", chalk.green)); - assert.match(this.logger.lines[1], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[2], ""); - } - }); - - it("shouldn't collapse successive calls", async function () { - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - assert.lengthOf(this.logger.lines, 6); - // prettier-ignore - { - assert.equal(this.logger.lines[0], ansiColor(this.provider, "evm_mine", chalk.green)); - assert.match(this.logger.lines[1], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[2], ""); - assert.equal(this.logger.lines[3], ansiColor(this.provider, "evm_mine", chalk.green)); - assert.match(this.logger.lines[4], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[5], ""); - } - }); - - it("should print a block with one transaction", async function () { - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("evm_mine", []); - - assert.lengthOf(this.logger.lines, 10); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "evm_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9], ""); - } - }); - - it("should print a block with two transactions", async function () { - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("evm_mine", []); - - assert.lengthOf(this.logger.lines, 16); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "evm_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1 ], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4 ], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5 ], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8 ], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9 ], ""); - assert.match(this.logger.lines[10], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[11], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[12], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[14], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[15], ""); - } - }); - - it("should print stack traces", async function () { - await this.provider.send("evm_setAutomine", [true]); - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - await this.provider.send("evm_setAutomine", [false]); - - await this.sendTx({ gasPrice }); - await this.sendTx({ - to: address, - gas: 1000000, - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: 1, - gasPrice, - }).catch(() => {}); - - this.logger.reset(); - - await this.provider.send("evm_mine", []); - - assert.lengthOf(this.logger.lines, 19); - - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "evm_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1 ], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2 ], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[8 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[9 ], ""); - assert.match(this.logger.lines[10], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[11], /^ Contract call:\s+$/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21109 of 1000000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[18], ""); - } - }); - }); - - describe("hardhat_mine", function () { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - this.logger.reset(); - }); - - it("should only print the mined block when there are no pending txs", async function () { - await this.provider.send("hardhat_mine", []); - - assert.lengthOf(this.logger.lines, 3); - - // prettier-ignore - { - assert.equal(this.logger.lines[0], ansiColor(this.provider, "hardhat_mine", chalk.green)); - assert.match(this.logger.lines[1], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[2], ""); - } - }); - - it("shouldn't collapse successive calls", async function () { - await this.provider.send("hardhat_mine", []); - await this.provider.send("hardhat_mine", []); - - assert.lengthOf(this.logger.lines, 6); - // prettier-ignore - { - assert.equal(this.logger.lines[0], ansiColor(this.provider, "hardhat_mine", chalk.green)); - assert.match(this.logger.lines[1], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[2], ""); - assert.equal(this.logger.lines[3], ansiColor(this.provider, "hardhat_mine", chalk.green)); - assert.match(this.logger.lines[4], / Mined empty block #\d+ with base fee \d+$/); - assert.equal(this.logger.lines[5], ""); - } - }); - - it("should print a block with one transaction", async function () { - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_mine", []); - - assert.lengthOf(this.logger.lines, 10); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9], ""); - } - }); - - it("should print a block with two transactions", async function () { - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_mine", []); - - assert.lengthOf(this.logger.lines, 16); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1 ], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4 ], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5 ], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8 ], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9 ], ""); - assert.match(this.logger.lines[10], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[11], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[12], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[14], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[15], ""); - } - }); - - it("should print stack traces", async function () { - await this.provider.send("evm_setAutomine", [true]); - const address = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - await this.provider.send("evm_setAutomine", [false]); - - await this.sendTx({ gasPrice }); - await this.sendTx({ - to: address, - gas: 1000000, - data: EXAMPLE_READ_CONTRACT.selectors.blockGasLimit, - value: 1, - gasPrice, - }).catch(() => {}); - - this.logger.reset(); - - await this.provider.send("hardhat_mine", []); - - assert.lengthOf(this.logger.lines, 19); - - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1 ], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2 ], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3 ], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4 ], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5 ], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6 ], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7 ], /^ Value:\s+0 ETH$/); - assert.match(this.logger.lines[8 ], /^ Gas used:\s+21000 of 21000$/); - assert.equal(this.logger.lines[9 ], ""); - assert.match(this.logger.lines[10], /^ Transaction:\s+0x[0-9a-f]{64}/); - assert.match(this.logger.lines[11], /^ Contract call:\s+$/); - assert.match(this.logger.lines[12], /^ From:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ To:\s+0x[0-9a-f]{40}/); - assert.match(this.logger.lines[14], /^ Value:\s+1 wei$/); - assert.match(this.logger.lines[15], /^ Gas used:\s+21109 of 1000000$/); - assert.equal(this.logger.lines[16], ""); - assert.match(this.logger.lines[17], /^ Error: Transaction reverted without a reason/); - assert.equal(this.logger.lines[18], ""); - } - }); - - it("should show range when more than one empty block is mined", async function () { - await this.provider.send("hardhat_mine", ["0xA"]); - - assert.lengthOf(this.logger.lines, 3); - - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - assert.match( - this.logger.lines[1], - / Mined empty block range #\d+ to #\d+/ - ); - assert.equal(this.logger.lines[2], ""); - }); - - it("should work when the first block has transactions and the rest doesn't", async function () { - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_mine", ["0xA"]); - - assert.lengthOf(this.logger.lines, 12); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9], ""); - assert.match(this.logger.lines[10], / Mined empty block range #\d+ to #\d+/); - assert.equal(this.logger.lines[11], ""); - } - }); - - it("should work when more than one block with transactions is mined", async function () { - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(45000), - ]); - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - await this.sendTx({ gasPrice }); - - this.logger.reset(); - - await this.provider.send("hardhat_mine", ["0xA"]); - - assert.lengthOf(this.logger.lines, 27); - assert.equal( - this.logger.lines[0], - ansiColor(this.provider, "hardhat_mine", chalk.green) - ); - // prettier-ignore - { - assert.match(this.logger.lines[1], /^ Mined block #\d+$/); - assert.match(this.logger.lines[2], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[3], /^ Base fee: \d+$/); - assert.match(this.logger.lines[4], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[5], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[6], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[7], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[8], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[9], ""); - assert.match(this.logger.lines[10], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[11], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[12], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[13], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[14], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[15], ""); - assert.match(this.logger.lines[16], /^ Mined block #\d+$/); - assert.match(this.logger.lines[17], /^ Block: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[18], /^ Base fee: \d+$/); - assert.match(this.logger.lines[19], /^ Transaction: 0x[0-9a-f]{64}/); - assert.match(this.logger.lines[20], /^ From: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[21], /^ To: 0x[0-9a-f]{40}/); - assert.match(this.logger.lines[22], /^ Value: 0 ETH$/); - assert.match(this.logger.lines[23], /^ Gas used: 21000 of 21000$/); - assert.equal(this.logger.lines[24], ""); - assert.match(this.logger.lines[25], / Mined empty block range #\d+ to #\d+/); - assert.equal(this.logger.lines[26], ""); - } - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceCall.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceCall.ts deleted file mode 100644 index c9662960c6..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceCall.ts +++ /dev/null @@ -1,142 +0,0 @@ -import _ from "lodash"; - -import { ethers } from "ethers"; -import { trace as contractAGetMessageTrace } from "../../../../../fixture-debug-traces/traceCall/contractAGetMessage"; -import { trace as contractAGetMessageTraceDebugConfig } from "../../../../../fixture-debug-traces/traceCall/contractAGetMessageDebugConfig"; -import { trace as ethTransferTrace } from "../../../../../fixture-debug-traces/traceCall/ethTransfer"; -import { trace as contractAThrowError } from "../../../../../fixture-debug-traces/traceCall/contractAThrowError"; -import { assertInvalidArgumentsError } from "../../../helpers/assertions"; -import { - DEBUG_TRACE_CALL_CONTRACT_A, - STATE_OVERRIDE_SET_CONTRACT_B, -} from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../helpers/providers"; -import { deployContract } from "../../../helpers/transactions"; -import { assertEqualTraces } from "../../utils/assertEqualTraces"; -import { numberToRpcQuantity } from "../../../../../../src/internal/core/jsonrpc/types/base-types"; - -// Set the base quantity to the value used in GETH to generate the traces -const BASE_GAS_QUANTITY = numberToRpcQuantity(50000000); - -describe("Debug module", function () { - PROVIDERS.forEach(({ name, useProvider }) => { - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("debug_traceCall", function () { - const deployerAddress = DEFAULT_ACCOUNTS_ADDRESSES[2]; - let contractAAddress: string; - - beforeEach(async function () { - contractAAddress = await deployContract( - this.provider, - `0x${DEBUG_TRACE_CALL_CONTRACT_A.bytecode.object}` - ); - }); - - it("should get the correct trace when calling a function from contract A", async function () { - const trace = await this.provider.send("debug_traceCall", [ - { - from: deployerAddress, - to: contractAAddress, - data: DEBUG_TRACE_CALL_CONTRACT_A.selectors.getMessage, - gas: BASE_GAS_QUANTITY, - }, - "latest", - ]); - - assertEqualTraces(trace, contractAGetMessageTrace); - }); - - it("should get the correct trace when calling a function from contract A and the blockTag is not defined (default value = latest)", async function () { - const trace = await this.provider.send("debug_traceCall", [ - { - from: deployerAddress, - to: contractAAddress, - data: DEBUG_TRACE_CALL_CONTRACT_A.selectors.getMessage, - gas: BASE_GAS_QUANTITY, - }, - // blockTag not defined, it should automatically default to "latest" - ]); - - assertEqualTraces(trace, contractAGetMessageTrace); - }); - - it("should get the correct trace when calling a function from contract A with a specific rpcDebugTracingConfig", async function () { - const trace = await this.provider.send("debug_traceCall", [ - { - from: deployerAddress, - to: contractAAddress, - data: DEBUG_TRACE_CALL_CONTRACT_A.selectors.getMessage, - gas: BASE_GAS_QUANTITY, - }, - "latest", - // Set a specific rpcDebugTracingConfig configuration - { - disableStorage: true, - disableMemory: true, - disableStack: true, - }, - ]); - - assertEqualTraces(trace, contractAGetMessageTraceDebugConfig); - }); - - it("should get the correct error trace when calling a function from contract A that throws an error", async function () { - const abiCoder = new ethers.AbiCoder(); - // The number should be >= 5. If not, an error will be thrown - const encodedParameter = abiCoder.encode(["uint256"], [1]).slice(2); - - const trace = await this.provider.send("debug_traceCall", [ - { - from: deployerAddress, - to: contractAAddress, - data: `${DEBUG_TRACE_CALL_CONTRACT_A.selectors.requireGreaterThanFive}${encodedParameter}`, - gas: BASE_GAS_QUANTITY, - }, - "latest", - ]); - - assertEqualTraces(trace, contractAThrowError); - }); - - it("should get the correct trace when performing an ETH transfer between addresses", async function () { - const trace = await this.provider.send("debug_traceCall", [ - { - from: deployerAddress, - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x12", - }, - "latest", - ]); - - assertEqualTraces(trace, ethTransferTrace); - }); - - it("Should throw an error when the value passed as tracer is not supported (3rd parameter)", async function () { - await assertInvalidArgumentsError( - this.provider, - "debug_traceCall", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_B.selectors.getMessage, - }, - "latest", - { - tracer: "unsupportedTracer", - }, - ], - "Hardhat currently only supports the default tracer, so no tracer parameter should be passed." - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts deleted file mode 100644 index c95e3ba89f..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts +++ /dev/null @@ -1,406 +0,0 @@ -import { assert } from "chai"; -import _ from "lodash"; - -import { defaultHardhatNetworkParams } from "../../../../../../src/internal/core/config/default-config"; -import { BackwardsCompatibilityProviderAdapter } from "../../../../../../src/internal/core/providers/backwards-compatibility"; -import { ForkConfig } from "../../../../../../src/internal/hardhat-network/provider/node-types"; -import { RpcDebugTraceOutput } from "../../../../../../src/internal/hardhat-network/provider/output"; -import { createHardhatNetworkProvider } from "../../../../../../src/internal/hardhat-network/provider/provider"; -import { EthereumProvider } from "../../../../../../src/types"; -import { trace as mainnetPostLondonTxTrace } from "../../../../../fixture-debug-traces/mainnetPostLondonTxTrace"; -import { trace as mainnetReturnsDataTrace } from "../../../../../fixture-debug-traces/mainnetReturnsDataTrace"; -import { trace as mainnetReturnsDataTraceGeth } from "../../../../../fixture-debug-traces/mainnetReturnsDataTraceGeth"; -import { trace as mainnetRevertTrace } from "../../../../../fixture-debug-traces/mainnetRevertTrace"; -import { trace as modifiesStateTrace } from "../../../../../fixture-debug-traces/modifiesStateTrace"; -import { trace as elongatedMemoryRegressionTestTrace } from "../../../../../fixture-debug-traces/elongatedMemoryRegressionTestTrace"; -import { ALCHEMY_URL } from "../../../../../setup"; -import { - assertInvalidArgumentsError, - assertInvalidInputError, -} from "../../../helpers/assertions"; -import { FORK_TESTS_CACHE_PATH } from "../../../helpers/constants"; -import { EXAMPLE_CONTRACT } from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS, - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_ALLOW_UNLIMITED_CONTRACT_SIZE, - DEFAULT_HARDFORK, - DEFAULT_NETWORK_ID, - PROVIDERS, -} from "../../../helpers/providers"; -import { sendDummyTransaction } from "../../../helpers/sendDummyTransaction"; -import { deployContract } from "../../../helpers/transactions"; -import { assertEqualTraces } from "../../utils/assertEqualTraces"; -import { numberToRpcQuantity } from "../../../../../../src/internal/core/jsonrpc/types/base-types"; - -// TODO: temporarily skip some of the tests because the latest version of ethereumjs -// sometimes wrongly adds dummy empty words in the memory field -describe("Debug module", function () { - PROVIDERS.forEach(({ name, useProvider }) => { - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("debug_traceTransaction", function () { - it("Should throw for unknown txs", async function () { - const unknownTxHash = - "0x1234567876543234567876543456765434567aeaeaed67616732632762762373"; - await assertInvalidInputError( - this.provider, - "debug_traceTransaction", - [unknownTxHash], - `Unable to find a block containing transaction ${unknownTxHash}` - ); - }); - - it("Should return the right values for successful value transfer txs", async function () { - const txHash = await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - - const trace: RpcDebugTraceOutput = await this.provider.send( - "debug_traceTransaction", - [txHash] - ); - assert.deepEqual(trace, { - gas: 21_000, - failed: false, - returnValue: "", - structLogs: [], - }); - }); - - it("Should throw an error when the value passed as tracer is not supported", async function () { - await assertInvalidArgumentsError( - this.provider, - "debug_traceTransaction", - [ - "0x1234567876543234567876543456765434567aeaeaed67616732632762762373", - { - tracer: "unsupportedTracer", - }, - ], - "Hardhat currently only supports the default tracer, so no tracer parameter should be passed." - ); - }); - - it("Should return the right values for fake sender txs", async function () { - const impersonatedAddress = - "0xC014BA5EC014ba5ec014Ba5EC014ba5Ec014bA5E"; - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonatedAddress, - value: numberToRpcQuantity(10n ** 18n), - }, - ]); - - await this.provider.send("hardhat_impersonateAccount", [ - impersonatedAddress, - ]); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: impersonatedAddress, - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - const trace: RpcDebugTraceOutput = await this.provider.send( - "debug_traceTransaction", - [txHash] - ); - assert.deepEqual(trace, { - gas: 21_000, - failed: false, - returnValue: "", - structLogs: [], - }); - }); - - it("Should return the right values for successful contract tx", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - }, - ]); - - const trace: RpcDebugTraceOutput = await this.provider.send( - "debug_traceTransaction", - [txHash] - ); - - assertEqualTraces(trace, modifiesStateTrace); - }); - - it("should trace an OOG transaction sent to a precompile", async function () { - await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x0000000000000000000000000000000000000001", - }).catch(() => {}); - - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const txHash = block.transactions[0]; - - const trace: RpcDebugTraceOutput = await this.provider.send( - "debug_traceTransaction", - [txHash] - ); - assert.deepEqual(trace, { - gas: 21_000, - failed: true, - returnValue: "", - structLogs: [], - }); - }); - - // Regression test, see issue: https://github.com/NomicFoundation/hardhat/issues/3858 - it("The memory property should not have additional superfluous zeros", async function () { - // push0 push0 mstore push0 - const bytecode = "0x5F5F525F"; - const address = "0x1234567890123456789012345678901234567890"; - - await this.provider.send("hardhat_setCode", [address, bytecode]); - - const tx = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[2], - to: address, - }, - ]); - - const trace = await this.provider.send("debug_traceTransaction", [ - tx, - ]); - - assertEqualTraces(trace, elongatedMemoryRegressionTestTrace); - }); - - describe("berlin", function () { - useProvider({ hardfork: "berlin" }); - - it("Should work with EIP-2930 txs", async function () { - const txHash = await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - accessList: [ - { - address: DEFAULT_ACCOUNTS_ADDRESSES[0], - storageKeys: [], - }, - ], - gas: 25_000, - }); - - const trace: RpcDebugTraceOutput = await this.provider.send( - "debug_traceTransaction", - [txHash] - ); - assert.deepEqual(trace, { - gas: 23_400, - failed: false, - returnValue: "", - structLogs: [], - }); - }); - }); - }); - }); - }); - - describe("fork tests (pre-berlin)", function () { - this.timeout(240000); - - let provider: EthereumProvider; - - beforeEach(async function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - } - const forkConfig: ForkConfig = { - jsonRpcUrl: ALCHEMY_URL!, - blockNumber: 11_954_000, - }; - - const hardhatNetworkProvider = await createHardhatNetworkProvider( - { - hardfork: "muirGlacier", - chainId: 1, - networkId: DEFAULT_NETWORK_ID, - blockGasLimit: 13000000, - minGasPrice: 0n, - throwOnTransactionFailures: true, - throwOnCallFailures: true, - automine: false, - intervalMining: 0, - mempoolOrder: "priority", - chains: defaultHardhatNetworkParams.chains, - genesisAccounts: DEFAULT_ACCOUNTS, - allowUnlimitedContractSize: DEFAULT_ALLOW_UNLIMITED_CONTRACT_SIZE, - forkConfig, - forkCachePath: FORK_TESTS_CACHE_PATH, - allowBlocksWithSameTimestamp: false, - enableTransientStorage: false, - }, - { - enabled: false, - } - ); - - provider = new BackwardsCompatibilityProviderAdapter( - hardhatNetworkProvider - ); - }); - - it("Should return the right values for a successful tx", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - ["0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4"] - ); - - assertEqualTraces(trace, mainnetReturnsDataTrace); - assertEqualTraces(trace, mainnetReturnsDataTraceGeth); - }); - - it("Should return the right values for a reverted tx", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - ["0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148"] - ); - - assertEqualTraces(trace, mainnetRevertTrace); - }); - - it("Should respect the disableMemory option", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - [ - "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", - { - disableMemory: true, - }, - ] - ); - - const structLogs = mainnetRevertTrace.structLogs.map((x) => - _.omit(x, "memory") - ); - - assertEqualTraces(trace, { - ...mainnetRevertTrace, - structLogs, - }); - }); - - it("Should respect the disableStack option", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - [ - "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", - { - disableStack: true, - }, - ] - ); - - const structLogs = mainnetRevertTrace.structLogs.map((x) => - _.omit(x, "stack") - ); - - assertEqualTraces(trace, { - ...mainnetRevertTrace, - structLogs, - }); - }); - - it("Should respect the disableStorage option", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - [ - "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", - { - disableStorage: true, - }, - ] - ); - - const structLogs = mainnetRevertTrace.structLogs.map((x) => - _.omit(x, "storage") - ); - - assertEqualTraces(trace, { - ...mainnetRevertTrace, - structLogs, - }); - }); - }); - - describe("fork tests (post-london)", function () { - let provider: EthereumProvider; - - beforeEach(async function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - } - const forkConfig: ForkConfig = { - jsonRpcUrl: ALCHEMY_URL!, - blockNumber: 15_204_358, - }; - - const hardhatNetworkProvider = await createHardhatNetworkProvider( - { - hardfork: DEFAULT_HARDFORK, - chainId: 1, - networkId: DEFAULT_NETWORK_ID, - blockGasLimit: 13000000, - minGasPrice: 0n, - throwOnTransactionFailures: true, - throwOnCallFailures: true, - automine: false, - intervalMining: 0, - mempoolOrder: "priority", - chains: defaultHardhatNetworkParams.chains, - genesisAccounts: DEFAULT_ACCOUNTS, - allowUnlimitedContractSize: DEFAULT_ALLOW_UNLIMITED_CONTRACT_SIZE, - forkConfig, - forkCachePath: FORK_TESTS_CACHE_PATH, - allowBlocksWithSameTimestamp: false, - enableTransientStorage: false, - }, - { - enabled: false, - } - ); - - provider = new BackwardsCompatibilityProviderAdapter( - hardhatNetworkProvider - ); - }); - - // see https://github.com/NomicFoundation/hardhat/issues/3519 - it.skip("Should return the right values for a successful tx", async function () { - const trace: RpcDebugTraceOutput = await provider.send( - "debug_traceTransaction", - ["0xe0b1f8e11eb822107ddc35ce2d944147cc043acf680c39332ee95dd6508d107e"] - ); - - assertEqualTraces(trace, mainnetPostLondonTxTrace); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockFilters.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockFilters.ts deleted file mode 100644 index 07bbea9e72..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockFilters.ts +++ /dev/null @@ -1,125 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../helpers/cwd"; -import { PROVIDERS } from "../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("block filters", function () { - it("Supports block filters", async function () { - assert.isString(await this.provider.send("eth_newBlockFilter")); - }); - - it("Supports uninstalling an existing filter", async function () { - const filterId = await this.provider.send("eth_newBlockFilter", []); - const uninstalled = await this.provider.send("eth_uninstallFilter", [ - filterId, - ]); - - assert.isTrue(uninstalled); - }); - - it("Doesn't fail on uninstalling a non-existent filter", async function () { - const uninstalled = await this.provider.send("eth_uninstallFilter", [ - "0x1", - ]); - - assert.isFalse(uninstalled); - }); - - it("should start returning at least one block", async function () { - const filterId = await this.provider.send("eth_newBlockFilter", []); - const blockHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.isNotEmpty(blockHashes); - }); - - it("should not return the same block twice", async function () { - const filterId = await this.provider.send("eth_newBlockFilter", []); - - await this.provider.send("eth_getFilterChanges", [filterId]); - - const blockHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.isEmpty(blockHashes); - }); - - it("should return new blocks", async function () { - const filterId = await this.provider.send("eth_newBlockFilter", []); - - const initialHashes = await this.provider.send( - "eth_getFilterChanges", - [filterId] - ); - - assert.lengthOf(initialHashes, 1); - - const empty = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.isEmpty(empty); - - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const blockHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.lengthOf(blockHashes, 3); - }); - - it("should return reorganized block", async function () { - const filterId = await this.provider.send("eth_newBlockFilter", []); - - assert.lengthOf( - await this.provider.send("eth_getFilterChanges", [filterId]), - 1 - ); - - const snapshotId: string = await this.provider.send( - "evm_snapshot", - [] - ); - - await this.provider.send("evm_mine", []); - const block1 = await this.provider.send("eth_getBlockByNumber", [ - await this.provider.send("eth_blockNumber"), - false, - ]); - - await this.provider.send("evm_revert", [snapshotId]); - - await this.provider.send("evm_mine", []); - const block2 = await this.provider.send("eth_getBlockByNumber", [ - await this.provider.send("eth_blockNumber"), - false, - ]); - - const blockHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.deepEqual(blockHashes, [block1.hash, block2.hash]); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockTags.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockTags.ts deleted file mode 100644 index 0c3ea8cd2d..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/blockTags.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { rpcQuantityToNumber } from "../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { RpcBlockOutput } from "../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidArgumentsError, - assertQuantity, -} from "../../../helpers/assertions"; -import { EXAMPLE_CONTRACT } from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../helpers/providers"; -import { deployContract } from "../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("block tags", function () { - it("should allow EIP-1898 block tags", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000000a"; - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const previousBlockNumber = `0x${(firstBlockNumber + 1).toString( - 16 - )}`; - const previousBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [previousBlockNumber, false] - ); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - { - blockNumber: previousBlock.number, - }, - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - { - blockHash: previousBlock.hash, - }, - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - const latestBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - { - blockNumber: latestBlock.number, - }, - ]), - `0x${newState}` - ); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - { - blockHash: latestBlock.hash, - }, - ]), - `0x${newState}` - ); - }); - - it("should not accept an empty block tag", async function () { - await assertInvalidArgumentsError(this.provider, "eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - {}, - ]); - }); - - it("should not accept both a blockNumber and a blockHash in a block tag", async function () { - const latestBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - await assertInvalidArgumentsError(this.provider, "eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - { - blockNumber: "0x0", - blockHash: latestBlock.hash, - }, - ]); - }); - - it("should not accept both a blockNumber and requireCanonical", async function () { - await assertInvalidArgumentsError(this.provider, "eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - { - blockNumber: "0x0", - requireCanonical: true, - }, - ]); - }); - - it("should accept a requireCanonical flag", async function () { - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["0x0", false] - ); - - assertQuantity( - await this.provider.send("eth_getBalance", [ - zeroAddress(), - { - blockHash: block.hash, - requireCanonical: true, - }, - ]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getBalance", [ - zeroAddress(), - { - blockHash: block.hash, - requireCanonical: false, - }, - ]), - 0 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/chainId.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/chainId.ts deleted file mode 100644 index 3f1fa16210..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/chainId.ts +++ /dev/null @@ -1,93 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_CHAIN_ID_CONTRACT } from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_CHAIN_ID, - PROVIDERS, -} from "../../../helpers/providers"; -import { deployContract } from "../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("chain id", function () { - it("should read the right chain id in the constructor", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CHAIN_ID_CONTRACT.bytecode.object}` - ); - - const chainIdHex = await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CHAIN_ID_CONTRACT.selectors.chainId}`, - }, - ]); - - const chainId = BigInt(chainIdHex); - - assert.equal(chainId, BigInt(DEFAULT_CHAIN_ID)); - }); - - it("should read the right chain id in a write function", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CHAIN_ID_CONTRACT.bytecode.object}` - ); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CHAIN_ID_CONTRACT.selectors.setChainId}`, - }, - ]); - - const chainIdHex = await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CHAIN_ID_CONTRACT.selectors.chainId}`, - }, - ]); - - const chainId = BigInt(chainIdHex); - - assert.equal(chainId, BigInt(DEFAULT_CHAIN_ID)); - }); - - it("should read the right chain id in a view function", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CHAIN_ID_CONTRACT.bytecode.object}` - ); - - const chainIdHex = await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CHAIN_ID_CONTRACT.selectors.getChainId}`, - }, - ]); - - const chainId = BigInt(chainIdHex); - - assert.equal(chainId, BigInt(DEFAULT_CHAIN_ID)); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/gasUsage.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/gasUsage.ts deleted file mode 100644 index 0df8cfc189..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/gasUsage.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_SETTER_CONTRACT } from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../helpers/providers"; -import { deployContract } from "../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("gas usage", function () { - it("should use 17100 less gas when writing a non-zero slot", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_SETTER_CONTRACT.bytecode.object}` - ); - - const firstTxHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_SETTER_CONTRACT.selectors.setValue}0000000000000000000000000000000000000000000000000000000000000001`, - }, - ]); - - const firstReceipt = await this.provider.send( - "eth_getTransactionReceipt", - [firstTxHash] - ); - - const gasUsedBefore = BigInt(firstReceipt.gasUsed); - - const secondTxHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_SETTER_CONTRACT.selectors.setValue}0000000000000000000000000000000000000000000000000000000000000002`, - }, - ]); - - const secondReceipt = await this.provider.send( - "eth_getTransactionReceipt", - [secondTxHash] - ); - - const gasUsedAfter = BigInt(secondReceipt.gasUsed); - - const gasDifference = gasUsedBefore - gasUsedAfter; - - assert.equal(gasDifference, 17_100n); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/hardforks.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/hardforks.ts deleted file mode 100644 index 773fcef0c6..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/hardforks.ts +++ /dev/null @@ -1,1962 +0,0 @@ -import { Common } from "@nomicfoundation/ethereumjs-common"; -import { - AccessListEIP2930Transaction, - FeeMarketEIP1559Transaction, - TransactionFactory, -} from "@nomicfoundation/ethereumjs-tx"; -import { toBytes } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - bufferToRpcData, - numberToRpcQuantity, - rpcQuantityToBigInt, -} from "../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { - assertInvalidArgumentsError, - assertInvalidInputError, -} from "../../../helpers/assertions"; -import { getPendingBaseFeePerGas } from "../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS, - DEFAULT_ACCOUNTS_ADDRESSES, -} from "../../../helpers/providers"; -import { - deployContract, - getTxToDeployBytecode, - sendDeploymentTx, - sendTxToZeroAddress, -} from "../../../helpers/transactions"; -import { useProvider as importedUseProvider } from "../../../helpers/useProvider"; -import { - EIP1559RpcTransactionOutput, - RpcBlockOutput, -} from "../../../../../../src/internal/hardhat-network/provider/output"; -import { InvalidArgumentsError } from "../../../../../../src/internal/core/providers/errors"; -import * as BigIntUtils from "../../../../../../src/internal/util/bigint"; -import { - EXAMPLE_TOUCH_ADDRESS_CONTRACT, - EXAMPLE_DIFFICULTY_CONTRACT, - EXAMPLE_READ_CONTRACT, -} from "../../../helpers/contracts"; - -describe("Eth module - hardfork dependant tests", function () { - function useProviderAndCommon( - hardfork: string, - { allowUnlimitedContractSize } = { allowUnlimitedContractSize: false } - ) { - importedUseProvider({ hardfork, allowUnlimitedContractSize }); - beforeEach(async function () { - // TODO: Find out a better way to obtain the common here - const provider: any = this.hardhatNetworkProvider; - - // eslint-disable-next-line dot-notation,@typescript-eslint/dot-notation - this.common = provider["_common"]; - }); - } - - const privateKey = Buffer.from( - DEFAULT_ACCOUNTS[1].privateKey.slice(2), - "hex" - ); - - function getSampleSignedTx(common: Common) { - const tx = TransactionFactory.fromTxData( - { - to: "0x1111111111111111111111111111111111111111", - gasLimit: 21000, - gasPrice: 10, - }, - { - common, - } - ); - - return tx.sign(privateKey); - } - - function getSampleSignedAccessListTx(common: Common) { - const tx = AccessListEIP2930Transaction.fromTxData( - { - to: "0x1111111111111111111111111111111111111111", - gasLimit: 21000, - gasPrice: 10, - }, - { - common, - } - ); - - return tx.sign(privateKey); - } - - function getSampleSignedEIP1559Tx(common: Common) { - const tx = FeeMarketEIP1559Transaction.fromTxData( - { - to: "0x1111111111111111111111111111111111111111", - gasLimit: 21000, - maxFeePerGas: 10e9, - maxPriorityFeePerGas: 1e9, - }, - { - common, - } - ); - - return tx.sign(privateKey); - } - - function getEffectiveGasPrice( - baseFee: bigint, - maxFeePerGas: bigint, - maxPriorityFeePerGas: bigint - ) { - return ( - BigIntUtils.min(maxFeePerGas - baseFee, maxPriorityFeePerGas) + baseFee - ); - } - - describe("Transaction, call and estimate gas validations", function () { - describe("chain id validation", function () { - describe("In a hardfork without access list but with EIP-155", function () { - useProviderAndCommon("spuriousDragon"); - - it("Should validate the chain id if sent to eth_sendTransaction", async function () { - const [sender] = await this.provider.send("eth_accounts"); - await assertInvalidArgumentsError( - this.provider, - "eth_sendTransaction", - [{ from: sender, to: sender, chainId: numberToRpcQuantity(1) }], - "Invalid chainId" - ); - }); - - it("Should validate the chain id if an EIP-155 tx is sent with eth_sendRawTransaction", async function () { - const signedTx = getSampleSignedTx( - new Common({ chain: "mainnet", hardfork: "spuriousDragon" }) - ); - const serialized = bufferToRpcData(signedTx.serialize()); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [serialized], - "signed for another chain" - ); - }); - }); - - describe("In a hardfork with access list", function () { - useProviderAndCommon("berlin"); - - it("Should validate the chain id if sent to eth_sendTransaction using access list", async function () { - const [sender] = await this.provider.send("eth_accounts"); - await assertInvalidArgumentsError( - this.provider, - "eth_sendTransaction", - [ - { - from: sender, - to: sender, - chainId: numberToRpcQuantity(1), - accessList: [], - }, - ], - "Invalid chainId" - ); - }); - - it("Should validate the chain id in eth_sendRawTransaction using an access list tx", async function () { - const signedTx = getSampleSignedAccessListTx( - new Common({ chain: "mainnet", hardfork: "berlin" }) - ); - const serialized = bufferToRpcData(signedTx.serialize()); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [serialized], - "Trying to send a raw transaction with an invalid chainId" - ); - }); - }); - - describe("In a hardfork with EIP-1559", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`Should validate the chain id if sent to eth_sendTransaction using eip-1559 fields when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - await assertInvalidArgumentsError( - this.provider, - "eth_sendTransaction", - [ - { - from: sender, - to: sender, - chainId: numberToRpcQuantity(1), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ], - "Invalid chainId" - ); - }); - - it(`Should validate the chain id in eth_sendRawTransaction using an eip-1559 tx when ${hardfork} is activated`, async function () { - const signedTx = getSampleSignedEIP1559Tx( - new Common({ chain: "mainnet", hardfork }) - ); - const serialized = bufferToRpcData(signedTx.serialize()); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [serialized], - "Trying to send a raw transaction with an invalid chainId" - ); - }); - } - }); - }); - - describe("Transaction type validation by hardfork", function () { - function rejectsSendTransactionWithEIP1559Fields() { - it("Should reject an eth_sendTransaction if an EIP-1559 fields were provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendTransaction", - [ - { - from: sender, - to: sender, - accessList: [], - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ], - "EIP-1559 style fee params (maxFeePerGas or maxPriorityFeePerGas) received but they are not supported by the current hardfork" - ); - }); - } - - function rejectsSendRawTransactionWithEIP1559Tx() { - for (const hardfork of ["london", "arrowGlacier"]) { - it(`Should reject an eth_sendRawTransaction if the tx uses an EIP-1559 tx when ${hardfork} is activated`, async function () { - const eip1559Common = this.common.copy(); - eip1559Common.setHardfork(hardfork); - - const signedTx = getSampleSignedEIP1559Tx(eip1559Common); - const serialized = bufferToRpcData(signedTx.serialize()); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [serialized], - "Trying to send an EIP-1559 transaction" - ); - }); - } - } - - describe("With access list", function () { - useProviderAndCommon("berlin"); - - it("Should accept an eth_sendRawTransaction if the tx uses an access list", async function () { - const signedTx = getSampleSignedAccessListTx(this.common); - const serialized = bufferToRpcData(signedTx.serialize()); - - await this.provider.send("eth_sendRawTransaction", [serialized]); - }); - - it("Should accept an eth_sendTransaction if an access list was provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - accessList: [], - }, - ]); - }); - - rejectsSendTransactionWithEIP1559Fields(); - rejectsSendRawTransactionWithEIP1559Tx(); - }); - - describe("With EIP1559", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`Should accept an eth_sendRawTransaction with an EIP-1559 tx when ${hardfork} is activated`, async function () { - const signedTx = getSampleSignedEIP1559Tx(this.common); - const serialized = bufferToRpcData(signedTx.serialize()); - - await this.provider.send("eth_sendRawTransaction", [serialized]); - }); - - it(`Should accept an eth_sendTransaction if EIP-1559 fields were provided when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - accessList: [], - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - }); - } - }); - }); - - describe("Call and estimate gas types validation by hardfork", function () { - describe("Running a hardfork without access list", function () { - useProviderAndCommon("petersburg"); - - it("Should reject an eth_call if an access list was provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [{ from: sender, to: sender, accessList: [] }], - "Access list received but is not supported by the current hardfork" - ); - }); - - it("Should reject an eth_call with EIP-1559 fields", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [{ from: sender, to: sender, maxFeePerGas: "0x1" }], - "EIP-1559 style fee params (maxFeePerGas or maxPriorityFeePerGas) received but they are not supported by the current hardfork" - ); - }); - - it("Should reject an eth_estimateGas if an access list was provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError(this.provider, "eth_estimateGas", [ - { from: sender, to: sender, accessList: [] }, - ]); - }); - - it("Should reject an eth_estimateGas with EIP-1559 fields", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError(this.provider, "eth_estimateGas", [ - { from: sender, to: sender, maxFeePerGas: numberToRpcQuantity(1) }, - ]); - }); - }); - - describe("Running a hardfork without access list", function () { - useProviderAndCommon("berlin"); - - it("Should accept an eth_call if an access list was provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await this.provider.send("eth_call", [ - { from: sender, to: sender, accessList: [] }, - ]); - }); - - it("Should reject an eth_call with EIP-1559 fields", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [{ from: sender, to: sender, maxFeePerGas: "0x1" }], - "EIP-1559 style fee params (maxFeePerGas or maxPriorityFeePerGas) received but they are not supported by the current hardfork" - ); - }); - - it("Should accept an eth_estimateGas if an access list was provided", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await this.provider.send("eth_estimateGas", [ - { from: sender, to: sender, accessList: [] }, - ]); - }); - - it("Should reject an eth_estimateGas with EIP-1559 fields", async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await assertInvalidArgumentsError(this.provider, "eth_estimateGas", [ - { - from: sender, - to: sender, - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - }); - }); - - describe("Running a hardfork with EIP-1559", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`Should accept an eth_call with EIP-1559 fields when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await this.provider.send("eth_call", [ - { from: sender, to: sender, maxFeePerGas: "0x1" }, - ]); - }); - - it(`Should accept an eth_estimateGas with EIP-1559 fields when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - - await this.provider.send("eth_estimateGas", [ - { - from: sender, - to: sender, - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - }); - } - }); - }); - }); - - describe("Block formatting", function () { - describe("When running EIP-1559", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - it(`Should have a baseFeePerGas field when ${hardfork} is activated`, async function () { - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isDefined(block.baseFeePerGas); - }); - } - }); - - describe("When not running EIP-1559", function () { - useProviderAndCommon("berlin"); - - it("Should not have a baseFeePerGas field", async function () { - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isUndefined(block.baseFeePerGas); - }); - }); - }); - - describe("Transaction and receipt output formatting", function () { - describe("Transactions formatting", function () { - describe("Before berlin", function () { - useProviderAndCommon("petersburg"); - it("Should not include the fields type, chainId and accessList", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.isUndefined(tx.type); - assert.isUndefined(tx.chainId); - assert.isUndefined(tx.accessList); - }); - }); - - describe("After berlin", function () { - useProviderAndCommon("berlin"); - describe("legacy tx", function () { - it("Should include the field type, but not chainId and accessList", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(0)); - assert.isUndefined(tx.chainId); - assert.isUndefined(tx.accessList); - }); - }); - - describe("access list tx", function () { - it("Should include the fields type,chainId and accessList", async function () { - const accessList = [ - { - address: "0x1234567890123456789012345678901234567890", - storageKeys: [ - "0x1111111111111111111111111111111111111111111111111111111111111111", - ], - }, - ]; - const [sender] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - accessList, - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(1)); - assert.equal( - tx.chainId, - numberToRpcQuantity(this.common.chainId()) - ); - assert.deepEqual(tx.accessList, accessList); - }); - - it("Should accept access lists with null storageKeys", async function () { - const accessList = [ - { - address: "0x1234567890123456789012345678901234567890", - storageKeys: null, - }, - ]; - const [sender] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - accessList, - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(1)); - assert.equal( - tx.chainId, - numberToRpcQuantity(this.common.chainId()) - ); - assert.deepEqual(tx.accessList, [ - { - address: "0x1234567890123456789012345678901234567890", - storageKeys: [], - }, - ]); - }); - }); - }); - - describe("After London", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - describe(`EIP-1559 txs when ${hardfork} is activated`, function () { - it("Should include gasPrice, maxBaseFeePerGas and maxPriorityFeePerGas for EIP-1559", async function () { - const signedTx = getSampleSignedEIP1559Tx(this.common); - const serialized = bufferToRpcData(signedTx.serialize()); - - await this.provider.send("evm_setAutomine", [false]); - const txHash = await this.provider.send( - "eth_sendRawTransaction", - [serialized] - ); - - const pendingRpcTx: EIP1559RpcTransactionOutput = - await this.provider.send("eth_getTransactionByHash", [txHash]); - - assert.equal( - pendingRpcTx.maxFeePerGas, - numberToRpcQuantity(signedTx.maxFeePerGas) - ); - - assert.equal( - pendingRpcTx.maxPriorityFeePerGas, - numberToRpcQuantity(signedTx.maxPriorityFeePerGas) - ); - - assert.equal( - pendingRpcTx.gasPrice, - numberToRpcQuantity(signedTx.maxFeePerGas) - ); - - // Once it gets mined it should have the effective gas price: - // baseFeePerGas + min(maxFeePerGas - baseFeePerGas, maxPriorityFeePerGas) - await this.provider.send("evm_mine", []); - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - const minedTx: EIP1559RpcTransactionOutput = - await this.provider.send("eth_getTransactionByHash", [txHash]); - - const effectiveGasPrice = getEffectiveGasPrice( - rpcQuantityToBigInt(block.baseFeePerGas!), - signedTx.maxFeePerGas, - signedTx.maxPriorityFeePerGas - ); - - assert.equal( - minedTx.gasPrice, - numberToRpcQuantity(effectiveGasPrice) - ); - }); - }); - } - }); - }); - - describe("Receipts formatting", function () { - describe.skip("Before byzantium", function () { - useProviderAndCommon("spuriousDragon"); - - it("Should have a root field, and shouldn't have a status one nor type", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const tx = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.isDefined(receipt.root, "receipt does not have a root"); - assert.isUndefined(receipt.status); - assert.isUndefined(receipt.type); - }); - }); - - describe("After byzantium, before berlin", function () { - useProviderAndCommon("byzantium"); - - it("Should have a status field and not a root one nor type", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const tx = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.isDefined(receipt.status); - assert.isUndefined(receipt.root); - assert.isUndefined(receipt.type); - }); - }); - - describe("After berlin, before london", function () { - useProviderAndCommon("berlin"); - - it("Should have status and type fields and not a root one", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const tx = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.isDefined(receipt.status); - assert.isUndefined(receipt.root); - assert.equal(receipt.type, "0x0"); - }); - - it("Should not have an effectiveGasPrice field", async function () { - const [sender] = await this.provider.send("eth_accounts"); - const tx = await this.provider.send("eth_sendTransaction", [ - { from: sender, to: sender }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.isUndefined(receipt.effectiveGasPrice); - }); - }); - - describe("After london", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`should have an effectiveGasPrice field for EIP-1559 txs when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - const maxFeePerGas = await getPendingBaseFeePerGas(this.provider); - const maxPriorityPerGas = maxFeePerGas / 2n; - - const tx = await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - maxFeePerGas: numberToRpcQuantity(maxFeePerGas), - maxPriorityFeePerGas: numberToRpcQuantity(maxPriorityPerGas), - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - const baseFee = rpcQuantityToBigInt(block.baseFeePerGas!); - - const effectiveGasPrice = getEffectiveGasPrice( - baseFee, - maxFeePerGas, - maxPriorityPerGas - ); - - assert.equal(receipt.type, "0x2"); - assert.equal( - receipt.effectiveGasPrice, - numberToRpcQuantity(effectiveGasPrice) - ); - }); - - it(`should have an effectiveGasPrice field for Access List txs when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - const gasPrice = await getPendingBaseFeePerGas(this.provider); - const tx = await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - gasPrice: numberToRpcQuantity(gasPrice), - accessList: [], - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - const baseFee = rpcQuantityToBigInt(block.baseFeePerGas!); - - const effectiveGasPrice = getEffectiveGasPrice( - baseFee, - gasPrice, - gasPrice - ); - - assert.equal(receipt.type, "0x1"); - assert.equal( - receipt.effectiveGasPrice, - numberToRpcQuantity(effectiveGasPrice) - ); - }); - - it(`should have an effectiveGasPrice field for legacy txs when ${hardfork} is activated`, async function () { - const [sender] = await this.provider.send("eth_accounts"); - const gasPrice = await getPendingBaseFeePerGas(this.provider); - const tx = await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: sender, - gasPrice: numberToRpcQuantity(gasPrice), - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - const baseFee = rpcQuantityToBigInt(block.baseFeePerGas!); - - const effectiveGasPrice = getEffectiveGasPrice( - baseFee, - gasPrice, - gasPrice - ); - - assert.equal(receipt.type, "0x0"); - assert.equal( - receipt.effectiveGasPrice, - numberToRpcQuantity(effectiveGasPrice) - ); - }); - } - }); - }); - }); - - describe("Impersonated accounts", function () { - describe("Berlin hardfork", function () { - useProviderAndCommon("berlin"); - - it("should allow sending access list txs from impersonated accounts", async function () { - // impersonate and add funds to some account - const impersonated = "0x462B1B252FC8e9A447807e4494b271844fBCDa10"; - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonated, - value: numberToRpcQuantity(10n ** 17n), - }, - ]); - await this.provider.send("hardhat_impersonateAccount", [impersonated]); - - // send tx from impersonated account - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: impersonated, - to: impersonated, - accessList: [], - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.isDefined(tx.accessList); - assert.isArray(tx.accessList); - }); - }); - - describe("London hardfork", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`should allow sending EIP-1559 txs from impersonated accounts when ${hardfork} is activated`, async function () { - // impersonate and add funds to some account - const impersonated = "0x462B1B252FC8e9A447807e4494b271844fBCDa10"; - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonated, - value: numberToRpcQuantity(10n ** 17n), - }, - ]); - await this.provider.send("hardhat_impersonateAccount", [ - impersonated, - ]); - - // send tx from impersonated account - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: impersonated, - to: impersonated, - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.isDefined(tx.accessList); - assert.isArray(tx.accessList); - }); - } - }); - }); - - describe("Access list transactions", function () { - useProviderAndCommon("berlin"); - - // This contract is useful to test that an access list is being used. - // - // The way it works is by letting you control how much gas "test" - // forwards to "write". - // - // If you don't provide the right access list, all the storage accesses that - // "write" makes are cold, and hence more expensive. You can find the max - // amount of gas that you can forward to "write" that makes it OOG in this case. - // That OOG makes "test" revert. - // - // Now, if you do provide an access list, all the storage accesses are warm, - // so cheaper. If you forward the same amount of gas to "write" than before, - // but provide an access list, it won't OOG and "test" won't revert. - // - // pragma solidity 0.7.0; - // - // contract C { - // uint a = 1; uint b = 1; uint c = 1; uint d = 1; uint e = 1; uint f = 1; uint g = 1; - // uint h = 1; uint i = 1; uint j = 1; uint k = 1; uint l = 1; uint m = 1; uint n = 1; - // - // function test(uint gasToForward) public { - // this.write{gas: gasToForward}(); - // } - // - // function write() public { - // a += 1; b += 1; c += 1; d += 1; e += 1; f += 1; g += 1; - // h += 1; i += 1; j += 1; k += 1; l += 1; m += 1; n += 1; - // } - // } - const TEST_CONTRACT_DEPLOYMENT_BYTECODE = - "0x6080604052600160005560018055600160025560016003556001600455600160055560016006556001600755600160085560016009556001600a556001600b556001600c556001600d5534801561005557600080fd5b506101fc806100656000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806329e99f071461003b578063bcb4ab0e14610069575b600080fd5b6100676004803603602081101561005157600080fd5b8101908080359060200190929190505050610073565b005b6100716100d8565b005b3073ffffffffffffffffffffffffffffffffffffffff1663bcb4ab0e826040518263ffffffff1660e01b8152600401600060405180830381600088803b1580156100bc57600080fd5b5087f11580156100d0573d6000803e3d6000fd5b505050505050565b6001600080828254019250508190555060018060008282540192505081905550600160026000828254019250508190555060016003600082825401925050819055506001600460008282540192505081905550600160056000828254019250508190555060016006600082825401925050819055506001600760008282540192505081905550600160086000828254019250508190555060016009600082825401925050819055506001600a600082825401925050819055506001600b600082825401925050819055506001600c600082825401925050819055506001600d6000828254019250508190555056fea2646970667358221220f49d12643dee70a8cfde7a6346c0ca133768619dd2fb07c942e69d5c0433fe3b64736f6c63430007000033"; - const TEST_FUNCTION_SELECTOR = "0x29e99f07"; - const MAX_GAS_TO_FORWARD_THAT_FAILS_WITHOUT_ACCESS_LIST = 70605; - const WRITE_STORAGE_KEYS = [ - bufferToRpcData(toBytes(0), 32), - bufferToRpcData(toBytes(1), 32), - bufferToRpcData(toBytes(2), 32), - bufferToRpcData(toBytes(3), 32), - bufferToRpcData(toBytes(4), 32), - bufferToRpcData(toBytes(5), 32), - bufferToRpcData(toBytes(6), 32), - bufferToRpcData(toBytes(7), 32), - bufferToRpcData(toBytes(8), 32), - bufferToRpcData(toBytes(9), 32), - bufferToRpcData(toBytes(10), 32), - bufferToRpcData(toBytes(11), 32), - bufferToRpcData(toBytes(12), 32), - bufferToRpcData(toBytes(13), 32), - ]; - - function abiEncodeUint(uint: number) { - return BigIntUtils.toEvmWord(uint); - } - - let contract: string; - let txData: any; - - beforeEach(async function () { - contract = await deployContract( - this.provider, - TEST_CONTRACT_DEPLOYMENT_BYTECODE - ); - - txData = { - to: contract, - data: - TEST_FUNCTION_SELECTOR + - abiEncodeUint(MAX_GAS_TO_FORWARD_THAT_FAILS_WITHOUT_ACCESS_LIST), - accessList: [ - { - address: contract, - storageKeys: WRITE_STORAGE_KEYS, - }, - ], - }; - }); - - describe("Validate access list test contract", function () { - it("Should revert if the max gas is forwarded", async function () { - await assert.isRejected( - this.provider.send("eth_call", [ - { - ...txData, - accessList: undefined, - }, - ]), - "reverted without a reason" - ); - }); - - it("Should not revert if the more gas is forwarded", async function () { - await this.provider.send("eth_call", [ - { - to: contract, - data: - TEST_FUNCTION_SELECTOR + - abiEncodeUint( - MAX_GAS_TO_FORWARD_THAT_FAILS_WITHOUT_ACCESS_LIST + 1 - ), - }, - ]); - }); - }); - - describe("eth_call", function () { - it("should use the access list if sent", async function () { - await this.provider.send("eth_call", [txData]); - }); - }); - - describe("eth_estimateGas", function () { - it("should use the access list if sent", async function () { - // It would revert and throw if the access list is not used - await this.provider.send("eth_estimateGas", [txData]); - }); - }); - - describe("eth_sendRawTransaction", function () { - it("should use the access list if an EIP-2930 tx is sent", async function () { - const unsignedTx = AccessListEIP2930Transaction.fromTxData( - { ...txData, gasPrice: 10, gasLimit: 1000000 }, - { - common: this.common, - } - ); - - const signedTx = unsignedTx.sign(privateKey); - - const txHash = await this.provider.send("eth_sendRawTransaction", [ - bufferToRpcData(signedTx.serialize()), - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(1)); - }); - }); - - describe("eth_sendTransaction", function () { - describe("When automining", function () { - it("Should use an EIP-2930 tx if an access list is sent using a local account", async function () { - const [from] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { ...txData, from }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(1)); - }); - - it("Should use an EIP-2930 tx if an access list is sent using an impersonated account", async function () { - const from = "0x1234567890123456789012345678901234567890"; - await this.provider.send("hardhat_impersonateAccount", [from]); - - // add funds to impersonated account - const [sender] = await this.provider.send("eth_accounts"); - await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: from, - value: "0x16345785d8a0000", - gasPrice: "0x10", - }, - ]); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { ...txData, from, gasPrice: numberToRpcQuantity(10) }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(tx.type, numberToRpcQuantity(1)); - }); - }); - - describe("When txs go through the mempool", function () { - beforeEach("Disable automining", async function () { - await this.provider.send("evm_setAutomine", [false]); - }); - - it("Should use an EIP-2930 tx if an access list is sent using a local account", async function () { - const [from] = await this.provider.send("eth_accounts"); - const txHash = await this.provider.send("eth_sendTransaction", [ - { ...txData, from }, - ]); - - const pendingTx = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(pendingTx.type, numberToRpcQuantity(1)); - - await this.provider.send("evm_mine", []); - - const minedTx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(minedTx.type, numberToRpcQuantity(1)); - }); - - it("Should use an EIP-2930 tx if an access list is sent using an impersonated account", async function () { - const from = "0x1234567890123456789012345678901234567890"; - await this.provider.send("hardhat_impersonateAccount", [from]); - - // add funds to impersonated account - const [sender] = await this.provider.send("eth_accounts"); - await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: from, - value: "0x16345785d8a0000", - gasPrice: "0x10", - }, - ]); - await this.provider.send("evm_mine", []); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { ...txData, from, gasPrice: numberToRpcQuantity(10) }, - ]); - - const pendingTx = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(pendingTx.type, numberToRpcQuantity(1)); - - await this.provider.send("evm_mine", []); - - const minedTx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.equal(minedTx.type, numberToRpcQuantity(1)); - }); - }); - }); - }); - - describe("eth_feeHistory", function () { - describe("In a hardfork without EIP-1559", function () { - useProviderAndCommon("berlin"); - - it("Should be disabled", async function () { - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - ["0x1", "latest"], - "eth_feeHistory is disabled. It only works with the London hardfork or a later one." - ); - }); - }); - - describe("In a hardfork with EIP-1559", function () { - for (const hardfork of ["london", "arrowGlacier"]) { - useProviderAndCommon(hardfork); - - it(`Should be enabled when ${hardfork} is activated`, async function () { - await this.provider.send("eth_feeHistory", ["0x1", "latest"]); - }); - } - }); - }); - - describe("merge hardfork", function () { - describe("pre-merge hardfork", function () { - useProviderAndCommon("london"); - - it("difficulty and nonce should be non-zero values", async function () { - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const difficulty = BigInt(latestBlock.difficulty); - const nonce = BigInt(latestBlock.nonce); - - assert.notEqual(difficulty, 0n); - assert.notEqual(nonce, 0n); - }); - - it("mixHash value is always the same", async function () { - let latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.equal( - latestBlock.mixHash, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.equal( - latestBlock.mixHash, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should throw if the 'safe' or 'finalized' block tags are used in eth_getBlockByNumber", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_getBlockByNumber", - ["safe", false], - "The 'safe' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - - await assertInvalidArgumentsError( - this.provider, - "eth_getBlockByNumber", - ["finalized", false], - "The 'finalized' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - }); - - it("should throw if the 'safe' or 'finalized' block tags are used in eth_call", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_READ_CONTRACT.selectors.blockNumber}`, - }, - "safe", - ], - "The 'safe' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_READ_CONTRACT.selectors.blockNumber}`, - }, - "finalized", - ], - "The 'finalized' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - }); - - it("should throw if the 'safe' or 'finalized' block tags are used in eth_getLogs", async function () { - const fromBlock = await this.provider.send("eth_blockNumber"); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertInvalidArgumentsError( - this.provider, - "eth_getLogs", - [ - { - fromBlock, - toBlock: "safe", - }, - ], - "The 'safe' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - - await assertInvalidArgumentsError( - this.provider, - "eth_getLogs", - [ - { - fromBlock, - toBlock: "finalized", - }, - ], - "The 'finalized' block tag is not allowed in pre-merge hardforks. You are using the 'london' hardfork." - ); - }); - }); - - describe("post-merge hardfork", function () { - useProviderAndCommon("merge"); - - it("difficulty and nonce should be zero values", async function () { - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const difficulty = BigInt(latestBlock.difficulty); - const nonce = BigInt(latestBlock.nonce); - - assert.equal(difficulty, 0n); - assert.equal(nonce, 0n); - }); - - it("mixHash value changes from block to block", async function () { - let latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - // this value and the next one are hardcoded because the mixHash is - // pseudo-randomly generated from a fixed seed - assert.equal( - latestBlock.mixHash, - // First value with seed "randomMixHashSeed" - "0x53c5ae3ce8eefbfad3aca77e5f4e1b19a949b04e2e5ce7a24fbb64422f14f0bf" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.equal( - latestBlock.mixHash, - // Second value with seed "randomMixHashSeed" - "0xf4fbfa6c8463f342eb58838d8c6b0661faf22e7076a518bf4deaddbf3fa8a112" - ); - }); - - it("the mixHash of a pending block is null", async function () { - const pendingBlock = await this.provider.send("eth_getBlockByNumber", [ - "pending", - false, - ]); - - assert.isNull(pendingBlock.mixHash); - }); - - it("fetching the pending block shouldn't affect the mixHash", async function () { - // fetch pending block before mining - await this.provider.send("eth_getBlockByNumber", ["pending", false]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - // fetch pending block after mining - await this.provider.send("eth_getBlockByNumber", ["pending", false]); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.equal( - latestBlock.mixHash, - "0xf4fbfa6c8463f342eb58838d8c6b0661faf22e7076a518bf4deaddbf3fa8a112" - ); - }); - - it("the DIFFICULTY opcode should match the value returned in the mixHash", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_DIFFICULTY_CONTRACT.bytecode.object}` - ); - - const difficultyHex = await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_DIFFICULTY_CONTRACT.selectors.difficulty}`, - }, - ]); - - const difficulty = BigInt(difficultyHex); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const latestBlockMixHash = BigInt(latestBlock.mixHash); - - assert.equal(difficulty, latestBlockMixHash); - }); - - it("should support the 'safe' and 'finalized' block tags in eth_getBlockByNumber", async function () { - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - const safeBlock = await this.provider.send("eth_getBlockByNumber", [ - "safe", - false, - ]); - const finalizedBlock = await this.provider.send( - "eth_getBlockByNumber", - ["finalized", false] - ); - - assert.deepEqual(latestBlock, safeBlock); - assert.deepEqual(latestBlock, finalizedBlock); - }); - - it("should support the 'safe' and 'finalized' block tags in eth_call", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_READ_CONTRACT.selectors.blockNumber}`, - }, - "safe", - ]); - - await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_READ_CONTRACT.selectors.blockNumber}`, - }, - "finalized", - ]); - }); - - it("should support the 'safe' and 'finalized' block tags in eth_getLogs", async function () { - const fromBlock = await this.provider.send("eth_blockNumber"); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - // we just check that it doesn't throw - await this.provider.send("eth_getLogs", [ - { - fromBlock, - toBlock: "safe", - }, - ]); - - await this.provider.send("eth_getLogs", [ - { - fromBlock, - toBlock: "finalized", - }, - ]); - }); - }); - }); - - describe("shanghai hardfork", function () { - const maxCodeSize = 24576; - const maxInitcodeSize = 2 * maxCodeSize; - - describe("pre-shanghai hardfork", function () { - useProviderAndCommon("merge"); - - describe("warm COINBASE (EIP-3651)", function () { - it("shouldn't be warm", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_TOUCH_ADDRESS_CONTRACT.bytecode.object}` - ); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_TOUCH_ADDRESS_CONTRACT.selectors.touchAddress}000000000000000000000000c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e`, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const gasUsed = rpcQuantityToBigInt(receipt.gasUsed); - - assert.equal(gasUsed, 24478n); - }); - }); - - describe("limit and meter initcode (EIP-3860)", function () { - it("shouldn't apply initcode word cost", async function () { - const bytecode = EXAMPLE_READ_CONTRACT.bytecode.object; - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: null, - data: `0x${bytecode}`, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const gasUsed = rpcQuantityToBigInt(receipt.gasUsed); - - assert.equal(gasUsed, 166849n); - }); - - it("should allow initcodes larger than the EIP-3860 limit", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const tx = getTxToDeployBytecode(code, maxCodeSize); - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - const contractAddress = await sendDeploymentTx(this.provider, tx); - - const deployedCode = await this.provider.send("eth_getCode", [ - contractAddress, - "latest", - ]); - - const deployedCodeBytes = (deployedCode.length - 2) / 2; - assert.equal(deployedCodeBytes, maxCodeSize); - }); - }); - - describe("withdrawal fields in returned blocks", function () { - it("shouldn't include withdrawal fields", async function () { - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isUndefined(block.withdrawals); - assert.isUndefined(block.withdrawalsRoot); - }); - }); - }); - - describe("post-shanghai hardfork", function () { - useProviderAndCommon("shanghai"); - - describe("warm COINBASE (EIP-3651)", function () { - it("should be warm", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_TOUCH_ADDRESS_CONTRACT.bytecode.object}` - ); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_TOUCH_ADDRESS_CONTRACT.selectors.touchAddress}000000000000000000000000c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e`, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const gasUsed = rpcQuantityToBigInt(receipt.gasUsed); - - // This is 2500 less than the equivalent test with a pre-shanghai - // hardfork. - // 2500 is COLD_ACCOUNT_ACCESS_COST - WARM_STORAGE_READ_COST, - // see https://eips.ethereum.org/EIPS/eip-2929 - assert.equal(gasUsed, 21978n); - }); - - it("other addresses should be cold", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_TOUCH_ADDRESS_CONTRACT.bytecode.object}` - ); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - // we use an address with the same amount of zeros as the coinbase - // address - data: `${EXAMPLE_TOUCH_ADDRESS_CONTRACT.selectors.touchAddress}000000000000000000000000f0fffffff0fffffff0fffffff0fffffff0ffffff`, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const gasUsed = rpcQuantityToBigInt(receipt.gasUsed); - - assert.equal(gasUsed, 24478n); - }); - }); - - describe("limit and meter initcode (EIP-3860)", function () { - describe("without allowUnlimitedContractSize", function () { - it("shouldn't allow initcodes larger than the EIP-3860 limit", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const tx = getTxToDeployBytecode(code, maxCodeSize); - - await assert.isRejected( - sendDeploymentTx(this.provider, tx), - InvalidArgumentsError, - "Trying to send a deployment transaction whose init code length is" - ); - }); - - it("shouldn't allow initcodes larger than the EIP-3860 limit from impersonated accounts", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const impersonatedAddress = - "0x1234567890123456789012345678901234567890"; - - await this.provider.send("hardhat_impersonateAccount", [ - impersonatedAddress, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonatedAddress, - value: numberToRpcQuantity(10n ** 18n), - }, - ]); - - const tx = getTxToDeployBytecode( - code, - maxCodeSize, - impersonatedAddress - ); - - await assert.isRejected( - sendDeploymentTx(this.provider, tx), - InvalidArgumentsError, - "Trying to send a deployment transaction whose init code length is" - ); - }); - - it("shouldn't allow initcodes larger than the EIP-3860 limit in raw transactions", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const txData = getTxToDeployBytecode(code, maxCodeSize); - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - const tx = TransactionFactory.fromTxData( - { - gasLimit: txData.gas, - gasPrice: txData.gasPrice, - data: txData.data, - }, - { - common: this.common, - allowUnlimitedInitCodeSize: true, - } - ); - - const signedTx = tx.sign(privateKey); - const serialized = bufferToRpcData(signedTx.serialize()); - - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [serialized], - "Trying to send a deployment transaction whose init code length is" - ); - }); - }); - - describe("with allowUnlimitedContractSize", function () { - useProviderAndCommon("shanghai", { - allowUnlimitedContractSize: true, - }); - - it("should allow initcodes larger than the EIP-3860 limit", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const tx = getTxToDeployBytecode(code, maxCodeSize); - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - const contractAddress = await sendDeploymentTx(this.provider, tx); - - const deployedCode = await this.provider.send("eth_getCode", [ - contractAddress, - "latest", - ]); - - const deployedCodeBytes = (deployedCode.length - 2) / 2; - assert.equal(deployedCodeBytes, maxCodeSize); - }); - - it("should allow initcodes larger than the EIP-3860 limit from impersonated accounts", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const impersonatedAddress = - "0x1234567890123456789012345678901234567890"; - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - await this.provider.send("hardhat_impersonateAccount", [ - impersonatedAddress, - ]); - - // send some eth to the impersonated account - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonatedAddress, - value: numberToRpcQuantity(10n ** 18n), - }, - ]); - - const tx = getTxToDeployBytecode( - code, - maxCodeSize, - impersonatedAddress - ); - - const contractAddress = await sendDeploymentTx(this.provider, tx); - - const deployedCode = await this.provider.send("eth_getCode", [ - contractAddress, - "latest", - ]); - - const deployedCodeBytes = (deployedCode.length - 2) / 2; - assert.equal(deployedCodeBytes, maxCodeSize); - }); - - it("should allow initcodes larger than the EIP-3860 limit in raw transactions", async function () { - const code = "ff".repeat(maxInitcodeSize + 100); - - const txData = getTxToDeployBytecode(code, maxCodeSize); - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - const tx = TransactionFactory.fromTxData( - { - gasLimit: txData.gas, - gasPrice: txData.gasPrice, - data: txData.data, - }, - { - common: this.common, - allowUnlimitedInitCodeSize: true, - } - ); - - const signedTx = tx.sign(privateKey); - const serialized = bufferToRpcData(signedTx.serialize()); - - const txHash = await this.provider.send("eth_sendRawTransaction", [ - serialized, - ]); - - const { contractAddress } = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const deployedCode = await this.provider.send("eth_getCode", [ - contractAddress, - "latest", - ]); - - const deployedCodeBytes = (deployedCode.length - 2) / 2; - assert.equal(deployedCodeBytes, maxCodeSize); - }); - }); - - it("should apply initcode word cost", async function () { - const bytecode = EXAMPLE_READ_CONTRACT.bytecode.object; - - const words = Math.ceil(bytecode.length / 2 / 32); - const initcodeWordCost = BigInt(2 * words); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: null, - data: `0x${bytecode}`, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - const gasUsed = rpcQuantityToBigInt(receipt.gasUsed); - - // This is the same value as the test with a pre-shanghai hardfork, - // plus the initcode word cost. - // See https://eips.ethereum.org/EIPS/eip-3860 - assert.equal(gasUsed, 166849n + initcodeWordCost); - }); - }); - - describe("withdrawal fields in returned blocks", function () { - it("should include withdrawal fields", async function () { - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isDefined(block.withdrawals); - assert.isDefined(block.withdrawalsRoot); - }); - }); - }); - }); - - describe("cancun hardfork", function () { - describe("pre-cancun hardfork", function () { - useProviderAndCommon("shanghai"); - - it("should not have the parentBeaconBlockRoot and the blob fields", async function () { - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.isUndefined(block.parentBeaconBlockRoot); - assert.isUndefined(block.blobGasUsed); - assert.isUndefined(block.excessBlobGas); - }); - - it("should not have a bytecode in the beacon root address", async function () { - const BEACON_ROOT_ADDRESS = - "0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"; - - const code = await this.provider.send("eth_getCode", [ - BEACON_ROOT_ADDRESS, - ]); - - assert.equal(code, "0x"); - }); - }); - - describe("post-cancun hardfork", function () { - useProviderAndCommon("cancun"); - - it("should have the parentBeaconBlockRoot and the blob fields", async function () { - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.isDefined(block.parentBeaconBlockRoot); - assert.isDefined(block.blobGasUsed); - assert.isDefined(block.excessBlobGas); - }); - - it("should have 0x0 as parentBeaconBlockRoot in the genesis block", async function () { - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(0), - false, - ]); - - assert.equal( - block.parentBeaconBlockRoot, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should have a non empty parentBeaconBlockRoot in the second block and the value should be an expected one", async function () { - await this.provider.send("evm_mine", []); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(1), - false, - ]); - - assert.equal( - block.parentBeaconBlockRoot, - "0xdd8876ba5af271ae9d93ececb192d6a7b4e6094ca5999756336279fd796b8619" - ); - }); - - it("should have different parentBeaconBlockRoot values in different blocks", async function () { - await this.provider.send("evm_mine", []); - - const block1 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(1), - false, - ]); - - await this.provider.send("evm_mine", []); - - const block2 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(2), - false, - ]); - - assert.notEqual( - block1.parentBeaconBlockRoot, - block2.parentBeaconBlockRoot - ); - }); - - it("should have the parentBeaconBlockRoot value different from the mixhash value", async function () { - await this.provider.send("evm_mine", []); - - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.notEqual(block.mixHash, block.parentBeaconBlockRoot); - }); - - it("should have a specific bytecode in the beacon root address (starting from genesis block)", async function () { - const BEACON_ROOT_ADDRESS = - "0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"; - const BEACON_ROOT_BYTECODE = - "0x3373fffffffffffffffffffffffffffffffffffffffe14604d57602036146024575f5ffd5b5f35801560495762001fff810690815414603c575f5ffd5b62001fff01545f5260205ff35b5f5ffd5b62001fff42064281555f359062001fff015500"; - - const code = await this.provider.send("eth_getCode", [ - BEACON_ROOT_ADDRESS, - numberToRpcQuantity(0), - ]); - - assert.equal(code, BEACON_ROOT_BYTECODE); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/blockNumber.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/blockNumber.ts deleted file mode 100644 index 9bddedd277..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/blockNumber.ts +++ /dev/null @@ -1,104 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { sendTxToZeroAddress } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_blockNumber", function () { - let firstBlockNumber: number; - - beforeEach(async function () { - firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - }); - - it("should return the current block number as QUANTITY", async function () { - let blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber); - - await sendTxToZeroAddress(this.provider); - - blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber + 1); - - await sendTxToZeroAddress(this.provider); - - blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber + 2); - - await sendTxToZeroAddress(this.provider); - - blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber + 3); - }); - - it("Should increase if a transaction gets to execute and fails", async function () { - let blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber); - - try { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x0000000000000000000000000000000000000001", - gas: numberToRpcQuantity(21000), // Address 1 is a precompile, so this will OOG - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assert.fail("Tx should have failed"); - } catch (e: any) { - assert.notInclude(e.message, "Tx should have failed"); - } - - blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber + 1); - }); - - it("Shouldn't increase if a call is made", async function () { - let blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber); - - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x0000000000000000000000000000000000000000", - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - blockNumber = await this.provider.send("eth_blockNumber"); - assertQuantity(blockNumber, firstBlockNumber); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/call.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/call.ts deleted file mode 100644 index 05b6e10c88..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/call.ts +++ /dev/null @@ -1,1748 +0,0 @@ -import { assert } from "chai"; -import { Client } from "undici"; - -import { ethers } from "ethers"; -import { - numberToRpcQuantity, - rpcDataToNumber, - rpcQuantityToNumber, - rpcDataToBigInt, - rpcQuantityToBigInt, - numberToRpcStorageSlot, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { getCurrentTimestamp } from "../../../../../../../src/internal/hardhat-network/provider/utils/getCurrentTimestamp"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertAddressBalance, - assertInvalidArgumentsError, - assertInvalidInputError, - assertProviderError, -} from "../../../../helpers/assertions"; -import { - EXAMPLE_BLOCKHASH_CONTRACT, - EXAMPLE_CONTRACT, - EXAMPLE_READ_CONTRACT, - EXAMPLE_REVERT_CONTRACT, - STATE_OVERRIDE_SET_CONTRACT_A, - STATE_OVERRIDE_SET_CONTRACT_B, - STATE_OVERRIDE_SET_CONTRACT_C, - STATE_OVERRIDE_SET_CONTRACT_D, -} from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../../../../helpers/providers"; -import { - deployContract, - sendTxToZeroAddress, -} from "../../../../helpers/transactions"; -import { compileLiteral } from "../../../../stack-traces/compilation"; -import { EthereumProvider } from "../../../../../../../src/types"; -import { - InvalidArgumentsError, - InvalidInputError, -} from "../../../../../../../src/internal/core/providers/errors"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork, chainId }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_call", function () { - describe("when called without blockTag param", () => { - it("Should return the value returned by the contract", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const result = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i }, - ]); - - assert.equal( - result, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - }, - ]); - - const result2 = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i }, - ]); - - assert.equal( - result2, - "0x000000000000000000000000000000000000000000000000000000000000000a" - ); - }); - - it("Should return the value returned by the contract using an unknown account as from", async function () { - const from = "0x1234567890123456789012345678901234567890"; - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const result = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i, from }, - ]); - - assert.equal( - result, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - }, - ]); - - const result2 = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i, from }, - ]); - - assert.equal( - result2, - "0x000000000000000000000000000000000000000000000000000000000000000a" - ); - }); - - it("Should be run in the context of the last block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_setNextBlockTimestamp", [timestamp]); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - ]); - - assert.equal(rpcDataToNumber(blockResult), firstBlockNumber + 1); - - const timestampResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockTimestamp, - }, - ]); - - assert.equal(timestampResult, timestamp); - }); - - it("Should return an empty buffer when a non-contract account is called", async function () { - const result = await this.provider.send("eth_call", [ - { - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.i, - }, - ]); - - assert.equal(result, "0x"); - }); - - it("Should work with blockhashes calls", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_BLOCKHASH_CONTRACT.bytecode.object}` - ); - - const resultBlock0 = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_BLOCKHASH_CONTRACT.selectors.test0, - }, - ]); - - assert.lengthOf(resultBlock0, 66); - - const resultBlock1 = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_BLOCKHASH_CONTRACT.selectors.test1, - }, - ]); - - assert.lengthOf(resultBlock1, 66); - - const resultBlock1m = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_BLOCKHASH_CONTRACT.selectors.test1m, - }, - ]); - - assert.equal( - resultBlock1m, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should run in the context of the blocktag's block", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber", []) - ); - - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - numberToRpcQuantity(blockNumber), - ]); - - assert.equal(rpcDataToNumber(blockResult), blockNumber); - }); - - it("should accept a gas limit higher than the block gas limit being used", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber", []) - ); - - const gas = "0x5f5e100"; // 100M gas - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - gas, - }, - numberToRpcQuantity(blockNumber), - ]); - - assert.equal(rpcDataToNumber(blockResult), blockNumber); - - const blockResult2 = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - gas, - }, - "pending", - ]); - - assert.equal(rpcDataToNumber(blockResult2), blockNumber + 1); - }); - - it("Should accept explicit nulls for optional parameter values", async function () { - // For simplicity of this test, and because this test only intends - // to exercise input parameter validation, utilize the case of - // eth_call calling into a non-contract account, which returns an - // empty buffer. - assert.equal( - await this.provider.send("eth_call", [ - { - from: null, - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: null, - gasPrice: null, - value: null, - data: null, - }, - ]), - "0x" - ); - }); - }); - - describe("when called with 'latest' blockTag param", () => { - it("Should be run in the context of the last block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_setNextBlockTimestamp", [timestamp]); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - "latest", - ]); - - assert.equal(rpcDataToNumber(blockResult), firstBlockNumber + 1); - - const timestampResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockTimestamp, - }, - "latest", - ]); - - assert.equal(timestampResult, timestamp); - }); - }); - - describe("when called with 'pending' blockTag param", () => { - it("Should be run in the context of a new block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_setNextBlockTimestamp", [timestamp]); - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - "pending", - ]); - - assert.equal(rpcDataToNumber(blockResult), firstBlockNumber + 2); - - const timestampResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockTimestamp, - }, - "pending", - ]); - - assert.equal(timestampResult, timestamp); - }); - - it("Should be run in the context with pending transactions mined", async function () { - const snapshotId = await this.provider.send("evm_snapshot"); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - await this.provider.send("evm_revert", [snapshotId]); - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `0x${EXAMPLE_CONTRACT.bytecode.object}`, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - - const result = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i }, - "pending", - ]); - - // result would equal "0x" if the contract wasn't deployed - assert.equal( - result, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - await this.provider.send("evm_mine"); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - }, - ]); - - const result2 = await this.provider.send("eth_call", [ - { to: contractAddress, data: EXAMPLE_CONTRACT.selectors.i }, - "pending", - ]); - - assert.equal( - result2, - "0x000000000000000000000000000000000000000000000000000000000000000a" - ); - }); - }); - - describe("when called with a block number as blockTag param", () => { - it("Should be run in the context of the block passed as a parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - - const blockResult = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.blockNumber, - }, - numberToRpcQuantity(firstBlockNumber + 1), - ]); - - assert.equal(rpcDataToNumber(blockResult), firstBlockNumber + 1); - }); - - it("Should throw invalid input error if called in the context of a nonexistent block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const futureBlock = firstBlockNumber + 1; - - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(123), - }, - numberToRpcQuantity(futureBlock), - ], - `Received invalid block tag ${futureBlock}. Latest block number is ${firstBlockNumber}` - ); - }); - - it("Should leverage block tag parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000000a"; - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - numberToRpcQuantity(firstBlockNumber + 1), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.equal( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: EXAMPLE_CONTRACT.selectors.i, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - "latest", - ]), - `0x${newState}` - ); - }); - - it("Should return the initial balance for the genesis accounts in the previous block after a transaction", async function () { - const blockNumber = await this.provider.send("eth_blockNumber"); - const account = DEFAULT_ACCOUNTS_ADDRESSES[0]; - - const initialBalanceBeforeTx = await this.provider.send( - "eth_getBalance", - [account, blockNumber] - ); - assert.equal(initialBalanceBeforeTx, "0x3635c9adc5dea00000"); - - await sendTxToZeroAddress(this.provider, account); - - const initialBalanceAfterTx = await this.provider.send( - "eth_getBalance", - [account, blockNumber] - ); - assert.equal(initialBalanceAfterTx, "0x3635c9adc5dea00000"); - }); - }); - - describe("eth_call with state override", function () { - const deployerAddress = DEFAULT_ACCOUNTS_ADDRESSES[2]; - let contractAAddress: string; - let contractBAddress: string; - let contractDAddress: string; - - beforeEach(async function () { - // Contract A imports contract B and D, so first deploy contract B and contract D - contractBAddress = await deployContract( - this.provider, - `0x${STATE_OVERRIDE_SET_CONTRACT_B.bytecode.object}` - ); - - contractDAddress = await deployContract( - this.provider, - `0x${STATE_OVERRIDE_SET_CONTRACT_D.bytecode.object}` - ); - - // Contract A constructor requires the addresses of contract B and contract D. - // These values are encoded and appended to the data containing the bytecode of contract A - const abiCoder = new ethers.AbiCoder(); - const encodedParameters = abiCoder - .encode( - ["address", "address"], - [contractBAddress, contractDAddress] - ) - .slice(2); - - contractAAddress = await deployContract( - this.provider, - `0x${STATE_OVERRIDE_SET_CONTRACT_A.bytecode.object}${encodedParameters}` - ); - }); - - it("should call eth_call without the optional state override properties", async function () { - const xAndy = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - ]); - - assert.equal( - xAndy, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - }); - - it("should call eth_call with an empty object passed as state override properties", async function () { - const xAndy = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - {}, - ]); - - assert.equal( - xAndy, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - }); - - it("should throw an error because the key address used is invalid", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - // Invalid address - [deployerAddress.slice(0, -2)]: { - balance: "0x0", - }, - }, - ], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - this.isEdr - ? undefined - : `Errors encountered in param 2: Invalid value "0xce9efd622e568b3a21b19532c77fc76c93c34b" supplied to : { [K in address]: stateOverrideOptions } | undefined/0xce9efd622e568b3a21b19532c77fc76c93c34b: address` - ); - }); - - it("should throw an error because an invalid storage key is used", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_call", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - [deployerAddress]: { - stateDiff: { - // Invalid storage address (shorter than 64 chars) - "0x00000000000000000000000000000000000000000000000000000000000002": - "0x000000000000000000000000000000000000000000000000000000000000000c", - }, - }, - }, - ], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - this.isEdr - ? undefined - : `Errors encountered in param 2: Invalid value "0x00000000000000000000000000000000000000000000000000000000000002" supplied to : { [K in address]: stateOverrideOptions } | undefined/0xce9efd622e568b3a21b19532c77fc76c93c34bd4: stateOverrideOptions/stateDiff: { [K in Storage slot hex string]: Storage slot } | undefined/0x00000000000000000000000000000000000000000000000000000000000002: Storage slot hex string` - ); - }); - - describe("balance", function () { - it("should override the balance and then revert it to the original value after the override", async function () { - const balanceBefore = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - ]); - - const overrideBalance = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - [deployerAddress]: { - balance: "0x1", - }, - }, - ]); - - assert.equal( - overrideBalance, - "0x0000000000000000000000000000000000000000000000000000000000000001" - ); - assert.notEqual(balanceBefore, overrideBalance); - - const balanceAfter = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - ]); - - assert.equal(balanceAfter, balanceBefore); - }); - - it("should allow the balance property to be null without throwing an error", async function () { - const balanceBefore = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - ]); - - const balanceAfter = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - [contractAAddress]: { - balance: null, - }, - }, - ]); - - assert.equal(balanceAfter, balanceBefore); - }); - - describe("test the limit value (32 bytes) for the balance", function () { - const maxBalance: bigint = 2n ** 256n - 1n; - - it("should be successful, the balance value is the maximum allowed value", async function () { - await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - [deployerAddress]: { - balance: numberToRpcQuantity(maxBalance), - }, - }, - ]); - }); - - it("should throw an error, the balance value is too big", async function () { - // TODO: https://github.com/NomicFoundation/edr/issues/104 - // await assertInvalidInputError( - await assertProviderError( - this.provider, - "eth_call", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .senderBalance, - }, - "latest", - { - [deployerAddress]: { - balance: numberToRpcQuantity(maxBalance + 1n), - }, - }, - ], - this.isEdr - ? undefined - : "The 'balance' property should occupy a maximum of 32 bytes (balance=115792089237316195423570985008687907853269984665640564039457584007913129639936).", - this.isEdr - ? InvalidArgumentsError.CODE - : InvalidInputError.CODE - ); - }); - }); - }); - - describe("nonce", function () { - let currentDAddrNonce: bigint; - - this.beforeEach(async function () { - // Get the nonce for the D address - currentDAddrNonce = rpcQuantityToBigInt( - await this.provider.send("eth_getTransactionCount", [ - contractDAddress, - "latest", - ]) - ); - }); - - function rpcDataToAddress(hexString: string): string { - assert.lengthOf(hexString, 66); - return `0x${hexString.slice(-40)}`; - } - - it("should not override the nonce", async function () { - const predictedAddress = ethers.getCreateAddress({ - from: contractDAddress, - nonce: currentDAddrNonce, - }); - - const actualAddress = rpcDataToAddress( - await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractDAddress, - data: STATE_OVERRIDE_SET_CONTRACT_D.selectors - .deployChildContract, - }, - "latest", - ]) - ); - - assert.equal( - actualAddress.toLowerCase(), - predictedAddress.toLowerCase() - ); - }); - - it("should override the nonce and then revert it to the original value after the override", async function () { - const nonceBefore = currentDAddrNonce; - - const overrideNonce = 0x1234n; - - const predictedAddress = ethers.getCreateAddress({ - from: contractDAddress, - nonce: overrideNonce, - }); - - const actualAddress = rpcDataToAddress( - await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractDAddress, - data: STATE_OVERRIDE_SET_CONTRACT_D.selectors - .deployChildContract, - }, - "latest", - { - [contractDAddress]: { - nonce: numberToRpcQuantity(overrideNonce), - }, - }, - ]) - ); - - assert.equal( - actualAddress.toLowerCase(), - predictedAddress.toLowerCase() - ); - - // Check that nonce has been reverted - const nonceAfter = rpcQuantityToBigInt( - await this.provider.send("eth_getTransactionCount", [ - contractDAddress, - "latest", - ]) - ); - - assert.equal(nonceAfter, nonceBefore); - }); - - it("should allow the nonce property to be null without throwing an error", async function () { - const predictedAddress = ethers.getCreateAddress({ - from: contractDAddress, - nonce: currentDAddrNonce, - }); - - const actualAddress = rpcDataToAddress( - await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractDAddress, - data: STATE_OVERRIDE_SET_CONTRACT_D.selectors - .deployChildContract, - }, - "latest", - { - [contractDAddress]: { nonce: null }, - }, - ]) - ); - - assert.equal( - actualAddress.toLowerCase(), - predictedAddress.toLowerCase() - ); - }); - - describe("test the limit value (8 bytes) for the nonce", function () { - const maxNonce: bigint = 2n ** 64n - 1n; - - it("should be successful, the nonce value is the maximum allowed value", async function () { - await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.senderBalance, - }, - "latest", - { - [deployerAddress]: { - // The maximum value that can be stored in a u64 is not allowed for a nonce - nonce: numberToRpcQuantity(maxNonce - 1n), - }, - }, - ]); - }); - - it("should throw an error, the nonce value is too big", async function () { - // TODO: https://github.com/NomicFoundation/edr/issues/104 - // await assertInvalidInputError( - await assertProviderError( - this.provider, - "eth_call", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .senderBalance, - }, - "latest", - { - [deployerAddress]: { - nonce: numberToRpcQuantity(maxNonce + 1n), - }, - }, - ], - this.isEdr - ? undefined - : "The 'nonce' property should occupy a maximum of 8 bytes (nonce=18446744073709551616).", - this.isEdr - ? InvalidArgumentsError.CODE - : InvalidInputError.CODE - ); - }); - }); - }); - - describe("code", function () { - function encodeString(s: string): string { - const abiCoder = new ethers.AbiCoder(); - return abiCoder.encode(["string"], [s]); - } - - it("should revert the original code after that the code of contract B has been override with the code of contract C", async function () { - const messageBefore = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .getMessageFromBContract, - }, - "latest", - ]); - - assert.equal(messageBefore, encodeString("Hello from B!")); - - const messageOverride = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .getMessageFromBContract, - }, - "latest", - { - [contractBAddress]: { - code: `0x${STATE_OVERRIDE_SET_CONTRACT_C.bytecode.object}`, - }, - }, - ]); - - // Message should be the one from contract C - assert.equal( - messageOverride, - encodeString("Hello from the C contract") - ); - - const messageAfter = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .getMessageFromBContract, - }, - "latest", - ]); - - assert.equal(messageAfter, messageBefore); - }); - - it("should allow the code property to be null without throwing an error", async function () { - const message = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .getMessageFromBContract, - }, - "latest", - { - [contractBAddress]: { - code: null, - }, - }, - ]); - - assert.equal(message, encodeString("Hello from B!")); - }); - }); - - it("should throw an error when both the state and the stateDiff properties are defined", async function () { - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - state: {}, - stateDiff: {}, - }, - }, - ], - "The properties 'state' and 'stateDiff' cannot be used simultaneously when configuring the state override set passed to the eth_call method." - ); - }); - - describe("state property", function () { - it("should override the state: clear all the storage", async function () { - const storage = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - state: {}, - }, - }, - ]); - - // x and y should be overriden to 0 - assert.equal( - storage, - "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should override the storage and then revert it to the original value after the override", async function () { - // Clear all the storage and then set the storage at slot 3 with value 0x0...0C - const storageBefore = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - ]); - - assert.equal( - storageBefore, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - - const storageOverride = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - state: { - // Memory slot starting at 3, location where y is stored - "0x0000000000000000000000000000000000000000000000000000000000000003": - "0x000000000000000000000000000000000000000000000000000000000000000c", - }, - }, - }, - ]); - - // x should be cleared, y should be overriden to c - assert.equal( - storageOverride, - "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c" - ); - - const storageAfter = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - ]); - - assert.equal(storageAfter, storageBefore); - }); - - it("should allow the state property to be null without throwing an error", async function () { - const storage = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - state: null, - }, - }, - ]); - - assert.equal( - storage, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - }); - }); - - describe("stateDiff property", function () { - it("should override the storage and then revert it to the original value after the override", async function () { - // Override only the storage starting at slot 3 (variable y) - const storageBefore = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - ]); - - assert.equal( - storageBefore, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - - const storageOverride = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - stateDiff: { - // Memory slot starting at 3, location where y is stored - "0x0000000000000000000000000000000000000000000000000000000000000003": - "0x000000000000000000000000000000000000000000000000000000000000000c", - }, - }, - }, - ]); - - // x should not be override, y should be override to c - assert.equal( - storageOverride, - "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c" - ); - - const storageAfter = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - ]); - - assert.equal(storageAfter, storageBefore); - }); - - it("should override both the storage starting at slot 2 (variable x), and the storage starting at slot 3 (variable y)", async function () { - const storage = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - stateDiff: { - // Memory slot starting at 2, location where x is stored - "0x0000000000000000000000000000000000000000000000000000000000000002": - "0x000000000000000000000000000000000000000000000000000000000000000c", - // Memory slot starting at 3, location where y is stored - "0x0000000000000000000000000000000000000000000000000000000000000003": - "0x000000000000000000000000000000000000000000000000000000000000000c", - }, - }, - }, - ]); - - // Both x and y should be overriden - assert.equal( - storage, - "0x000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c" - ); - }); - - it("should allow the stateDiff property to be null without throwing an error", async function () { - const storage = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors.getXAndY, - }, - "latest", - { - [contractAAddress]: { - stateDiff: null, - }, - }, - ]); - - assert.equal( - storage, - "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002" - ); - }); - }); - - it("should override multiple addresses and properties at the same time", async function () { - const overrideSenderBalance = 0x123456789n; - const overrideContractABalance = 0x11223344n; - const overrideContractAYValue = 0x222222211111111111n; - const overrideContractDNonce = 0x999n; - - const result = await this.provider.send("eth_call", [ - { - from: deployerAddress, - to: contractAAddress, - data: STATE_OVERRIDE_SET_CONTRACT_A.selectors - .deployContractAndGetMultipleBalances, - }, - "latest", - { - [deployerAddress]: { - balance: numberToRpcQuantity(overrideSenderBalance), - }, - [contractAAddress]: { - balance: numberToRpcQuantity(overrideContractABalance), - // Override y variable at slot 3 - stateDiff: { - "0x0000000000000000000000000000000000000000000000000000000000000003": - numberToRpcStorageSlot(overrideContractAYValue), - }, - }, - [contractBAddress]: { - code: `0x${STATE_OVERRIDE_SET_CONTRACT_C.bytecode.object}`, - }, - [contractDAddress]: { - nonce: numberToRpcQuantity(overrideContractDNonce), - }, - }, - ]); - - const abiCoder = new ethers.AbiCoder(); - - const [ - senderBalance, - contractABalance, - contractDDeployedAddress, - contractBMessage, - contractAYValue, - ] = abiCoder.decode( - ["uint", "uint", "address", "string", "uint"], - result - ); - - assert.equal(senderBalance, overrideSenderBalance); - assert.equal(contractABalance, overrideContractABalance); - assert.equal( - contractDDeployedAddress.toLowerCase(), - ethers - .getCreateAddress({ - from: contractDAddress, - nonce: overrideContractDNonce, - }) - .toLowerCase() - ); - - assert.equal(contractBMessage, "Hello from the C contract"); - assert.equal(contractAYValue, overrideContractAYValue); - }); - }); - - describe("Fee price fields", function () { - let deploymentBytecode: string; - let balanceSelector: string; - - before(async function () { - const [_, compilerOutput] = await compileLiteral(` -contract C { - function balance() public view returns (uint) { - return msg.sender.balance; - } -} -`); - const contract = compilerOutput.contracts["literal.sol"].C; - deploymentBytecode = `0x${contract.evm.bytecode.object}`; - balanceSelector = `0x${contract.evm.methodIdentifiers["balance()"]}`; - }); - - const CALLER = DEFAULT_ACCOUNTS_ADDRESSES[2]; - let contractAddress: string; - let ethBalance: bigint; - - function deployContractAndGetEthBalance() { - beforeEach(async function () { - contractAddress = await deployContract( - this.provider, - deploymentBytecode - ); - - ethBalance = rpcQuantityToBigInt( - await this.provider.send("eth_getBalance", [CALLER]) - ); - assert.notEqual(ethBalance.toString(), "0"); - }); - } - - describe("When running without EIP-1559", function () { - useProvider({ hardfork: "berlin" }); - - deployContractAndGetEthBalance(); - - it("Should default to gasPrice 0", async function () { - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - }, - ]); - - assert.equal( - rpcDataToBigInt(balanceResult).toString(), - ethBalance.toString() - ); - }); - - it("Should use any provided gasPrice", async function () { - const gasLimit = 200_000n; - const gasPrice = 2n; - - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - gas: numberToRpcQuantity(gasLimit), - gasPrice: numberToRpcQuantity(gasPrice), - }, - ]); - - assert.equal( - rpcDataToBigInt(balanceResult), - ethBalance - gasLimit * gasPrice - ); - }); - }); - - for (const hardfork of ["london", "arrowGlacier"]) { - describe(`When running with EIP-1559 (${hardfork})`, function () { - useProvider({ hardfork }); - - deployContractAndGetEthBalance(); - - it("Should validate that gasPrice and maxFeePerGas & maxPriorityFeePerGas are not mixed", async function () { - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: CALLER, - to: contractAddress, - gasPrice: numberToRpcQuantity(1), - maxFeePerGas: numberToRpcQuantity(1), - }, - ], - "Cannot send both gasPrice and maxFeePerGas" - ); - - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: CALLER, - to: contractAddress, - gasPrice: numberToRpcQuantity(1), - maxPriorityFeePerGas: numberToRpcQuantity(1), - }, - ], - "Cannot send both gasPrice and maxPriorityFeePerGas" - ); - }); - - it("Should validate that maxFeePerGas >= maxPriorityFeePerGas", async function () { - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: CALLER, - to: contractAddress, - maxFeePerGas: numberToRpcQuantity(1), - maxPriorityFeePerGas: numberToRpcQuantity(2), - }, - ], - "maxPriorityFeePerGas (2) is bigger than maxFeePerGas (1)" - ); - }); - - it("Should default to maxFeePerGas = 0 if nothing provided", async function () { - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - }, - ]); - - assert.equal( - rpcDataToBigInt(balanceResult).toString(), - ethBalance.toString() - ); - }); - - it("Should use maxFeePerGas if provided with a maxPriorityFeePerGas = 0", async function () { - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - maxFeePerGas: numberToRpcQuantity(1), - }, - ]); - - // This doesn't change because the baseFeePerGas of block where we - // run the eth_call is 0 - assert.equal( - rpcDataToBigInt(balanceResult).toString(), - ethBalance.toString() - ); - }); - - it("Should use maxPriorityFeePerGas if provided, with maxFeePerGas = maxPriorityFeePerGas", async function () { - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - maxPriorityFeePerGas: numberToRpcQuantity(3), - gas: numberToRpcQuantity(500_000), - }, - ]); - - // The miner will get the priority fee - assert.equal( - rpcDataToBigInt(balanceResult), - ethBalance - 3n * 500_000n - ); - }); - - it("Should use gasPrice if provided", async function () { - const balanceResult = await this.provider.send("eth_call", [ - { - from: CALLER, - to: contractAddress, - data: balanceSelector, - gasPrice: numberToRpcQuantity(6), - gas: numberToRpcQuantity(500_000), - }, - ]); - - // The miner will get the gasPrice * gas as a normalized priority fee - assert.equal( - rpcDataToBigInt(balanceResult), - ethBalance - 6n * 500_000n - ); - }); - }); - } - }); - - describe("sender balance", function () { - const sender = "0x47dc9a4a1ff2436deb1828d038868561c8a5aedf"; - let contractAddress: string; - - beforeEach("deploy the contract", async function () { - contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}` - ); - }); - - it("should use the sender's balance if it's enough", async function () { - // fund the sender - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: sender, - value: numberToRpcQuantity(1_000_000), - }, - ]); - await assertAddressBalance(this.provider, sender, 1_000_000n); - - // call the contract - const senderBalance = await this.provider.send("eth_call", [ - { - from: sender, - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.senderBalance, - gas: numberToRpcQuantity(100_000), - gasPrice: numberToRpcQuantity(1), - }, - ]); - - assert.equal(rpcDataToNumber(senderBalance), 900_000); - }); - - it("should increase the sender's balance if it's positive but not enough", async function () { - // We expect that, before the transaction is executed, the balance - // of the sender will be increased to the minimum value that lets - // the VM execute the tx. This means that during the execution of - // the tx, msg.sender.balance will be 0. - - // fund the sender - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: sender, - value: numberToRpcQuantity(1_000), - }, - ]); - await assertAddressBalance(this.provider, sender, 1_000n); - - // call the contract - const senderBalance = await this.provider.send("eth_call", [ - { - from: sender, - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.senderBalance, - gas: numberToRpcQuantity(100_000), - gasPrice: numberToRpcQuantity(1), - }, - ]); - - assert.equal(rpcDataToNumber(senderBalance), 0); - }); - - it("should increase the sender's balance if it's zero", async function () { - // We expect that, before the transaction is executed, the balance - // of the sender will be increased to the minimum value that lets - // the VM execute the tx. This means that during the execution of - // the tx, msg.sender.balance will be 0. - - await assertAddressBalance(this.provider, sender, 0n); - - // call the contract - const senderBalance = await this.provider.send("eth_call", [ - { - from: sender, - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.senderBalance, - gas: numberToRpcQuantity(100_000), - gasPrice: numberToRpcQuantity(1), - }, - ]); - - assert.equal(rpcDataToNumber(senderBalance), 0); - }); - }); - - it("should use the proper chain ID", async function () { - const [_, compilerOutput] = await compileLiteral(` - contract ChainIdGetter { - event ChainId(uint i); - function getChainId() public returns (uint chainId) { - assembly { chainId := chainid() } - } - } - `); - const contractAddress = await deployContract( - this.provider, - `0x${compilerOutput.contracts["literal.sol"].ChainIdGetter.evm.bytecode.object}` - ); - - async function getChainIdFromContract( - provider: EthereumProvider - ): Promise { - return rpcQuantityToNumber( - ( - await provider.send("eth_call", [ - { - to: contractAddress, - data: "0x3408e470", // abi-encoded "getChainId()" - }, - ]) - ).replace(/0x0*/, "0x") - ); - } - - assert.equal(await getChainIdFromContract(this.provider), chainId); - }); - - it("should reject blob transactions", async function () { - await assertInvalidInputError( - this.provider, - "eth_call", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - blobs: ["0x1234"], - blobVersionedHashes: [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ], - }, - ], - "An EIP-4844 (shard blob) transaction was received, but Hardhat doesn't have support for them yet." - ); - }); - - describe("http JSON-RPC response", function () { - let client: Client; - - // send the transaction using an http client, otherwise the wrapped - // provider will intercept the response and throw an error - async function call({ from, to, data }: any): Promise { - return client - .request({ - method: "POST", - path: "/", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method: "eth_call", - params: [ - { - from, - to, - data, - }, - ], - }), - }) - .then((x) => x.body.json()); - } - - beforeEach(function () { - if (this.serverInfo === undefined || isFork) { - this.skip(); - } - - const url = `http://${this.serverInfo.address}:${this.serverInfo.port}`; - client = new Client(url, { - keepAliveTimeout: 10, - keepAliveMaxTimeout: 10, - }); - }); - - it("Should return the data of a call that reverts without a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await call({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal(response.error.data.data, "0x"); - }); - - it("Should return the data of a call that reverts with a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await call({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Error(string) encoded with value "a reason" - "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000086120726561736f6e000000000000000000000000000000000000000000000000" - ); - }); - - it("Should return the data of a call that panics", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await call({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.panics}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Panic(uint256) encoded with value 0x32 (out-of-bounds array access) - "0x4e487b710000000000000000000000000000000000000000000000000000000000000032" - ); - }); - - it("Should return the data of a call that reverts with a custom error", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await call({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.customError}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // MyCustomError() encoded - "0x4e7254d6" - ); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/estimateGas.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/estimateGas.ts deleted file mode 100644 index b3b3d787fa..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/estimateGas.ts +++ /dev/null @@ -1,395 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; -import { Client } from "undici"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertInvalidInputError } from "../../../../helpers/assertions"; -import { - EXAMPLE_CONTRACT, - EXAMPLE_REVERT_CONTRACT, -} from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_estimateGas", function () { - it("should estimate the gas for a transfer", async function () { - const estimation = await this.provider.send("eth_estimateGas", [ - { - from: zeroAddress(), - to: zeroAddress(), - }, - ]); - - assert.closeTo(Number(estimation), 21_000, 5); - }); - - it("should estimate the gas for a contract call", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000000a"; - - const gasEstimate = await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const tx = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.equal(gasEstimate, receipt.gasUsed); - }); - - it("should leverage block tag parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000000a"; - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const result = await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - numberToRpcQuantity(firstBlockNumber + 1), - ]); - - const result2 = await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.isTrue(BigInt(result) > BigInt(result2)); - }); - - it("should estimate gas in the context of pending block when called with 'pending' blockTag param", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000000a"; - - await this.provider.send("evm_setAutomine", [false]); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const result = await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - "latest", - ]); - - const result2 = await this.provider.send("eth_estimateGas", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - "pending", - ]); - - assert.isTrue(BigInt(result) > BigInt(result2)); - }); - - it("Should throw invalid input error if called in the context of a nonexistent block", async function () { - const latestBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const futureBlock = latestBlockNumber + 1; - - await assertInvalidInputError( - this.provider, - "eth_estimateGas", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(123), - }, - numberToRpcQuantity(futureBlock), - ], - `Received invalid block tag ${futureBlock}. Latest block number is ${latestBlockNumber}` - ); - }); - - it("Should use pending as default blockTag", async function () { - if (isFork) { - this.skip(); - } - - const blockNumber = await this.provider.send("eth_blockNumber"); - assert.equal(blockNumber, "0x0"); - - // We estimate the deployment of a contract that asserts that block.number > 0, - // which would fail if the estimation was run on `latest` right after the network is initialized - const estimation = await this.provider.send("eth_estimateGas", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: "0x6080604052348015600f57600080fd5b5060004311601957fe5b603f8060266000396000f3fe6080604052600080fdfea2646970667358221220f77641956f2e98e8fd65e712d73442aba66a133641d08a3058907caec561bb2364736f6c63430007040033", - }, - ]); - - // We know that it should fit in 100k gas - assert.isTrue(BigInt(estimation) <= 100_000n); - }); - - it("should reject blob transactions", async function () { - await assertInvalidInputError( - this.provider, - "eth_estimateGas", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - blobs: ["0x1234"], - blobVersionedHashes: [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ], - }, - ], - "An EIP-4844 (shard blob) transaction was received, but Hardhat doesn't have support for them yet." - ); - }); - - describe("Fee price fields", function () { - describe("Running a hardfork with EIP-1559", function () { - it("Should validate that gasPrice and maxFeePerGas & maxPriorityFeePerGas are not mixed", async function () { - await assertInvalidInputError( - this.provider, - "eth_estimateGas", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gasPrice: numberToRpcQuantity(1), - maxFeePerGas: numberToRpcQuantity(1), - }, - ], - "Cannot send both gasPrice and maxFeePerGas" - ); - - await assertInvalidInputError( - this.provider, - "eth_estimateGas", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gasPrice: numberToRpcQuantity(1), - maxPriorityFeePerGas: numberToRpcQuantity(1), - }, - ], - "Cannot send both gasPrice and maxPriorityFeePerGas" - ); - }); - - it("Should validate that maxFeePerGas >= maxPriorityFeePerGas", async function () { - await assertInvalidInputError( - this.provider, - "eth_estimateGas", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - maxFeePerGas: numberToRpcQuantity(1), - maxPriorityFeePerGas: numberToRpcQuantity(2), - }, - ], - "maxPriorityFeePerGas (2) is bigger than maxFeePerGas (1)" - ); - }); - }); - }); - - describe("http JSON-RPC response", function () { - let client: Client; - - // send the transaction using an http client, otherwise the wrapped - // provider will intercept the response and throw an error - async function estimateGas({ from, to, data }: any): Promise { - return client - .request({ - method: "POST", - path: "/", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method: "eth_estimateGas", - params: [ - { - from, - to, - data, - }, - ], - }), - }) - .then((x) => x.body.json()); - } - - beforeEach(function () { - if (this.serverInfo === undefined || isFork) { - this.skip(); - } - - const url = `http://${this.serverInfo.address}:${this.serverInfo.port}`; - client = new Client(url, { - keepAliveTimeout: 10, - keepAliveMaxTimeout: 10, - }); - }); - - it("Should return the data of a gas estimation that reverts without a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await estimateGas({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal(response.error.data.data, "0x"); - }); - - it("Should return the data of a gas estimation that reverts with a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await estimateGas({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Error(string) encoded with value "a reason" - "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000086120726561736f6e000000000000000000000000000000000000000000000000" - ); - }); - - it("Should return the data of a gas estimation that panics", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await estimateGas({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.panics}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Panic(uint256) encoded with value 0x32 (out-of-bounds array access) - "0x4e487b710000000000000000000000000000000000000000000000000000000000000032" - ); - }); - - it("Should return the data of a gas estimation that reverts with a custom error", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await estimateGas({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.customError}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // MyCustomError() encoded - "0x4e7254d6" - ); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/feeHistory.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/feeHistory.ts deleted file mode 100644 index 6aad911306..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/feeHistory.ts +++ /dev/null @@ -1,476 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { assertInvalidInputError } from "../../../../helpers/assertions"; -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { RpcBlockOutput } from "../../../../../../../src/internal/hardhat-network/provider/output"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_feeHistory", function () { - describe("Params validation", function () { - it("Should validate that block count is in [1, 1024]", async function () { - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(0), "latest"], - "blockCount should be at least 1" - ); - - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(1025), "latest"], - "blockCount should be at most 1024" - ); - }); - - it("Should validate that newestBlock exists", async function () { - const block = 10n ** 10n; - - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(1), numberToRpcQuantity(block)], - `Received invalid block tag ${block}` - ); - }); - - it("Should validate that percentiles are in [0, 100]", async function () { - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(1), "latest", [1, 2, -1]], - "The reward percentile number 3 is invalid. It must be a float between 0 and 100, but is -1 instead." - ); - - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(1), "latest", [100.1, 2, 3]], - "The reward percentile number 1 is invalid. It must be a float between 0 and 100, but is 100.1 instead." - ); - }); - - it("Should validate that percentiles are sorted", async function () { - await assertInvalidInputError( - this.provider, - "eth_feeHistory", - [numberToRpcQuantity(1), "latest", [1, 2, 2, 1]], - "The reward percentiles should be in non-decreasing order, but the percentile number 3 is greater than the next one" - ); - }); - }); - - describe("Reward percentiles", function () { - it("Should not return the field reward if no percentiles were given", async function () { - const { reward } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(1), - "latest", - ]); - - assert.isUndefined(reward); - - const { reward: reward2 } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(1), "latest", []] - ); - - assert.isUndefined(reward2); - }); - - it("Should give all 0s for empty blocks", async function () { - await this.provider.send("evm_mine"); - - const { reward } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(1), - "latest", - [50, 100], - ]); - - assert.deepEqual(reward, [["0x0", "0x0"]]); - }); - - it("Should give all 0s for the pending block", async function () { - // We first mine an empty block to normalize the forked networks - await this.provider.send("evm_mine"); - - const { reward } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(2), - "pending", - [50, 100], - ]); - - assert.deepEqual(reward, [ - ["0x0", "0x0"], - ["0x0", "0x0"], - ]); - }); - - it("Should give the right values for a block with txs (0 base fee)", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - const pendingBlock = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - const gasLimit = rpcQuantityToNumber(pendingBlock.gasLimit); - - const tx1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - maxPriorityFeePerGas: numberToRpcQuantity(2e9), - }, - ]); - - const tx2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - maxPriorityFeePerGas: numberToRpcQuantity(1e9), - }, - ]); - - const tx3 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(100e9), - }, - ]); - - await this.provider.send("evm_mine", []); - - const { effectiveGasPrice: effectiveGasPrice1 } = - await this.provider.send("eth_getTransactionReceipt", [tx1]); - - const { effectiveGasPrice: effectiveGasPrice2 } = - await this.provider.send("eth_getTransactionReceipt", [tx2]); - - const { effectiveGasPrice: effectiveGasPrice3 } = - await this.provider.send("eth_getTransactionReceipt", [tx3]); - - const { reward } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(1), - "latest", - [ - // Percentile 0 should give the effective gas price of the first tx - 0, - // Less than the gas of the first tx, so the first one should be used - (21000 / gasLimit) * 100 * 0.5, - // Exactly the gas of the first one. Should still be used. - (21000 / gasLimit) * 100, - // More than 1 tx's worth of gas. Should use the second one. - (21000 / gasLimit) * 100 * 1.5, - // Exactly 2 txs woth of gas. Should still use the 2nd one. - (21000 / gasLimit) * 100 * 2, - // 3 txs worth of gas, so should use the third one. - (21000 / gasLimit) * 100 * 3, - // Should use the third one. - 100, - ], - ]); - - // since the base fee is 0, the effective gas price is equal to the reward - const expected = [ - [ - effectiveGasPrice2, - effectiveGasPrice2, - effectiveGasPrice2, - effectiveGasPrice1, - effectiveGasPrice1, - effectiveGasPrice3, - effectiveGasPrice3, - ], - ]; - - assert.deepEqual(reward, expected); - }); - - it("Should give the right values for a block with txs (non-zero base fee)", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(1e9), - ]); - - const pendingBlock = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - const gasLimit = rpcQuantityToNumber(pendingBlock.gasLimit); - - // reward is 1 gwei - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - maxFeePerGas: numberToRpcQuantity(10e9), - maxPriorityFeePerGas: numberToRpcQuantity(1e9), - }, - ]); - - // reward is 99 gwei - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(100e9), - }, - ]); - - // reward is 9 gwei - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(10e9), - }, - ]); - - await this.provider.send("evm_mine", []); - - const { reward } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(1), - "latest", - [ - // Percentile 0 should give the reward of the first tx - 0, - // Less than the gas of the first tx, so the first one should be used - (21000 / gasLimit) * 100 * 0.5, - // Exactly the gas of the first one. Should still be used. - (21000 / gasLimit) * 100, - // More than 1 tx's worth of gas. Should use the second one. - (21000 / gasLimit) * 100 * 1.5, - // Exactly 2 txs woth of gas. Should still use the 2nd one. - (21000 / gasLimit) * 100 * 2, - // 3 txs worth of gas, so should use the third one. - (21000 / gasLimit) * 100 * 3, - // Should use the third one. - 100, - ], - ]); - - const expected = [ - [ - numberToRpcQuantity(1e9), - numberToRpcQuantity(1e9), - numberToRpcQuantity(1e9), - numberToRpcQuantity(9e9), - numberToRpcQuantity(9e9), - numberToRpcQuantity(99e9), - numberToRpcQuantity(99e9), - ], - ]; - - assert.deepEqual(reward, expected); - }); - }); - - describe("Oldest block", function () { - it("Should compute it based on the newest block and block count", async function () { - const firstBlock = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const { oldestBlock } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(2), - "latest", - ]); - - assert.equal(oldestBlock, numberToRpcQuantity(firstBlock + 2)); - - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const { oldestBlock: oldestBlock2 } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(3), numberToRpcQuantity(firstBlock + 4)] - ); - - assert.equal(oldestBlock2, numberToRpcQuantity(firstBlock + 2)); - }); - - it("Should cap the oldestBlock in 0", async function () { - // To test this in a forked network we should fork from a block < 1024 - if (isFork) { - this.skip(); - } - - const firstBlock = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const { oldestBlock } = await this.provider.send("eth_feeHistory", [ - numberToRpcQuantity(1024), - "latest", - ]); - - assert.equal(oldestBlock, firstBlock); - }); - }); - - describe("gasUsedRatio", function () { - it("Should compute it for mined blocks", async function () { - // Mine an empty block to normalize forked networks - await this.provider.send("evm_mine"); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - ]); - - const { gasUsedRatio } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(2), "latest"] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.deepEqual(gasUsedRatio, [ - 0, - 21000 / rpcQuantityToNumber(block.gasLimit), - ]); - }); - - it("Should compute the pending block", async function () { - // Mine an empty block to normalize forked networks - await this.provider.send("evm_mine"); - - await this.provider.send("evm_setAutomine", [false]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - }, - ]); - - const pendingBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - const { gasUsedRatio } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(2), "pending"] - ); - - assert.deepEqual(gasUsedRatio, [ - 0, - (2 * 21000) / rpcQuantityToNumber(pendingBlock.gasLimit), - ]); - }); - }); - - describe("baseFeePerGas", function () { - let firstBlock: number; - beforeEach( - "Normalize between fork and not forked networks by mining an empty block in the forked ones", - async function () { - if (isFork) { - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(1_000_000_000), - ]); - await this.provider.send("evm_mine", []); - } - - firstBlock = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - } - ); - - it("Should return blockCount + 1 entries", async function () { - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const { baseFeePerGas, oldestBlock } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(3), numberToRpcQuantity(firstBlock + 2)] - ); - - assert.equal(oldestBlock, firstBlock); - assert.deepEqual(baseFeePerGas, [ - numberToRpcQuantity(1_000_000_000), - // All of them are empty blocks, so each has 7/8 the base fee of - // the previous one - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 1)), - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 2)), - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 3)), - ]); - }); - - it("Should compute it for the pending block", async function () { - const { baseFeePerGas, oldestBlock } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(1), "latest"] - ); - - assert.equal(oldestBlock, firstBlock); - assert.deepEqual(baseFeePerGas, [ - numberToRpcQuantity(1_000_000_000), - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 1)), - ]); - }); - - it("Should compute it for the block after the pending one", async function () { - const { baseFeePerGas, oldestBlock } = await this.provider.send( - "eth_feeHistory", - [numberToRpcQuantity(1), "pending"] - ); - - assert.equal(oldestBlock, numberToRpcQuantity(firstBlock + 1)); - assert.deepEqual(baseFeePerGas, [ - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 1)), - numberToRpcQuantity(Math.ceil(1_000_000_000 * (7 / 8) ** 2)), - ]); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/gasPrice.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/gasPrice.ts deleted file mode 100644 index 04bbdbc0bf..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/gasPrice.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - - describe("eth_gasPrice", function () { - describe("with eip-1559", function () { - useProvider(); - - it("should return the next baseFeePerGas plus 1 gwei", async function () { - const gasPrice = await this.provider.send("eth_gasPrice"); - - const { baseFeePerGas: nextBlockBaseFeePerGas } = - await this.provider.send("eth_getBlockByNumber", [ - "pending", - false, - ]); - - const expectedGasPrice = BigInt(nextBlockBaseFeePerGas) + 10n ** 9n; - - assertQuantity(gasPrice, expectedGasPrice); - }); - }); - - describe("without eip-1559", function () { - useProvider({ hardfork: "berlin" }); - - it("Should return a hardcoded value for non-eip1559 networks", async function () { - assertQuantity(await this.provider.send("eth_gasPrice"), 8e9); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBalance.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBalance.ts deleted file mode 100644 index d740778128..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBalance.ts +++ /dev/null @@ -1,267 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidInputError, - assertNodeBalances, - assertPendingNodeBalances, - assertQuantity, -} from "../../../../helpers/assertions"; -import { EMPTY_ACCOUNT_ADDRESS } from "../../../../helpers/constants"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_ACCOUNTS_BALANCES, - PROVIDERS, -} from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getBalance", function () { - it("Should return 0 for empty accounts", async function () { - if (!isFork) { - assertQuantity( - await this.provider.send("eth_getBalance", [zeroAddress()]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getBalance", [ - "0x0000000000000000000000000000000000000001", - ]), - 0 - ); - } - - assertQuantity( - await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - ]), - 0 - ); - }); - - it("Should return the initial balance for the genesis accounts", async function () { - await assertNodeBalances(this.provider, DEFAULT_ACCOUNTS_BALANCES); - }); - - it("Should return the updated balance after a transaction is made", async function () { - const gasPrice = await getPendingBaseFeePerGas(this.provider); - await assertNodeBalances(this.provider, DEFAULT_ACCOUNTS_BALANCES); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(gasPrice), - }, - ]); - - await assertNodeBalances(this.provider, [ - DEFAULT_ACCOUNTS_BALANCES[0] - (gasPrice * 21_000n + 1n), - DEFAULT_ACCOUNTS_BALANCES[1] + 1n, - ...DEFAULT_ACCOUNTS_BALANCES.slice(2), - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(2), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(2n * gasPrice), - }, - ]); - - await assertNodeBalances(this.provider, [ - DEFAULT_ACCOUNTS_BALANCES[0] - - (gasPrice * 21000n + 1n + (gasPrice * 21000n * 2n + 2n)), - DEFAULT_ACCOUNTS_BALANCES[1] + 3n, - ...DEFAULT_ACCOUNTS_BALANCES.slice(2), - ]); - }); - - it("Should return the pending balance", async function () { - const gasPrice = await getPendingBaseFeePerGas(this.provider); - await this.provider.send("evm_setAutomine", [false]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(gasPrice), - nonce: numberToRpcQuantity(0), - }, - ]); - - await assertPendingNodeBalances(this.provider, [ - DEFAULT_ACCOUNTS_BALANCES[0], - DEFAULT_ACCOUNTS_BALANCES[1] - (gasPrice * 21000n + 1n), - DEFAULT_ACCOUNTS_BALANCES[2] + 1n, - ...DEFAULT_ACCOUNTS_BALANCES.slice(3), - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(2), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(2n * gasPrice), - nonce: numberToRpcQuantity(1), - }, - ]); - - await assertPendingNodeBalances(this.provider, [ - DEFAULT_ACCOUNTS_BALANCES[0], - DEFAULT_ACCOUNTS_BALANCES[1] - - (21_000n * gasPrice + 1n + 2n * 21_000n * gasPrice + 2n), - DEFAULT_ACCOUNTS_BALANCES[2] + 3n, - ...DEFAULT_ACCOUNTS_BALANCES.slice(3), - ]); - }); - - it("Should return the original balance after a call is made", async function () { - await assertNodeBalances(this.provider, DEFAULT_ACCOUNTS_BALANCES); - - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - }, - ]); - - await assertNodeBalances(this.provider, DEFAULT_ACCOUNTS_BALANCES); - - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - value: numberToRpcQuantity(1), - }, - ]); - - await assertNodeBalances(this.provider, DEFAULT_ACCOUNTS_BALANCES); - }); - - it("should assign the block reward to the coinbase address", async function () { - const coinbase = await this.provider.send("eth_coinbase"); - - assertQuantity( - await this.provider.send("eth_getBalance", [coinbase]), - 0 - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - ]); - - const balance = BigInt( - await this.provider.send("eth_getBalance", [coinbase]) - ); - - assert.isTrue(balance > 0n); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - ]); - - const balance2 = BigInt( - await this.provider.send("eth_getBalance", [coinbase]) - ); - - assert.isTrue(balance2 > balance); - }); - - it("should leverage block tag parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - value: numberToRpcQuantity(1), - }, - ]); - - if (!isFork) { - assert.strictEqual( - await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - "earliest", - ]), - "0x0" - ); - } - - assert.strictEqual( - await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - numberToRpcQuantity(firstBlockNumber), - ]), - "0x0" - ); - - assert.strictEqual( - await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - numberToRpcQuantity(firstBlockNumber + 1), - ]), - "0x1" - ); - - assert.strictEqual( - await this.provider.send("eth_getBalance", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - ]), - "0x1" - ); - }); - - it("Should throw invalid input error if called in the context of a nonexistent block", async function () { - const latestBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const futureBlock = latestBlockNumber + 1; - - await assertInvalidInputError( - this.provider, - "eth_getBalance", - [DEFAULT_ACCOUNTS_ADDRESSES[0], numberToRpcQuantity(futureBlock)], - `Received invalid block tag ${futureBlock}. Latest block number is ${latestBlockNumber}` - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByHash.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByHash.ts deleted file mode 100644 index 859fcf96db..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByHash.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { assert } from "chai"; - -import { - RpcBlockOutput, - RpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; -import { sendTxToZeroAddress } from "../../../../helpers/transactions"; -import { DEFAULT_COINBASE } from "../../../../../../../src/internal/hardhat-network/provider/provider"; -import { rpcQuantityToNumber } from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getBlockByHash", function () { - it("should return null for non-existing blocks", async function () { - assert.isNull( - await this.provider.send("eth_getBlockByHash", [ - "0x0000000000000000000000000000000000000000000000000000000000000001", - false, - ]) - ); - - assert.isNull( - await this.provider.send("eth_getBlockByHash", [ - "0x0000000000000000000000000000000000000000000000000000000000000123", - true, - ]) - ); - }); - - it("Should return the block with transaction hashes if the second argument is false", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const txHash = await sendTxToZeroAddress(this.provider); - const txOutput: RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByHash", - [txOutput.blockHash, false] - ); - - assert.equal(block.hash, txOutput.blockHash); - assertQuantity(block.number, firstBlockNumber + 1); - assert.equal(block.transactions.length, 1); - assert.include(block.transactions as string[], txHash); - assert.equal(block.miner, DEFAULT_COINBASE.toString()); - assert.isEmpty(block.uncles); - }); - - it("Should return the block with the complete transactions if the second argument is true", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const txHash = await sendTxToZeroAddress(this.provider); - const txOutput: RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByHash", - [txOutput.blockHash, true] - ); - - assert.equal(block.hash, txOutput.blockHash); - assertQuantity(block.number, firstBlockNumber + 1); - assert.equal(block.transactions.length, 1); - assert.equal(block.miner, DEFAULT_COINBASE.toString()); - assert.deepEqual( - block.transactions[0] as RpcTransactionOutput, - txOutput - ); - assert.isEmpty(block.uncles); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByNumber.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByNumber.ts deleted file mode 100644 index 6d26573857..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockByNumber.ts +++ /dev/null @@ -1,207 +0,0 @@ -import { assert } from "chai"; -import { Context } from "mocha"; - -import { - numberToRpcQuantity, - rpcQuantityToBigInt, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { - RpcBlockOutput, - RpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; -import { sendTxToZeroAddress } from "../../../../helpers/transactions"; -import { DEFAULT_COINBASE } from "../../../../../../../src/internal/hardhat-network/provider/provider"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider({ hardfork: "london" }); - - describe("eth_getBlockByNumber", function () { - it("Should return the genesis block for number 0", async function () { - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(0), - false, - ]); - - assert.equal( - block.parentHash, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assertQuantity(block.number, 0); - assert.isEmpty(block.transactions); - }); - - it("Should return null for unknown blocks", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 2), - false, - ]); - - assert.isNull(block); - - const block2 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - true, - ]); - - assert.isNull(block2); - }); - - it("Should return the new blocks", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const firstBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber), false] - ); - - const txHash = await sendTxToZeroAddress(this.provider); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 1), false] - ); - - assertQuantity(block.number, firstBlockNumber + 1); - assert.equal(block.transactions.length, 1); - assert.equal(block.parentHash, firstBlock.hash); - assert.include(block.transactions as string[], txHash); - assert.equal(block.miner, DEFAULT_COINBASE.toString()); - assert.isEmpty(block.uncles); - }); - - it("Should return the new pending block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const firstBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber), false] - ); - - await this.provider.send("evm_setAutomine", [false]); - const txHash = await sendTxToZeroAddress(this.provider); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - assert.isNotEmpty(block.logsBloom); - assert.equal(block.transactions.length, 1); - assert.equal(block.parentHash, firstBlock.hash); - assert.include(block.transactions as string[], txHash); - assert.equal(block.miner, DEFAULT_COINBASE.toString()); - assert.isEmpty(block.uncles); - }); - - it("should return the complete transactions if the second argument is true", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const firstBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber), false] - ); - - const txHash = await sendTxToZeroAddress(this.provider); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 1), true] - ); - - assertQuantity(block.number, firstBlockNumber + 1); - assert.equal(block.transactions.length, 1); - assert.equal(block.parentHash, firstBlock.hash); - assert.equal(block.miner, DEFAULT_COINBASE.toString()); - assert.isEmpty(block.uncles); - - const txOutput = block.transactions[0] as RpcTransactionOutput; - assert.equal(txOutput.hash, txHash); - assert.equal(block.hash, txOutput.blockHash); - assert.equal(block.number, txOutput.blockNumber); - assert.equal(txOutput.transactionIndex, numberToRpcQuantity(0)); - - assert.deepEqual( - txOutput, - await this.provider.send("eth_getTransactionByHash", [txHash]) - ); - }); - - it( - "should return the right block total difficulty", - isFork ? testTotalDifficultyFork : testTotalDifficulty - ); - - async function testTotalDifficultyFork(this: Context) { - const forkBlockNumber: number = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const forkBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber), false] - ); - - await sendTxToZeroAddress(this.provider); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(forkBlockNumber + 1), false] - ); - - assertQuantity( - block.totalDifficulty, - rpcQuantityToBigInt(forkBlock.totalDifficulty) + - rpcQuantityToBigInt(block.difficulty) - ); - } - - async function testTotalDifficulty(this: Context) { - const genesisBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(0), false] - ); - - assertQuantity(genesisBlock.totalDifficulty, 1); - assertQuantity(genesisBlock.difficulty, 1); - - await sendTxToZeroAddress(this.provider); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(1), false] - ); - - assertQuantity( - block.totalDifficulty, - rpcQuantityToNumber(block.difficulty) + 1 - ); - } - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByHash.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByHash.ts deleted file mode 100644 index df6edab53f..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByHash.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { assert } from "chai"; - -import { numberToRpcQuantity } from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { - RpcBlockOutput, - RpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; -import { sendTxToZeroAddress } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getBlockTransactionCountByHash", function () { - it("should return null for non-existing blocks", async function () { - assert.isNull( - await this.provider.send("eth_getBlockTransactionCountByHash", [ - "0x1111111111111111111111111111111111111111111111111111111111111111", - ]) - ); - }); - - it("Should return 0 for the genesis block", async function () { - const genesisBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(0), false] - ); - - assertQuantity( - await this.provider.send("eth_getBlockTransactionCountByHash", [ - genesisBlock.hash, - ]), - 0 - ); - }); - - it("Should return 1 for others", async function () { - const txhash = await sendTxToZeroAddress(this.provider); - - const txOutput: RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txhash] - ); - - assertQuantity( - await this.provider.send("eth_getBlockTransactionCountByHash", [ - txOutput.blockHash, - ]), - 1 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByNumber.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByNumber.ts deleted file mode 100644 index 97797cabc9..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getBlockTransactionCountByNumber.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertQuantity } from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; -import { sendTxToZeroAddress } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getBlockTransactionCountByNumber", function () { - it("should return null for non-existing blocks", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - assert.isNull( - await this.provider.send("eth_getBlockTransactionCountByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - ]) - ); - }); - - it("Should return 0 for the genesis block", async function () { - assertQuantity( - await this.provider.send("eth_getBlockTransactionCountByNumber", [ - numberToRpcQuantity(0), - ]), - 0 - ); - }); - - it("Should return the number of transactions in the block", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - await sendTxToZeroAddress(this.provider); - - assertQuantity( - await this.provider.send("eth_getBlockTransactionCountByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - ]), - 1 - ); - }); - - it("Should return the number of transactions in the 'pending' block", async function () { - await this.provider.send("evm_setAutomine", [false]); - await sendTxToZeroAddress(this.provider); - - assertQuantity( - await this.provider.send("eth_getBlockTransactionCountByNumber", [ - "pending", - ]), - 1 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getCode.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getCode.ts deleted file mode 100644 index 8b0cb34d49..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getCode.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { randomAddress } from "../../../../../../../src/internal/hardhat-network/provider/utils/random"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertInvalidInputError } from "../../../../helpers/assertions"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -const PRECOMPILES_COUNT = 8; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getCode", function () { - it("Should return an empty buffer for non-contract accounts", async function () { - assert.equal( - await this.provider.send("eth_getCode", [zeroAddress()]), - "0x" - ); - }); - - it("Should return an empty buffer for precompiles", async function () { - for (let i = 1; i <= PRECOMPILES_COUNT; i++) { - const precompileNumber = i.toString(16); - const zero = zeroAddress(); - - assert.equal( - await this.provider.send("eth_getCode", [ - zero.substr(0, zero.length - precompileNumber.length) + - precompileNumber, - ]), - "0x" - ); - } - }); - - it("Should return the deployed code", async function () { - // This a deployment transaction that pushes 0x41 (i.e. ascii A) followed by 31 0s to - // the stack, stores that in memory, and then returns the first byte from memory. - // This deploys a contract which a single byte of code, 0x41. - const contractAddress = await deployContract( - this.provider, - "0x7f410000000000000000000000000000000000000000000000000000000000000060005260016000f3" - ); - - assert.equal( - await this.provider.send("eth_getCode", [contractAddress]), - "0x41" - ); - }); - - it("Should leverage block tag parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - assert.strictEqual( - await this.provider.send("eth_getCode", [ - exampleContract, - numberToRpcQuantity(firstBlockNumber), - ]), - "0x" - ); - }); - - it("Should return the deployed code in the context of a new block with 'pending' block tag param", async function () { - const snapshotId = await this.provider.send("evm_snapshot"); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - assert.isNotNull(contractAddress); - - const contractCodeBefore = await this.provider.send("eth_getCode", [ - contractAddress, - "latest", - ]); - - await this.provider.send("evm_revert", [snapshotId]); - await this.provider.send("evm_setAutomine", [false]); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `0x${EXAMPLE_CONTRACT.bytecode.object}`, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - const txReceipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - const contractCodeAfter = await this.provider.send("eth_getCode", [ - contractAddress, - "pending", - ]); - - assert.isNull(txReceipt); - assert.strictEqual(contractCodeAfter, contractCodeBefore); - }); - - it("Should throw invalid input error if called in the context of a nonexistent block", async function () { - const latestBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const futureBlock = latestBlockNumber + 1; - - await assertInvalidInputError( - this.provider, - "eth_getCode", - [randomAddress().toString(), numberToRpcQuantity(futureBlock)], - `Received invalid block tag ${futureBlock}. Latest block number is ${latestBlockNumber}` - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getFilterLogs.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getFilterLogs.ts deleted file mode 100644 index 497bd5475e..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getFilterLogs.ts +++ /dev/null @@ -1,310 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getFilterLogs", function () { - let firstBlockNumber: number; - - beforeEach(async function () { - firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - }); - - it("Supports get filter logs", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - const filterId = await this.provider.send("eth_newFilter", [{}]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const logs = await this.provider.send("eth_getFilterLogs", [ - filterId, - ]); - assert.lengthOf(logs, 1); - - const log = logs[0]; - assert.equal(log.removed, false); - assert.equal(log.logIndex, "0x0"); - assert.equal(log.transactionIndex, "0x0"); - assert.equal( - rpcQuantityToNumber(log.blockNumber), - firstBlockNumber + 2 - ); - assert.equal(log.address, exampleContract); - assert.equal(log.data, `0x${newState}`); - }); - - it("Supports uninstalling an existing log filter", async function () { - const filterId = await this.provider.send("eth_newFilter", [{}]); - const uninstalled = await this.provider.send("eth_uninstallFilter", [ - filterId, - ]); - - assert.isTrue(uninstalled); - }); - - it("Supports get filter logs with address", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - const filterId = await this.provider.send("eth_newFilter", [ - { - address: exampleContract, - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 1 - ); - }); - - it("Supports get filter logs with topics", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - const filterId = await this.provider.send("eth_newFilter", [ - { - topics: [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0x0000000000000000000000000000000000000000000000000000000000000000", - ], - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 1 - ); - }); - - it("Supports get filter logs with null topic", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - const filterId = await this.provider.send("eth_newFilter", [ - { - topics: [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - null, - ], - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 1 - ); - }); - - it("Supports get filter logs with multiple topics", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - const filterId = await this.provider.send("eth_newFilter", [ - { - topics: [ - [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0x0000000000000000000000000000000000000000000000000000000000000000", - ], - [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000", - ], - ], - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 1 - ); - }); - - it("Supports get filter logs with fromBlock", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const filterId = await this.provider.send("eth_newFilter", [ - { - fromBlock: numberToRpcQuantity(firstBlockNumber), - address: exampleContract, - topics: [ - [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - ], - [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000003b", - ], - ], - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 2 - ); - }); - - it("Supports get filter logs with toBlock", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const filterId = await this.provider.send("eth_newFilter", [ - { - fromBlock: numberToRpcQuantity(firstBlockNumber), - toBlock: numberToRpcQuantity(firstBlockNumber + 2), - address: exampleContract, - topics: [ - [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - ], - [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000003b", - ], - ], - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getFilterLogs", [filterId]), - 1 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getLogs.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getLogs.ts deleted file mode 100644 index db96cf2560..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getLogs.ts +++ /dev/null @@ -1,381 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getLogs", function () { - let firstBlockNumber: number; - - beforeEach(async function () { - firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - }); - - it("Supports get logs", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000007b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - address: "0x0000000000000000000000000000000000000000", - }, - ]), - 0 - ); - - const logs = await this.provider.send("eth_getLogs", [ - { - address: exampleContract, - }, - ]); - assert.lengthOf(logs, 1); - - const log = logs[0]; - assert.equal(log.removed, false); - assert.equal(log.logIndex, "0x0"); - assert.equal(log.transactionIndex, "0x0"); - assert.equal( - rpcQuantityToNumber(log.blockNumber), - firstBlockNumber + 2 - ); - assert.equal(log.address, exampleContract); - assert.equal(log.data, `0x${newState}`); - }); - - it("Supports get logs with address", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - address: exampleContract, - }, - ]), - 1 - ); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - address: "0x0000000000000000000000000000000000000000", - }, - ]), - 0 - ); - }); - - it("Supports get logs with topics", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - topics: [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - ], - }, - ]), - 1 - ); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - topics: [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - ], - }, - ]), - 0 - ); - }); - - it("Supports get logs with null topic", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - topics: [ - null, - "0x0000000000000000000000000000000000000000000000000000000000000000", - ], - }, - ]), - 1 - ); - }); - - it("Supports get logs with multiple topic", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - fromBlock: numberToRpcQuantity(firstBlockNumber + 2), - topics: [ - [ - "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - ], - [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000003b", - ], - ], - }, - ]), - 2 - ); - }); - - it("Supports get logs with fromBlock", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - fromBlock: numberToRpcQuantity(firstBlockNumber + 3), - }, - ]), - 1 - ); - }); - - it("Supports get logs with toBlock", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf( - await this.provider.send("eth_getLogs", [ - { - fromBlock: numberToRpcQuantity(firstBlockNumber + 1), - toBlock: numberToRpcQuantity(firstBlockNumber + 2), - }, - ]), - 1 - ); - }); - - it("should accept out of bound block numbers", async function () { - const logs = await this.provider.send("eth_getLogs", [ - { - address: "0x0000000000000000000000000000000000000000", - fromBlock: numberToRpcQuantity(firstBlockNumber + 10000000), - }, - ]); - assert.lengthOf(logs, 0); - - const logs2 = await this.provider.send("eth_getLogs", [ - { - address: "0x0000000000000000000000000000000000000000", - fromBlock: numberToRpcQuantity(firstBlockNumber), - toBlock: numberToRpcQuantity(firstBlockNumber + 1000000), - }, - ]); - assert.lengthOf(logs2, 0); - }); - - it("should return a new array every time", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const newState = - "000000000000000000000000000000000000000000000000000000000000003b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - const logs1 = await this.provider.send("eth_getLogs", [ - { - address: exampleContract, - }, - ]); - - logs1[0].address = "changed"; - - const logs2 = await this.provider.send("eth_getLogs", [ - { - address: exampleContract, - }, - ]); - - assert.notEqual(logs1, logs2); - assert.notEqual(logs1[0], logs2[0]); - assert.notEqual(logs2[0].address, "changed"); - }); - - it("should have logIndex for logs in remote blocks", async function () { - if (!isFork) { - this.skip(); - } - - const logs = await this.provider.send("eth_getLogs", [ - { - address: "0x2A07fBCD64BE0e2329890C21c6F34e81889a5912", - topics: [ - "0x8f7de836135871245dd9c04f295aef602311da1591d262ecb4d2f45c7a88003d", - ], - fromBlock: numberToRpcQuantity(10721019), - toBlock: numberToRpcQuantity(10721019), - }, - ]); - - assert.lengthOf(logs, 1); - assert.isDefined(logs[0].logIndex); - assert.isNotNull(logs[0].logIndex); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getStorageAt.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getStorageAt.ts deleted file mode 100644 index 470d181d4a..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getStorageAt.ts +++ /dev/null @@ -1,384 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - numberToRpcStorageSlot, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { assertInvalidArgumentsError } from "../../../../helpers/assertions"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getStorageAt", function () { - describe("Imitating Ganache", function () { - describe("When a slot has not been written into", function () { - it("Should return `0x0000000000000000000000000000000000000000000000000000000000000000`", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(3), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(4), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcStorageSlot(0), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - }); - - describe("When a slot has been written into", function () { - describe("When 32 bytes were written", function () { - it("Should return a 32-byte DATA string", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(2), - numberToRpcQuantity(firstBlockNumber), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(2), - ]), - "0x1234567890123456789012345678901234567890123456789012345678901234" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(2), - "latest", - ]), - "0x1234567890123456789012345678901234567890123456789012345678901234" - ); - }); - - it("Should return a 32-byte DATA string in the context of a new block with 'pending' block tag param", async function () { - const snapshotId = await this.provider.send("evm_snapshot"); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - await this.provider.send("evm_revert", [snapshotId]); - await this.provider.send("evm_setAutomine", [false]); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `0x${EXAMPLE_CONTRACT.bytecode.object}`, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - const txReceipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.isNotNull(contractAddress); - assert.isNull(txReceipt); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - contractAddress, - numberToRpcStorageSlot(2), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - contractAddress, - numberToRpcStorageSlot(2), - "pending", - ]), - "0x1234567890123456789012345678901234567890123456789012345678901234" - ); - }); - - it("Should return a zero-value 32-byte DATA string in the context of the first block with 'earliest' block tag param", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(2), - "latest", - ]), - "0x1234567890123456789012345678901234567890123456789012345678901234" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(2), - "earliest", - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - }); - - describe("When less than 32 bytes where written", function () { - it("Should return a DATA string with the same amount bytes that have been written", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - // We return as the EthereumJS VM stores it. This has been checked - // against remix - - let newState = - "000000000000000000000000000000000000000000000000000000000000007b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(0), - numberToRpcQuantity(firstBlockNumber + 1), - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(0), - ]), - "0x000000000000000000000000000000000000000000000000000000000000007b" - ); - - newState = - "000000000000000000000000000000000000000000000000000000000000007c"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(0), - numberToRpcQuantity(firstBlockNumber + 2), - ]), - "0x000000000000000000000000000000000000000000000000000000000000007b" - ); - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - exampleContract, - numberToRpcStorageSlot(0), - ]), - "0x000000000000000000000000000000000000000000000000000000000000007c" - ); - }); - }); - }); - }); - - describe("validation", function () { - it("should accept valid storage slot arguments", async function () { - // 0x010101... is almost surely an empty account - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - "0x0101010101010101010101010101010101010101", - "0x0000000000000000000000000000000000000000000000000000000000000000", - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - - // check that it also works with some random storage slot - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - "0x0101010101010101010101010101010101010101", - "0xcd39aa866fd639607c7241f617cf83f33c646551f3d205f2905c5abacca2db85", - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should accept short hex strings", async function () { - const validHexStrings = [ - "0x", - "0x0", - "0x00", - "0x000", - "0x1", - "0x01", - "0x001", - "0xA", - "0x0A", - "0x00A", - "0xb", - "0x0b", - "0x00b", - ]; - - for (const storageSlot of validHexStrings) { - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - "0x0101010101010101010101010101010101010101", - storageSlot, - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - } - }); - - it("should accept storage slots without the 0x prefix", async function () { - const validHexStrings = [ - "0", - "00", - "000", - "1", - "01", - "001", - "A", - "0A", - "00A", - "b", - "0b", - "00b", - ]; - - for (const storageSlot of validHexStrings) { - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - "0x0101010101010101010101010101010101010101", - storageSlot, - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - } - - assert.strictEqual( - await this.provider.send("eth_getStorageAt", [ - "0x0101010101010101010101010101010101010101", - "0000000000000000000000000000000000000000000000000000000000000000", - ]), - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should not accept plain numbers", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_getStorageAt", - ["0x0101010101010101010101010101010101010101", 0], - "Storage slot argument must be a string, got '0'" - ); - }); - - it("should not accept empty strings", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_getStorageAt", - ["0x0101010101010101010101010101010101010101", ""], - "Storage slot argument cannot be an empty string" - ); - }); - - it("should not accept invalid hex strings", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_getStorageAt", - ["0x0101010101010101010101010101010101010101", "0xABCDEFG"], - "Storage slot argument must be a valid hexadecimal, got '0xABCDEFG'" - ); - }); - - it("should not accept hex strings that are too long", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_getStorageAt", - [ - "0x0101010101010101010101010101010101010101", - "0x00000000000000000000000000000000000000000000000000000000000000000", - ], - `Storage slot argument must have a length of at most 66 ("0x" + 32 bytes), but '0x00000000000000000000000000000000000000000000000000000000000000000' has a length of 67` - ); - - await assertInvalidArgumentsError( - this.provider, - "eth_getStorageAt", - [ - "0x0101010101010101010101010101010101010101", - "00000000000000000000000000000000000000000000000000000000000000000", - ], - `Storage slot argument must have a length of at most 64 (32 bytes), but '00000000000000000000000000000000000000000000000000000000000000000' has a length of 65` - ); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockHashAndIndex.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockHashAndIndex.ts deleted file mode 100644 index c006076f68..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockHashAndIndex.ts +++ /dev/null @@ -1,255 +0,0 @@ -import { - setLengthLeft, - toBytes, - zeroAddress, -} from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { TransactionParams } from "../../../../../../../src/internal/hardhat-network/provider/node-types"; -import { - AccessListEIP2930RpcTransactionOutput, - EIP1559RpcTransactionOutput, - LegacyRpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertAccessListTransaction, - assertEIP1559Transaction, - assertLegacyTransaction, -} from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { sendTransactionFromTxParams } from "../../../../helpers/transactions"; - -function toBuffer(x: Parameters[0]) { - return Buffer.from(toBytes(x)); -} - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getTransactionByBlockHashAndIndex", function () { - it("should return null for non-existing blocks", async function () { - assert.isNull( - await this.provider.send("eth_getTransactionByBlockHashAndIndex", [ - "0x1231231231231231231231231231231231231231231231231231231231231231", - numberToRpcQuantity(0), - ]) - ); - }); - - it("should return null for existing blocks but non-existing indexes", async function () { - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(0), - false, - ]); - - assert.isNull( - await this.provider.send("eth_getTransactionByBlockHashAndIndex", [ - block.hash, - numberToRpcQuantity(0), - ]) - ); - - assert.isNull( - await this.provider.send("eth_getTransactionByBlockHashAndIndex", [ - block.hash, - numberToRpcQuantity(0), - ]) - ); - }); - - it("should return the right info for the existing ones", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const txParams1: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 25_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams1 - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockHashAndIndex", - [block.hash, numberToRpcQuantity(0)] - ); - - assertLegacyTransaction( - tx, - txHash, - txParams1, - firstBlockNumber + 1, - block.hash, - 0 - ); - - const txParams2: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer([]), - nonce: 1n, - value: 123n, - gasLimit: 80_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash2 = await sendTransactionFromTxParams( - this.provider, - txParams2 - ); - - const block2 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 2), - false, - ]); - - const tx2: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockHashAndIndex", - [block2.hash, numberToRpcQuantity(0)] - ); - - assertLegacyTransaction( - tx2, - txHash2, - txParams2, - firstBlockNumber + 2, - block2.hash, - 0 - ); - }); - - it("should return access list transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const txParams: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - accessList: [ - [ - toBuffer(zeroAddress()), - [ - setLengthLeft(Buffer.from([0]), 32), - setLengthLeft(Buffer.from([1]), 32), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: AccessListEIP2930RpcTransactionOutput = - await this.provider.send("eth_getTransactionByBlockHashAndIndex", [ - block.hash, - numberToRpcQuantity(0), - ]); - - assertAccessListTransaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - - it("should return EIP-1559 transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const maxFeePerGas = await getPendingBaseFeePerGas(this.provider); - const txParams: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - maxFeePerGas, - maxPriorityFeePerGas: maxFeePerGas / 2n, - accessList: [ - [ - toBuffer(zeroAddress()), - [ - setLengthLeft(Buffer.from([0]), 32), - setLengthLeft(Buffer.from([1]), 32), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockHashAndIndex", - [block.hash, numberToRpcQuantity(0)] - ); - - assertEIP1559Transaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockNumberAndIndex.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockNumberAndIndex.ts deleted file mode 100644 index 2ce43bf26a..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByBlockNumberAndIndex.ts +++ /dev/null @@ -1,314 +0,0 @@ -import { toBytes, zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { TransactionParams } from "../../../../../../../src/internal/hardhat-network/provider/node-types"; -import { - EIP1559RpcTransactionOutput, - LegacyRpcTransactionOutput, - AccessListEIP2930RpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertAccessListTransaction, - assertEIP1559Transaction, - assertLegacyTransaction, -} from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { - sendTransactionFromTxParams, - sendTxToZeroAddress, -} from "../../../../helpers/transactions"; - -function toBuffer(x: Parameters[0]) { - return Buffer.from(toBytes(x)); -} - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getTransactionByBlockNumberAndIndex", function () { - it("should return null for non-existing blocks", async function () { - assert.isNull( - await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(1), numberToRpcQuantity(0)] - ) - ); - }); - - it("should return null for existing blocks but non-existing indexes", async function () { - assert.isNull( - await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(0), numberToRpcQuantity(0)] - ) - ); - - assert.isNull( - await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(1), numberToRpcQuantity(0)] - ) - ); - }); - - it("should return the right info for the existing ones", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const txParams1: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 25_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams1 - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(firstBlockNumber + 1), numberToRpcQuantity(0)] - ); - - assertLegacyTransaction( - tx, - txHash, - txParams1, - firstBlockNumber + 1, - block.hash, - 0 - ); - - const txParams2: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer([]), - nonce: 1n, - value: 123n, - gasLimit: 80_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash2 = await sendTransactionFromTxParams( - this.provider, - txParams2 - ); - - const block2 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 2), - false, - ]); - - const tx2: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(firstBlockNumber + 2), numberToRpcQuantity(0)] - ); - - assertLegacyTransaction( - tx2, - txHash2, - txParams2, - firstBlockNumber + 2, - block2.hash, - 0 - ); - }); - - it("should return access list transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const txParams: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - accessList: [ - [ - toBuffer(zeroAddress()), - [ - toBuffer( - "0x0000000000000000000000000000000000000000000000000000000000000000" - ), - toBuffer( - "0x0000000000000000000000000000000000000000000000000000000000000001" - ), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: AccessListEIP2930RpcTransactionOutput = - await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [ - numberToRpcQuantity(firstBlockNumber + 1), - numberToRpcQuantity(0), - ] - ); - - assertAccessListTransaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - - it("should return EIP-1559 transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const maxFeePerGas = await getPendingBaseFeePerGas(this.provider); - const txParams: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - maxFeePerGas, - maxPriorityFeePerGas: maxFeePerGas / 2n, - accessList: [ - [ - toBuffer(zeroAddress()), - [ - toBuffer( - "0x0000000000000000000000000000000000000000000000000000000000000000" - ), - toBuffer( - "0x0000000000000000000000000000000000000000000000000000000000000001" - ), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - [numberToRpcQuantity(firstBlockNumber + 1), numberToRpcQuantity(0)] - ); - - assertEIP1559Transaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - - it("should return the right transaction info when called with 'pending' block tag param", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const txParams1: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 25_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams1 - ); - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - ["pending", numberToRpcQuantity(0)] - ); - - await this.provider.send("evm_mine"); - - await sendTxToZeroAddress( - this.provider, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - - const txParams2: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer([]), - nonce: 2n, - value: 123n, - gasLimit: 80_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash2 = await sendTransactionFromTxParams( - this.provider, - txParams2 - ); - - const tx2: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByBlockNumberAndIndex", - ["pending", numberToRpcQuantity(1)] - ); - - assertLegacyTransaction(tx, txHash, txParams1); - assertLegacyTransaction(tx2, txHash2, txParams2); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByHash.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByHash.ts deleted file mode 100644 index 298afced2f..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionByHash.ts +++ /dev/null @@ -1,485 +0,0 @@ -import { Common } from "@nomicfoundation/ethereumjs-common"; -import { LegacyTransaction } from "@nomicfoundation/ethereumjs-tx"; -import { - bytesToHex as bufferToHex, - setLengthLeft, - toBytes, - zeroAddress, -} from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToBigInt, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { TransactionParams } from "../../../../../../../src/internal/hardhat-network/provider/node-types"; -import { - AccessListEIP2930RpcTransactionOutput, - EIP1559RpcTransactionOutput, - LegacyRpcTransactionOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { ALCHEMY_URL } from "../../../../../../setup"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertAccessListTransaction, - assertEIP1559Transaction, - assertLegacyTransaction, - assertTransactionFailure, -} from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_CHAIN_ID, - DEFAULT_NETWORK_ID, - PROVIDERS, -} from "../../../../helpers/providers"; -import { - getSignedTxHash, - sendTransactionFromTxParams, -} from "../../../../helpers/transactions"; - -function toBuffer(x: Parameters[0]) { - return Buffer.from(toBytes(x)); -} - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getTransactionByHash", function () { - it("should return null for unknown txs", async function () { - assert.isNull( - await this.provider.send("eth_getTransactionByHash", [ - "0x1234567890123456789012345678901234567890123456789012345678902134", - ]) - ); - - assert.isNull( - await this.provider.send("eth_getTransactionByHash", [ - "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", - ]) - ); - }); - - it("should return the right info for the existing ones", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const txParams1: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0xaa"), - nonce: 0n, - value: 123n, - gasLimit: 25_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams1 - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assertLegacyTransaction( - tx, - txHash, - txParams1, - firstBlockNumber + 1, - block.hash, - 0 - ); - - const txParams2: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer([]), - nonce: 1n, - value: 123n, - gasLimit: 80_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash2 = await sendTransactionFromTxParams( - this.provider, - txParams2 - ); - - const block2 = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 2), - false, - ]); - - const tx2: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash2] - ); - - assertLegacyTransaction( - tx2, - txHash2, - txParams2, - firstBlockNumber + 2, - block2.hash, - 0 - ); - }); - - it("should return the transaction if it gets to execute and failed", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const txParams: TransactionParams = { - to: undefined, - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0x60006000fd"), - nonce: 0n, - value: 123n, - gasLimit: 250_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await getSignedTxHash( - this.hardhatNetworkProvider, - txParams, - 1 - ); - - // Revert. This is a deployment transaction that immediately reverts without a reason - await assertTransactionFailure( - this.provider, - { - from: bufferToHex(txParams.from), - data: bufferToHex(txParams.data), - nonce: numberToRpcQuantity(txParams.nonce), - value: numberToRpcQuantity(txParams.value), - gas: numberToRpcQuantity(txParams.gasLimit), - gasPrice: numberToRpcQuantity(txParams.gasPrice), - }, - "Transaction reverted without a reason" - ); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - assertLegacyTransaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - - it("should return the right properties", async function () { - const address = "0x738a6fe8b5034a10e85f19f2abdfd5ed4e12463e"; - const privateKey = Buffer.from( - "17ade313db5de97d19b4cfbc820d15e18a6c710c1afbf01c1f31249970d3ae46", - "hex" - ); - - // send eth to the account that will sign the tx - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - value: "0x16345785d8a0000", - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - const common = Common.custom( - { - chainId: DEFAULT_CHAIN_ID, - networkId: DEFAULT_NETWORK_ID, - }, - { - hardfork: "muirGlacier", - } - ); - - const txParams = { - nonce: "0x0", - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - gasLimit: "0x55f0", - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x1", - data: "0xbeef", - }; - - const tx = new LegacyTransaction(txParams, { common }); - - const signedTx = tx.sign(privateKey); - - const rawTx = `0x${Buffer.from(signedTx.serialize()).toString( - "hex" - )}`; - - const txHash = await this.provider.send("eth_sendRawTransaction", [ - rawTx, - ]); - - const fetchedTx = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(fetchedTx.from, address); - assert.equal(fetchedTx.to, DEFAULT_ACCOUNTS_ADDRESSES[1]); - assert.equal( - rpcQuantityToBigInt(fetchedTx.value), - rpcQuantityToBigInt(txParams.value) - ); - assert.equal( - rpcQuantityToBigInt(fetchedTx.nonce), - rpcQuantityToBigInt(txParams.nonce) - ); - assert.equal( - rpcQuantityToBigInt(fetchedTx.gas), - rpcQuantityToBigInt(txParams.gasLimit) - ); - assert.equal( - rpcQuantityToBigInt(fetchedTx.gasPrice), - rpcQuantityToBigInt(txParams.gasPrice) - ); - assert.equal(fetchedTx.input, txParams.data); - - // tx.v is padded but fetchedTx.v is not, so we need to do this - const fetchedTxV = BigInt(fetchedTx.v); - const expectedTxV = BigInt(signedTx.v!); - assert.equal(fetchedTxV, expectedTxV); - - // Also equalize left padding (signedTx has a leading 0) - assert.equal( - toBuffer(fetchedTx.r).toString("hex"), - toBuffer(signedTx.r!).toString("hex") - ); - - assert.equal( - toBuffer(fetchedTx.s).toString("hex"), - toBuffer(signedTx.s!).toString("hex") - ); - }); - - it("should return the right info for the pending transaction", async function () { - const txParams: TransactionParams = { - to: toBuffer(zeroAddress()), - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer([]), - nonce: 0n, - value: 123n, - gasLimit: 25_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - await this.provider.send("evm_setAutomine", [false]); - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const tx: LegacyRpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assertLegacyTransaction(tx, txHash, txParams); - }); - - it("should get an existing transaction from mainnet", async function () { - if (!isFork) { - this.skip(); - } - - const tx = await this.provider.send("eth_getTransactionByHash", [ - "0x5a4bf6970980a9381e6d6c78d96ab278035bbff58c383ffe96a0a2bbc7c02a4b", - ]); - - assert.equal(tx.from, "0x8a9d69aa686fa0f9bbdec21294f67d4d9cfb4a3e"); - }); - - it("should get an existing transaction from sepolia", async function () { - if (!isFork || ALCHEMY_URL === undefined) { - this.skip(); - } - const sepoliaUrl = ALCHEMY_URL.replace("mainnet", "sepolia"); - - // If "mainnet" is not present the replacement failed so we skip the test - if (sepoliaUrl === ALCHEMY_URL) { - this.skip(); - } - - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: sepoliaUrl, - }, - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - "0xa74bda9627781a8d6aa3707eb6a2b8964b0c2e2522cfe47ff374d61ba8651e95", - ]); - - assert.equal(tx.from, "0x395d049687a65902dcada4abe30bcb0a438d5b63"); - }); - - it("should get a blob transaction from sepolia", async function () { - if (!isFork || ALCHEMY_URL === undefined) { - this.skip(); - } - const sepoliaUrl = ALCHEMY_URL.replace("mainnet", "sepolia"); - - // If "mainnet" is not present the replacement failed, so we skip the test - if (sepoliaUrl === ALCHEMY_URL) { - this.skip(); - } - - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: sepoliaUrl, - // Block with the tx below - blockNumber: 5628498, - }, - }, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - // blob transaction - "0x3735effc4fe73c17809a10c8076e5b9d154dce760d8df73b5bc08e399c27b16b", - ]); - - assert.equal(tx.from, "0xf598b6388ec06945021699f0bbb23dfcfc5edbe8"); - }); - - it("should return access list transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const txParams: TransactionParams = { - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - to: toBuffer(zeroAddress()), - data: toBuffer("0x"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - accessList: [ - [ - toBuffer(zeroAddress()), - [ - setLengthLeft(Buffer.from([0]), 32), - setLengthLeft(Buffer.from([1]), 32), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const tx: AccessListEIP2930RpcTransactionOutput = - await this.provider.send("eth_getTransactionByHash", [txHash]); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - assertAccessListTransaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - - it("should return EIP-1559 transactions", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const maxFeePerGas = await getPendingBaseFeePerGas(this.provider); - const txParams: TransactionParams = { - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - to: toBuffer(zeroAddress()), - data: toBuffer("0x"), - nonce: 0n, - value: 123n, - gasLimit: 30_000n, - maxFeePerGas, - maxPriorityFeePerGas: maxFeePerGas / 2n, - accessList: [ - [ - toBuffer(zeroAddress()), - [ - setLengthLeft(Buffer.from([0]), 32), - setLengthLeft(Buffer.from([1]), 32), - ], - ], - ], - }; - - const txHash = await sendTransactionFromTxParams( - this.provider, - txParams - ); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - assertEIP1559Transaction( - tx, - txHash, - txParams, - firstBlockNumber + 1, - block.hash, - 0 - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionCount.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionCount.ts deleted file mode 100644 index 9de65c8bed..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionCount.ts +++ /dev/null @@ -1,228 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { randomAddress } from "../../../../../../../src/internal/hardhat-network/provider/utils/random"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidInputError, - assertQuantity, -} from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getTransactionCount", function () { - it("Should return 0 for random accounts", async function () { - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - zeroAddress(), - ]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - "0x0000000000000000000000000000000000000001", - ]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - "0x0001231287316387168230000000000000000001", - ]), - 0 - ); - }); - - it("Should return the updated count after a transaction is made", async function () { - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - ]), - 0 - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - ]), - 1 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[2], - ]), - 0 - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[2], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - ]), - 1 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[2], - ]), - 1 - ); - }); - - it("Should not be affected by calls", async function () { - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - ]), - 0 - ); - - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - ]), - 0 - ); - }); - - it("Should leverage block tag parameter", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(1), - }, - ]); - - if (!isFork) { - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - "earliest", - ]), - 0 - ); - } - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - numberToRpcQuantity(firstBlockNumber), - ]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - "latest", - ]), - 1 - ); - }); - - it("Should return transaction count in context of a new block with 'pending' block tag param", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - value: numberToRpcQuantity(1), - }, - ]); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - "latest", - ]), - 0 - ); - - assertQuantity( - await this.provider.send("eth_getTransactionCount", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - "pending", - ]), - 1 - ); - }); - - it("Should throw invalid input error if called in the context of a nonexistent block", async function () { - const latestBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const futureBlock = latestBlockNumber + 1; - - await assertInvalidInputError( - this.provider, - "eth_getTransactionCount", - [randomAddress().toString(), numberToRpcQuantity(futureBlock)], - `Received invalid block tag ${futureBlock}. Latest block number is ${latestBlockNumber}` - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionReceipt.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionReceipt.ts deleted file mode 100644 index dddc7c0eb9..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/getTransactionReceipt.ts +++ /dev/null @@ -1,260 +0,0 @@ -import { - bytesToHex as bufferToHex, - toBytes, -} from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { TransactionParams } from "../../../../../../../src/internal/hardhat-network/provider/node-types"; -import { - RpcBlockOutput, - RpcReceiptOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertQuantity, - assertTransactionFailure, -} from "../../../../helpers/assertions"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { - deployContract, - getSignedTxHash, -} from "../../../../helpers/transactions"; - -function toBuffer(x: Parameters[0]) { - return Buffer.from(toBytes(x)); -} - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_getTransactionReceipt", function () { - it("should return null for unknown txs", async function () { - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [ - "0x1234567876543234567876543456765434567aeaeaed67616732632762762373", - ] - ); - - assert.isNull(receipt); - }); - - it("should return the right tx index and gas used", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - await this.provider.send("evm_setAutomine", [false]); - const txHashes = await Promise.all( - Array.from(new Array(2)).map(() => - this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - gas: `0x${150_000n.toString(16)}`, - }, - ]) - ) - ); - - await this.provider.send("evm_mine", []); - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 2), false] - ); - - assert.equal(block.transactions.length, 2); - - const receipts = await Promise.all( - txHashes.map( - (txHash) => - this.provider.send("eth_getTransactionReceipt", [ - txHash, - ]) as Promise - ) - ); - - // Promises could have executed in any order, so we sort the results - const sortedReceipts = receipts.sort((lhs, rhs) => { - return ( - rpcQuantityToNumber(lhs.transactionIndex) - - rpcQuantityToNumber(rhs.transactionIndex) - ); - }); - - let logIndex = 0; - let cumGasUsed = 0; - - for (const receipt of sortedReceipts) { - cumGasUsed += rpcQuantityToNumber(receipt.gasUsed); - assert.equal( - cumGasUsed, - rpcQuantityToNumber(receipt.cumulativeGasUsed) - ); - for (const event of receipt.logs) { - assert.equal( - logIndex, - rpcQuantityToNumber( - event.logIndex === null ? "0" : event.logIndex - ) - ); - logIndex += 1; - } - } - }); - - it("should return the right values for successful txs", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, - }, - ]); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 2), false] - ); - - const receipt: RpcReceiptOutput = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.equal(receipt.blockHash, block.hash); - assertQuantity(receipt.blockNumber, firstBlockNumber + 2); - assert.isNull(receipt.contractAddress); - assert.equal(receipt.cumulativeGasUsed, receipt.gasUsed); - assert.equal(receipt.from, DEFAULT_ACCOUNTS_ADDRESSES[0]); - assertQuantity(receipt.status, 1); - assert.equal(receipt.logs.length, 1); - assert.equal(receipt.to, contractAddress); - assert.equal(receipt.transactionHash, txHash); - assertQuantity(receipt.transactionIndex, 0); - - const log = receipt.logs[0]; - - assert.isFalse(log.removed); - assertQuantity(log.logIndex, 0); - assertQuantity(log.transactionIndex, 0); - assert.equal(log.transactionHash, txHash); - assert.equal(log.blockHash, block.hash); - assertQuantity(log.blockNumber, firstBlockNumber + 2); - assert.equal(log.address, contractAddress); - - // The new value of i is not indexed - assert.equal( - log.data, - "0x000000000000000000000000000000000000000000000000000000000000000a" - ); - - assert.deepEqual(log.topics, [ - EXAMPLE_CONTRACT.topics.StateModified[0], - "0x0000000000000000000000000000000000000000000000000000000000000000", - ]); - }); - - it("should return the receipt for txs that were executed and failed", async function () { - const txParams: TransactionParams = { - to: undefined, - from: toBuffer(DEFAULT_ACCOUNTS_ADDRESSES[1]), - data: toBuffer("0x60006000fd"), - nonce: 0n, - value: 123n, - gasLimit: 250_000n, - gasPrice: await getPendingBaseFeePerGas(this.provider), - }; - - const txHash = await getSignedTxHash( - this.hardhatNetworkProvider, - txParams, - 1 - ); - - // Revert. This is a deployment transaction that immediately reverts without a reason - await assertTransactionFailure( - this.provider, - { - from: bufferToHex(txParams.from), - data: bufferToHex(txParams.data), - nonce: numberToRpcQuantity(txParams.nonce), - value: numberToRpcQuantity(txParams.value), - gas: numberToRpcQuantity(txParams.gasLimit), - gasPrice: numberToRpcQuantity(txParams.gasPrice), - }, - "Transaction reverted without a reason" - ); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.isNotNull(receipt); - }); - - it("should return a new object every time", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - const receipt1: RpcReceiptOutput = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - receipt1.blockHash = "changed"; - - const receipt2: RpcReceiptOutput = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.notEqual(receipt1, receipt2); - assert.notEqual(receipt2.blockHash, "changed"); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/index.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/index.ts deleted file mode 100644 index 84ff3a8f5e..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/index.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertNotSupported, - assertQuantity, -} from "../../../../helpers/assertions"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { DEFAULT_COINBASE } from "../../../../../../../src/internal/hardhat-network/provider/provider"; - -/** - * This file test the methods that are not covered by the other - * files in this directory. - */ -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork, chainId }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_accounts", function () { - it("should return the genesis accounts in lower case", async function () { - const accounts = await this.provider.send("eth_accounts"); - - assert.deepEqual(accounts, DEFAULT_ACCOUNTS_ADDRESSES); - }); - }); - - describe("eth_chainId", function () { - it("should return the chain id as QUANTITY", async function () { - assertQuantity(await this.provider.send("eth_chainId"), chainId); - }); - }); - - describe("eth_coinbase", function () { - it("should return the default coinbase address", async function () { - assert.equal( - await this.provider.send("eth_coinbase"), - DEFAULT_COINBASE - ); - }); - }); - - describe("eth_compileLLL", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_compileLLL"); - }); - }); - - describe("eth_compileSerpent", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_compileSerpent"); - }); - }); - - describe("eth_compileSolidity", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_compileSolidity"); - }); - }); - - describe("eth_getCompilers", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_getCompilers"); - }); - }); - - describe("eth_getProof", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_getProof"); - }); - }); - - describe("eth_getUncleByBlockHashAndIndex", function () { - it("is not supported", async function () { - await assertNotSupported( - this.provider, - "eth_getUncleByBlockHashAndIndex" - ); - }); - }); - - describe("eth_getUncleByBlockNumberAndIndex", function () { - it("is not supported", async function () { - await assertNotSupported( - this.provider, - "eth_getUncleByBlockNumberAndIndex" - ); - }); - }); - - describe("eth_getUncleCountByBlockHash", function () { - it("is not supported", async function () { - await assertNotSupported( - this.provider, - "eth_getUncleCountByBlockHash" - ); - }); - }); - - describe("eth_getUncleCountByBlockNumber", function () { - it("is not supported", async function () { - await assertNotSupported( - this.provider, - "eth_getUncleCountByBlockNumber" - ); - }); - }); - - describe("eth_getWork", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_getWork"); - }); - }); - - describe("eth_hashrate", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_hashrate"); - }); - }); - - describe("eth_mining", function () { - it("should return false", async function () { - assert.deepEqual(await this.provider.send("eth_mining"), false); - }); - }); - - describe("eth_protocolVersion", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_protocolVersion"); - }); - }); - - describe("eth_sign", function () { - // TODO: Test this. Note that it's implementation is tested in one of - // our provider wrappers, but re-test it here anyway. - }); - - describe("eth_signTransaction", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_signTransaction"); - }); - }); - - describe("eth_signTypedData", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_signTypedData"); - }); - }); - - describe("eth_signTypedData_v3", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_signTypedData_v3"); - }); - }); - - describe("eth_submitHashrate", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_submitHashrate"); - }); - }); - - describe("eth_submitWork", function () { - it("is not supported", async function () { - await assertNotSupported(this.provider, "eth_submitWork"); - }); - }); - - describe("eth_syncing", function () { - it("Should return false", async function () { - assert.deepEqual(await this.provider.send("eth_syncing"), false); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/newPendingTransactionFilter.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/newPendingTransactionFilter.ts deleted file mode 100644 index 057a66f6bc..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/newPendingTransactionFilter.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { numberToRpcQuantity } from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_newPendingTransactionFilter", function () { - it("Supports pending transaction filter", async function () { - assert.isString( - await this.provider.send("eth_newPendingTransactionFilter") - ); - }); - - it("Supports uninstalling an existing filter", async function () { - const filterId = await this.provider.send( - "eth_newPendingTransactionFilter", - [] - ); - const uninstalled = await this.provider.send("eth_uninstallFilter", [ - filterId, - ]); - - assert.isTrue(uninstalled); - }); - - it("Should return new pending transactions", async function () { - const filterId = await this.provider.send( - "eth_newPendingTransactionFilter", - [] - ); - - const accounts = await this.provider.send("eth_accounts"); - const burnTxParams = { - from: accounts[0], - to: zeroAddress(), - gas: numberToRpcQuantity(21000), - }; - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - const txHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.isNotEmpty(txHashes); - }); - - it("Should not return new pending transactions after uninstall", async function () { - const filterId = await this.provider.send( - "eth_newPendingTransactionFilter", - [] - ); - - const uninstalled = await this.provider.send("eth_uninstallFilter", [ - filterId, - ]); - - assert.isTrue(uninstalled); - - const accounts = await this.provider.send("eth_accounts"); - const burnTxParams = { - from: accounts[0], - to: zeroAddress(), - gas: numberToRpcQuantity(21000), - }; - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - const txHashes = await this.provider.send("eth_getFilterChanges", [ - filterId, - ]); - - assert.isNull(txHashes); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/pendingTransactions.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/pendingTransactions.ts deleted file mode 100644 index 528e05152c..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/pendingTransactions.ts +++ /dev/null @@ -1,108 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { sendDummyTransaction } from "../../../../helpers/sendDummyTransaction"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_pendingTransactions", function () { - it("should return an empty array if there are no pending transactions", async function () { - assert.deepEqual( - await this.provider.send("eth_pendingTransactions"), - [] - ); - }); - - it("should return an array of pending transactions", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const txs = []; - txs.push( - await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }) - ); - txs.push( - await sendDummyTransaction(this.provider, 1, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }) - ); - txs.push( - await sendDummyTransaction(this.provider, 4, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }) - ); - txs.push( - await sendDummyTransaction(this.provider, 9, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }) - ); - - const pendingTransactions = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.lengthOf(pendingTransactions, 4); - assert.sameOrderedMembers( - pendingTransactions.map((tx: { hash: any }) => tx.hash), - txs - ); - }); - - it("should return an array with remaining pending transactions after a block was mined", async function () { - await this.provider.send("evm_setAutomine", [false]); - - await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - await sendDummyTransaction(this.provider, 1, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - - const tx1 = await sendDummyTransaction(this.provider, 4, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - const tx2 = await sendDummyTransaction(this.provider, 9, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - - const pendingTransactionsBefore = await this.provider.send( - "eth_pendingTransactions" - ); - - await this.provider.send("evm_mine"); - - const pendingTransactionsAfter = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.notSameDeepOrderedMembers( - pendingTransactionsAfter, - pendingTransactionsBefore - ); - assert.lengthOf(pendingTransactionsBefore, 4); - assert.lengthOf(pendingTransactionsAfter, 2); - assert.sameOrderedMembers( - pendingTransactionsAfter.map((tx: { hash: any }) => tx.hash), - [tx1, tx2] - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendRawTransaction.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendRawTransaction.ts deleted file mode 100644 index 8b5063a176..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendRawTransaction.ts +++ /dev/null @@ -1,362 +0,0 @@ -import { Common } from "@nomicfoundation/ethereumjs-common"; -import { TransactionFactory } from "@nomicfoundation/ethereumjs-tx"; -import { assert } from "chai"; -import { Client } from "undici"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidArgumentsError, - assertInvalidInputError, - assertReceiptMatchesGethOne, -} from "../../../../helpers/assertions"; -import { EXAMPLE_REVERT_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - PROVIDERS, - DEFAULT_ACCOUNTS, - DEFAULT_ACCOUNTS_ADDRESSES, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; -import { RpcTransactionOutput } from "../../../../../../../src/internal/hardhat-network/provider/output"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork, isJsonRpc }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider({ hardfork: "london" }); - - describe("eth_sendRawTransaction", function () { - it("Should throw if the data isn't a proper transaction", async function () { - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - ["0x223456"], - `Invalid transaction type ${0x22}.` - ); - }); - - it("Should throw if the signature is invalid", async function () { - if (isFork) { - this.skip(); - return; - } - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [ - // This transaction was obtained with eth_sendTransaction, and its r value was wiped - "0xf3808501dcd6500083015f9080800082011a80a00dbd1a45b7823be518540ca77afb7178a470b8054281530a6cdfd0ad3328cf96", - ], - "Invalid Signature" - ); - }); - - it("Should throw if the signature is invalid but for another chain (EIP155)", async function () { - if (isFork) { - this.skip(); - return; - } - await assertInvalidArgumentsError( - this.provider, - "eth_sendRawTransaction", - [ - "0xf86e820a0f843b9aca0083030d40941aad5e821c667e909c16a49363ca48f672b46c5d88169866e539efe0008025a07bc6a357d809c9d27f8f5a826861e7f9b4b7c9cff4f91f894b88e98212069b3da05dbadbdfa67bab1d76d2d81e33d90162d508431362331f266dd6aa0cb4b525aa", - ], - "Trying to send an incompatible EIP-155 transaction" - ); - }); - - it("Should send the raw transaction", async function () { - if (isFork) { - this.skip(); - return; - } - // This test is a copy of: Should work with just from and data - - const hash = await this.provider.send("eth_sendRawTransaction", [ - "0xf853808501dcd6500083015f9080800082011aa09c8def73818f79b6493b7a3f7ce47b557694ca195d1b54bb74e3d98990041b44a00dbd1a45b7823be518540ca77afb7178a470b8054281530a6cdfd0ad3328cf96", - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [hash] - ); - - const receiptFromGeth = { - blockHash: - "0x01490da2af913e9a868430b7b4c5060fc29cbdb1692bb91d3c72c734acd73bc8", - blockNumber: "0x6", - contractAddress: "0x6ea84fcbef576d66896dc2c32e139b60e641170c", - cumulativeGasUsed: "0xcf0c", - from: "0xda4585f6e68ed1cdfdad44a08dbe3979ec74ad8f", - gasUsed: "0xcf0c", - logs: [], - logsBloom: - "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - status: "0x1", - to: null, - transactionHash: - "0xbd24cbe9c1633b98e61d93619230341141d2cff49470ed6afa739cee057fd0aa", - transactionIndex: "0x0", - }; - - assertReceiptMatchesGethOne(receipt, receiptFromGeth, 1); - }); - - it("should reject blob transactions", async function () { - // blob tx signed with the private key of the first default account - const rawBlobTx = - "0x03f88380808080809400000000000000000000000000000000000000108080c080e1a0000000000000000000000000000000000000001012345678901234567890123401a0f3f7e5408804e3a0e3c4ac30a4f14b2995656a02d8b0279d7d48044d3cdf05e6a004e7606fef78d5221916053b3ec8a5fefddaa8a62ac6440f24a7c860ca25aa9f"; - - await assertInvalidInputError( - this.provider, - "eth_sendRawTransaction", - [rawBlobTx], - "An EIP-4844 (shard blob) transaction was received, but Hardhat doesn't have support for them yet." - ); - }); - - describe("Transaction hash returned within the error data", function () { - describe("Set lower baseFeePerGas", function () { - // setting a lower baseFeePerGas here to avoid having to re-create the raw tx - useProvider({ initialBaseFeePerGas: 1n }); - - it("Should return the hash of the failed transaction", async function () { - if (!isJsonRpc || isFork) { - this.skip(); - } - - try { - // sends a tx with 21000 gas to the 0x1 precompile - await this.provider.send("eth_sendRawTransaction", [ - "0xf8618001825208940000000000000000000000000000000000000001808082011aa03e2b434ea8994b24017a30d58870e7387a69523b25f153f0d90411a8af8343d6a00c26d36e92d8a8334193b02982ce0b2ec9afc85ad26eaf8c2993ad07d3495f95", - ]); - - assert.fail("Tx should have failed"); - } catch (e: any) { - assert.notInclude(e.message, "Tx should have failed"); - - assert.isDefined(e.data.txHash); - } - }); - }); - }); - - describe("Base fee validation", function () { - // The raw tx we are using may not work in a fork because of its - // chainID and nonce - if (isFork) { - return; - } - - // We set an initial base fee too high for the raw tx - useProvider({ initialBaseFeePerGas: 100n * 10n ** 9n }); - - describe("With automining enabled", function () { - it("Should reject txs that can't be mined in the next block", async function () { - await assertInvalidInputError( - this.provider, - "eth_sendRawTransaction", - [ - "0xf8618001825208940000000000000000000000000000000000000001808082011aa03e2b434ea8994b24017a30d58870e7387a69523b25f153f0d90411a8af8343d6a00c26d36e92d8a8334193b02982ce0b2ec9afc85ad26eaf8c2993ad07d3495f95", - ], - "too low for the next block, which has a baseFeePerGas of" - ); - }); - }); - - describe("With automining disabled", function () { - it("Should enqueue txs that can't be mined in the next block", async function () { - await this.provider.send("evm_setAutomine", [false]); - const txHash = await this.provider.send( - "eth_sendRawTransaction", - [ - "0xf8618001825208940000000000000000000000000000000000000001808082011aa03e2b434ea8994b24017a30d58870e7387a69523b25f153f0d90411a8af8343d6a00c26d36e92d8a8334193b02982ce0b2ec9afc85ad26eaf8c2993ad07d3495f95", - ] - ); - - const tx: RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(tx.blockNumber, null); - }); - }); - }); - - describe("http JSON-RPC response", function () { - useProvider(); - - let client: Client; - let common: Common; - - // send the transaction using an http client, otherwise the wrapped - // provider will intercept the response and throw an error - // - // this method uses the first default account, and it assumes that - // that account sent a tx before, so it uses a nonce of 1 - async function sendRawTransaction({ to, data }: any): Promise { - const tx = TransactionFactory.fromTxData( - { - to, - data, - nonce: 1, - gasLimit: 1_000_000, - gasPrice: 10_000_000_000, - }, - { common } - ).sign(pk); - - const rawTx = `0x${Buffer.from(tx.serialize()).toString("hex")}`; - return client - .request({ - method: "POST", - path: "/", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method: "eth_sendRawTransaction", - params: [rawTx], - }), - }) - .then((x) => x.body.json()); - } - - beforeEach(async function () { - if (this.serverInfo === undefined || isFork) { - this.skip(); - } - - const url = `http://${this.serverInfo.address}:${this.serverInfo.port}`; - client = new Client(url, { - keepAliveTimeout: 10, - keepAliveMaxTimeout: 10, - }); - - // TODO: Find out a better way to obtain the common here - const provider: any = this.hardhatNetworkProvider; - - // eslint-disable-next-line dot-notation,@typescript-eslint/dot-notation - common = provider["_common"]; - }); - - const pk = Buffer.from( - DEFAULT_ACCOUNTS[0].privateKey.slice(2), - "hex" - ); - - it("Should return the hash of the transaction that reverts", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendRawTransaction({ - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - const txHash = response.error?.data?.txHash; - assert.isDefined(txHash); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.equal(receipt.from, DEFAULT_ACCOUNTS_ADDRESSES[0]); - assert.equal(receipt.to, contractAddress); - assert.equal(receipt.status, "0x0"); - }); - - it("Should return the data of a transaction that reverts without a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendRawTransaction({ - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal(response.error.data.data, "0x"); - }); - - it("Should return the data of a transaction that reverts with a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendRawTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Error(string) encoded with value "a reason" - "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000086120726561736f6e000000000000000000000000000000000000000000000000" - ); - }); - - it("Should return the data of a transaction that panics", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendRawTransaction({ - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.panics}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Panic(uint256) encoded with value 0x32 (out-of-bounds array access) - "0x4e487b710000000000000000000000000000000000000000000000000000000000000032" - ); - }); - - it("Should return the data of a transaction that reverts with a custom error", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendRawTransaction({ - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.customError}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // MyCustomError() encoded - "0x4e7254d6" - ); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendTransaction.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendTransaction.ts deleted file mode 100644 index 200bb8b9ba..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/sendTransaction.ts +++ /dev/null @@ -1,1385 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; -import { Client } from "undici"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, - rpcQuantityToBigInt, - rpcDataToNumber, -} from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { InvalidInputError } from "../../../../../../../src/internal/core/providers/errors"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidInputError, - assertReceiptMatchesGethOne, - assertTransactionFailure, -} from "../../../../helpers/assertions"; -import { - EXAMPLE_BLOCK_NUMBER_CONTRACT, - EXAMPLE_REVERT_CONTRACT, -} from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_ACCOUNTS_BALANCES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../../../../helpers/providers"; -import { sendDummyTransaction } from "../../../../helpers/sendDummyTransaction"; -import { - deployContract, - sendTxToZeroAddress, -} from "../../../../helpers/transactions"; -import { useHelpers } from "../../../../helpers/useHelpers"; -import { compileLiteral } from "../../../../stack-traces/compilation"; -import { - EIP1559RpcTransactionOutput, - RpcBlockOutput, -} from "../../../../../../../src/internal/hardhat-network/provider/output"; -import { EthereumProvider } from "../../../../../../../src/types"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork, isJsonRpc }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - - describe("eth_sendTransaction", function () { - useProvider({ hardfork: "london" }); - useHelpers(); - - // Because of the way we are testing this (i.e. integration testing) it's almost impossible to - // fully test this method in a reasonable amount of time. This is because it executes the core - // of Ethereum: its state transition function. - // - // We have mostly test about logic added on top of that, and will add new ones whenever - // suitable. This is approximately the same as assuming that EDR is correct, which - // seems reasonable, and if it weren't we should address the issues there. - - describe("Params validation", function () { - it("Should fail for tx sent from account that is neither local nor marked as impersonated", async function () { - await assertTransactionFailure( - this.provider, - { - from: zeroAddress(), - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - "unknown account", - InvalidInputError.CODE - ); - }); - - it("Should fail if sending to the null address without data", async function () { - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - "contract creation without any data provided", - InvalidInputError.CODE - ); - - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - "contract creation without any data provided", - InvalidInputError.CODE - ); - - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: "0x", - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - "contract creation without any data provided", - InvalidInputError.CODE - ); - }); - - it("Should accept EIP-1559 transactions", async function () { - const hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - maxPriorityFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assert.match(hash, /^0x[a-f\d]{64}$/); - }); - - it("Should throw if tx includes gasPrice, maxFeePerGas and maxPriorityFeePerGas", async function () { - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - maxFeePerGas: numberToRpcQuantity(10), - maxPriorityFeePerGas: numberToRpcQuantity(10), - }, - "Cannot send both gasPrice and maxFeePerGas", - InvalidInputError.CODE - ); - }); - - it("Should throw if tx includes gasPrice and maxFeePerGas", async function () { - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(10), - maxFeePerGas: numberToRpcQuantity(10), - }, - "Cannot send both gasPrice and maxFeePerGas", - InvalidInputError.CODE - ); - }); - - it("Should throw if tx includes gasPrice and maxPriorityFeePerGas", async function () { - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(1), - maxPriorityFeePerGas: numberToRpcQuantity(1), - }, - "Cannot send both gasPrice and maxPriorityFeePerGas", - InvalidInputError.CODE - ); - }); - - it("Should throw if maxPriorityFeePerGas is bigger than maxFeePerGas", async function () { - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - maxFeePerGas: numberToRpcQuantity(10), - maxPriorityFeePerGas: numberToRpcQuantity(20), - }, - "maxPriorityFeePerGas (20) is bigger than maxFeePerGas (10)", - InvalidInputError.CODE - ); - }); - - it("Should succeed if sending an explicit null for an optional parameter value", async function () { - assert.match( - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - gas: null, - gasPrice: null, - value: null, - nonce: null, - data: null, - accessList: null, - chainId: null, - }, - ]), - /^0x[a-f\d]{64}$/ - ); - }); - }); - - describe("when automine is enabled", () => { - it("Should return a valid transaction hash", async function () { - const hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assert.match(hash, /^0x[a-f\d]{64}$/); - }); - - describe("With just from and data", function () { - for (const toValue of [undefined, null]) { - it(`Should work with a 'to' value of ${toValue}`, async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: "0x00", - to: toValue, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [hash] - ); - - const receiptFromGeth = { - blockHash: - "0x01490da2af913e9a868430b7b4c5060fc29cbdb1692bb91d3c72c734acd73bc8", - blockNumber: "0x6", - contractAddress: "0x6ea84fcbef576d66896dc2c32e139b60e641170c", - cumulativeGasUsed: "0xcf0c", - from: "0xda4585f6e68ed1cdfdad44a08dbe3979ec74ad8f", - gasUsed: "0xcf0c", - logs: [], - logsBloom: - "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - status: "0x1", - to: null, - transactionHash: - "0xbd24cbe9c1633b98e61d93619230341141d2cff49470ed6afa739cee057fd0aa", - transactionIndex: "0x0", - }; - - assertReceiptMatchesGethOne( - receipt, - receiptFromGeth, - firstBlockNumber + 1 - ); - }); - } - }); - - it("Should throw if the tx nonce is higher than the account nonce", async function () { - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - nonce: numberToRpcQuantity(1), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - }, - ], - "Nonce too high. Expected nonce to be 0 but got 1. Note that transactions can't be queued when automining." - ); - }); - - it("Should throw if the tx nonce is lower than the account nonce", async function () { - await sendTxToZeroAddress( - this.provider, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - nonce: numberToRpcQuantity(0), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - }, - ], - "Nonce too low. Expected nonce to be 1 but got 0." - ); - }); - - it("Should throw if the transaction fails", async function () { - // Not enough gas - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: zeroAddress(), - gas: numberToRpcQuantity(1), - }, - ], - "Transaction requires at least 21000 gas but got 1" - ); - - // Not enough balance - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: zeroAddress(), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(DEFAULT_ACCOUNTS_BALANCES[0]), - }, - ], - "sender doesn't have enough funds to send tx" - ); - - // Gas is larger than block gas limit - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: zeroAddress(), - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT + 1n), - }, - ], - `Transaction gas limit is ${ - DEFAULT_BLOCK_GAS_LIMIT + 1n - } and exceeds block gas limit of ${DEFAULT_BLOCK_GAS_LIMIT}` - ); - - // Invalid opcode. We try to deploy a contract with an invalid opcode in the deployment code - // The transaction gets executed anyway, so the account is updated - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0xAA", - }, - "VM Exception while processing transaction: invalid opcode" - ); - - // Out of gas. This a deployment transaction that pushes 0x00 multiple times - // The transaction gets executed anyway, so the account is updated. - // - // Note: this test is pretty fragile, as the tx needs to have enough gas - // to pay for the calldata, but not enough to execute. This costs changed - // with istanbul, and may change again in the future. - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x6000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000", - gas: numberToRpcQuantity(53500), - }, - "out of gas" - ); - - // Revert. This is a deployment transaction that immediately reverts without a reason - // The transaction gets executed anyway, so the account is updated - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x60006000fd", - }, - "Transaction reverted without a reason" - ); - - // This is a contract that reverts with A in its constructor - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x6080604052348015600f57600080fd5b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260018152602001807f410000000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fdfe", - }, - "reverted with reason string 'A'" - ); - - // This deploys a contract that reverts with a custom error in its constructor: - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x6080604052348015600f57600080fd5b506040517ffbd8bc9c00000000000000000000000000000000000000000000000000000000815260040160405180910390fdfe", - }, - "VM Exception while processing transaction: reverted with an unrecognized custom error (return data: 0xfbd8bc9c)" - ); - - // This deploys a contract that divides by zero in its contstructor: - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x6080604052348015600f57600080fd5b5060006001601c91906021565b506084565b6000602a82604b565b9150603383604b565b925082604057603f6055565b5b828204905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b603f8060916000396000f3fe6080604052600080fdfea26469706673582212208c4325ab2d6243893246d7f86891a2b8fad695c73555169ce9c8b4faebb42cac64736f6c63430008070033", - }, - "VM Exception while processing transaction: reverted with panic code 0x12 (Division or modulo division by zero)" - ); - - // This deploys a contract that induces an invalid opcode in its constructor: - await assertTransactionFailure( - this.provider, - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - data: "0x6080604052348015600f57600080fd5b50336000600181548110601e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603f8060736000396000f3fe6080604052600080fdfea264697066735822122030b617dfc8dcad16dee465096971a42c88e1814350c1c5bc2a33165078e4f50f64736f6c634300060c0033", - }, - "VM Exception while processing transaction: invalid opcode" - ); - }); - - describe("when there are pending transactions in the mempool", () => { - describe("when the sent transaction fits in the first block", () => { - it("Should throw if the sender doesn't have enough balance as a result of mining pending transactions first", async function () { - const gasPrice = 10n; - - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const wholeAccountBalance = numberToRpcQuantity( - DEFAULT_ACCOUNTS_BALANCES[0] - 21_000n * gasPrice - ); - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(gasPrice), - value: wholeAccountBalance, - }, - ]); - await this.provider.send("evm_setAutomine", [true]); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - value: wholeAccountBalance, - }, - ], - "sender doesn't have enough funds to send tx" - ); - assert.equal( - rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ), - firstBlockNumber - ); - assert.lengthOf( - await this.provider.send("eth_pendingTransactions"), - 1 - ); - }); - }); - - describe("when multiple blocks have to be mined before the sent transaction is included", () => { - beforeEach(async function () { - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(45000), - ]); - }); - - it("Should eventually mine the sent transaction", async function () { - await this.provider.send("evm_setAutomine", [false]); - const blockNumberBefore = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await sendDummyTransaction(this.provider, 0, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - await sendDummyTransaction(this.provider, 1, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - await sendDummyTransaction(this.provider, 2, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - await sendDummyTransaction(this.provider, 3, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - await this.provider.send("evm_setAutomine", [true]); - const txHash = await sendDummyTransaction(this.provider, 4, { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - }); - - const blockAfter = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - const blockNumberAfter = rpcQuantityToNumber(blockAfter.number); - - assert.equal(blockNumberAfter, blockNumberBefore + 3); - assert.lengthOf(blockAfter.transactions, 1); - assert.sameDeepMembers(blockAfter.transactions, [txHash]); - }); - - it("Should throw if the sender doesn't have enough balance as a result of mining pending transactions first", async function () { - const gasPrice = await getPendingBaseFeePerGas(this.provider); - - const sendTransaction = async ( - nonce: number, - value: bigint | number - ) => { - return this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(nonce), - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(gasPrice), - value: numberToRpcQuantity(value), - }, - ]); - }; - const initialBalance = DEFAULT_ACCOUNTS_BALANCES[1]; - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("evm_setAutomine", [false]); - await sendTransaction(0, 0); - await sendTransaction(1, 0); - await sendTransaction( - 2, - initialBalance - 3n * 21_000n * gasPrice - ); - - await this.provider.send("evm_setAutomine", [true]); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity(gasPrice), - value: numberToRpcQuantity(100), - }, - ], - "sender doesn't have enough funds to send tx" - ); - assert.equal( - rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ), - firstBlockNumber - ); - assert.lengthOf( - await this.provider.send("eth_pendingTransactions"), - 3 - ); - }); - }); - }); - - it("Should throw if a tx can't be mined in the next block because of its fees", async function () { - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - maxFeePerGas: numberToRpcQuantity(1), - }, - ], - "too low for the next block, which has a baseFeePerGas of" - ); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gasPrice: numberToRpcQuantity(1), - }, - ], - "too low for the next block, which has a baseFeePerGas of" - ); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gasPrice: numberToRpcQuantity(1), - accessList: [], - }, - ], - "too low for the next block, which has a baseFeePerGas of" - ); - }); - }); - - describe("when automine is disabled", () => { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - }); - - it("Should not throw if the tx nonce is higher than the account nonce", async function () { - await assert.isFulfilled( - this.provider.send("eth_sendTransaction", [ - { - nonce: numberToRpcQuantity(1), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - }, - ]) - ); - }); - - it("Should throw if the tx nonce is lower than the account nonce", async function () { - await sendTxToZeroAddress( - this.provider, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - await this.provider.send("evm_mine"); - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - nonce: numberToRpcQuantity(0), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - }, - ], - "Nonce too low. Expected nonce to be at least 1 but got 0." - ); - }); - - it("Should throw an error if the same transaction is sent twice", async function () { - const txParams = { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - nonce: numberToRpcQuantity(0), - }; - - const hash = await this.provider.send("eth_sendTransaction", [ - txParams, - ]); - - await assertTransactionFailure( - this.provider, - txParams, - `Known transaction: ${hash}` - ); - }); - - it("Should replace pending transactions", async function () { - const gasPrice = await getPendingBaseFeePerGas(this.provider); - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gasPrice: numberToRpcQuantity(gasPrice), - }, - ]); - let tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - assert.isNotNull(tx1); - - const txHash2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gasPrice: numberToRpcQuantity(2n * gasPrice), - }, - ]); - tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - const tx2 = await this.provider.send("eth_getTransactionByHash", [ - txHash2, - ]); - assert.isNull(tx1); - assert.isNotNull(tx2); - - const pendingTxs = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.lengthOf(pendingTxs, 1); - assert.equal(pendingTxs[0].hash, tx2.hash); - - await this.provider.send("evm_mine"); - const minedBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assert.lengthOf(minedBlock.transactions, 1); - assert.equal(minedBlock.transactions[0], tx2.hash); - }); - - it("Should replace queued transactions", async function () { - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(2), - gasPrice: numberToRpcQuantity(20), - }, - ]); - let tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - assert.isNotNull(tx1); - - const txHash2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(2), - gasPrice: numberToRpcQuantity(30), - }, - ]); - tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - const tx2 = await this.provider.send("eth_getTransactionByHash", [ - txHash2, - ]); - assert.isNull(tx1); - assert.isNotNull(tx2); - - await this.provider.send("evm_mine"); - const minedBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assert.lengthOf(minedBlock.transactions, 0); - }); - - it("Should throw an error if the replacement gasPrice, maxFeePerGas or maxPriorityFeePerGas are too low", async function () { - const baseFeePerGas = await getPendingBaseFeePerGas(this.provider); - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gasPrice: numberToRpcQuantity(baseFeePerGas), - }, - ]); - - let tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - assert.isNotNull(tx1); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gasPrice: numberToRpcQuantity(baseFeePerGas + 1n), - }, - ], - "Replacement transaction underpriced." - ); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - maxFeePerGas: numberToRpcQuantity(baseFeePerGas + 1n), - }, - ], - "Replacement transaction underpriced." - ); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - maxPriorityFeePerGas: numberToRpcQuantity(baseFeePerGas + 1n), - }, - ], - "Replacement transaction underpriced." - ); - - // check that original tx was not replaced - tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - assert.isNotNull(tx1); - - const pendingTxs = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.lengthOf(pendingTxs, 1); - assert.equal(pendingTxs[0].hash, tx1.hash); - - await this.provider.send("evm_mine"); - const minedBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assert.lengthOf(minedBlock.transactions, 1); - assert.equal(minedBlock.transactions[0], tx1.hash); - }); - }); - - describe("Fee params default values", function () { - let nextBlockBaseFee: bigint; - const ONE_GWEI = 10n ** 9n; - - beforeEach(async function () { - // We disable automining as enqueueing the txs is enough and we want - // to test some that may have a low maxFeePerGas - await this.provider.send("evm_setAutomine", [false]); - - const pendingBlock: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - nextBlockBaseFee = rpcQuantityToBigInt(pendingBlock.baseFeePerGas!); - }); - - describe("When no fee param is provided", function () { - it("Should use 1gwei maxPriorityFeePerGas and base the maxFeePerGas on that plus 2 * next block's baseFee", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - }, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal( - tx.maxPriorityFeePerGas, - numberToRpcQuantity(ONE_GWEI) - ); - assert.equal( - tx.maxFeePerGas, - numberToRpcQuantity(2n * nextBlockBaseFee + ONE_GWEI) - ); - }); - }); - - describe("When maxFeePerGas is provided", function () { - it("Should use 1gwei maxPriorityFeePerGas if maxFeePerGas is >= 1gwei", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - maxFeePerGas: numberToRpcQuantity(2n * ONE_GWEI), - }, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal( - tx.maxPriorityFeePerGas, - numberToRpcQuantity(ONE_GWEI) - ); - assert.equal(tx.maxFeePerGas, numberToRpcQuantity(2n * ONE_GWEI)); - }); - - it("Should use 1gwei maxPriorityFeePerGas if maxFeePerGas is < 1gwei", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - maxFeePerGas: numberToRpcQuantity(10000), - }, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(tx.maxPriorityFeePerGas, numberToRpcQuantity(10000)); - assert.equal(tx.maxFeePerGas, numberToRpcQuantity(10000)); - }); - }); - - describe("When maxPriorityFeePerGas is provided", function () { - it("Should use the maxPriorityFeePerGas and base the maxFeePerGas on that plus 2 * next block's baseFee", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - maxPriorityFeePerGas: numberToRpcQuantity(1000), - }, - ]); - - const tx: EIP1559RpcTransactionOutput = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - - assert.equal(tx.maxPriorityFeePerGas, numberToRpcQuantity(1000)); - assert.equal( - tx.maxFeePerGas, - numberToRpcQuantity(2n * nextBlockBaseFee + 1000n) - ); - }); - }); - }); - - describe("return txHash", () => { - it("Should return the hash of an out of gas transaction", async function () { - if (!isJsonRpc || isFork) { - this.skip(); - } - - try { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x0000000000000000000000000000000000000001", - gas: numberToRpcQuantity(21000), // Address 1 is a precompile, so this will OOG - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - assert.fail("Tx should have failed"); - } catch (e: any) { - assert.notInclude(e.message, "Tx should have failed"); - assert.isDefined(e.data.txHash); - } - }); - - it("Should return the hash of a reverted transaction", async function () { - if (!isJsonRpc || isFork) { - this.skip(); - } - - try { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_REVERT_CONTRACT.selectors.f}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - - assert.fail("Tx should have failed"); - } catch (e: any) { - assert.notInclude(e.message, "Tx should have failed"); - - assert.isDefined(e.data.txHash); - } - }); - }); - - // This test checks that an on-chain value can be set to 0 - // To do this, we transfer all the balance of the 0x0000...0001 account - // to some random account, and then check that its balance is zero - it("should set a value to 0", async function () { - if (!isFork) { - this.skip(); - } - - const daiAddress = "0x6B175474E89094C44Da98b954EedeAC495271d0F"; - const sender = "0x0000000000000000000000000000000000000001"; - - await this.provider.send("hardhat_impersonateAccount", [sender]); - - // get balance of 0x0000...0001 - const balanceBefore = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: daiAddress, - data: "0x70a082310000000000000000000000000000000000000000000000000000000000000001", - }, - ]); - - // send out the full balance - await this.provider.send("eth_sendTransaction", [ - { - from: sender, - to: daiAddress, - data: `0xa9059cbb0000000000000000000000005a3fed996fc40791a26e7fb78dda4f9293788951${balanceBefore.slice( - 2 - )}`, - }, - ]); - - const balanceAfter = await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: daiAddress, - data: "0x70a082310000000000000000000000000000000000000000000000000000000000000001", - }, - ]); - - assert.equal(BigInt(balanceAfter), 0n); - }); - - it("should use the proper chain ID", async function () { - // arrange: deploy a contract that will emit the chain ID: - const [_, compilerOutput] = await compileLiteral(` - contract ChainIdEmitter { - event ChainId(uint i); - function emitChainId() public { - uint chainId; - assembly { chainId := chainid() } - emit ChainId(chainId); - } - } - `); - const contractAddress = await deployContract( - this.provider, - `0x${compilerOutput.contracts["literal.sol"].ChainIdEmitter.evm.bytecode.object}` - ); - - async function getChainIdFromContract( - provider: EthereumProvider - ): Promise { - const txHash = await provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: "0x68df392f", // abi-encoded "emitChainId()" - }, - ]); - const receipt = await provider.send("eth_getTransactionReceipt", [ - txHash, - ]); - return rpcQuantityToNumber( - receipt.logs[0].data.replace(/0x0*/, "0x") - ); - } - - const chainId = await this.provider.send("eth_chainId"); - - // assert: - assert.equal(await getChainIdFromContract(this.provider), chainId); - }); - - it("Should use the correct value of block.number", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_BLOCK_NUMBER_CONTRACT.bytecode.object}` - ); - - const blockNumberBeforeTx = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("eth_sendTransaction", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_BLOCK_NUMBER_CONTRACT.selectors.setBlockNumber}`, - }, - ]); - - const contractBlockNumber = rpcDataToNumber( - await this.provider.send("eth_call", [ - { - to: contractAddress, - data: `${EXAMPLE_BLOCK_NUMBER_CONTRACT.selectors.blockNumber}`, - }, - ]) - ); - - assert.equal(contractBlockNumber, blockNumberBeforeTx + 1); - }); - - it("should reject blob transactions", async function () { - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - blobs: ["0x1234"], - blobVersionedHashes: [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ], - }, - ], - "An EIP-4844 (shard blob) transaction was received, but Hardhat doesn't have support for them yet." - ); - }); - }); - - describe("eth_sendTransaction with minGasPrice", function () { - useProvider({ hardfork: "berlin" }); - useHelpers(); - - const minGasPrice = 20; - - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("hardhat_setMinGasPrice", [ - numberToRpcQuantity(minGasPrice), - ]); - }); - - it("should not mine transactions with a gas price below the minimum", async function () { - const txHash1 = await this.sendTx({ - nonce: 0, - gasPrice: minGasPrice - 1, - }); - const txHash2 = await this.sendTx({ - nonce: 1, - gasPrice: minGasPrice - 1, - }); - - await this.assertPendingTxs([txHash1, txHash2]); - await this.mine(); - await this.assertPendingTxs([txHash1, txHash2]); - }); - - it("should not mine a queued transaction if previous txs have a low gas price", async function () { - const txHash1 = await this.sendTx({ - nonce: 0, - gasPrice: minGasPrice - 1, - }); - const txHash2 = await this.sendTx({ - nonce: 1, - gasPrice: minGasPrice - 1, - }); - const txHash3 = await this.sendTx({ - nonce: 2, - gasPrice: minGasPrice, - }); - - await this.assertPendingTxs([txHash1, txHash2, txHash3]); - await this.mine(); - await this.assertPendingTxs([txHash1, txHash2, txHash3]); - }); - - it("should mine a pending tx even if txs from another account have a low gas price", async function () { - const txHash1 = await this.sendTx({ - nonce: 0, - gasPrice: minGasPrice - 1, - }); - const txHash2 = await this.sendTx({ - nonce: 1, - gasPrice: minGasPrice - 1, - }); - const txHash3 = await this.sendTx({ - from: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: 0, - gasPrice: minGasPrice + 1, - }); - - await this.assertPendingTxs([txHash1, txHash2, txHash3]); - await this.mine(); - await this.assertPendingTxs([txHash1, txHash2]); - await this.assertLatestBlockTxs([txHash3]); - }); - }); - - describe("eth_sendTransaction http JSON-RPC response", function () { - useProvider({ hardfork: "london" }); - - let client: Client; - - // send the transaction using an http client, otherwise the wrapped - // provider will intercept the response and throw an error - async function sendTransaction({ from, to, data }: any): Promise { - return client - .request({ - method: "POST", - path: "/", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method: "eth_sendTransaction", - params: [ - { - from, - to, - data, - }, - ], - }), - }) - .then((x) => x.body.json()); - } - - beforeEach(function () { - if (this.serverInfo === undefined || isFork) { - this.skip(); - } - - const url = `http://${this.serverInfo.address}:${this.serverInfo.port}`; - client = new Client(url, { - keepAliveTimeout: 10, - keepAliveMaxTimeout: 10, - }); - }); - - it("Should return the hash of the transaction that reverts", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - const txHash = response.error?.data?.txHash; - assert.isDefined(txHash); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.equal(receipt.from, DEFAULT_ACCOUNTS_ADDRESSES[0]); - assert.equal(receipt.to, contractAddress); - assert.equal(receipt.status, "0x0"); - }); - - it("Should return the data of a transaction that reverts without a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.reverts}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal(response.error.data.data, "0x"); - }); - - it("Should return the data of a transaction that reverts with a reason string", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.revertsWithReasonString}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Error(string) encoded with value "a reason" - "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000086120726561736f6e000000000000000000000000000000000000000000000000" - ); - }); - - it("Should return the data of a transaction that panics", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.panics}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // Panic(uint256) encoded with value 0x32 (out-of-bounds array access) - "0x4e487b710000000000000000000000000000000000000000000000000000000000000032" - ); - }); - - it("Should return the data of a transaction that reverts with a custom error", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_REVERT_CONTRACT.bytecode.object}` - ); - - const response = await sendTransaction({ - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: `${EXAMPLE_REVERT_CONTRACT.selectors.customError}`, - }); - - assert.isDefined(response.error?.data); - assert.equal(response.error.message, response.error.data.message); - assert.equal( - response.error.data.data, - // MyCustomError() encoded - "0x4e7254d6" - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/signTypedData_v4.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/signTypedData_v4.ts deleted file mode 100644 index 3a743ce61e..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/signTypedData_v4.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { assert } from "chai"; -import { - recoverTypedSignature, - SignTypedDataVersion, -} from "@metamask/eth-sig-util"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_signTypedData_v4", function () { - // See https://eips.ethereum.org/EIPS/eip-712#parameters - // There's a json schema and an explanation for each field. - const typedMessage = { - domain: { - chainId: 31337, - name: "Hardhat Network test suite", - }, - message: { - name: "Translation", - start: { - x: 200, - y: 600, - }, - end: { - x: 300, - y: 350, - }, - cost: 50, - }, - primaryType: "WeightedVector", - types: { - EIP712Domain: [ - { name: "name", type: "string" }, - { name: "chainId", type: "uint256" }, - ], - WeightedVector: [ - { name: "name", type: "string" }, - { name: "start", type: "Point" }, - { name: "end", type: "Point" }, - { name: "cost", type: "uint256" }, - ], - Point: [ - { name: "x", type: "uint256" }, - { name: "y", type: "uint256" }, - ], - }, - }; - const [address] = DEFAULT_ACCOUNTS_ADDRESSES; - - it("should sign a message", async function () { - const signature = (await this.provider.request({ - method: "eth_signTypedData_v4", - params: [address, typedMessage], - })) as string; - - const recoveredAddress = recoverTypedSignature({ - signature, - version: SignTypedDataVersion.V4, - data: typedMessage as any, - }); - assert.equal(address.toLowerCase(), recoveredAddress.toLowerCase()); - }); - - it("should sign a message that is JSON stringified", async function () { - const signature = (await this.provider.request({ - method: "eth_signTypedData_v4", - params: [address, JSON.stringify(typedMessage)], - })) as string; - - const recoveredAddress = recoverTypedSignature({ - signature, - version: SignTypedDataVersion.V4, - data: typedMessage as any, - }); - assert.equal(address.toLowerCase(), recoveredAddress.toLowerCase()); - }); - - it("should fail with an invalid JSON", async function () { - try { - await this.provider.request({ - method: "eth_signTypedData_v4", - params: [address, "{an invalid JSON"], - }); - } catch (error: any) { - assert.include(error.message, "is an invalid JSON"); - return; - } - assert.fail("should have failed with an invalid JSON"); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/subscribe.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/subscribe.ts deleted file mode 100644 index a6c1e1ce81..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/subscribe.ts +++ /dev/null @@ -1,209 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; -import { ethers } from "ethers"; - -import { numberToRpcQuantity } from "../../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { - EthereumProvider, - EthSubscription, - ProviderMessage, -} from "../../../../../../../types"; -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { compileLiteral } from "../../../../stack-traces/compilation"; -import { EXAMPLE_CONTRACT } from "../../../../helpers/contracts"; -import { setCWD } from "../../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../../helpers/providers"; -import { deployContract } from "../../../../helpers/transactions"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_subscribe", function () { - if (name === "JSON-RPC") { - return; - } - - function createFilterResultsGetter( - ethereumProvider: EthereumProvider, - filter: string - ) { - const notificationsResults: any[] = []; - const notificationsListener = (payload: { - subscription: string; - result: any; - }) => { - if (filter === payload.subscription) { - notificationsResults.push(payload.result); - } - }; - - ethereumProvider.addListener("notification", notificationsListener); - - const messageResults: any[] = []; - const messageListener = (event: ProviderMessage) => { - if (event.type === "eth_subscription") { - const subscriptionMessage = event as EthSubscription; - if (filter === subscriptionMessage.data.subscription) { - messageResults.push(subscriptionMessage.data.result); - } - } - }; - - ethereumProvider.addListener("message", messageListener); - - let shouldUnsubscribe = true; - - return () => { - if (shouldUnsubscribe) { - ethereumProvider.removeListener( - "notifications", - notificationsListener - ); - - ethereumProvider.removeListener("message", messageListener); - shouldUnsubscribe = false; - } - - return { - notificationsResults, - messageResults, - }; - }; - } - - it("Supports newHeads subscribe", async function () { - const filterId = await this.provider.send("eth_subscribe", [ - "newHeads", - ]); - - const getResults = createFilterResultsGetter(this.provider, filterId); - - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - assert.isTrue( - await this.provider.send("eth_unsubscribe", [filterId]) - ); - - assert.lengthOf(getResults().notificationsResults, 3); - assert.lengthOf(getResults().messageResults, 3); - }); - - it("Supports newPendingTransactions subscribe", async function () { - const filterId = await this.provider.send("eth_subscribe", [ - "newPendingTransactions", - ]); - - const getResults = createFilterResultsGetter(this.provider, filterId); - - const accounts = await this.provider.send("eth_accounts"); - const burnTxParams = { - from: accounts[0], - to: zeroAddress(), - gas: numberToRpcQuantity(21000), - }; - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - - assert.isTrue( - await this.provider.send("eth_unsubscribe", [filterId]) - ); - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - - assert.lengthOf(getResults().notificationsResults, 1); - assert.lengthOf(getResults().messageResults, 1); - }); - - it("Supports logs subscribe", async function () { - const exampleContract = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const filterId = await this.provider.send("eth_subscribe", [ - "logs", - { - address: exampleContract, - }, - ]); - - const getResults = createFilterResultsGetter(this.provider, filterId); - - const newState = - "000000000000000000000000000000000000000000000000000000000000007b"; - - await this.provider.send("eth_sendTransaction", [ - { - to: exampleContract, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ]); - - assert.lengthOf(getResults().notificationsResults, 1); - assert.lengthOf(getResults().messageResults, 1); - }); - - it("Supports logs subscribe via topic", async function () { - const [ - , - { - contracts: { - ["literal.sol"]: { ContractA: contractA }, - }, - }, - ] = await compileLiteral(` - //SPDX-License-Identifier: UNLICENSED; - pragma solidity 0.8.0; - contract ContractA { - event TokensMinted(uint amount); - function mint(uint amount) public { - emit TokensMinted(amount); - } - } - `); - const address = await deployContract( - this.provider, - `0x${contractA.evm.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - const abiEncoder = new ethers.Interface(contractA.abi); - const filterId = await this.provider.send("eth_subscribe", [ - "logs", - { - address, - topic: abiEncoder.getEvent("TokensMinted")?.topicHash, - }, - ]); - - const getResults = createFilterResultsGetter(this.provider, filterId); - - await this.provider.send("eth_sendTransaction", [ - { - to: address, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: abiEncoder.encodeFunctionData("mint", [123]), - }, - ]); - - assert.lengthOf(getResults().notificationsResults, 1); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/unsubscribe.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/unsubscribe.ts deleted file mode 100644 index b6a04ce668..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/methods/unsubscribe.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../../helpers/cwd"; -import { PROVIDERS } from "../../../../helpers/providers"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("eth_unsubscribe", function () { - it("Supports unsubscribe", async function () { - const filterId = await this.provider.send("eth_subscribe", [ - "newHeads", - ]); - - assert.isTrue( - await this.provider.send("eth_unsubscribe", [filterId]) - ); - }); - - it("Doesn't fail when unsubscribe is called for a non-existent filter", async function () { - assert.isFalse(await this.provider.send("eth_unsubscribe", ["0x1"])); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/receiptsRoot.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/receiptsRoot.ts deleted file mode 100644 index f2cd281d0b..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/receiptsRoot.ts +++ /dev/null @@ -1,96 +0,0 @@ -import { assert } from "chai"; - -import { - numberToRpcQuantity, - rpcQuantityToNumber, -} from "../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../../helpers/cwd"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - PROVIDERS, -} from "../../../helpers/providers"; -import { getPendingBaseFeePerGas } from "../../../helpers/getPendingBaseFeePerGas"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("receiptsRoot", function () { - let firstBlockNumber: number; - - beforeEach(async function () { - firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - }); - - it("should have the right receiptsRoot when mining 1 tx", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - assert.equal( - block.receiptsRoot, - "0x056b23fbba480696b65fe5a59b8f2148a1299103c4f57df839233af2cf4ca2d2" - ); - }); - - it("should have the right receiptsRoot when mining 2 txs", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - gas: numberToRpcQuantity(21000), - gasPrice: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }, - ]); - await this.provider.send("evm_mine", []); - - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(firstBlockNumber + 1), - false, - ]); - - assert.equal( - block.receiptsRoot, - "0xd95b673818fa493deec414e01e610d97ee287c9421c8eff4102b1647c1a184e4" - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/websocket.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/websocket.ts deleted file mode 100644 index 5d71db651a..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/eth/websocket.ts +++ /dev/null @@ -1,406 +0,0 @@ -import { assert } from "chai"; -import { ethers } from "ethers"; -import WebSocket from "ws"; -import { rpcQuantityToBigInt } from "../../../../../../src/internal/core/jsonrpc/types/base-types"; -import { JsonRpcRequest, JsonRpcResponse } from "../../../../../../src/types"; - -import { workaroundWindowsCiFailures } from "../../../../../utils/workaround-windows-ci-failures"; -import { EXAMPLE_CONTRACT } from "../../../helpers/contracts"; -import { setCWD } from "../../../helpers/cwd"; -import { PROVIDERS } from "../../../helpers/providers"; -import { sleep } from "../../../helpers/sleep"; - -describe("Eth module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("plain websocket", function () { - let ws: WebSocket; - - beforeEach(async function () { - if (this.serverInfo !== undefined) { - const { address, port } = this.serverInfo; - ws = new WebSocket(`ws://${address}:${port}`); - - // wait until the connection is ready - await new Promise((resolve) => ws.on("open", resolve)); - } else { - this.skip(); - } - }); - - afterEach(function () { - if (ws !== undefined) { - ws.close(); - } - }); - - it("Supports newHeads subscribe", async function () { - const subscription = await subscribeTo("newHeads"); - - const newBlockEvent = await sendMethodAndReturnEvent( - "evm_mine", - [], - subscription - ); - - assert.equal(newBlockEvent.method, "eth_subscription"); - assert.equal(newBlockEvent.params.subscription, subscription); - }); - - it("Supports unsubscribe", async function () { - const subscription = await subscribeTo("newHeads"); - const noSubscriptionPromise = checkNoSubscription(subscription, 100); - await sendMethod("eth_unsubscribe", [subscription]); - - await sendMethod("evm_mine", []); - - await noSubscriptionPromise; - }); - - it("Supports newPendingTransactions subscribe", async function () { - const subscription = await subscribeTo("newPendingTransactions"); - - const { result: accounts } = await sendMethod("eth_accounts"); - - const newPendingTransactionEvent = await sendMethodAndReturnEvent( - "eth_sendTransaction", - [ - { - from: accounts[0], - to: accounts[0], - }, - ], - subscription - ); - - assert.equal(newPendingTransactionEvent.method, "eth_subscription"); - assert.equal( - newPendingTransactionEvent.params.subscription, - subscription - ); - }); - - it("Supports logs subscribe", async function () { - const { result: accounts } = await sendMethod("eth_accounts"); - - const exampleContract = await deployContractWs( - `0x${EXAMPLE_CONTRACT.bytecode.object}`, - accounts[0] - ); - - const subscription = await subscribeTo("newPendingTransactions", { - address: exampleContract, - }); - - const newState = - "000000000000000000000000000000000000000000000000000000000000007b"; - - const newLogEvent = await sendMethodAndReturnEvent( - "eth_sendTransaction", - [ - { - from: accounts[0], - to: exampleContract, - data: EXAMPLE_CONTRACT.selectors.modifiesState + newState, - }, - ], - subscription - ); - - assert.equal(newLogEvent.method, "eth_subscription"); - assert.equal(newLogEvent.params.subscription, subscription); - }); - - it("Supports single and batched requests", async function () { - const { result: accounts } = await sendMethod("eth_accounts"); - const [acc1, acc2] = accounts; - - // send a single request and validate the result - const requestId1 = Math.floor(1000 * Math.random()); - const balanceResponse1 = await sendJson({ - jsonrpc: "2.0", - id: requestId1, - method: "eth_getBalance", - params: [acc1], - }); - - assert.equal(balanceResponse1.id, requestId1); - - const balanceAccount1 = rpcQuantityToBigInt(balanceResponse1.result); - assert.isTrue(balanceAccount1 > 0); - - // send batched requests and validate the results - const requestId2 = Math.floor(1000 * Math.random()); - const requestId3 = Math.floor(1000 * Math.random()); - const balanceResponses = await sendJson([ - { - jsonrpc: "2.0", - id: requestId2, - method: "eth_getBalance", - params: [acc1], - }, - { - jsonrpc: "2.0", - id: requestId3, - method: "eth_getBalance", - params: [acc2], - }, - ]); - - const balanceResponse2 = balanceResponses.find( - (x) => x.id === requestId2 - )!; - const balanceResponse3 = balanceResponses.find( - (x) => x.id === requestId3 - )!; - - // the first request in the batch uses the same address as the one in - // the single request, so the results should match - assert.equal(balanceResponse2.result, balanceResponse1.result); - - // it should return a valid value for the second account too - const balanceAccount2 = rpcQuantityToBigInt(balanceResponse3.result); - assert.isTrue(balanceAccount2 > 0); - }); - - async function subscribeTo(event: string, ...extraParams: any[]) { - const subscriptionPromise = new Promise((resolve) => { - const listener: any = (message: any) => { - const { result } = JSON.parse(message.toString()); - - ws.removeListener("message", listener); - resolve(result); - }; - - ws.on("message", listener); - }); - - ws.send( - JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method: "eth_subscribe", - params: [event, ...extraParams], - }) - ); - - const subscription = await subscriptionPromise; - - return subscription; - } - - /** - * Send `method` with `params` and get the result. - */ - async function sendMethod(method: string, params: any = []) { - const id = Math.floor(Math.random() * 1_000_000_000); - - const resultPromise = new Promise((resolve) => { - const listener: any = (message: any) => { - const parsedMessage = JSON.parse(message.toString()); - - if (parsedMessage.id === id) { - ws.removeListener("message", listener); - resolve(parsedMessage); - } - }; - - ws.on("message", listener); - }); - - ws.send( - JSON.stringify({ - jsonrpc: "2.0", - id, - method, - params, - }) - ); - - const result = await resultPromise; - - return result; - } - - async function sendJson< - TBody extends TReq | TReq[], - TReq extends JsonRpcRequest, - TResp extends JsonRpcResponse - >(body: TBody): Promise { - const resultPromise = new Promise((resolve) => { - const listener: any = (message: any) => { - const parsedMessage = JSON.parse(message.toString()); - const receivedId = Array.isArray(parsedMessage) - ? parsedMessage[0]?.id - : parsedMessage.id; - const sentId = Array.isArray(body) ? body[0]?.id : body.id; - - if (receivedId === sentId) { - ws.removeListener("message", listener); - resolve(parsedMessage); - } - }; - - ws.on("message", listener); - }); - - ws.send(JSON.stringify(body)); - const result = await resultPromise; - - return result; - } - - /** - * Send `method` with `params` and get the first message that corresponds to - * the given subscription. - */ - async function sendMethodAndReturnEvent( - method: string, - params: any = [], - subscription: string - ) { - const eventPromise = new Promise((resolve) => { - const listener: any = (message: any) => { - const parsedMessage = JSON.parse(message.toString()); - - if ( - subscription !== undefined && - parsedMessage.params?.subscription === subscription - ) { - ws.removeListener("message", listener); - resolve(parsedMessage); - } - }; - - ws.on("message", listener); - }); - - ws.send( - JSON.stringify({ - jsonrpc: "2.0", - id: 1, - method, - params, - }) - ); - - const event = await eventPromise; - - return event; - } - - function checkNoSubscription(subscription: string, timeout: number) { - return new Promise((resolve, reject) => { - const listener: any = (message: any) => { - const parsedMessage = JSON.parse(message.toString()); - - if ( - subscription !== undefined && - parsedMessage.params?.subscription === subscription - ) { - ws.removeListener("message", listener); - reject(); - } - }; - - setTimeout(() => { - ws.removeListener("message", listener); - resolve(); - }, timeout); - - ws.on("message", listener); - }); - } - - /** - * Helper function to deploy a contract via ws - */ - async function deployContractWs(bytecode: string, from: string) { - const { result: txHash } = await sendMethod("eth_sendTransaction", [ - { - from, - data: bytecode, - }, - ]); - - const { result: receipt } = await sendMethod( - "eth_getTransactionReceipt", - [txHash] - ); - - return receipt.contractAddress; - } - }); - - describe("ethers.WebSocketProvider", function () { - let provider: ethers.WebSocketProvider; - - beforeEach(async function () { - if (this.serverInfo !== undefined) { - const { address, port } = this.serverInfo; - provider = new ethers.WebSocketProvider(`ws://${address}:${port}`); - } else { - this.skip(); - } - }); - - it("'block' event works", async function () { - const onBlock = new Promise((resolve) => - provider.on("block", resolve) - ); - - // If we call evm_mine immediately, the event won't be triggered - // ideally `.on` would be async and resolve when the subscription is - // registered, but that doesn't seem to be possible. So we wait a bit. - await sleep(100); - await provider.send("evm_mine", []); - - return onBlock; - }); - - it("'pending' event works", async function () { - const onPending = new Promise((resolve) => - provider.on("pending", resolve) - ); - await sleep(100); - - const signer = await provider.getSigner(); - await signer.sendTransaction({ - to: await signer.getAddress(), - }); - - return onPending; - }); - - // TODO: https://github.com/NomicFoundation/edr/issues/279 - it.skip("contract events work", async function () { - const signer = await provider.getSigner(); - const Factory = new ethers.ContractFactory<[], ethers.Contract>( - EXAMPLE_CONTRACT.abi, - EXAMPLE_CONTRACT.bytecode, - signer - ); - const contract = await Factory.deploy(); - - const onContractEvent = new Promise((resolve) => - contract.on("StateModified", resolve) - ); - await sleep(100); - - await contract.modifiesState(1); - - return onContractEvent; - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/evm.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/evm.ts deleted file mode 100644 index b9c62c8949..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/evm.ts +++ /dev/null @@ -1,1475 +0,0 @@ -import { zeroAddress } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; -import sinon from "sinon"; - -import { - numberToRpcQuantity, - rpcDataToBigInt, - rpcQuantityToBigInt, - rpcQuantityToNumber, -} from "../../../../../src/internal/core/jsonrpc/types/base-types"; -import { - RpcBlockOutput, - RpcTransactionOutput, -} from "../../../../../src/internal/hardhat-network/provider/output"; -import { getCurrentTimestamp } from "../../../../../src/internal/hardhat-network/provider/utils/getCurrentTimestamp"; -import { useEnvironment } from "../../../../helpers/environment"; -import { useFixtureProject } from "../../../../helpers/project"; -import { workaroundWindowsCiFailures } from "../../../../utils/workaround-windows-ci-failures"; -import { - assertInvalidArgumentsError, - assertInvalidInputError, - assertLatestBlockNumber, - assertQuantity, -} from "../../helpers/assertions"; -import { EMPTY_ACCOUNT_ADDRESS } from "../../helpers/constants"; -import { - EXAMPLE_CONTRACT, - EXAMPLE_READ_CONTRACT, -} from "../../helpers/contracts"; -import { setCWD } from "../../helpers/cwd"; -import { getPendingBaseFeePerGas } from "../../helpers/getPendingBaseFeePerGas"; -import { - DEFAULT_ACCOUNTS_ADDRESSES, - DEFAULT_BLOCK_GAS_LIMIT, - PROVIDERS, -} from "../../helpers/providers"; -import { sleep } from "../../helpers/sleep"; -import { deployContract } from "../../helpers/transactions"; - -describe("Evm module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - const getBlockNumber = async () => { - return rpcQuantityToNumber( - await this.ctx.provider.send("eth_blockNumber") - ); - }; - - describe("evm_increaseTime", function () { - it("should increase the offset of time used for block timestamps", async function () { - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const accounts = await this.provider.send("eth_accounts"); - const burnTxParams = { - from: accounts[0], - to: zeroAddress(), - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - }; - - const firstBlock = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(blockNumber), - false, - ]); - - await this.provider.send("evm_increaseTime", [123]); - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - - const secondBlock = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(blockNumber + 1), - false, - ]); - - await this.provider.send("evm_increaseTime", [456]); - - await this.provider.send("eth_sendTransaction", [burnTxParams]); - - const thirdBlock = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(blockNumber + 2), - false, - ]); - - const firstTimestamp = rpcQuantityToNumber(firstBlock.timestamp); - const secondTimestamp = rpcQuantityToNumber(secondBlock.timestamp); - const thirdTimestamp = rpcQuantityToNumber(thirdBlock.timestamp); - - assert.isAtLeast(secondTimestamp - firstTimestamp, 123); - assert.isAtLeast(thirdTimestamp - secondTimestamp, 456); - }); - - it("should return the total offset as a decimal string, not a QUANTITY", async function () { - // get the current offset - const initialOffset = parseInt( - await this.provider.send("evm_increaseTime", [0]), - 10 - ); - - let totalOffset = await this.provider.send("evm_increaseTime", [123]); - assert.isString(totalOffset); - assert.strictEqual(parseInt(totalOffset, 10), initialOffset + 123); - - totalOffset = await this.provider.send("evm_increaseTime", [3456789]); - assert.isString(totalOffset); - assert.strictEqual( - parseInt(totalOffset, 10), - initialOffset + 123 + 3456789 - ); - }); - - it("should accept a hex string param", async function () { - const originalOffset = parseInt( - await this.provider.send("evm_increaseTime", [ - numberToRpcQuantity(0), - ]), - 10 - ); - const offset1 = 123; - const offset2 = 1000; - const totalOffset1 = parseInt( - await this.provider.send("evm_increaseTime", [ - numberToRpcQuantity(offset1), - ]), - 10 - ); - const totalOffset2 = parseInt( - await this.provider.send("evm_increaseTime", [ - numberToRpcQuantity(offset2), - ]), - 10 - ); - assert.strictEqual(totalOffset1, originalOffset + offset1); - assert.strictEqual(totalOffset2, originalOffset + offset1 + offset2); - }); - }); - - describe("evm_setNextBlockTimestamp", function () { - for (const { description, prepare } of [ - { - description: "without any special preparation", - prepare: () => {}, - }, - { - description: "with hardhat_mine executed beforehand", - prepare: async () => { - await this.ctx.provider.send("hardhat_mine", ["0x4", "0x2"]); - }, - }, - ]) { - describe(description, function () { - beforeEach(prepare); - it("should set next block timestamp and the next EMPTY block will be mined with that timestamp", async function () { - const timestamp = getCurrentTimestamp() + 60; - - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - it("should set next block timestamp and the next tx will be mined with that timestamp", async function () { - const timestamp = getCurrentTimestamp() + 70; - - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}` - ); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - it("should be able to set and replace an existing 'next block timestamp'", async function () { - const timestamp = getCurrentTimestamp() + 60; - - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp + 10, - ]); - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp + 10); - }); - it("should be reset after the next block is mined", async function () { - const timestamp = getCurrentTimestamp() + 60; - - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await this.provider.send("evm_mine", []); - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isTrue(rpcQuantityToNumber(block.timestamp) > timestamp); - }); - it("should be overridden if next EMPTY block is mined with timestamp", async function () { - const timestamp = getCurrentTimestamp() + 90; - - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await this.provider.send("evm_mine", [timestamp + 100]); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp + 100); - }); - it("should also advance time offset for future blocks", async function () { - let timestamp = getCurrentTimestamp() + 70; - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp, - ]); - await this.provider.send("evm_mine", []); - - timestamp = getCurrentTimestamp() + 90; - await this.provider.send("evm_mine", [timestamp]); - - timestamp = getCurrentTimestamp() + 120; - await this.provider.send("evm_mine", [timestamp]); - - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.isTrue(rpcQuantityToNumber(block.timestamp) > timestamp); - }); - it("shouldn't set if specified timestamp is less or equal to the previous block", async function () { - const timestamp = getCurrentTimestamp() + 70; - await this.provider.send("evm_mine", [timestamp]); - - await assertInvalidInputError( - this.provider, - "evm_setNextBlockTimestamp", - [timestamp - 1], - `Timestamp ${ - timestamp - 1 - } is lower than the previous block's timestamp ${timestamp}` - ); - - await assertInvalidInputError( - this.provider, - "evm_setNextBlockTimestamp", - [timestamp], - `Timestamp ${timestamp} is equal to the previous block's timestamp` - ); - }); - - it("should advance the time offset accordingly to the timestamp", async function () { - let timestamp = getCurrentTimestamp() + 70; - await this.provider.send("evm_mine", [timestamp]); - await this.provider.send("evm_mine"); - await this.provider.send("evm_setNextBlockTimestamp", [ - timestamp + 100, - ]); - await this.provider.send("evm_mine"); - await this.provider.send("evm_increaseTime", [30]); - await this.provider.send("evm_mine"); - timestamp = getCurrentTimestamp(); - // 200 - 1 as we use ceil to round time to seconds - assert.isTrue(timestamp >= 199); - }); - - it("should accept a hex string param", async function () { - const timestamp = getCurrentTimestamp() + 60; - - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(timestamp), - ]); - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - - describe("When the initial date is in the past", function () { - // These test use a Hardhat Network instance with an initialDate in the - // past. We do this by using a fixture project and useEnvironment(), - // so instead of using this.provider they must use - // this.env.network.provider - - useFixtureProject("hardhat-network-initial-date"); - useEnvironment(); - - it("should still set the nextBlockTimestamp if it is less than the real time but larger than the previous block", async function () { - const timestamp = getCurrentTimestamp(); - - await this.env.network.provider.send("evm_mine", [ - timestamp - 1000, - ]); - const latestBlock = await this.env.network.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(latestBlock.timestamp, timestamp - 1000); - - await this.env.network.provider.send( - "evm_setNextBlockTimestamp", - [timestamp - 500] - ); - - await this.env.network.provider.send("evm_mine"); - const latestBlock2 = await this.env.network.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assertQuantity(latestBlock2.timestamp, timestamp - 500); - }); - }); - }); - } - }); - - describe("evm_setBlockGasLimit", () => { - it("validates block gas limit", async function () { - await assertInvalidInputError( - this.provider, - "evm_setBlockGasLimit", - [numberToRpcQuantity(0)], - "Block gas limit must be greater than 0" - ); - }); - - it("sets a new block gas limit", async function () { - const blockBefore = await this.provider.send("eth_getBlockByNumber", [ - "pending", - false, - ]); - const gasLimitBefore = rpcQuantityToNumber(blockBefore.gasLimit); - - const newBlockGasLimit = 34228; - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(newBlockGasLimit), - ]); - - const blockAfter = await this.provider.send("eth_getBlockByNumber", [ - "pending", - false, - ]); - const gasLimitAfter = rpcQuantityToNumber(blockAfter.gasLimit); - - assert.notEqual(gasLimitBefore, gasLimitAfter); - assert.equal(gasLimitAfter, newBlockGasLimit); - }); - - it("removes transactions that exceed the new block gas limit from the mempool", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const tx1Hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(21_000), - }, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(40_000), - }, - ]); - - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(21_000), - ]); - - const pendingTransactions = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.lengthOf(pendingTransactions, 1); - assert.equal(pendingTransactions[0].hash, tx1Hash); - }); - - it("pending block works after removing a pending tx (first tx is dropped)", async function () { - await this.provider.send("evm_setAutomine", [false]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(30_000), - nonce: numberToRpcQuantity(0), - }, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(21_000), - nonce: numberToRpcQuantity(1), - }, - ]); - - // this removes the first transaction - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(25_000), - ]); - - const pendingBlock = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - assert.lengthOf(pendingBlock.transactions, 0); - }); - - it("pending block works after removing a pending tx (second tx is dropped)", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const tx1Hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(21_000), - nonce: numberToRpcQuantity(0), - }, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(30_000), - nonce: numberToRpcQuantity(1), - }, - ]); - - // this removes the second transaction - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(25_000), - ]); - - const pendingBlock = await this.provider.send( - "eth_getBlockByNumber", - ["pending", false] - ); - - assert.deepEqual(pendingBlock.transactions, [tx1Hash]); - }); - }); - - describe("evm_mine", function () { - it("should mine empty blocks", async function () { - const firstBlockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("evm_mine"); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 1), false] - ); - - assert.isEmpty(block.transactions); - - await this.provider.send("evm_mine"); - - const block2: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(firstBlockNumber + 2), false] - ); - - assert.isEmpty(block2.transactions); - }); - - it("should mine an empty block with exact timestamp", async function () { - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_mine", [timestamp]); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(blockNumber + 1), false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - - it("should mine an empty block with the timestamp and other later blocks have higher timestamp", async function () { - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_mine", [timestamp]); - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(blockNumber + 2), false] - ); - - assert.isTrue(rpcQuantityToNumber(block.timestamp) > timestamp); - }); - - it("should mine transactions with original gasLimit values", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_READ_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1] - ); - - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(2n * DEFAULT_BLOCK_GAS_LIMIT), - ]); - - const tx1Hash = await this.provider.send("eth_sendTransaction", [ - { - nonce: numberToRpcQuantity(1), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.gasLeft, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - - const tx2Hash = await this.provider.send("eth_sendTransaction", [ - { - nonce: numberToRpcQuantity(2), - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: EXAMPLE_READ_CONTRACT.selectors.gasLeft, - gas: numberToRpcQuantity(DEFAULT_BLOCK_GAS_LIMIT), - }, - ]); - - await this.provider.send("evm_mine"); - - const [logTx1, logTx2] = await this.provider.send("eth_getLogs", [ - { address: contractAddress }, - ]); - - const gasUsedUntilGasLeftCall = 21_185n; // value established empirically using Remix on Rinkeby network - const expectedGasLeft = - DEFAULT_BLOCK_GAS_LIMIT - gasUsedUntilGasLeftCall; - - assert.equal(logTx1.transactionHash, tx1Hash); - assert.equal(logTx2.transactionHash, tx2Hash); - assert.equal(rpcDataToBigInt(logTx1.data), expectedGasLeft); - assert.equal(rpcDataToBigInt(logTx2.data), expectedGasLeft); - }); - - it("should accept a hex string param", async function () { - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - const timestamp = getCurrentTimestamp() + 60; - await this.provider.send("evm_mine", [ - numberToRpcQuantity(timestamp), - ]); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(blockNumber + 1), false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - - describe.skip("tests using sinon", () => { - let sinonClock: sinon.SinonFakeTimers; - - beforeEach(() => { - sinonClock = sinon.useFakeTimers({ - now: Date.now(), - toFake: ["Date", "setTimeout", "clearTimeout"], - }); - }); - - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - sinonClock.restore(); - }); - - it("should handle race condition with interval mining", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - await this.provider.send("evm_mine"); - - const currentBlock = await getBlockNumber(); - assert.equal(currentBlock, initialBlock + 2); - }); - }); - }); - - describe("evm_setAutomine", () => { - it("should allow disabling automine", async function () { - await this.provider.send("evm_setAutomine", [false]); - const previousBlock = await this.provider.send("eth_blockNumber"); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - }, - ]); - const currentBlock = await this.provider.send("eth_blockNumber"); - - assert.equal(currentBlock, previousBlock); - }); - - it("should allow re-enabling of automine", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setAutomine", [true]); - const previousBlock = await this.provider.send("eth_blockNumber"); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - }, - ]); - const currentBlock = await this.provider.send("eth_blockNumber"); - - assertQuantity(currentBlock, rpcQuantityToBigInt(previousBlock) + 1n); - }); - - it("should mine all pending transactions after re-enabling automine", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(1), - }, - ]); - - await this.provider.send("evm_setAutomine", [true]); - - const txHash2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }, - ]); - - const currentBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.lengthOf(currentBlock.transactions, 2); - assert.sameDeepMembers(currentBlock.transactions, [txHash1, txHash2]); - }); - }); - - describe("evm_setIntervalMining", () => { - it("validates blockTime parameter", async function () { - await assertInvalidArgumentsError( - this.provider, - "evm_setIntervalMining", - [-10] - ); - - await assertInvalidArgumentsError( - this.provider, - "evm_setIntervalMining", - [[2000, 1000]] - ); - }); - - describe("time based tests", () => { - beforeEach(async function () { - await this.provider.send("evm_setAutomine", [false]); - - if (isFork) { - // This is done to speed up subsequent mineBlock calls made by MiningTimer. - // On first mineBlock call there are many calls to JSON RPC provider which slow things down. - await this.provider.send("evm_mine"); - } - }); - - describe.skip("using sinon", () => { - let sinonClock: sinon.SinonFakeTimers; - - beforeEach(() => { - sinonClock = sinon.useFakeTimers({ - now: Date.now(), - toFake: ["Date", "setTimeout", "clearTimeout"], - }); - }); - - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - sinonClock.restore(); - }); - - it("should allow enabling interval mining", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - - const currentBlock = await getBlockNumber(); - assert.equal(currentBlock, initialBlock + 1); - }); - - it("should continuously mine new blocks after each interval", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 1); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 2); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 3); - }); - - it("should mine blocks when a range is used", async function () { - const interval = [4000, 5000]; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - // no block should be mined before the min value of the range - await sinonClock.tickAsync(3999); - assert.equal(await getBlockNumber(), initialBlock); - - // when the max value has passed, one block should'be been mined - await sinonClock.tickAsync(1001); - assert.equal(await getBlockNumber(), initialBlock + 1); - - // after another 5 seconds, another block should be mined - await sinonClock.tickAsync(5000); - assert.equal(await getBlockNumber(), initialBlock + 2); - }); - - it("should disable interval mining when 0 is passed", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 1); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 2); - - await this.provider.send("evm_setIntervalMining", [0]); - - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 2); - await sinonClock.tickAsync(interval); - assert.equal(await getBlockNumber(), initialBlock + 2); - }); - - const sendTx = async (nonce: number) => - this.ctx.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - nonce: numberToRpcQuantity(nonce), - }, - ]); - - const assertBlockWasMined = async ( - blockNumber: number, - txHashes: string[] - ) => { - const block = await this.ctx.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.equal(rpcQuantityToNumber(block.number), blockNumber); - assert.deepEqual(block.transactions, txHashes); - }; - - it("automine and interval mining don't interfere with each other", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - await assertBlockWasMined(initialBlock + 1, []); - - const txHash1 = await sendTx(0); - await sinonClock.tickAsync(interval); - await assertBlockWasMined(initialBlock + 2, [txHash1]); - - await this.provider.send("evm_setAutomine", [true]); - - await sinonClock.tickAsync(interval / 2); - const txHash2 = await sendTx(1); - await assertBlockWasMined(initialBlock + 3, [txHash2]); - - await sinonClock.tickAsync(interval / 2); - await assertBlockWasMined(initialBlock + 4, []); - }); - }); - - describe("using sleep", () => { - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - }); - - it("should allow disabling interval mining", async function () { - const interval = 100; - const initialBlock = await getBlockNumber(); - await this.provider.send("evm_setIntervalMining", [interval]); - - await sleep(1.7 * interval); - - const nextBlock = await getBlockNumber(); - - assert.equal(nextBlock, initialBlock + 1); - - await this.provider.send("evm_setIntervalMining", [interval * 2]); - - await sleep(interval); - - const currentBlock = await getBlockNumber(); - - assert.equal(currentBlock, initialBlock + 1); - }); - - it("should mine block with transaction after the interval", async function () { - const interval = 100; - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - nonce: numberToRpcQuantity(0), - }, - ]); - - await this.provider.send("evm_setIntervalMining", [interval]); - - await sleep(1.7 * interval); - - const currentBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.lengthOf(currentBlock.transactions, 1); - assert.equal(currentBlock.transactions[0], txHash); - - const txReceipt = await this.provider.send( - "eth_getTransactionReceipt", - [txHash] - ); - - assert.isNotNull(txReceipt); - }); - }); - }); - }); - - describe("evm_snapshot", function () { - it("returns the snapshot id starting at 1", async function () { - const id1: string = await this.provider.send("evm_snapshot", []); - const id2: string = await this.provider.send("evm_snapshot", []); - const id3: string = await this.provider.send("evm_snapshot", []); - - assert.equal(id1, "0x1"); - assert.equal(id2, "0x2"); - assert.equal(id3, "0x3"); - }); - - it("Doesn't repeat snapshot ids after revert is called", async function () { - const id1: string = await this.provider.send("evm_snapshot", []); - const reverted: boolean = await this.provider.send("evm_revert", [ - id1, - ]); - const id2: string = await this.provider.send("evm_snapshot", []); - - assert.equal(id1, "0x1"); - assert.isTrue(reverted); - assert.equal(id2, "0x2"); - }); - }); - - describe("evm_revert", function () { - it("Returns false for non-existing ids", async function () { - const reverted1: boolean = await this.provider.send("evm_revert", [ - "0x1", - ]); - const reverted2: boolean = await this.provider.send("evm_revert", [ - "0x2", - ]); - const reverted3: boolean = await this.provider.send("evm_revert", [ - "0x0", - ]); - - assert.isFalse(reverted1); - assert.isFalse(reverted2); - assert.isFalse(reverted3); - }); - - it("Returns false for already reverted ids", async function () { - const id1: string = await this.provider.send("evm_snapshot", []); - const reverted: boolean = await this.provider.send("evm_revert", [ - id1, - ]); - const reverted2: boolean = await this.provider.send("evm_revert", [ - id1, - ]); - - assert.isTrue(reverted); - assert.isFalse(reverted2); - }); - - it("Deletes blocks mined after snapshot", async function () { - const snapshotId: string = await this.provider.send( - "evm_snapshot", - [] - ); - const initialLatestBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - const latestBlockBeforeReverting = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const newLatestBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assert.equal(newLatestBlock.hash, initialLatestBlock.hash); - - const blockByHash = await this.provider.send("eth_getBlockByHash", [ - latestBlockBeforeReverting.hash, - false, - ]); - assert.isNull(blockByHash); - - const blockByNumber = await this.provider.send( - "eth_getBlockByNumber", - [latestBlockBeforeReverting.number, false] - ); - assert.isNull(blockByNumber); - }); - - it("Deletes transactions mined after snapshot", async function () { - const [, from] = await this.provider.send("eth_accounts"); - - const snapshotId: string = await this.provider.send( - "evm_snapshot", - [] - ); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }, - ]); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const txHashAfter = await this.provider.send( - "eth_getTransactionByHash", - [txHash] - ); - assert.isNull(txHashAfter); - }); - - it("Deletes pending transactions added after snapshot", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const [, from] = await this.provider.send("eth_accounts"); - - const snapshotId: string = await this.provider.send("evm_snapshot"); - - await this.provider.send("eth_sendTransaction", [ - { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(0), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(1), - }, - ]); - - const pendingTransactionsBefore = await this.provider.send( - "eth_pendingTransactions" - ); - assert.lengthOf(pendingTransactionsBefore, 2); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const pendingTransactionsAfter = await this.provider.send( - "eth_pendingTransactions" - ); - assert.lengthOf(pendingTransactionsAfter, 0); - }); - - it("Re-adds the transactions that were mined after snapshot to the tx pool", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const [, from] = await this.provider.send("eth_accounts"); - - await this.provider.send("eth_sendTransaction", [ - { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(0), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(1), - }, - ]); - - const snapshotId: string = await this.provider.send("evm_snapshot"); - - await this.provider.send("evm_mine"); - - const pendingTransactionsBefore = await this.provider.send( - "eth_pendingTransactions" - ); - assert.lengthOf(pendingTransactionsBefore, 0); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const pendingTransactionsAfter = await this.provider.send( - "eth_pendingTransactions" - ); - assert.lengthOf(pendingTransactionsAfter, 2); - }); - - it("TxPool state reverts back correctly to the snapshot state", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(0), - gas: numberToRpcQuantity(21_000), - }, - ]); - - const txHash2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(3), - gas: numberToRpcQuantity(21_000), - }, - ]); - - const snapshotId: string = await this.provider.send("evm_snapshot"); - - const txHash3 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - nonce: numberToRpcQuantity(1), - gas: numberToRpcQuantity(21_000), - }, - ]); - - await this.provider.send("evm_mine"); - - const currentBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.lengthOf(currentBlock.transactions, 2); - assert.sameDeepMembers(currentBlock.transactions, [txHash1, txHash3]); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const pendingTransactions: RpcTransactionOutput[] = - await this.provider.send("eth_pendingTransactions"); - assert.sameDeepMembers( - pendingTransactions.map((tx) => tx.hash), - [txHash1, txHash2] - ); - }); - - it("Allows resending the same tx after a revert", async function () { - const [, from] = await this.provider.send("eth_accounts"); - - const snapshotId: string = await this.provider.send( - "evm_snapshot", - [] - ); - - const txParams = { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }; - - const txHash = await this.provider.send("eth_sendTransaction", [ - txParams, - ]); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const txHash2 = await this.provider.send("eth_sendTransaction", [ - txParams, - ]); - - assert.equal(txHash2, txHash); - }); - - it("Deletes the used snapshot and the following ones", async function () { - const snapshotId1: string = await this.provider.send( - "evm_snapshot", - [] - ); - const snapshotId2: string = await this.provider.send( - "evm_snapshot", - [] - ); - const snapshotId3: string = await this.provider.send( - "evm_snapshot", - [] - ); - - const revertedTo2: boolean = await this.provider.send("evm_revert", [ - snapshotId2, - ]); - assert.isTrue(revertedTo2); - - const revertedTo3: boolean = await this.provider.send("evm_revert", [ - snapshotId3, - ]); - // snapshot 3 didn't exist anymore - assert.isFalse(revertedTo3); - - const revertedTo1: boolean = await this.provider.send("evm_revert", [ - snapshotId1, - ]); - // snapshot 1 still existed - assert.isTrue(revertedTo1); - }); - - it("Resets the blockchain so that new blocks are added with the right numbers", async function () { - const blockNumber = rpcQuantityToNumber( - await this.provider.send("eth_blockNumber") - ); - - await this.provider.send("evm_mine"); - await this.provider.send("evm_mine"); - - await assertLatestBlockNumber(this.provider, blockNumber + 2); - - const snapshotId1: string = await this.provider.send( - "evm_snapshot", - [] - ); - - await this.provider.send("evm_mine"); - - await assertLatestBlockNumber(this.provider, blockNumber + 3); - - const revertedTo1: boolean = await this.provider.send("evm_revert", [ - snapshotId1, - ]); - assert.isTrue(revertedTo1); - - await assertLatestBlockNumber(this.provider, blockNumber + 2); - - await this.provider.send("evm_mine"); - - await assertLatestBlockNumber(this.provider, blockNumber + 3); - - await this.provider.send("evm_mine"); - - const snapshotId2: string = await this.provider.send( - "evm_snapshot", - [] - ); - - await this.provider.send("evm_mine"); - - await this.provider.send("evm_mine"); - - await assertLatestBlockNumber(this.provider, blockNumber + 6); - - const revertedTo2: boolean = await this.provider.send("evm_revert", [ - snapshotId2, - ]); - assert.isTrue(revertedTo2); - - await assertLatestBlockNumber(this.provider, blockNumber + 4); - }); - - it("Restores the previous state", async function () { - // This is a very coarse test, as we know that the entire state is - // managed by the vm, and is restored as a whole - const [, from] = await this.provider.send("eth_accounts"); - - const balanceBeforeTx = await this.provider.send("eth_getBalance", [ - from, - ]); - - const snapshotId: string = await this.provider.send( - "evm_snapshot", - [] - ); - - const txParams = { - from, - to: "0x1111111111111111111111111111111111111111", - value: numberToRpcQuantity(1), - gas: numberToRpcQuantity(100000), - maxFeePerGas: numberToRpcQuantity( - await getPendingBaseFeePerGas(this.provider) - ), - nonce: numberToRpcQuantity(0), - }; - - await this.provider.send("eth_sendTransaction", [txParams]); - - const balanceAfterTx = await this.provider.send("eth_getBalance", [ - from, - ]); - - assert.notEqual(balanceAfterTx, balanceBeforeTx); - - const reverted: boolean = await this.provider.send("evm_revert", [ - snapshotId, - ]); - assert.isTrue(reverted); - - const balanceAfterRevert = await this.provider.send( - "eth_getBalance", - [from] - ); - - assert.equal(balanceAfterRevert, balanceBeforeTx); - }); - - describe.skip("tests using sinon", () => { - let sinonClock: sinon.SinonFakeTimers; - - beforeEach(() => { - sinonClock = sinon.useFakeTimers({ - now: Date.now(), - toFake: ["Date", "setTimeout", "clearTimeout"], - }); - }); - - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - sinonClock.restore(); - }); - - it("Resets the date to the right time", async function () { - const mineEmptyBlock = async () => { - await this.provider.send("evm_mine"); - return this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - }; - - const firstBlock = await mineEmptyBlock(); - await this.provider.send("evm_increaseTime", [100]); - const snapshotBlock = await mineEmptyBlock(); - const snapshotId = await this.provider.send("evm_snapshot"); - - assert.equal( - rpcQuantityToNumber(snapshotBlock.timestamp), - rpcQuantityToNumber(firstBlock.timestamp) + 100 - ); - - await sinonClock.tickAsync(20 * 1000); - - await this.provider.send("evm_revert", [snapshotId]); - const afterRevertBlock = await mineEmptyBlock(); - - // Check that time was correctly reverted to the snapshot time and that the new - // block's timestamp has been incremented to avoid timestamp collision - assert.equal( - rpcQuantityToNumber(afterRevertBlock.timestamp), - rpcQuantityToNumber(snapshotBlock.timestamp) + 1 - ); - }); - - describe("when interval mining is enabled", () => { - it("should handle race condition", async function () { - const interval = 5000; - const initialBlock = await getBlockNumber(); - const snapshotId = await this.provider.send("evm_snapshot"); - - await this.provider.send("evm_setIntervalMining", [interval]); - - await sinonClock.tickAsync(interval); - await this.provider.send("evm_revert", [snapshotId]); - - const currentBlock = await getBlockNumber(); - assert.equal(currentBlock, initialBlock); - }); - }); - }); - }); - }); - - describe(`${name} provider (allowBlocksWithSameTimestamp)`, function () { - setCWD(); - useProvider({ allowBlocksWithSameTimestamp: true }); - - describe("evm_setNextBlockTimestamp", function () { - it("should allow using the same timestamp as the previous block", async function () { - const timestamp = getCurrentTimestamp() + 70; - await this.provider.send("evm_mine", [timestamp]); - - await this.provider.send("evm_setNextBlockTimestamp", [timestamp]); - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assertQuantity(block.timestamp, timestamp); - }); - - it("shouldn't set if specified timestamp is less to the previous block", async function () { - const timestamp = getCurrentTimestamp() + 70; - await this.provider.send("evm_mine", [timestamp]); - - await assertInvalidInputError( - this.provider, - "evm_setNextBlockTimestamp", - [timestamp - 1], - `Timestamp ${ - timestamp - 1 - } is lower than the previous block's timestamp ${timestamp}` - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/hardhat.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/hardhat.ts deleted file mode 100644 index c082ba4627..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/hardhat.ts +++ /dev/null @@ -1,3168 +0,0 @@ -import { assert } from "chai"; -// eslint-disable-next-line import/no-extraneous-dependencies -import { ethers } from "ethers"; -import sinon from "sinon"; - -import { - numberToRpcQuantity, - numberToRpcStorageSlot, - rpcDataToBigInt, - rpcQuantityToBigInt, - rpcQuantityToNumber, -} from "../../../../../src/internal/core/jsonrpc/types/base-types"; -import { CompilerOutputContract } from "../../../../../src/types/artifacts"; -import { expectErrorAsync } from "../../../../helpers/errors"; -import { ALCHEMY_URL } from "../../../../setup"; -import { workaroundWindowsCiFailures } from "../../../../utils/workaround-windows-ci-failures"; -import { - assertEqualCode, - assertInternalError, - assertInvalidArgumentsError, - assertInvalidInputError, -} from "../../helpers/assertions"; -import { EMPTY_ACCOUNT_ADDRESS } from "../../helpers/constants"; -import { setCWD } from "../../helpers/cwd"; -import { DEFAULT_ACCOUNTS_ADDRESSES, PROVIDERS } from "../../helpers/providers"; -import { - deployContract, - sendTxToZeroAddress, -} from "../../helpers/transactions"; -import { compileLiteral } from "../../stack-traces/compilation"; -import { getPendingBaseFeePerGas } from "../../helpers/getPendingBaseFeePerGas"; -import { RpcBlockOutput } from "../../../../../src/internal/hardhat-network/provider/output"; -import { randomAddressString } from "../../../../../src/internal/hardhat-network/provider/utils/random"; -import * as BigIntUtils from "../../../../../src/internal/util/bigint"; -import { - EXAMPLE_CONTRACT, - EXAMPLE_DIFFICULTY_CONTRACT, -} from "../../helpers/contracts"; -import { HardhatMetadata } from "../../../../../src/internal/core/jsonrpc/types/output/metadata"; -import { useFixtureProject } from "../../../../helpers/project"; -import { useEnvironment } from "../../../../helpers/environment"; - -describe("Hardhat module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(80000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - const safeBlockInThePast = 11_200_000; // this should resolve CI errors probably caused by using a block too far in the past - - setCWD(); - useProvider(); - - describe("hardhat_impersonateAccount", function () { - it("validates input parameter", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_impersonateAccount", - ["0x1234"] - ); - - await assertInvalidArgumentsError( - this.provider, - "hardhat_impersonateAccount", - ["1234567890abcdef1234567890abcdef12345678"] - ); - }); - - it("returns true", async function () { - const result = await this.provider.send( - "hardhat_impersonateAccount", - [EMPTY_ACCOUNT_ADDRESS.toString()] - ); - assert.isTrue(result); - }); - - it("lets you send a transaction from an impersonated account", async function () { - const impersonatedAddress = - "0xC014BA5EC014ba5ec014Ba5EC014ba5Ec014bA5E"; - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonatedAddress, - value: numberToRpcQuantity(10n ** 18n), - }, - ]); - - // The tx's msg.sender should be correct during execution - - // msg.sender assertion contract: - // - // pragma solidity 0.7.0; - // - // contract C { - // constructor() { - // require(msg.sender == 0xC014BA5EC014ba5ec014Ba5EC014ba5Ec014bA5E); - // } - // } - const CODE = - "0x6080604052348015600f57600080fd5b5073c014ba5ec014ba5ec014ba5ec014ba5ec014ba5e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614605b57600080fd5b603f8060686000396000f3fe6080604052600080fdfea26469706673582212208048da4076c3540ec6ad48a816e6531a302449e979836bd7955dc6bd2c87a52064736f6c63430007000033"; - - await this.provider.send("hardhat_impersonateAccount", [ - impersonatedAddress, - ]); - - await expectErrorAsync(() => - deployContract(this.provider, CODE, DEFAULT_ACCOUNTS_ADDRESSES[0]) - ); - - // deploying with the right address should work - await deployContract(this.provider, CODE, impersonatedAddress); - - // Getting the tx through the RPC should give the right from - - const tx = await this.provider.send("eth_sendTransaction", [ - { - from: impersonatedAddress, - to: impersonatedAddress, - }, - ]); - - const receipt = await this.provider.send( - "eth_getTransactionReceipt", - [tx] - ); - - assert.equal(receipt.from, impersonatedAddress.toLowerCase()); - }); - - it("lets you deploy a contract from an impersonated account", async function () { - const impersonatedAddress = - "0xC014BA5EC014ba5ec014Ba5EC014ba5Ec014bA5E"; - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - "0x0", - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: impersonatedAddress, - value: numberToRpcQuantity(10n ** 18n), - }, - ]); - - await this.provider.send("hardhat_impersonateAccount", [ - impersonatedAddress, - ]); - - await deployContract( - this.provider, - "0x7f410000000000000000000000000000000000000000000000000000000000000060005260016000f3", - impersonatedAddress - ); - }); - - it("lets you impresonate a contract", async function () { - const contract = await deployContract( - this.provider, - "0x7f410000000000000000000000000000000000000000000000000000000000000060005260016000f3" - ); - - const funds = "0x10000000000000000000000000"; - await this.provider.send("hardhat_setBalance", [contract, funds]); - - await this.provider.send("hardhat_impersonateAccount", [contract]); - - await this.provider.send("eth_sendTransaction", [ - { - from: contract, - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - value: "0x100", - }, - ]); - - const code = await this.provider.send("eth_getCode", [contract]); - assert.notEqual(code, "0x"); - - const balance = await this.provider.send("eth_getBalance", [ - contract, - ]); - assert.notEqual(balance, funds); - }); - - describe("hash collisions", function () { - async function checkForHashCollisions(provider: any, txData: any) { - const hashes = new Set(); - - const randomAddress = () => - `0x${Buffer.from( - [...Array(20)].map(() => Math.floor(256 * Math.random())) - ).toString("hex")}`; - - await provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(1), - ]); - - for (let i = 0; i < 200; i++) { - const address = randomAddress(); - - // send 0.1 eth to the address - await provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: address, - value: "0x16345785d8a0000", - }, - ]); - - await provider.send("hardhat_impersonateAccount", [address]); - const hash = await provider.send("eth_sendTransaction", [ - { - from: address, - to: "0x0000000000000000000000000000000000000000", - gas: numberToRpcQuantity(5_000_000), - ...txData, - }, - ]); - - if (hashes.has(hash)) { - assert.fail( - `Found a tx hash collision while using hardhat_impersonateAccount after ${i} transactions` - ); - } - - hashes.add(hash); - } - } - - it("doesn't produce hash collisions (legacy transactions)", async function () { - await checkForHashCollisions(this.provider, { - gasPrice: "0x10", - }); - }); - - it("doesn't produce hash collisions (access list transactions)", async function () { - await checkForHashCollisions(this.provider, { - gasPrice: "0x10", - accessList: [], - }); - }); - - it("doesn't produce hash collisions (EIP1559 transactions)", async function () { - await checkForHashCollisions(this.provider, { - maxFeePerGas: "0x10", - }); - }); - }); - }); - - describe("hardhat_stopImpersonatingAccount", function () { - it("validates input parameter", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_stopImpersonatingAccount", - ["0x1234"] - ); - - await assertInvalidArgumentsError( - this.provider, - "hardhat_stopImpersonatingAccount", - ["1234567890abcdef1234567890abcdef12345678"] - ); - }); - - it("returns true if the account was impersonated before", async function () { - await this.provider.send("hardhat_impersonateAccount", [ - EMPTY_ACCOUNT_ADDRESS.toString(), - ]); - const result = await this.provider.send( - "hardhat_stopImpersonatingAccount", - [EMPTY_ACCOUNT_ADDRESS.toString()] - ); - assert.isTrue(result); - }); - - it("returns false if the account wasn't impersonated before", async function () { - const result = await this.provider.send( - "hardhat_stopImpersonatingAccount", - [EMPTY_ACCOUNT_ADDRESS.toString()] - ); - assert.isFalse(result); - }); - }); - - describe("hardhat_getAutomine", () => { - it("should return automine status true when enabled", async function () { - await this.provider.send("evm_setAutomine", [true]); - const result = await this.provider.send("hardhat_getAutomine"); - assert.isTrue(result); - }); - it("should return automine status false when disabled", async function () { - await this.provider.send("evm_setAutomine", [false]); - const result = await this.provider.send("hardhat_getAutomine"); - assert.isFalse(result); - }); - }); - - describe("hardhat_mine", function () { - const getLatestBlockNumber = async (): Promise => { - return rpcQuantityToNumber( - await this.ctx.provider.send("eth_blockNumber") - ); - }; - - const assertBlockDoesntExist = async (blockNumber: number) => { - const blockThatShouldntExist = await this.ctx.provider.send( - "eth_getBlockByNumber", - [numberToRpcQuantity(blockNumber), false] - ); - assert.isNull( - blockThatShouldntExist, - `expected block number ${blockNumber} to be null, but successfully retrieved block ${JSON.stringify( - blockThatShouldntExist - )}` - ); - }; - - it("should work without any arguments", async function () { - const previousBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_mine"); - - const blockNumber = await getLatestBlockNumber(); - assert.equal(blockNumber - previousBlockNumber, 1); - }); - - for (const minedBlocks of [0, 1, 2, 3, 4, 5, 10, 100, 1_000_000_000]) { - it(`should work with ${minedBlocks} mined blocks`, async function () { - const previousBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(minedBlocks), - ]); - - const blockNumber = await getLatestBlockNumber(); - assert.equal(blockNumber - previousBlockNumber, minedBlocks); - }); - } - - it("should permit the mining of a regular block afterwards", async function () { - const previousBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - await this.provider.send("evm_mine"); - - const blockNumber = await getLatestBlockNumber(); - assert.equal(blockNumber - previousBlockNumber, 1_000_000_001); - }); - - it("should be able to get by hash the parent block of the last block", async function () { - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - - const latestBlock = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - const parentOfLatestBlock = await this.provider.send( - "eth_getBlockByHash", - [latestBlock.parentHash, false] - ); - - assert.isNotNull(parentOfLatestBlock); - }); - - describe("should permit the retrieval of a reserved block", function () { - const getAndAssertBlock = async (blockNumber: number) => { - const block = await this.ctx.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(blockNumber), - false, - ]); - assert.isNotNull(block, `expected block ${blockNumber} to exist`); - assert.isDefined(block.number); - assert.equal(blockNumber, block.number); - - const parentHash = block.parentHash; - - // the parent hash has to be zero, or a valid block hash - if ( - parentHash !== - "0x0000000000000000000000000000000000000000000000000000000000000000" - ) { - const parentBlock = await this.ctx.provider.send( - "eth_getBlockByHash", - [parentHash, false] - ); - - assert.isNotNull( - parentBlock, - `expected block with hash ${parentHash} to exist` - ); - assert.isDefined(parentBlock.number); - assert.equal( - rpcQuantityToNumber(parentBlock.number), - rpcQuantityToNumber(block.number) - 1 - ); - } - }; - - const blockCount = 3_000_000_000; - const mineBlocks = async () => { - await this.ctx.provider.send("hardhat_mine", [ - numberToRpcQuantity(blockCount), - ]); - }; - - let previousLatestBlockNumber: number; - - beforeEach(async function () { - previousLatestBlockNumber = await getLatestBlockNumber(); - await mineBlocks(); - }); - - it("works at the beginning of the reservation", async function () { - await getAndAssertBlock(previousLatestBlockNumber + 1); - await getAndAssertBlock(previousLatestBlockNumber + 2); - }); - - it("works in the middle of the reservation", async function () { - await getAndAssertBlock( - previousLatestBlockNumber + Math.floor(blockCount / 2) - 1 - ); - await getAndAssertBlock( - previousLatestBlockNumber + Math.floor(blockCount / 2) - ); - await getAndAssertBlock( - previousLatestBlockNumber + Math.floor(blockCount / 2) + 1 - ); - }); - - it("works at the end of the reservation", async function () { - await getAndAssertBlock(previousLatestBlockNumber + blockCount - 1); - await getAndAssertBlock(previousLatestBlockNumber + blockCount); - }); - - it("works several times over within the reservation", async function () { - for ( - let blockNumber = previousLatestBlockNumber + blockCount; - blockNumber > previousLatestBlockNumber; - blockNumber = Math.floor(blockNumber / 2) - ) { - await getAndAssertBlock(blockNumber); - } - }); - }); - - it("should not mine too many blocks", async function () { - const blocksToMine = 1_000_000_000; - const latestBlockNumber = await getLatestBlockNumber(); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - ]); - assert.isNotNull( - await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(latestBlockNumber + blocksToMine), - false, - ]) - ); - assert.isNull( - await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(latestBlockNumber + blocksToMine + 1), - false, - ]) - ); - }); - - describe("should increment the block number", function () { - it("when not given any arguments", async function () { - const latestBlockNumber = await getLatestBlockNumber(); - await this.provider.send("hardhat_mine"); - assert.equal(await getLatestBlockNumber(), latestBlockNumber + 1); - }); - - it("when mining 1_000_000 blocks", async function () { - const latestBlockNumber = await getLatestBlockNumber(); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000), - ]); - assert.equal( - await getLatestBlockNumber(), - latestBlockNumber + 1_000_000 - ); - }); - }); - - describe("should reflect timestamps properly", function () { - const getBlockTimestamp = async (block: number): Promise => { - return rpcQuantityToNumber( - ( - await this.ctx.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(block), - false, - ]) - ).timestamp - ); - }; - - const assertTimestampIncrease = async ( - block: number, - expectedDifference: number - ) => { - const timestampPreviousBlock = await getBlockTimestamp(block - 1); - const timestampBlock = await getBlockTimestamp(block); - - const timestampDifference = timestampBlock - timestampPreviousBlock; - - assert.equal( - timestampDifference, - expectedDifference, - `Expected block ${block} to have a timestamp increase of ${expectedDifference}, but got ${timestampDifference} instead` - ); - }; - - it("with only one hardhat_mine invocation", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - const numberOfBlocksToMine = 10; - const timestampInterval = 3600; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(numberOfBlocksToMine), - numberToRpcQuantity(timestampInterval), - ]); - - // Assert: first mined block is not affected by the interval - await assertTimestampIncrease(originalLatestBlockNumber + 1, 1); - - for (const offset of [ - 2, // first block affected by the interval - numberOfBlocksToMine - 1, // second to last block - numberOfBlocksToMine, // last block - ]) { - await assertTimestampIncrease( - originalLatestBlockNumber + offset, - timestampInterval - ); - } - }); - - it("with two consecutive hardhat_mine invocations", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - - const numberOfBlocksToMine = 20; - const timestampInterval = 10; - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(numberOfBlocksToMine / 2), - numberToRpcQuantity(timestampInterval), - ]); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(numberOfBlocksToMine / 2), - numberToRpcQuantity(timestampInterval), - ]); - - // Assert: first mined block in each group is not affected by the - // interval - await assertTimestampIncrease(originalLatestBlockNumber + 1, 1); - await assertTimestampIncrease( - originalLatestBlockNumber + numberOfBlocksToMine / 2 + 1, - 1 - ); - - for (const offset of [ - 2, // first block affected by the interval in the first group - numberOfBlocksToMine / 2, // last block of first group - numberOfBlocksToMine / 2 + 2, // first block affected by the interval in the second group - numberOfBlocksToMine, // last block - ]) { - await assertTimestampIncrease( - originalLatestBlockNumber + offset, - timestampInterval - ); - } - }); - - it("with two consecutive hardhat_mine invocations with different intervals", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - - const numberOfBlocksToMine = 20; - const timestampInterval1 = 50; - const timestampInterval2 = 100; - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(numberOfBlocksToMine / 2), - numberToRpcQuantity(timestampInterval1), - ]); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(numberOfBlocksToMine / 2), - numberToRpcQuantity(timestampInterval2), - ]); - - // Assert: first mined block in each group is not affected by the - // interval - await assertTimestampIncrease(originalLatestBlockNumber + 1, 1); - await assertTimestampIncrease( - originalLatestBlockNumber + numberOfBlocksToMine / 2 + 1, - 1 - ); - - // Assert: the proper interval values are used in the first group - await assertTimestampIncrease( - originalLatestBlockNumber + 2, - timestampInterval1 - ); - await assertTimestampIncrease( - originalLatestBlockNumber + numberOfBlocksToMine / 2, - timestampInterval1 - ); - - // Assert: the proper interval values are used in the second group - await assertTimestampIncrease( - originalLatestBlockNumber + numberOfBlocksToMine / 2 + 2, - timestampInterval2 - ); - await assertTimestampIncrease( - originalLatestBlockNumber + numberOfBlocksToMine, - timestampInterval2 - ); - }); - - it("when there are transactions in the mempool", async function () { - // Arrange: put some transactions into the mempool - await this.provider.send("evm_setAutomine", [false]); - for (let i = 0; i < 5; i++) { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - nonce: numberToRpcQuantity(i), - }, - ]); - } - - const originalLatestBlockNumber = await getLatestBlockNumber(); - - // Act: - const blocksToMine = 10; - const interval = 60; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - numberToRpcQuantity(interval), - ]); - - // Assert: first mined block is not affected by the interval - await assertTimestampIncrease(originalLatestBlockNumber + 1, 1); - - // Assert: all blocks affected by the interval value - // have the correct timestamp - for (let i = 2; i <= blocksToMine; i++) { - await assertTimestampIncrease( - originalLatestBlockNumber + i, - interval - ); - } - }); - - describe("when evm_setNextBlockTimestamp is used", function () { - it("should work when 1 block is mined", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1), - ]); - - const timestampAfter = await getBlockTimestamp( - originalLatestBlockNumber + 1 - ); - assert.equal(timestampAfter, originalLatestBlockTimestamp + 3600); - }); - - it("should work when 10 blocks are mined", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - const blocksToMine = 10; - const interval = 60; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - numberToRpcQuantity(interval), - ]); - - const timestampFirstMinedBlock = await getBlockTimestamp( - originalLatestBlockNumber + 1 - ); - assert.equal( - timestampFirstMinedBlock, - originalLatestBlockTimestamp + 3600 - ); - - // check that the rest of the blocks respect the interval - for (let i = 2; i <= blocksToMine; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // check that there weren't too many blocks mined - await assertBlockDoesntExist( - originalLatestBlockNumber + blocksToMine + 1 - ); - }); - - it("should work when 1 billion blocks are mined", async function () { - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - const blocksToMine = 1_000_000_000; - const interval = 60; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - numberToRpcQuantity(interval), - ]); - - const timestampFirstMinedBlock = await getBlockTimestamp( - originalLatestBlockNumber + 1 - ); - assert.equal( - timestampFirstMinedBlock, - originalLatestBlockTimestamp + 3600 - ); - - // check that the first blocks respect the interval - for (let i = 2; i <= 20; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // check that the last blocks respect the interval - for (let i = blocksToMine - 20; i <= blocksToMine; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // check that there weren't too many blocks mined - await assertBlockDoesntExist( - originalLatestBlockNumber + blocksToMine + 1 - ); - }); - - it("should work when 1 block is mined and there are pending txs", async function () { - // Arrange: put a tx in the mempool - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - const blocksToMine = 1; - - // Act: set the next timestamp and mine 1 block - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - ]); - - // Assert: check that the chosen timestamp was used - const latestBlockNumber = await getLatestBlockNumber(); - assert.equal( - latestBlockNumber, - originalLatestBlockNumber + blocksToMine - ); - const timestampAfter = await getBlockTimestamp(latestBlockNumber); - assert.equal(timestampAfter, originalLatestBlockTimestamp + 3600); - - // Assert: check that there weren't too many blocks mined - await assertBlockDoesntExist( - originalLatestBlockNumber + blocksToMine + 1 - ); - }); - - it("should work when 10 blocks are mined and there are pending txs", async function () { - // Arrange: put a tx in the mempool - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - - // Act: set the next timestamp and mine 10 blocks - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - const blocksToMine = 10; - const interval = 60; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - numberToRpcQuantity(interval), - ]); - - // Assert: check that the chosen timestamp was used for the first - // mined block - const latestBlockNumber = await getLatestBlockNumber(); - assert.equal( - latestBlockNumber, - originalLatestBlockNumber + blocksToMine - ); - const timestampFirstBlock = await getBlockTimestamp( - originalLatestBlockNumber + 1 - ); - assert.equal( - timestampFirstBlock, - originalLatestBlockTimestamp + 3600 - ); - - // Assert: check that the interval was properly used for the - // subsequent blocks - for (let i = 2; i <= blocksToMine; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // Assert: check that there weren't too many blocks mined - await assertBlockDoesntExist( - originalLatestBlockNumber + blocksToMine + 1 - ); - }); - - it("should work when 1 billion blocks are mined and there are pending txs", async function () { - // Arrange: put a tx in the mempool - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - - // Act: set the next timestamp and mine 1 billion blocks - const originalLatestBlockNumber = await getLatestBlockNumber(); - const originalLatestBlockTimestamp = await getBlockTimestamp( - originalLatestBlockNumber - ); - await this.provider.send("evm_setNextBlockTimestamp", [ - numberToRpcQuantity(originalLatestBlockTimestamp + 3600), - ]); - const blocksToMine = 1_000_000_000; - const interval = 60; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - numberToRpcQuantity(interval), - ]); - - // Assert: check that the chosen timestamp was used for the first - // mined block - const latestBlockNumber = await getLatestBlockNumber(); - assert.equal( - latestBlockNumber, - originalLatestBlockNumber + blocksToMine - ); - const timestampFirstBlock = await getBlockTimestamp( - originalLatestBlockNumber + 1 - ); - assert.equal( - timestampFirstBlock, - originalLatestBlockTimestamp + 3600 - ); - - // Assert: check that the first blocks respect the interval - for (let i = 2; i <= 20; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // Assert: check that the last blocks respect the interval - for (let i = blocksToMine - 20; i <= blocksToMine; i++) { - const blockNumber = originalLatestBlockNumber + i; - const expectedTimestamp = - originalLatestBlockTimestamp + 3600 + (i - 1) * interval; - assert.equal( - await getBlockTimestamp(blockNumber), - expectedTimestamp - ); - } - - // check that there weren't too many blocks mined - await assertBlockDoesntExist( - originalLatestBlockNumber + blocksToMine + 1 - ); - }); - }); - }); - - describe("base fee per gas", function () { - const getBlockBaseFeePerGas = async ( - block: number - ): Promise => { - return rpcQuantityToBigInt( - ( - await this.ctx.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(block), - false, - ]) - ).baseFeePerGas - ); - }; - - it("shouldn't increase if the blocks are empty", async function () { - // the main reason for this test is that solidity-coverage sets the - // initial base fee per gas to 1, and hardhat_mine shouldn't mess - // with that - - const originalLatestBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(1), - ]); - - const blocksToMine = 20; - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(blocksToMine), - ]); - - for (let i = 1; i <= blocksToMine; i++) { - const blockBaseFeePerGas = await getBlockBaseFeePerGas( - originalLatestBlockNumber + i - ); - assert.equal(blockBaseFeePerGas, 1n); - } - }); - }); - - it("should mine transactions in the mempool", async function () { - // Arrange: put some transactions into the mempool and - // set the block gas limit so that only 3 txs are mined per block - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(21000 * 3), - ]); - for (let i = 0; i < 4; i++) { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - gas: numberToRpcQuantity(21000), - }, - ]); - } - - // Act: - const previousLatestBlockNumber = await getLatestBlockNumber(); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - - // Assert: - for (const expectation of [ - { block: previousLatestBlockNumber + 1, transactionCount: 3 }, - { block: previousLatestBlockNumber + 2, transactionCount: 1 }, - { block: previousLatestBlockNumber + 3, transactionCount: 0 }, - { block: previousLatestBlockNumber + 4, transactionCount: 0 }, - { - block: previousLatestBlockNumber + 1_000_000_000, - transactionCount: 0, - }, - ]) { - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(expectation.block), - false, - ]); - assert.isNotNull( - block, - `block ${expectation.block} should be defined` - ); - assert.isDefined( - block.transactions, - `block ${expectation.block} should have transactions` - ); - assert.equal( - expectation.transactionCount, - block.transactions.length, - `expected block ${expectation.block}'s transaction count to be ${expectation.transactionCount}, but it was ${block.transactions.length}` - ); - } - - // Assert: check that there weren't too many blocks mined - await assertBlockDoesntExist( - previousLatestBlockNumber + 1_000_000_000 + 1 - ); - }); - - it("should work when the mempool is not emptied after mining all blocks", async function () { - // Arrange: put some transactions into the mempool and - // set the block gas limit so that only 3 txs are mined per block - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setBlockGasLimit", [ - numberToRpcQuantity(21000 * 3), - ]); - for (let i = 0; i < 10; i++) { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - gas: numberToRpcQuantity(21000), - }, - ]); - } - - // Act: - const previousLatestBlockNumber = await getLatestBlockNumber(); - await this.provider.send("hardhat_mine", [numberToRpcQuantity(3)]); - - // Assert: - const latestBlockNumber = await getLatestBlockNumber(); - assert.equal(latestBlockNumber, previousLatestBlockNumber + 3); - - for (const expectation of [ - { block: previousLatestBlockNumber + 1, transactionCount: 3 }, - { block: previousLatestBlockNumber + 2, transactionCount: 3 }, - { block: previousLatestBlockNumber + 3, transactionCount: 3 }, - ]) { - const block = await this.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(expectation.block), - false, - ]); - assert.isNotNull( - block, - `block ${expectation.block} should be defined` - ); - assert.isDefined( - block.transactions, - `block ${expectation.block} should have transactions` - ); - assert.equal( - expectation.transactionCount, - block.transactions.length, - `expected block ${expectation.block}'s transaction count to be ${expectation.transactionCount}, but it was ${block.transactions.length}` - ); - } - - // Assert: check that there weren't too many blocks mined - await assertBlockDoesntExist( - previousLatestBlockNumber + 1_000_000_000 + 1 - ); - }); - - describe("shouldn't break hardhat_reset", function () { - const mineSomeTxBlocks = async (blockCount: number) => { - const originalLatestBlockNumber = await getLatestBlockNumber(); - for (let i = 1; i <= blockCount; i++) { - await this.ctx.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - } - assert.equal( - originalLatestBlockNumber + blockCount, - await getLatestBlockNumber(), - `we should have mined ${blockCount} blocks` - ); - }; - - const runHardhatMine = async (blockCount: number) => { - await this.ctx.provider.send("hardhat_mine", [ - numberToRpcQuantity(blockCount), - ]); - }; - - it("when doing hardhat_mine before hardhat_reset", async function () { - await runHardhatMine(1_000_000_000); - await this.provider.send("hardhat_reset"); - assert.equal(await getLatestBlockNumber(), 0); - await assertBlockDoesntExist(1); - await assertBlockDoesntExist(2); - await assertBlockDoesntExist(1_000_000_000); - await mineSomeTxBlocks(3); - assert.equal(await getLatestBlockNumber(), 3); - }); - - it("when doing hardhat_reset before hardhat_mine", async function () { - await mineSomeTxBlocks(3); - await this.provider.send("hardhat_reset"); - assert.equal(await getLatestBlockNumber(), 0); - await runHardhatMine(1_000_000_000); - assert.equal(await getLatestBlockNumber(), 1_000_000_000); - }); - }); - - describe("shouldn't break snapshots", function () { - it("when doing hardhat_mine before a snapshot", async function () { - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - - const latestBlockNumberBeforeSnapshot = - await getLatestBlockNumber(); - - const snapshotId = await this.provider.send("evm_snapshot"); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - - await this.provider.send("evm_revert", [snapshotId]); - - assert.equal( - await getLatestBlockNumber(), - latestBlockNumberBeforeSnapshot - ); - }); - - it("when doing hardhat_mine after a snapshot", async function () { - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - - const latestBlockNumberBeforeSnapshot = - await getLatestBlockNumber(); - - const snapshotId = await this.provider.send("evm_snapshot"); - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - assert.equal( - await getLatestBlockNumber(), - latestBlockNumberBeforeSnapshot + 1_000_000_000 - ); - - await this.provider.send("evm_revert", [snapshotId]); - - assert.equal( - await getLatestBlockNumber(), - latestBlockNumberBeforeSnapshot - ); - - for (const i of [ - 1, 2, 9, 10, 100, 500, 1000, 1_000_000, 999_999_999, - 1_000_000_000, 1_000_000_001, - ]) { - await assertBlockDoesntExist(latestBlockNumberBeforeSnapshot + i); - } - }); - - it("when doing _mine and then a regular tx and then a revert", async function () { - const latestBlockNumberBeforeSnapshot = - await getLatestBlockNumber(); - - const snapshotId = await this.provider.send("evm_snapshot"); - - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - assert.equal( - await getLatestBlockNumber(), - latestBlockNumberBeforeSnapshot + 1_000_000_000 - ); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - }, - ]); - - await this.provider.send("evm_revert", [snapshotId]); - - assert.equal( - await getLatestBlockNumber(), - latestBlockNumberBeforeSnapshot - ); - - for (const i of [ - 1, 2, 9, 10, 100, 500, 1000, 1_000_000, 999_999_999, - 1_000_000_000, 1_000_000_001, - ]) { - await assertBlockDoesntExist(latestBlockNumberBeforeSnapshot + i); - } - }); - - it("when doing _mine twice", async function () { - const latestBlockNumberBeforeSnapshot = - await getLatestBlockNumber(); - const snapshotId = await this.provider.send("evm_snapshot"); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - await this.provider.send("hardhat_mine", [ - numberToRpcQuantity(1_000_000_000), - ]); - await this.provider.send("evm_revert", [snapshotId]); - - for (const i of [ - 1, 2, 9, 10, 100, 500, 1000, 1_000_000, 999_999_999, - 1_000_000_000, 1_000_000_001, - ]) { - await assertBlockDoesntExist(latestBlockNumberBeforeSnapshot + i); - } - }); - }); - - describe("difficulty and totalDifficulty", function () { - const getBlockDifficulty = async (blockNumber: number) => { - const block = await this.ctx.provider.send("eth_getBlockByNumber", [ - numberToRpcQuantity(blockNumber), - false, - ]); - - return { - difficulty: rpcQuantityToBigInt(block.difficulty), - totalDifficulty: rpcQuantityToBigInt(block.totalDifficulty), - }; - }; - - it("reserved blocks should have a difficulty of 0", async function () { - const previousBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_mine", [numberToRpcQuantity(20)]); - - // we get a block from the middle of the reservation to - // be sure that it's a reserved block - const middleBlockDifficulty = await getBlockDifficulty( - previousBlockNumber + 10 - ); - - assert.equal(middleBlockDifficulty.difficulty, 0n); - }); - - it("reserved blocks should have consistent difficulty values", async function () { - const previousBlockNumber = await getLatestBlockNumber(); - - await this.provider.send("hardhat_mine", [numberToRpcQuantity(20)]); - - let previousBlockDifficulty = await getBlockDifficulty( - previousBlockNumber - ); - - for (let i = 1; i <= 20; i++) { - const blockDifficulty = await getBlockDifficulty( - previousBlockNumber + i - ); - - assert.equal( - blockDifficulty.totalDifficulty, - previousBlockDifficulty.totalDifficulty + - blockDifficulty.difficulty - ); - - previousBlockDifficulty = blockDifficulty; - } - }); - }); - }); - - describe("hardhat_reset", function () { - before(function () { - if (ALCHEMY_URL === undefined) { - this.skip(); - } - }); - - it("validates input parameters", async function () { - await assertInvalidArgumentsError(this.provider, "hardhat_reset", [ - { forking: {} }, - ]); - - await assertInvalidArgumentsError(this.provider, "hardhat_reset", [ - { - forking: { - jsonRpcUrl: 123, - }, - }, - ]); - - await assertInvalidArgumentsError(this.provider, "hardhat_reset", [ - { - forking: { - blockNumber: 0, - }, - }, - ]); - - await assertInvalidArgumentsError(this.provider, "hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: "0", - }, - }, - ]); - }); - - it("returns true", async function () { - const result = await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - assert.isTrue(result); - }); - - it("hardhat_reset resets tx pool", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: "0x1111111111111111111111111111111111111111", - nonce: numberToRpcQuantity(0), - }, - ]); - - const pendingTxsBefore = await this.provider.send( - "eth_pendingTransactions" - ); - - const result = await this.provider.send("hardhat_reset"); - - const pendingTxsAfter = await this.provider.send( - "eth_pendingTransactions" - ); - - assert.isTrue(result); - assert.lengthOf(pendingTxsBefore, 1); - assert.lengthOf(pendingTxsAfter, 0); - }); - - // TODO: https://github.com/NomicFoundation/edr/issues/249 - describe.skip("tests using sinon", () => { - let sinonClock: sinon.SinonFakeTimers; - - beforeEach(() => { - sinonClock = sinon.useFakeTimers({ - now: Date.now(), - toFake: ["Date", "setTimeout", "clearTimeout"], - }); - }); - - afterEach(async function () { - await this.provider.send("evm_setIntervalMining", [0]); - sinonClock.restore(); - }); - - it("resets interval mining", async function () { - const interval = 15_000; - - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("evm_setIntervalMining", [interval]); - - const firstBlockBefore = await getLatestBlockNumber(); - - await sinonClock.tickAsync(interval); - - const secondBlockBefore = await getLatestBlockNumber(); - assert.equal(secondBlockBefore, firstBlockBefore + 1); - - const result = await this.provider.send("hardhat_reset"); - assert.isTrue(result); - - const firstBlockAfter = await getLatestBlockNumber(); - - await sinonClock.tickAsync(interval); - - const secondBlockAfter = await getLatestBlockNumber(); - assert.equal(secondBlockAfter, firstBlockAfter); - }); - }); - - if (isFork) { - testForkedProviderBehaviour(); - } else { - testNormalProviderBehaviour(); - } - - const getLatestBlockNumber = async () => { - return rpcQuantityToNumber( - await this.ctx.provider.send("eth_blockNumber") - ); - }; - - function testForkedProviderBehaviour() { - it("can reset the forked provider to a given forkBlockNumber", async function () { - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - assert.equal(await getLatestBlockNumber(), safeBlockInThePast); - }); - - it("can reset the forked provider to the latest block number", async function () { - const initialBlock = await getLatestBlockNumber(); - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - await this.provider.send("hardhat_reset", [ - { forking: { jsonRpcUrl: ALCHEMY_URL } }, - ]); - - // This condition is rather loose as Infura can sometimes return - // a smaller block number on subsequent eth_blockNumber call - const latestBlockNumber = await getLatestBlockNumber(); - assert.isTrue(latestBlockNumber >= initialBlock - 4); - }); - - it("can reset the forked provider to a normal provider", async function () { - await this.provider.send("hardhat_reset", []); - assert.equal(await getLatestBlockNumber(), 0); - - await this.provider.send("hardhat_reset", [{}]); - assert.equal(await getLatestBlockNumber(), 0); - }); - } - - function testNormalProviderBehaviour() { - it("can reset the provider to initial state", async function () { - await this.provider.send("evm_mine"); - assert.equal(await getLatestBlockNumber(), 1); - await this.provider.send("hardhat_reset", []); - assert.equal(await getLatestBlockNumber(), 0); - }); - - it("can reset the provider with a fork config", async function () { - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - assert.equal(await getLatestBlockNumber(), safeBlockInThePast); - }); - - it("can reset the provider with fork config back to normal config", async function () { - await this.provider.send("hardhat_reset", [ - { - forking: { - jsonRpcUrl: ALCHEMY_URL, - blockNumber: safeBlockInThePast, - }, - }, - ]); - await this.provider.send("hardhat_reset", []); - assert.equal(await getLatestBlockNumber(), 0); - }); - } - }); - - describe("hardhat_setBalance", function () { - it("should reject an invalid address", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setBalance", - ["0x1234", "0x0"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 0: " - }Invalid value "0x1234" supplied to : ADDRESS` - ); - }); - - it("should reject a non-numeric balance", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setBalance", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "xyz"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 1: " - }Invalid value "xyz" supplied to : QUANTITY` - ); - }); - - it("should not reject valid argument types", async function () { - await this.provider.send("hardhat_setBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - "0x0", - ]); - }); - - it("should result in a modified balance", async function () { - // Arrange: Capture existing balance - const existingBalance = rpcQuantityToBigInt( - await this.provider.send("eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - ]) - ); - - // Act: Set the new balance. - const targetBalance = (existingBalance + 1n) * 2n; - // For sanity, ensure that we really are making a change: - assert.notEqual(targetBalance, existingBalance); - await this.provider.send("hardhat_setBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(targetBalance), - ]); - - // Assert: Ensure the new balance was set. - const newBalance = rpcQuantityToBigInt( - await this.provider.send("eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - ]) - ); - assert(targetBalance === newBalance); - }); - - it("should not result in a modified state root", async function () { - // Arrange 1: Send a transaction, in order to ensure a pre-existing - // state root. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Arrange 2: Capture the existing state root. - const oldStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - - // Act: Set the new balance. - await this.provider.send("hardhat_setBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(99), - ]); - - // Assert: Ensure state root hasn't changed. - const newStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - assert.equal(newStateRoot, oldStateRoot); - }); - - it("should get changed balance by block even after a new block is mined", async function () { - // Arrange 1: Get current block number - const currentBlockNumber = await this.provider.send( - "eth_blockNumber" - ); - - // Arrange 2: Set a new balance - const targetBalance = 123454321n; - const targetBalanceHex = numberToRpcQuantity(targetBalance); - await this.provider.send("hardhat_setBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - targetBalanceHex, - ]); - - // Arrange 3: Mine a block - await this.provider.send("evm_mine"); - - // Act: Get the balance of the account in the previous block - const balancePreviousBlock = await this.provider.send( - "eth_getBalance", - [DEFAULT_ACCOUNTS_ADDRESSES[0], currentBlockNumber] - ); - - // Assert: Check that the balance is the one we set - assert.equal(balancePreviousBlock, targetBalanceHex); - }); - - it("should fund an account and permit that account to send a transaction", async function () { - // Arrange: Fund a not-yet-existing account. - const notYetExistingAccount = - "0x1234567890123456789012345678901234567890"; - const amountToBeSent = 10n; - /* 21k gwei in wei * pending base fee */ - const cost = - 21_000_000_000_000n * - (await getPendingBaseFeePerGas(this.provider)); - const balanceRequired = amountToBeSent + cost; - await this.provider.send("hardhat_setBalance", [ - notYetExistingAccount, - numberToRpcQuantity(balanceRequired), - ]); - - // Arrange: Capture the existing balance of the destination account. - const existingBalance = rpcQuantityToBigInt( - await this.provider.send("eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - ]) - ); - - // Act: Send a transaction from the newly-funded account. - await this.provider.send("hardhat_impersonateAccount", [ - notYetExistingAccount, - ]); - await this.provider.send("eth_sendTransaction", [ - { - from: notYetExistingAccount, - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - value: numberToRpcQuantity(amountToBeSent), - }, - ]); - await this.provider.send("hardhat_stopImpersonatingAccount", [ - notYetExistingAccount, - ]); - - // Assert: ensure the destination address is increased as expected. - const newBalance = rpcQuantityToBigInt( - await this.provider.send("eth_getBalance", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - ]) - ); - - assert.equal(newBalance, existingBalance + amountToBeSent); - }); - - it("should have its effects persist across snapshot save/restore", async function () { - const a = DEFAULT_ACCOUNTS_ADDRESSES[0]; - const currentBlockNumber = await this.provider.send( - "eth_blockNumber" - ); - - // set balance1 - const targetBalance1 = numberToRpcQuantity(1); - await this.provider.send("hardhat_setBalance", [a, targetBalance1]); - - // snapshot after balance1 - const snapshotId = await this.provider.send("evm_snapshot"); - - // set balance 2 - const targetBalance2 = numberToRpcQuantity(2); - await this.provider.send("hardhat_setBalance", [a, targetBalance2]); - - // check that previous block has balance 2 - await this.provider.send("evm_mine"); - const balancePreviousBlock = await this.provider.send( - "eth_getBalance", - [a, currentBlockNumber] - ); - assert.strictEqual(balancePreviousBlock, targetBalance2); - - // revert snapshot - await this.provider.send("evm_revert", [snapshotId]); - - // repeat previous check with balance 1 now - await this.provider.send("evm_mine"); - const balancePreviousBlockAfterRevert = await this.provider.send( - "eth_getBalance", - [a, currentBlockNumber] - ); - assert.strictEqual(balancePreviousBlockAfterRevert, targetBalance1); - }); - - it("should work with accounts that weren't interacted with before", async function () { - const targetAddress = randomAddressString(); - await this.provider.send("hardhat_setBalance", [ - targetAddress, - numberToRpcQuantity(123), - ]); - - const resultingBalance = await this.provider.send("eth_getBalance", [ - targetAddress, - "latest", - ]); - - assert.equal(BigInt(resultingBalance), 123n); - }); - }); - - describe("hardhat_setCode", function () { - let contractNine: CompilerOutputContract; - let abiEncoder: ethers.Interface; - before(async function () { - [ - , - { - contracts: { - ["literal.sol"]: { Nine: contractNine }, - }, - }, - ] = await compileLiteral(` - contract Nine { - function returnNine() public pure returns (int) { return 9; } - } - `); - abiEncoder = new ethers.Interface(contractNine.abi); - }); - - it("should reject an invalid address", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setCode", - ["0x1234", "0x0"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 0: " - }Invalid value "0x1234" supplied to : ADDRESS` - ); - }); - - it("should reject an invalid data argument", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setCode", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "xyz"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 1: " - }Invalid value "xyz" supplied to : DATA` - ); - }); - - it("should not reject valid argument types", async function () { - await this.provider.send("hardhat_setCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - "0xff", - ]); - }); - - it("should result in modified code", async function () { - const targetCode = "0x0123456789abcdef"; - await this.provider.send("hardhat_setCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - targetCode, - ]); - - const actualCode = await this.provider.send("eth_getCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - "latest", - ]); - - assert.equal(actualCode, targetCode); - }); - - it("should, when setting code on an empty account, result in code that can actually be executed", async function () { - const notYetExistingAccount = - "0x1234567890123456789012345678901234567890"; - - await this.provider.send("hardhat_setCode", [ - notYetExistingAccount, - `0x${contractNine.evm.deployedBytecode.object}`, - ]); - - assert.equal( - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: notYetExistingAccount, - data: abiEncoder.encodeFunctionData("returnNine", []), - }, - "latest", - ]), - abiEncoder.encodeFunctionResult("returnNine", [9]) - ); - }); - - it("should, when setting code on an existing EOA, result in code that can actually be executed", async function () { - await this.provider.send("hardhat_setCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - `0x${contractNine.evm.deployedBytecode.object}`, - ]); - - assert.equal( - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: abiEncoder.encodeFunctionData("returnNine", []), - }, - "latest", - ]), - abiEncoder.encodeFunctionResult("returnNine", [9]) - ); - }); - - it("should, when setting code on an existing contract account, result in code that can actually be executed", async function () { - // Arrange: Deploy a contract that always returns 10. - const [ - , - { - contracts: { - ["literal.sol"]: { Ten: contractTen }, - }, - }, - ] = await compileLiteral(` - contract Ten { - function returnTen() public pure returns (int) { return 10; } - } - `); - const contractTenAddress = await deployContract( - this.provider, - `0x${contractTen.evm.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - // Act: Replace the code at that address to always return 9. - await this.provider.send("hardhat_setCode", [ - contractTenAddress, - `0x${contractNine.evm.deployedBytecode.object}`, - ]); - - // Assert: Verify the call to get 9. - assert.equal( - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractTenAddress, - data: abiEncoder.encodeFunctionData("returnNine", []), - }, - "latest", - ]), - abiEncoder.encodeFunctionResult("returnNine", [9]) - ); - }); - - it("should get changed code by block even after a new block is mined", async function () { - // Arrange 1: Get current block number - const currentBlockNumber = await this.provider.send( - "eth_blockNumber" - ); - - // Act 1: Set code on an account. - const code = `0x${contractNine.evm.deployedBytecode.object}`; - await this.provider.send("hardhat_setCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - code, - ]); - - // Act 2: Mine a block - await this.provider.send("evm_mine"); - - // Assert: Ensure code is still there. - assert.equal( - await this.provider.send("eth_getCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - currentBlockNumber, - ]), - code - ); - }); - - it("should not result in a modified state root", async function () { - // Arrange 1: Send a transaction, in order to ensure a pre-existing - // state root. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Arrange 2: Capture the existing state root. - const oldStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - - // Act: Set the new code. - await this.provider.send("hardhat_setCode", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - "0x0123456789abcdef", - ]); - - // Assert: Ensure state root hasn't changed. - const newStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - assert.equal(newStateRoot, oldStateRoot); - }); - - it("modifying an account's code shouldn't affect another account with the same code", async function () { - // deploy two contracts with the same bytecode - const contractAddress1 = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - const contractAddress2 = await deployContract( - this.provider, - `0x${EXAMPLE_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - await assertEqualCode( - this.provider, - contractAddress1, - contractAddress2 - ); - const contractCode1Before = await this.provider.send("eth_getCode", [ - contractAddress1, - ]); - - // modify the code of the second one - await this.provider.send("hardhat_setCode", [ - contractAddress2, - "0xff", - ]); - - // check that only the second one was affected - const contractCode1 = await this.provider.send("eth_getCode", [ - contractAddress1, - ]); - assert.notEqual(contractCode1.toLowerCase(), "0xff"); - assert.equal( - contractCode1.toLowerCase(), - contractCode1Before.toLowerCase() - ); - - const contractCode2 = await this.provider.send("eth_getCode", [ - contractAddress2, - ]); - assert.equal(contractCode2.toLowerCase(), "0xff"); - }); - - it("should work with accounts that weren't interacted with before", async function () { - const targetAddress = randomAddressString(); - const targetCode = "0x0123456789abcdef"; - await this.provider.send("hardhat_setCode", [ - targetAddress, - targetCode, - ]); - - const actualCode = await this.provider.send("eth_getCode", [ - targetAddress, - "latest", - ]); - - assert.equal(actualCode, targetCode); - }); - }); - - describe("hardhat_setNonce", function () { - it("should reject an invalid address", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setNonce", - ["0x1234", "0x0"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 0: " - }Invalid value "0x1234" supplied to : ADDRESS` - ); - }); - - it("should reject a non-numeric nonce", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setNonce", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "xyz"], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 1: " - }Invalid value "xyz" supplied to : QUANTITY` - ); - }); - - it("should not reject valid argument types", async function () { - await this.provider.send("hardhat_setNonce", [ - DEFAULT_ACCOUNTS_ADDRESSES[1], - "0x0", - ]); - }); - - it("should throw an InvalidInputError if new nonce is smaller than the current nonce", async function () { - // Arrange: Send a transaction, in order to ensure a non-zero nonce. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[0], - value: "0x100", - }, - ]); - - // Act & Assert: Ensure that a zero nonce now triggers the error. - await assertInvalidInputError( - this.provider, - "hardhat_setNonce", - [DEFAULT_ACCOUNTS_ADDRESSES[1], "0x0"], - "New nonce (0) must not be smaller than the existing nonce (1)" - ); - }); - - it("should result in a modified nonce", async function () { - // Arrange: Send a transaction, in order to ensure a non-zero nonce. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Act: Set the new nonce. - const targetNonce = 99; - await this.provider.send("hardhat_setNonce", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(targetNonce), - ]); - - // Assert: Ensure nonce got set. - const resultingNonce = await this.provider.send( - "eth_getTransactionCount", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "latest"] - ); - assert.equal(resultingNonce, targetNonce); - }); - - it("should not result in a modified state root", async function () { - // Arrange 1: Send a transaction, in order to ensure a non-zero nonce. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Arrange 2: Capture the existing state root. - const oldStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - - // Act: Set the new nonce. - await this.provider.send("hardhat_setNonce", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(99), - ]); - - // Assert: Ensure state root hasn't changed. - const newStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - assert.equal(newStateRoot, oldStateRoot); - }); - - it("should not break a subsequent transaction", async function () { - // Arrange: Send a transaction, in order to ensure a non-zero nonce. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Act: Set the new nonce and execute a transaction. - - const targetNonce = 99; - await this.provider.send("hardhat_setNonce", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(targetNonce), - ]); - - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Assert: The executed transaction should reflects the nonce we set. - assert.equal( - (await this.provider.send("eth_getTransactionByHash", [txHash])) - .nonce, - targetNonce - ); - }); - - it("should get changed nonce by block even after a new block is mined", async function () { - // Arrange 1: Send a transaction, in order to ensure a non-zero nonce. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Arrange 2: Get current block number. - const currentBlockNumber = await this.provider.send( - "eth_blockNumber" - ); - - // Act 1: Set the new nonce. - const targetNonce = 99; - await this.provider.send("hardhat_setNonce", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(targetNonce), - ]); - - // Act 2: Mine a block - await this.provider.send("evm_mine"); - - // Assert: Ensure modified nonce has persisted. - const resultingNonce = await this.provider.send( - "eth_getTransactionCount", - [DEFAULT_ACCOUNTS_ADDRESSES[0], currentBlockNumber] - ); - assert.equal(resultingNonce, targetNonce); - }); - - it("should throw when there are pending transactions", async function () { - await this.provider.send("evm_setAutomine", [false]); - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - }, - ]); - - await assertInternalError( - this.provider, - "hardhat_setNonce", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "0xff"], - "Cannot set account nonce when the transaction pool is not empty" - ); - }); - - it("should work with accounts that weren't interacted with before", async function () { - const targetAddress = randomAddressString(); - await this.provider.send("hardhat_setNonce", [ - targetAddress, - numberToRpcQuantity(123), - ]); - - const resultingNonce = await this.provider.send( - "eth_getTransactionCount", - [targetAddress, "latest"] - ); - - assert.equal(BigInt(resultingNonce), 123n); - }); - }); - - describe("hardhat_setStorageAt", function () { - it("should reject an invalid address", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setStorageAt", - ["0x1234", numberToRpcQuantity(0), numberToRpcQuantity(99)], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 0: " - }Invalid value "0x1234" supplied to : ADDRESS` - ); - }); - - it("should reject storage key that is non-numeric", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setStorageAt", - [DEFAULT_ACCOUNTS_ADDRESSES[0], "xyz", numberToRpcQuantity(99)], - // TODO: https://github.com/NomicFoundation/edr/issues/104 - `${ - this.isEdr ? "" : "Errors encountered in param 1: " - }Invalid value "xyz" supplied to : QUANTITY` - ); - }); - - it("should reject a storage key that is greater than 32 bytes", async function () { - const MAX_WORD_VALUE = 2n ** 256n; - await assertInvalidInputError( - this.provider, - "hardhat_setStorageAt", - [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(MAX_WORD_VALUE + 1n), - "0xff", - ], - `Storage key must not be greater than or equal to 2^256. Received 0x10000000000000000000000000000000000000000000000000000000000000001.` - ); - }); - - for (const badInputLength of [1, 2, 31, 33, 64]) { - it(`should reject a value that is ${badInputLength} (not exactly 32) bytes long`, async function () { - await assertInvalidInputError( - this.provider, - "hardhat_setStorageAt", - [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(0), - `0x${"ff".repeat(badInputLength)}`, - ], - `Storage value must be exactly 32 bytes long. Received 0x${"ff".repeat( - badInputLength - )}, which is ${badInputLength} bytes long.` - ); - }); - } - - it("should not reject valid argument types", async function () { - await this.provider.send("hardhat_setStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(0), - `0x${"ff".repeat(32)}`, - ]); - }); - - it("should result in modified storage", async function () { - const targetStorageValue = 99; - await this.provider.send("hardhat_setStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(0), - `0x${BigIntUtils.toEvmWord(targetStorageValue)}`, - ]); - - const resultingStorageValue = await this.provider.send( - "eth_getStorageAt", - [DEFAULT_ACCOUNTS_ADDRESSES[0], numberToRpcStorageSlot(0), "latest"] - ); - - assert.equal(resultingStorageValue, targetStorageValue); - }); - - it("should permit a contract call to read an updated storage value", async function () { - // Arrange: Deploy a contract that can get and set storage. - const [ - , - { - contracts: { - ["literal.sol"]: { Storage: storageContract }, - }, - }, - ] = await compileLiteral( - `contract Storage { - function getValue(uint256 position) public view returns (uint256 result) { - assembly { result := sload(position) } - } - }` - ); - const contractAddress = await deployContract( - this.provider, - `0x${storageContract.evm.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - // Act: Modify the value in the existing storage position. - await this.provider.send("hardhat_setStorageAt", [ - contractAddress, - numberToRpcQuantity(0), - `0x${BigIntUtils.toEvmWord(10n)}`, - ]); - - // Assert: Verify that the contract retrieves the modified value. - const abiEncoder = new ethers.Interface(storageContract.abi); - assert.equal( - await this.provider.send("eth_call", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress, - data: abiEncoder.encodeFunctionData("getValue", [0]), - }, - "latest", - ]), - abiEncoder.encodeFunctionResult("getValue", [10]) - ); - }); - - it("should not result in a modified state root", async function () { - // Arrange 1: Send a transaction, in order to ensure a pre-existing - // state root. - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - value: "0x100", - }, - ]); - - // Arrange 2: Capture the existing state root. - const oldStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - - // Act: Set the new storage value. - await this.provider.send("hardhat_setStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(0), - `0x${"ff".repeat(32)}`, - ]); - - // Assert: Ensure state root hasn't changed. - const newStateRoot = ( - await this.provider.send("eth_getBlockByNumber", ["latest", false]) - ).stateRoot; - assert.equal(newStateRoot, oldStateRoot); - }); - - it("should have the storage modification persist even after a new block is mined", async function () { - // Arrange 1: Get current block number. - const currentBlockNumber = await this.provider.send( - "eth_blockNumber" - ); - - // Act 1: Modify storage - const targetStorageValue = 99; - await this.provider.send("hardhat_setStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcQuantity(0), - `0x${BigIntUtils.toEvmWord(targetStorageValue)}`, - ]); - - // Act 2: Mine a block - await this.provider.send("evm_mine"); - - // Assert: Get storage by block - assert.equal( - await this.provider.send("eth_getStorageAt", [ - DEFAULT_ACCOUNTS_ADDRESSES[0], - numberToRpcStorageSlot(0), - currentBlockNumber, - ]), - targetStorageValue - ); - }); - - it("should work with accounts that weren't interacted with before", async function () { - const targetAddress = randomAddressString(); - const targetStorageValue = 99; - await this.provider.send("hardhat_setStorageAt", [ - targetAddress, - numberToRpcQuantity(0), - `0x${BigIntUtils.toEvmWord(targetStorageValue)}`, - ]); - - const resultingStorageValue = await this.provider.send( - "eth_getStorageAt", - [targetAddress, numberToRpcStorageSlot(0), "latest"] - ); - - assert.equal(resultingStorageValue, targetStorageValue); - }); - - it("should work with contracts when forking", async function () { - if (!isFork) { - this.skip(); - return; - } - - // USDT address - const address = "0xdac17f958d2ee523a2206206994597c13d831ec7"; - - const totalSupplyBefore = rpcDataToBigInt( - await this.provider.send("eth_call", [ - { - to: address, - data: "0x18160ddd", // totalSupply() - }, - ]) - ); - - // this will pass as long as the total supply of USDT is not exactly 42 - assert.notEqual(totalSupplyBefore, 42n); - - // total supply is in storage slot 1, set it to 42 - await this.provider.send("hardhat_setStorageAt", [ - address, - "0x1", - "0x000000000000000000000000000000000000000000000000000000000000002A", - ]); - - const totalSupplyAfter = rpcDataToBigInt( - await this.provider.send("eth_call", [ - { - to: address, - data: "0x18160ddd", // totalSupply() - }, - ]) - ); - - assert.equal(totalSupplyAfter, 42n); - }); - }); - - describe("hardhat_dropTransaction", function () { - it("should remove pending transactions", async function () { - await this.provider.send("evm_setAutomine", [false]); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - }, - ]); - - const result = await this.provider.send("hardhat_dropTransaction", [ - txHash, - ]); - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.isNull(tx); - assert.isTrue(result); - }); - - it("should remove queued transactions", async function () { - await this.provider.send("evm_setAutomine", [false]); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - nonce: numberToRpcQuantity(1), - }, - ]); - - const result = await this.provider.send("hardhat_dropTransaction", [ - txHash, - ]); - - const tx = await this.provider.send("eth_getTransactionByHash", [ - txHash, - ]); - - assert.isNull(tx); - assert.isTrue(result); - }); - - it("should rearrange transactions after removing one", async function () { - await this.provider.send("evm_setAutomine", [false]); - - // send 3 txs - const txHash1 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - }, - ]); - const txHash2 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - }, - ]); - const txHash3 = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - }, - ]); - - // drop second transaction - const result = await this.provider.send("hardhat_dropTransaction", [ - txHash2, - ]); - assert.isTrue(result); - - // mine block; it should have only the first tx - await this.provider.send("evm_mine"); - const block = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.deepEqual(block.transactions, [txHash1]); - - // the first and third tx should exist - const tx1 = await this.provider.send("eth_getTransactionByHash", [ - txHash1, - ]); - const tx2 = await this.provider.send("eth_getTransactionByHash", [ - txHash2, - ]); - const tx3 = await this.provider.send("eth_getTransactionByHash", [ - txHash3, - ]); - - assert.isNotNull(tx1); - assert.isNull(tx2); - assert.isNotNull(tx3); - }); - - it("should return false if a tx doesn't exist", async function () { - const nonExistentTxHash = - "0xa4b46baa47145cb30af1ceed6172604aed4d8a27f66077cad951113bebb9513d"; - const result = await this.provider.send("hardhat_dropTransaction", [ - nonExistentTxHash, - ]); - - assert.isFalse(result); - }); - - it("should return false when called a second time", async function () { - await this.provider.send("evm_setAutomine", [false]); - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - gas: numberToRpcQuantity(21_000), - }, - ]); - - const firstResult = await this.provider.send( - "hardhat_dropTransaction", - [txHash] - ); - assert.isTrue(firstResult); - const secondResult = await this.provider.send( - "hardhat_dropTransaction", - [txHash] - ); - assert.isFalse(secondResult); - }); - - it("should throw if the tx was already mined", async function () { - const txHash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: DEFAULT_ACCOUNTS_ADDRESSES[2], - }, - ]); - - await assertInvalidArgumentsError( - this.provider, - "hardhat_dropTransaction", - [txHash] - ); - }); - }); - - describe("hardhat_setMinGasPrice", () => { - describe("When EIP-1559 is not active", function () { - useProvider({ hardfork: "berlin" }); - - describe("When automine is disabled", function () { - it("makes txs below the new min gas price not minable", async function () { - await this.provider.send("evm_setAutomine", [false]); - - const tx1Hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(21_000), - gasPrice: numberToRpcQuantity(10), - }, - ]); - const tx2Hash = await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: EMPTY_ACCOUNT_ADDRESS.toString(), - gas: numberToRpcQuantity(21_000), - gasPrice: numberToRpcQuantity(20), - }, - ]); - - await this.provider.send("hardhat_setMinGasPrice", [ - numberToRpcQuantity(15), - ]); - - // check the two txs are pending - const pendingTransactionsBefore = await this.provider.send( - "eth_pendingTransactions" - ); - assert.sameMembers( - pendingTransactionsBefore.map((x: any) => x.hash), - [tx1Hash, tx2Hash] - ); - - // check only the second one is mined - await this.provider.send("evm_mine"); - const latestBlock = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - assert.sameMembers(latestBlock.transactions, [tx2Hash]); - - // check the first tx is still pending - const pendingTransactionsAfter = await this.provider.send( - "eth_pendingTransactions" - ); - assert.sameMembers( - pendingTransactionsAfter.map((x: any) => x.hash), - [tx1Hash] - ); - }); - }); - - describe("When automine is enabled", function () { - it("Should make txs below the min gas price fail", async function () { - await this.provider.send("hardhat_setMinGasPrice", [ - numberToRpcQuantity(20), - ]); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - gasPrice: numberToRpcQuantity(10), - }, - ], - "Transaction gas price is 10, which is below the minimum of 20" - ); - }); - }); - }); - - for (const hardfork of ["london", "arrowGlacier"]) { - describe(`When EIP-1559 is active (${hardfork})`, function () { - useProvider({ hardfork }); - - it("Should be disabled", async function () { - await assertInvalidInputError( - this.provider, - "hardhat_setMinGasPrice", - [numberToRpcQuantity(1)], - "hardhat_setMinGasPrice is not supported when EIP-1559 is active" - ); - }); - }); - } - }); - - describe("hardhat_setNextBlockBaseFeePerGas", function () { - it("Should set the baseFee of a single block", async function () { - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(10), - ]); - - await this.provider.send("evm_mine", []); - - const block1: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.equal(block1.baseFeePerGas, numberToRpcQuantity(10)); - - await this.provider.send("evm_mine", []); - - const block2: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.notEqual(block2.baseFeePerGas, numberToRpcQuantity(10)); - }); - - describe("When automine is enabled", function () { - it("Should prevent you from sending transactions with lower maxFeePerGas or gasPrice", async function () { - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(10), - ]); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - gasPrice: numberToRpcQuantity(9), - }, - ], - "Transaction gasPrice (9) is too low for the next block, which has a baseFeePerGas of 10" - ); - - await assertInvalidInputError( - this.provider, - "eth_sendTransaction", - [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - maxFeePerGas: numberToRpcQuantity(8), - }, - ], - "Transaction maxFeePerGas (8) is too low for the next block, which has a baseFeePerGas of 10" - ); - }); - }); - - describe("When automine is disabled", function () { - it("Should let you send transactions with lower maxFeePerGas or gasPrice, but not mine them", async function () { - await this.provider.send("hardhat_setNextBlockBaseFeePerGas", [ - numberToRpcQuantity(10), - ]); - - await this.provider.send("evm_setAutomine", [false]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - gasPrice: numberToRpcQuantity(9), - }, - ]); - - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: DEFAULT_ACCOUNTS_ADDRESSES[1], - maxFeePerGas: numberToRpcQuantity(8), - }, - ]); - - await this.provider.send("evm_mine", []); - - const block: RpcBlockOutput = await this.provider.send( - "eth_getBlockByNumber", - ["latest", false] - ); - - assert.lengthOf(block.transactions, 0); - }); - }); - - describe("When EIP-1559 is not active", function () { - useProvider({ hardfork: "berlin" }); - it("should be disabled", async function () { - await assertInvalidInputError( - this.provider, - "hardhat_setNextBlockBaseFeePerGas", - [numberToRpcQuantity(8)], - "hardhat_setNextBlockBaseFeePerGas is disabled because EIP-1559 is not active" - ); - }); - }); - }); - - describe("hardhat_setCoinbase", function () { - const cb1 = "0x1234567890123456789012345678901234567890"; - const cb2 = "0x0987654321098765432109876543210987654321"; - - it("should set the coinbase for the new blocks", async function () { - await this.provider.send("hardhat_setCoinbase", [cb1]); - await this.provider.send("evm_mine", []); - const block1 = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.equal(block1.miner, cb1); - - await this.provider.send("hardhat_setCoinbase", [cb2]); - - await this.provider.send("evm_mine", []); - const block2 = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.equal(block2.miner, cb2); - - await this.provider.send("evm_mine", []); - const block3 = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.equal(block3.miner, cb2); - }); - - it("should be preserved in snapshots", async function () { - await this.provider.send("hardhat_setCoinbase", [cb1]); - - const snapshot = await this.provider.send("evm_snapshot"); - - await this.provider.send("hardhat_setCoinbase", [cb2]); - - await this.provider.send("evm_mine", []); - const block1 = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.equal(block1.miner, cb2); - - await this.provider.send("evm_revert", [snapshot]); - - await this.provider.send("evm_mine", []); - const block1Again = await this.provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - assert.equal(block1Again.miner, cb1); - }); - - it("should affect eth_coinbase", async function () { - await this.provider.send("hardhat_setCoinbase", [cb1]); - assert.equal(await this.provider.send("eth_coinbase"), cb1); - - await this.provider.send("hardhat_setCoinbase", [cb2]); - assert.equal(await this.provider.send("eth_coinbase"), cb2); - }); - }); - - describe("hardhat_setPrevRandao", function () { - async function assertPrevRandao( - provider: any, - expectedPrevRandao: string - ) { - const latestBlock = await provider.send("eth_getBlockByNumber", [ - "latest", - false, - ]); - - assert.equal(latestBlock.mixHash, expectedPrevRandao); - } - - describe("in hardforks before the merge", function () { - useProvider({ hardfork: "london" }); - - it("should throw", async function () { - await assertInvalidInputError( - this.provider, - "hardhat_setPrevRandao", - [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ], - "hardhat_setPrevRandao is only available in post-merge hardforks" - ); - }); - }); - - describe("in hardforks after the merge", function () { - useProvider({ hardfork: "merge" }); - - it("should set a value and get it in the next block header", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0x1234567812345678123456781234567812345678123456781234567812345678" - ); - }); - - it("should set a value and get it in the next block execution", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0x0000000000000000000000000000000000000000000000000000000000000017", - ]); - - const contractAddress = await deployContract( - this.provider, - `0x${EXAMPLE_DIFFICULTY_CONTRACT.bytecode.object}` - ); - - const difficultyHex = await this.provider.send("eth_call", [ - { - to: contractAddress, - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - data: `${EXAMPLE_DIFFICULTY_CONTRACT.selectors.difficulty}`, - }, - ]); - - const difficulty = BigInt(difficultyHex); - - assert.equal(difficulty, 0x17n); - }); - - it("should accept zero as a value", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0x0000000000000000000000000000000000000000000000000000000000000000", - ]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0x0000000000000000000000000000000000000000000000000000000000000000" - ); - }); - - it("should accept 0xfff...fff as a value", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - ]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ); - }); - - it("should work with snapshots", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ]); - - const snapshotId = await this.provider.send("evm_snapshot"); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0x1234567812345678123456781234567812345678123456781234567812345678" - ); - - await this.provider.send("evm_revert", [snapshotId]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0x1234567812345678123456781234567812345678123456781234567812345678" - ); - }); - - it("should be used as the preimage of the following block", async function () { - await this.provider.send("hardhat_setPrevRandao", [ - "0x1234567812345678123456781234567812345678123456781234567812345678", - ]); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - await assertPrevRandao( - this.provider, - "0x1234567812345678123456781234567812345678123456781234567812345678" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - // keccak of 0x12345671234... - await assertPrevRandao( - this.provider, - "0x3d6b7104c741bf23615b1bb00e067e9ef51c8ba2ab40042ee05086c14870f17c" - ); - }); - - it("should reject values with less than 32 bytes", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setPrevRandao", - ["0x12345678"] - ); - }); - - it("should reject values with more than 32 bytes", async function () { - await assertInvalidArgumentsError( - this.provider, - "hardhat_setPrevRandao", - [`0x${"f".repeat(65)}`] - ); - }); - }); - }); - - describe("hardhat_metadata", function () { - it("has the right fields", async function () { - const metadata = await this.provider.send("hardhat_metadata"); - - assert.isString(metadata.clientVersion); - assert.isNumber(metadata.chainId); - assert.isString(metadata.instanceId); - assert.isNumber(metadata.latestBlockNumber); - assert.isString(metadata.latestBlockHash); - - // check that instance id is 32 bytes long - assert.lengthOf(metadata.instanceId, 66); - - if (isFork) { - assert.isDefined(metadata.forkedNetwork); - assert.isNumber(metadata.forkedNetwork.chainId); - assert.isNumber(metadata.forkedNetwork.forkBlockNumber); - assert.isString(metadata.forkedNetwork.forkBlockHash); - } else { - assert.notProperty(metadata, "forkedNetwork"); - } - }); - - it("shouldn't change the instance id when a block is mined", async function () { - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.equal(metadataBefore.instanceId, metadataAfter.instanceId); - }); - - it("changes its instanceId when hardhat_reset is used", async function () { - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - await this.provider.send("hardhat_reset"); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.notEqual(metadataBefore.instanceId, metadataAfter.instanceId); - }); - - it("doesn't change its instandeId when snapshots are used", async function () { - const snapshotId = await this.provider.send("evm_snapshot"); - - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - await sendTxToZeroAddress(this.provider); - await this.provider.send("evm_revert", [snapshotId]); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.equal(metadataBefore.instanceId, metadataAfter.instanceId); - }); - - it("updates the block number and block hash when a new block is mined (sending a tx)", async function () { - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.equal( - metadataAfter.latestBlockNumber, - metadataBefore.latestBlockNumber + 1 - ); - assert.notEqual( - metadataBefore.latestBlockHash, - metadataAfter.latestBlockHash - ); - }); - - it("updates the block number and block hash when a new block is mined (using hardhat_mine)", async function () { - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - await this.provider.send("hardhat_mine", ["0x100"]); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.equal( - metadataAfter.latestBlockNumber, - metadataBefore.latestBlockNumber + 0x100 - ); - assert.notEqual( - metadataBefore.latestBlockHash, - metadataAfter.latestBlockHash - ); - }); - - it("forkBlockNumber and forkBlockHash don't change when a block is mined", async function () { - if (!isFork) { - return this.skip(); - } - - const metadataBefore: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - // send a transaction to generate a new block - await sendTxToZeroAddress(this.provider); - - const metadataAfter: HardhatMetadata = await this.provider.send( - "hardhat_metadata" - ); - - assert.equal( - metadataBefore.forkedNetwork!.forkBlockNumber, - metadataAfter.forkedNetwork!.forkBlockNumber - ); - assert.equal( - metadataBefore.forkedNetwork!.forkBlockHash, - metadataAfter.forkedNetwork!.forkBlockHash - ); - }); - }); - }); - }); - - describe("fixture project tests", function () { - useFixtureProject("non-default-chainid"); - useEnvironment(); - - it("should return the chainId set in the config", async function () { - const metadata: HardhatMetadata = await this.env.network.provider.send( - "hardhat_metadata" - ); - - assert.equal(metadata.chainId, 1000); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/net.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/net.ts deleted file mode 100644 index e8263787e7..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/net.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { assert } from "chai"; - -import { numberToRpcQuantity } from "../../../../../src/internal/core/jsonrpc/types/base-types"; -import { workaroundWindowsCiFailures } from "../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../helpers/cwd"; -import { PROVIDERS } from "../../helpers/providers"; - -describe("Net module", function () { - PROVIDERS.forEach(({ name, useProvider, networkId, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("net_listening", function () { - it("Should return true", async function () { - assert.isTrue(await this.provider.send("net_listening")); - }); - }); - - describe("net_peerCount", function () { - it("Should return 0", async function () { - assert.strictEqual( - await this.provider.send("net_peerCount"), - numberToRpcQuantity(0) - ); - }); - }); - - describe("net_version", function () { - it("Should return the network id as a decimal string, not QUANTITY", async function () { - assert.strictEqual( - await this.provider.send("net_version"), - networkId.toString() - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/personal.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/personal.ts deleted file mode 100644 index 5a7091acdc..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/personal.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { assert } from "chai"; - -import { workaroundWindowsCiFailures } from "../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../helpers/cwd"; -import { PROVIDERS } from "../../helpers/providers"; - -describe("Personal module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("personal_sign", function () { - it("Should be compatible with geth's implementation", async function () { - // This test was created by using Geth 1.10.12-unstable and calling personal_sign - const result = await this.provider.request({ - method: "personal_sign", - params: [ - "0x5417aa2a18a44da0675524453ff108c545382f0d7e26605c56bba47c21b5e979", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - ], - }); - - assert.equal( - result, - "0x9c73dd4937a37eecab3abb54b74b6ec8e500080431d36afedb1726624587ee6710296e10c1194dded7376f13ff03ef6c9e797eb86bae16c20c57776fc69344271c" - ); - }); - - it("Should be compatible with metamask's implementation", async function () { - // This test was created by using Metamask 10.3.0 - - const result = (await this.provider.request({ - method: "personal_sign", - params: [ - "0x7699f568ecd7753e6ddf75a42fa4c2cc86cbbdc704c9eb1a6b6d4b9d8b8d1519", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - ], - })) as string; - - assert.equal( - result, - "0x2875e4206c9fe3b229291c81f95cc4f421e2f4d3e023f5b4041daa56ab4000977010b47a3c01036ec8a6a0872aec2ab285150f003d01b0d8da60c1cceb9154181c" - ); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/web3.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/modules/web3.ts deleted file mode 100644 index 2cff818859..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/modules/web3.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { toBytes } from "@nomicfoundation/ethereumjs-util"; -import { assert } from "chai"; - -import { bufferToRpcData } from "../../../../../src/internal/core/jsonrpc/types/base-types"; -import { keccak256 } from "../../../../../src/internal/util/keccak"; -import { workaroundWindowsCiFailures } from "../../../../utils/workaround-windows-ci-failures"; -import { setCWD } from "../../helpers/cwd"; -import { PROVIDERS } from "../../helpers/providers"; - -function toBuffer(x: Parameters[0]) { - return Buffer.from(toBytes(x)); -} - -describe("Web3 module", function () { - PROVIDERS.forEach(({ name, useProvider, isFork }) => { - if (isFork) { - this.timeout(50000); - } - - workaroundWindowsCiFailures.call(this, { isFork }); - - describe(`${name} provider`, function () { - setCWD(); - useProvider(); - - describe("web3_clientVersion", function () { - it("Should return the right value", async function () { - const res = await this.provider.send("web3_clientVersion"); - const expectedEDRVersion = - /^HardhatNetwork\/.*\/@nomicfoundation\/edr/; - assert.match(res, expectedEDRVersion); - }); - }); - - describe("web3_sha3", function () { - it("Should return the keccak256 of the input", async function () { - const data = "0x123a1b238123"; - const hashed = bufferToRpcData(keccak256(toBuffer(data))); - - const res = await this.provider.send("web3_sha3", [ - bufferToRpcData(toBuffer(data)), - ]); - - assert.strictEqual(res, hashed); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/selfdestruct.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/selfdestruct.ts deleted file mode 100644 index a4e8cca0da..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/selfdestruct.ts +++ /dev/null @@ -1,502 +0,0 @@ -import { assert } from "chai"; -import { ethers } from "ethers"; - -import { - assertContractFieldEqualNumber, - assertEqualCode, -} from "../helpers/assertions"; -import { - CALL_SELFDESTRUCT_CONTRACT, - SELFDESTRUCT_CONTRACT, - SELFDESTRUCT_DEPLOY_CONTRACT, -} from "../helpers/contracts"; -import { setCWD } from "../helpers/cwd"; -import { DEFAULT_ACCOUNTS_ADDRESSES, PROVIDERS } from "../helpers/providers"; -import { deployContract } from "../helpers/transactions"; - -describe("selfdestruct", function () { - PROVIDERS.forEach(({ name, useProvider }) => { - describe(`${name} provider`, function () { - setCWD(); - - describe("When in a pre-cancun hardfork", function () { - useProvider({ hardfork: "shanghai" }); - - it("should transfer balance", async function () { - const receiverAddress = "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // self destruct contract and send funds to some address - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${ - SELFDESTRUCT_CONTRACT.selectors.sd - }000000000000000000000000${receiverAddress.slice(2)}`, - }, - ]); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - const receiverAddressBalance = await this.provider.send( - "eth_getBalance", - [receiverAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - assert.equal(BigInt(receiverAddressBalance), 1000n); - }); - - it("shouldn't have code or balance after selfdestructing", async function () { - const receiverAddress = "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // self destruct contract and send funds to some address - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${ - SELFDESTRUCT_CONTRACT.selectors.sd - }000000000000000000000000${receiverAddress.slice(2)}`, - }, - ]); - - const contractBalance = await this.provider.send("eth_getBalance", [ - contractAddress, - ]); - const contractCode = await this.provider.send("eth_getCode", [ - contractAddress, - ]); - - assert.equal(BigInt(contractBalance), 0n); - assert.equal(contractCode, "0x"); - }); - - it("within the transaction, should have code after selfdestructing but no balance", async function () { - const receiverAddress = "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - // the constructor of this contract deploys a SelfDestruct contract, and - // records its code length and balance before and after making it - // selfdestruct - const contractAddress = await deployContract( - this.provider, - `0x${ - CALL_SELFDESTRUCT_CONTRACT.bytecode.object - }000000000000000000000000${receiverAddress.slice(2)}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // check contract state within tx - const { - balanceBeforeSelfDestruct, - balanceAfterSelfDestruct, - receiverBalanceBeforeSelfDestruct, - receiverBalanceAfterSelfDestruct, - codeLengthBeforeSelfDestruct, - codeLengthAfterSelfDestruct, - } = CALL_SELFDESTRUCT_CONTRACT.selectors; - - // before selfdestruct - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - balanceBeforeSelfDestruct, - 1000n - ); - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - receiverBalanceBeforeSelfDestruct, - 0n - ); - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - codeLengthBeforeSelfDestruct, - 280n - ); - - // after selfdestruct - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - balanceAfterSelfDestruct, - 0n - ); - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - receiverBalanceAfterSelfDestruct, - 1000n - ); - await assertContractFieldEqualNumber( - this.provider, - contractAddress, - codeLengthAfterSelfDestruct, - 280n // the code is not immediately removed - ); - - // check conditions after tx - let selfDestructAddress = await this.provider.send("eth_call", [ - { - to: contractAddress, - data: `${CALL_SELFDESTRUCT_CONTRACT.selectors.selfDestruct}`, - }, - ]); - selfDestructAddress = `0x${selfDestructAddress.slice(-40)}`; // unpad address - - const contractBalanceAfterTx = await this.provider.send( - "eth_getBalance", - [selfDestructAddress] - ); - const contractCodeAfterTx = await this.provider.send("eth_getCode", [ - selfDestructAddress, - ]); - const receiverAddressBalanceAfterTx = await this.provider.send( - "eth_getBalance", - [receiverAddress] - ); - - assert.equal(BigInt(contractBalanceAfterTx), 0n); - assert.equal(contractCodeAfterTx, "0x"); - assert.equal(BigInt(receiverAddressBalanceAfterTx), 1000n); - }); - - describe("when selfdestructing during a deployment", function () { - it("should delete the code, storage and nonce", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [receiverAddress]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractCode = await this.provider.send("eth_getCode", [ - contractAddress, - ]); - assert.equal(contractCode, "0x"); - - const storage = await this.provider.send("eth_getStorageAt", [ - contractAddress, - "0x0", - ]); - assert.equal(BigInt(storage), 0n); - - const nonce = await this.provider.send("eth_getTransactionCount", [ - contractAddress, - ]); - assert.equal(nonce, "0x0"); - }); - - it("should transfer the balance", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [receiverAddress]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - const receiverAddressBalance = await this.provider.send( - "eth_getBalance", - [receiverAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - assert.equal(BigInt(receiverAddressBalance), 1000n); - }); - - it("should end with a balance of 0 if the target of the transfer is the contract itself", async function () { - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [DEFAULT_ACCOUNTS_ADDRESSES[1]]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - }); - }); - - it("a selfdestruct shouldn't affect another account with the same code", async function () { - // deploy two contracts with the same bytecode - const contractAddress1 = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - const contractAddress2 = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[0] - ); - - await assertEqualCode( - this.provider, - contractAddress1, - contractAddress2 - ); - - // call self-destruct in one of them - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[0], - to: contractAddress1, - data: `${SELFDESTRUCT_CONTRACT.selectors.sd}0000000000000000000000000000000000000000000000000000000000000000`, - }, - ]); - - // check that the first contract doesn't have code but the second one - // does - const contractCode1 = await this.provider.send("eth_getCode", [ - contractAddress1, - ]); - assert.equal(contractCode1, "0x"); - - const contractCode2 = await this.provider.send("eth_getCode", [ - contractAddress2, - ]); - assert.notEqual(contractCode2, "0x"); - }); - }); - - describe("When in the cancun hardfork", function () { - useProvider({ hardfork: "cancun" }); - - describe("when calling a function that selfdestructs", function () { - it("shouldn't delete the code, the storage or the nonce", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // self destruct contract and send funds to some address - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${ - SELFDESTRUCT_CONTRACT.selectors.sd - }000000000000000000000000${receiverAddress.slice(2)}`, - }, - ]); - - const contractCode = await this.provider.send("eth_getCode", [ - contractAddress, - ]); - assert.notEqual(contractCode, "0x"); - - const storage = await this.provider.send("eth_getStorageAt", [ - contractAddress, - "0x0", - ]); - assert.equal(BigInt(storage), 1n); - - const nonce = await this.provider.send("eth_getTransactionCount", [ - contractAddress, - ]); - assert.equal(nonce, "0x1"); - }); - - it("should transfer the balance", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // self destruct contract and send funds to some address - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${ - SELFDESTRUCT_CONTRACT.selectors.sd - }000000000000000000000000${receiverAddress.slice(2)}`, - }, - ]); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - const receiverAddressBalance = await this.provider.send( - "eth_getBalance", - [receiverAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - assert.equal(BigInt(receiverAddressBalance), 1000n); - }); - - it("shouldn't change the balance if the target of the transfer is the contract itself", async function () { - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_CONTRACT.bytecode.object}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - // self destruct contract and send funds to some address - await this.provider.send("eth_sendTransaction", [ - { - from: DEFAULT_ACCOUNTS_ADDRESSES[1], - to: contractAddress, - data: `${ - SELFDESTRUCT_CONTRACT.selectors.sd - }000000000000000000000000${contractAddress.slice(2)}`, - }, - ]); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 1000n); - }); - }); - - describe("when selfdestructing during a deployment", function () { - it("should delete the code, storage and nonce", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [receiverAddress]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractCode = await this.provider.send("eth_getCode", [ - contractAddress, - ]); - assert.equal(contractCode, "0x"); - - const storage = await this.provider.send("eth_getStorageAt", [ - contractAddress, - "0x0", - ]); - assert.equal(BigInt(storage), 0n); - - const nonce = await this.provider.send("eth_getTransactionCount", [ - contractAddress, - ]); - assert.equal(nonce, "0x0"); - }); - - it("should transfer the balance", async function () { - const receiverAddress = - "0x755113a7411e8788db98d9d74faf2750fb5570a4"; - - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [receiverAddress]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - const receiverAddressBalance = await this.provider.send( - "eth_getBalance", - [receiverAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - assert.equal(BigInt(receiverAddressBalance), 1000n); - }); - - it("should end with a balance of 0 if the target of the transfer is the contract itself", async function () { - const abiCoder = new ethers.AbiCoder(); - const constructorParameters = abiCoder - .encode(["address"], [DEFAULT_ACCOUNTS_ADDRESSES[1]]) - .slice(2); - - const contractAddress = await deployContract( - this.provider, - `0x${SELFDESTRUCT_DEPLOY_CONTRACT.bytecode.object}${constructorParameters}`, - DEFAULT_ACCOUNTS_ADDRESSES[1], - 1000 - ); - - const contractAddressBalance = await this.provider.send( - "eth_getBalance", - [contractAddress] - ); - - assert.equal(BigInt(contractAddressBalance), 0n); - }); - }); - }); - }); - }); -}); diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts deleted file mode 100644 index 378aa54a6d..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { assert } from "chai"; - -import { RpcDebugTraceOutput } from "../../../../../src/internal/hardhat-network/provider/output"; - -export function assertEqualTraces( - actual: RpcDebugTraceOutput, - expected: RpcDebugTraceOutput -) { - // Deep copy because we modify the logs - actual = JSON.parse(JSON.stringify(actual)); - expected = JSON.parse(JSON.stringify(expected)); - - assert.equal(actual.failed, expected.failed); - assert.equal(actual.gas, expected.gas); - - // geth doesn't seem to include the returnValue - // assert.equal(actual.returnValue, expected.returnValue); - - // EthereumJS doesn't include STOP at the end when REVM does. - if (actual.structLogs.length === expected.structLogs.length + 1) { - if (actual.structLogs[actual.structLogs.length - 1].op === "STOP") { - actual.structLogs.pop(); - } - } - assert.equal(actual.structLogs.length, expected.structLogs.length); - - // Eslint complains about not modifying `i`, but we need to modify `expectedLog`. - // eslint-disable-next-line prefer-const - for (let [i, expectedLog] of expected.structLogs.entries()) { - const actualLog = actual.structLogs[i]; - - // we ignore the gasCost of the last step because - // we don't guarantee that it's correct - if (i === expected.structLogs.length - 1) { - actualLog.gasCost = 0; - expectedLog.gasCost = 0; - } - - // We don't support gas computation for these opcodes yet in EDR and always return 0. - if ( - expectedLog.op === "CREATE" || - expectedLog.op === "CREATE2" || - expectedLog.op === "CALL" || - expectedLog.op === "CALLCODE" || - expectedLog.op === "DELEGATECALL" || - expectedLog.op === "STATICCALL" - ) { - actualLog.gasCost = 0; - expectedLog.gasCost = 0; - } - - // Fixture has deprecated name for KECCAK256 - if (actualLog.op === "KECCAK256") { - actualLog.op = "SHA3"; - } - - // REVM doesn't include memory expansion, but the fixture does - if ( - i > 1 && - (expectedLog.op === "MSTORE" || - expectedLog.op === "STATICCALL" || - expectedLog.op === "CALLDATACOPY" || - expectedLog.op === "CODECOPY" || - expectedLog.op === "REVERT") && - // Only way to make eslint happy by strict checking for both null and undefined - expectedLog.memory !== null && - expectedLog.memory !== undefined && - actualLog.memory !== null && - actualLog.memory !== undefined && - expected.structLogs[i - 1].memory !== null && - expected.structLogs[i - 1].memory !== undefined - ) { - // Check for memory expansion - if ( - expectedLog.memory!.length > expected.structLogs[i - 1].memory!.length - ) { - while (expectedLog.memory!.length > actualLog.memory!.length) { - actualLog.memory!.push("0".repeat(64)); - } - } - } - - assert.deepEqual( - actualLog, - expectedLog, - `Different logs at ${i} (pc: ${expectedLog.pc}, opcode: ${expectedLog.op}, gas: ${expectedLog.gas})` - ); - } -} diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/color.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/utils/color.ts deleted file mode 100644 index 4203735a8a..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/color.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Chalk } from "chalk"; -import { EthereumProvider } from "../../../../../src/types"; - -export function ansiColor( - provider: EthereumProvider, - text: string, - color: Chalk -): string { - const formatted = color(text); - - // EDR's ansi console crate uses the RESET code to reset the color - return formatted.replace("\x1B[39m", "\x1B[0m"); -} diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToBlockData.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToBlockData.ts deleted file mode 100644 index 456353e7b0..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToBlockData.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { BlockData } from "@nomicfoundation/ethereumjs-block"; - -import { RpcBlockWithTransactions } from "../../../../../src/internal/core/jsonrpc/types/output/block"; -import { rpcToTxData } from "./rpcToTxData"; - -export function rpcToBlockData(rpcBlock: RpcBlockWithTransactions): BlockData { - return { - header: { - parentHash: rpcBlock.parentHash, - uncleHash: rpcBlock.sha3Uncles, - coinbase: rpcBlock.miner, - stateRoot: rpcBlock.stateRoot, - transactionsTrie: rpcBlock.transactionsRoot, - receiptTrie: rpcBlock.receiptsRoot, - logsBloom: rpcBlock.logsBloom, - difficulty: rpcBlock.difficulty, - number: rpcBlock.number ?? undefined, - gasLimit: rpcBlock.gasLimit, - gasUsed: rpcBlock.gasUsed, - timestamp: rpcBlock.timestamp, - extraData: rpcBlock.extraData, - mixHash: rpcBlock.mixHash, - nonce: rpcBlock.nonce, - baseFeePerGas: rpcBlock.baseFeePerGas, - withdrawalsRoot: rpcBlock.withdrawalsRoot, - parentBeaconBlockRoot: rpcBlock.parentBeaconBlockRoot, - blobGasUsed: rpcBlock.blobGasUsed, - excessBlobGas: rpcBlock.excessBlobGas, - }, - transactions: rpcBlock.transactions.map(rpcToTxData), - withdrawals: rpcBlock.withdrawals, - // uncleHeaders are not fetched and set here as provider methods for getting them are not supported - }; -} diff --git a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToTxData.ts b/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToTxData.ts deleted file mode 100644 index a63f1791bd..0000000000 --- a/packages/hardhat-core/test/internal/hardhat-network/provider/utils/rpcToTxData.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { BigIntLike } from "@nomicfoundation/ethereumjs-util"; - -import { - AccessListEIP2930TxData, - LegacyTxData, -} from "@nomicfoundation/ethereumjs-tx"; - -import { RpcTransaction } from "../../../../../src/internal/core/jsonrpc/types/output/transaction"; - -// the FeeMarketEIP1559TxData interface from ethereum js also has a -// `gasPrice?: never | null` property, which causes a compilation -// error in the latest version of typescript -interface FeeMarketEIP1559TxData extends AccessListEIP2930TxData { - maxPriorityFeePerGas?: BigIntLike; - maxFeePerGas?: BigIntLike; -} - -export function rpcToTxData( - rpcTransaction: RpcTransaction -): LegacyTxData | AccessListEIP2930TxData | FeeMarketEIP1559TxData { - const isEip1559 = rpcTransaction.type === 2n; - - return { - gasLimit: rpcTransaction.gas, - // NOTE: RPC EIP-1559 txs still have this field for backwards compatibility, - // but FeeMarketEIP1559TxData doesn't. - gasPrice: isEip1559 ? undefined : rpcTransaction.gasPrice, - to: rpcTransaction.to ?? undefined, - nonce: rpcTransaction.nonce, - data: rpcTransaction.input, - v: rpcTransaction.v, - r: rpcTransaction.r, - s: rpcTransaction.s, - value: rpcTransaction.value, - type: rpcTransaction.type, - chainId: rpcTransaction.chainId ?? undefined, - maxFeePerGas: rpcTransaction.maxFeePerGas, - maxPriorityFeePerGas: rpcTransaction.maxPriorityFeePerGas, - accessList: - rpcTransaction.accessList?.map((item) => [ - item.address, - item.storageKeys ?? [], - ]) ?? undefined, - }; -} diff --git a/packages/hardhat-ethers/package.json b/packages/hardhat-ethers/package.json index c1d6c8910e..ea34428d36 100644 --- a/packages/hardhat-ethers/package.json +++ b/packages/hardhat-ethers/package.json @@ -22,7 +22,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && pnpm build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo" diff --git a/packages/hardhat-foundry/package.json b/packages/hardhat-foundry/package.json index b55ae98ecf..ce87dd83c7 100644 --- a/packages/hardhat-foundry/package.json +++ b/packages/hardhat-foundry/package.json @@ -22,7 +22,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-ledger/package.json b/packages/hardhat-ledger/package.json index 688c96a871..8ecd840d22 100644 --- a/packages/hardhat-ledger/package.json +++ b/packages/hardhat-ledger/package.json @@ -24,7 +24,6 @@ "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" -c --exit", "coverage": "nyc pnpm test -- --reporter min", - "prebuild": "cd ../../crates/edr_napi && pnpm build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-network-helpers/package.json b/packages/hardhat-network-helpers/package.json index 4923ec70df..59ded55ca6 100644 --- a/packages/hardhat-network-helpers/package.json +++ b/packages/hardhat-network-helpers/package.json @@ -21,7 +21,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo" diff --git a/packages/hardhat-shorthand/package.json b/packages/hardhat-shorthand/package.json index e89e9f27d4..881cab72d3 100644 --- a/packages/hardhat-shorthand/package.json +++ b/packages/hardhat-shorthand/package.json @@ -23,7 +23,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-solhint/package.json b/packages/hardhat-solhint/package.json index 183b70ac73..22779b859e 100644 --- a/packages/hardhat-solhint/package.json +++ b/packages/hardhat-solhint/package.json @@ -24,7 +24,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-solpp/package.json b/packages/hardhat-solpp/package.json index 1b3ff14217..8e4049a43d 100644 --- a/packages/hardhat-solpp/package.json +++ b/packages/hardhat-solpp/package.json @@ -24,7 +24,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-toolbox/package.json b/packages/hardhat-toolbox/package.json index 00e156699c..4745788dee 100644 --- a/packages/hardhat-toolbox/package.json +++ b/packages/hardhat-toolbox/package.json @@ -25,7 +25,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo" diff --git a/packages/hardhat-truffle4/package.json b/packages/hardhat-truffle4/package.json index 1e2fea100a..2db5e1f9f5 100644 --- a/packages/hardhat-truffle4/package.json +++ b/packages/hardhat-truffle4/package.json @@ -23,7 +23,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-truffle5/package.json b/packages/hardhat-truffle5/package.json index d5d909fe27..80d58f6fa5 100644 --- a/packages/hardhat-truffle5/package.json +++ b/packages/hardhat-truffle5/package.json @@ -23,7 +23,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-verify/package.json b/packages/hardhat-verify/package.json index af6f85f68c..f7755c84cf 100644 --- a/packages/hardhat-verify/package.json +++ b/packages/hardhat-verify/package.json @@ -27,7 +27,6 @@ "README.md" ], "scripts": { - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "clean": "rimraf dist internal *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo", "coverage": "nyc pnpm test -- --reporter min", diff --git a/packages/hardhat-vyper/package.json b/packages/hardhat-vyper/package.json index c8e2c25927..dddca23653 100644 --- a/packages/hardhat-vyper/package.json +++ b/packages/hardhat-vyper/package.json @@ -22,7 +22,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\"", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-web3-legacy/package.json b/packages/hardhat-web3-legacy/package.json index 86d03c7a8d..f2fe38269a 100644 --- a/packages/hardhat-web3-legacy/package.json +++ b/packages/hardhat-web3-legacy/package.json @@ -23,7 +23,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-web3-v4/package.json b/packages/hardhat-web3-v4/package.json index ba94e28d7d..acde1b606f 100644 --- a/packages/hardhat-web3-v4/package.json +++ b/packages/hardhat-web3-v4/package.json @@ -22,7 +22,6 @@ "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'", "prettier": "prettier \"**/*.{js,md,json}\"", "test": "mocha --recursive \"test/**/*.ts\" --exit && node web3-lazy-object-tests/when-accessing-web3-class.js && node web3-lazy-object-tests/when-accessing-web3-object.js && node web3-lazy-object-tests/when-requiring-web3-module.js", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/packages/hardhat-web3/package.json b/packages/hardhat-web3/package.json index d4711fc132..bbd1248deb 100644 --- a/packages/hardhat-web3/package.json +++ b/packages/hardhat-web3/package.json @@ -23,7 +23,6 @@ "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" --exit && node web3-lazy-object-tests/when-accessing-web3-class.js && node web3-lazy-object-tests/when-accessing-web3-object.js && node web3-lazy-object-tests/when-requiring-web3-module.js", - "prebuild": "cd ../../crates/edr_napi && yarn build", "build": "tsc --build .", "prepublishOnly": "pnpm build", "clean": "rimraf dist" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 28708af263..93fffea98f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,51 +27,6 @@ importers: specifier: ~5.0.0 version: 5.0.4 - crates/edr_napi: - devDependencies: - '@napi-rs/cli': - specifier: ^2.18.1 - version: 2.18.3 - '@types/chai': - specifier: ^4.2.0 - version: 4.3.16 - '@types/chai-as-promised': - specifier: ^7.1.8 - version: 7.1.8 - '@types/mocha': - specifier: '>=9.1.0' - version: 10.0.6 - '@types/node': - specifier: ^18.0.0 - version: 18.19.33 - chai: - specifier: ^4.3.6 - version: 4.4.1 - chai-as-promised: - specifier: ^7.1.1 - version: 7.1.1(chai@4.4.1) - mocha: - specifier: ^10.0.0 - version: 10.4.0 - typescript: - specifier: ~4.5.2 - version: 4.5.5 - - crates/tools/js/benchmark: - dependencies: - argparse: - specifier: ^2.0.1 - version: 2.0.1 - hardhat: - specifier: workspace:^ - version: link:../../../../packages/hardhat-core - lodash: - specifier: ^4.17.11 - version: 4.17.21 - tsx: - specifier: ^4.7.1 - version: 4.9.3 - packages/common: devDependencies: detect-port: @@ -2354,213 +2309,6 @@ packages: deprecated: Please use @ensdomains/ens-contracts dev: false - /@esbuild/aix-ppc64@0.20.2: - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: false - optional: true - - /@esbuild/android-arm64@0.20.2: - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@esbuild/android-arm@0.20.2: - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@esbuild/android-x64@0.20.2: - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@esbuild/darwin-arm64@0.20.2: - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@esbuild/darwin-x64@0.20.2: - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@esbuild/freebsd-arm64@0.20.2: - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true - - /@esbuild/freebsd-x64@0.20.2: - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-arm64@0.20.2: - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-arm@0.20.2: - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-ia32@0.20.2: - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-loong64@0.20.2: - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-mips64el@0.20.2: - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-ppc64@0.20.2: - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-riscv64@0.20.2: - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-s390x@0.20.2: - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/linux-x64@0.20.2: - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@esbuild/netbsd-x64@0.20.2: - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: false - optional: true - - /@esbuild/openbsd-x64@0.20.2: - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: false - optional: true - - /@esbuild/sunos-x64@0.20.2: - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: false - optional: true - - /@esbuild/win32-arm64@0.20.2: - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@esbuild/win32-ia32@0.20.2: - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@esbuild/win32-x64@0.20.2: - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3217,12 +2965,6 @@ packages: tweetnacl-util: 0.15.1 dev: false - /@napi-rs/cli@2.18.3: - resolution: {integrity: sha512-L0f4kP0dyG8W5Qtc7MtP73VvLLrOLyRcUEBzknIfu8Jk4Jfhrsx1ItMHgyalYqMSslWdY3ojEfAaU5sx1VyeQQ==} - engines: {node: '>= 10'} - hasBin: true - dev: true - /@noble/curves@1.2.0: resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} dependencies: @@ -6148,37 +5890,6 @@ packages: d: 1.0.2 ext: 1.7.0 - /esbuild@0.20.2: - resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/aix-ppc64': 0.20.2 - '@esbuild/android-arm': 0.20.2 - '@esbuild/android-arm64': 0.20.2 - '@esbuild/android-x64': 0.20.2 - '@esbuild/darwin-arm64': 0.20.2 - '@esbuild/darwin-x64': 0.20.2 - '@esbuild/freebsd-arm64': 0.20.2 - '@esbuild/freebsd-x64': 0.20.2 - '@esbuild/linux-arm': 0.20.2 - '@esbuild/linux-arm64': 0.20.2 - '@esbuild/linux-ia32': 0.20.2 - '@esbuild/linux-loong64': 0.20.2 - '@esbuild/linux-mips64el': 0.20.2 - '@esbuild/linux-ppc64': 0.20.2 - '@esbuild/linux-riscv64': 0.20.2 - '@esbuild/linux-s390x': 0.20.2 - '@esbuild/linux-x64': 0.20.2 - '@esbuild/netbsd-x64': 0.20.2 - '@esbuild/openbsd-x64': 0.20.2 - '@esbuild/sunos-x64': 0.20.2 - '@esbuild/win32-arm64': 0.20.2 - '@esbuild/win32-ia32': 0.20.2 - '@esbuild/win32-x64': 0.20.2 - dev: false - /escalade@3.1.2: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} engines: {node: '>=6'} @@ -7233,6 +6944,7 @@ packages: resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} dependencies: resolve-pkg-maps: 1.0.0 + dev: true /getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} @@ -9752,6 +9464,7 @@ packages: /resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true /resolve@1.1.7: resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} @@ -10832,17 +10545,6 @@ packages: tslib: 1.14.1 typescript: 5.0.4 - /tsx@4.9.3: - resolution: {integrity: sha512-czVbetlILiyJZI5zGlj2kw9vFiSeyra9liPD4nG+Thh4pKTi0AmMEQ8zdV/L2xbIVKrIqif4sUNrsMAOksx9Zg==} - engines: {node: '>=18.0.0'} - hasBin: true - dependencies: - esbuild: 0.20.2 - get-tsconfig: 4.7.5 - optionalDependencies: - fsevents: 2.3.3 - dev: false - /tty-table@4.2.3: resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} engines: {node: '>=8.0.0'} @@ -11013,12 +10715,6 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typescript@4.5.5: - resolution: {integrity: sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript@5.0.4: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} engines: {node: '>=12.20'} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 31089eca53..dee51e928d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,2 @@ packages: - "packages/*" - - "crates/edr_napi" - - "crates/tools/js/benchmark" diff --git a/rust-toolchain b/rust-toolchain deleted file mode 100644 index 9242d8e7ab..0000000000 --- a/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -1.76 diff --git a/rustfmt.toml b/rustfmt.toml deleted file mode 100644 index 15e2fcffe2..0000000000 --- a/rustfmt.toml +++ /dev/null @@ -1,4 +0,0 @@ -unstable_features = true -imports_granularity = "Crate" -wrap_comments = true -group_imports = "StdExternalCrate" diff --git a/scripts/setup.sh b/scripts/setup.sh index 07c3259efc..7a961a91cb 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -1,20 +1,8 @@ #!/bin/bash set -euo pipefail -rust_version=$(